@charset "UTF-8";

* {
  margin: 0px;
  padding: 0px;
}

.youtube iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

/* フォント指定 */
@media screen and (min-width: 1200px) {
  html {
    font-size: 16px;
    height: 100%;
  }

  body {
    font-family: Kosugi Maru, Helvetica Neue, Arial, Hiragino Sans, Hiragino Kaku Gothic ProN, BIZ UDPGothic, Meiryo, sans-serif;
    line-height: 1.63;
  }

}

@media screen and (min-width: 864px) and (max-width:1199.98px) {
  html {
    font-size: 15px;
  }

  body {
    font-family: Kosugi Maru, kozuka-gothic-pr6n, 'Noto Sans JP', Helvetica Neue, Arial, Hiragino Sans, Hiragino Kaku Gothic ProN, BIZ UDPGothic, Meiryo, sans-serif;
    line-height: 1.6;
  }
}

@media screen and (max-width: 863.98px) {
  html {
    font-size: 16px;
    height: 100%;
  }

  body {
    height: 100%;
    font-family: Kosugi Maru, kozuka-gothic-pr6n, 'Noto Sans JP', Helvetica Neue, Arial, Hiragino Sans, Hiragino Kaku Gothic ProN, BIZ UDPGothic, Meiryo, sans-serif;
    line-height: 1.68;
  }
}



#toc div {
  max-width: 301px;
  text-align: left;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 2px;
  padding-right: 0px;
  transition: background-color 0.15s, color 0.15s;
  background-color: #F8F8F8;

  border-bottom: 1px solid #c0c0c0;
  color: black;
  cursor: pointer;
  font-size: 0.9rem;
}

#toc div:first-child {
  border-top: 1px solid #c0c0c0;
}

#toc div:hover {
  background-color: #5a5a5a36;
  color: rgb(32, 32, 32);
}

.left-mokuji {
  padding-left: 2px;
  border-right: 1px solid #c0c0c0;
  border-left: 1px solid #c0c0c0;
}


a {
  color: #1565fa;
}

a:hover {
  color: #98BFF4;
}

a {
  text-decoration: none;
}

p {
  margin: 0.5rem 0px;
}

p.story {
  border-left: 0.2rem solid #d4d3d2;
  background-color: #F8F8F8;
  padding-top: 0.15rem;
  padding-left: 0.3rem;
  padding-right: 0.15rem;
  padding-bottom: 0.15rem;
  font-size: 0.9rem;
}

p.list {
  position: relative;
  /* カスタムアイコンを配置するためにrelativeを使用 */
  padding-left: 1em;
  /* アイコンのスペースを確保する */
  margin-bottom: 0.5em;
  /* パラグラフ間のスペースを設定する */
  color: #333;
  /* テキストの色を濃いグレーに設定する */
}

p.list::before {
  content: "●";
  /* カスタムアイコンを設定する */
  position: absolute;
  /* アイコンを絶対位置に設定する */
  left: 0;
  /* アイコンの位置を左に設定する */
  color: #555;
  /* アイコンの色を濃いグレーに設定する */
  font-size: 1em;
  /* アイコンのサイズを調整する */
  line-height: 1;
  /* アイコンの高さを調整する */
  top: 0;
  /* アイコンをテキストの先頭に揃える */
  transform: translateY(0.2em);
  /* アイコンを垂直方向に調整する */
  font-family: Arial, sans-serif;
  /* フォントを設定する */
}

/* 絵文字を自動で前に表示するクラス */

.emoji_star::before {
  content: "⭐";
  margin-right: 0.10em;
  /* 絵文字とテキストの間に余白を設定 */
}

.emoji_trophy::before {
  content: "🏆";
  margin-right: 0.10em;
}

.emoji_check::before {
  content: "✅";
  margin-right: 0.10em;
}

.emoji_bulb::before {
  content: "💡";
  margin-right: 0.10em;
}

.emoji_search::before {
  content: "🔍";
  margin-right: 0.10em;
}

.countsize {
  font-family: 'Noto Sans JP', Helvetica Neue, Arial, Hiragino Sans, Hiragino Kaku Gothic ProN, BIZ UDPGothic, Meiryo, sans-serif;
  font-size: 2.2rem;
}

.b {
  font-weight: bold;
}

.back-gray {
  max-width: 99%;
  min-width: 95%;
  background-color: #F2F2F2;
  padding: 5px 1%;
}

.red {
  color: #FF0033;
}

.deep_red {
  color: rgb(196, 100, 56);
}

.green {
  color: rgb(65, 168, 95);
}

.blue {
  color: #64B5F6;

}

.deep_blue {
  color: rgb(42, 128, 199);
}

.purple {
  color: rgb(175 79 255);
}

.yellow {
  color: #FFC107;

}

.white {
  color: #ebe0e0;

}

.black {
  color: #0c0d0ed8;

}

.left {
  margin-right: auto;
}

.center {
  text-align: center;
}

textarea {
  width: 100%;
  height: 100px;
  resize: vertical;
}

.left-ad {
  padding: 20px 0px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

/* 外部CSSファイルに記述することを推奨します */
.pagination-nav {
  display: flex;
  /* ボタンを横並びにする */
  /* justify-content: space-between; */
  /* ← この行を削除またはコメントアウト */
  justify-content: center;
  /* ← ボタン群を中央に寄せる */
  gap: 20px;
  /* ← ボタン間の間隔を指定（値はお好みで調整してください） */
  align-items: center;
  /* ボタンの縦位置を中央揃えに */
  margin: 30px 0;
  /* ボタン群の上下に余白を設ける（値は調整可） */
  padding: 0 10px;
  /* 画面幅が狭い時に左右に少し余白を持たせる（値は調整可） */
}

/* .nav-button と .nav-button:hover のスタイルは変更なし */
.nav-button {
  display: inline-block;
  /* ボタンの形状を保つ */
  padding: 12px 30px;
  /* ボタン内部の余白（上下、左右）*/
  background-color: #555;
  /* 背景色（画像に近いダークグレー） */
  color: #fff;
  /* 文字色（白） */
  text-decoration: none;
  /* リンクの下線を消す */
  border-radius: 25px;
  /* 角を丸くする（値が大きいほど丸くなる） */
  font-size: 16px;
  /* 文字サイズ */
  font-weight: bold;
  /* 文字を少し太くする */
  text-align: center;
  /* 文字を中央揃えに */
  transition: background-color 0.3s ease;
  /* ホバー時の背景色変化を滑らかに */
  white-space: nowrap;
  /* ボタン内でテキストが折り返さないように */
}

.nav-button:hover {
  background-color: #777;
  /* ホバー時に少し明るいグレーに */
  color: #fff;
  /* 文字色は白のまま */
}

.topics dl {
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}

.topics dt {
  padding-bottom: 5px;
}

.marker {
  background: linear-gradient(transparent 75%, #fdc5c5fd 75%);
}

section {
  max-width: 300px;
  margin: 0 auto;
}


.table-of-contents {
  margin: 0 auto;
  padding-top: 13px;
  padding-bottom: 20px;
  min-width: 99%;
  max-width: 99%;

  font-size: 0.95rem;
  border: solid 2px #524f4f;
  background: #f8f8f8;
  border-radius: 8px;
}

.table-of-contents:before {
  padding-left: 20px;
  content: "もくじ";
  font-size: 110%;
  font-weight: bold;
  color: #000;
}

.table-of-contents2 {
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 25px;
  min-width: 95%;
  max-width: 95%;

  font-size: 100%;
  border: solid 2px #524f4f;
  background: #f8f8f8;
  border-radius: 8px;
}

.table-of-contents2:before {
  padding-left: 20px;
  font-size: 120%;
  font-weight: bold;
  color: #000;
}

.table-of-contents-en {
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 25px;
  min-width: 95%;
  max-width: 95%;

  font-size: 100%;
  border: solid 2px #524f4f;
  background: #f8f8f8;
  border-radius: 8px;
}

.table-of-contents-en:before {
  padding-left: 20px;
  content: "Table Of Contents";
  font-size: 120%;
  font-weight: bold;
  color: #000;
}

p.mokuji {
  max-width: 95%;
  margin-left: 3%;
  margin-right: 3%;
  padding-top: 0.5px;
  padding-bottom: 0.5px;

  text-indent: -2em;
  padding-left: 0.9em;
  border-bottom: 1.3px solid;
  border-color: rgba(172, 160, 160, 0.562);

}



.table-of-contents a {

  color: #333333;
}

.table-of-contents a:hover {
  color: #a5a5a5;
}

.table-of-contents2 a {
  font-weight: bold;
  color: #333333;
}

.table-of-contents2 a:hover {
  color: #a5a5a5;
}

.table-of-contents-en a {
  font-weight: bold;
  color: #333333;
}

.table-of-contents-en a:hover {
  color: #a5a5a5;

}

p.mokuji::before {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  background: url(/common/img/mokuji.png) no-repeat;
  margin-left: 1em;
  text-indent: -1em;
  background-size: contain;
  margin-right: 0.4em;
}



a.next_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  position: relative;
  background: #404040;
  border: 1px solid #404040;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 0 45px 0 25px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.3s;
}

a.next_btn:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
}

a.next_btn:hover {
  background: #fff;
  color: #404040;
}

a.next_btn:hover:before {
  border-top: 2px solid #404040;
  border-right: 2px solid #404040;
}

a.btn_03 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  position: relative;
  background: #404040;
  border: 1px solid #404040;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 0 25px 0 45px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.3s;
}

a.btn_03:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(225deg);
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -6px;
}

a.btn_03:hover {
  background: #fff;
  color: #404040;
}

a.btn_03:hover:before {
  border-top: 2px solid #404040;
  border-right: 2px solid #404040;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

/*ページ上部までスクロールするボタン専用*/
@media screen and (min-width: 1460px) {
  #scroll-to-top-btn {
    font-family: 'Noto Sans JP', Helvetica Neue, Arial, Hiragino Sans, Hiragino Kaku Gothic ProN, BIZ UDPGothic, Meiryo, sans-serif;
    position: fixed;
    right: 25px;
    bottom: 25px;
    /* 位置を下げる */
    height: 90px;
    /* サイズを大きく */
    width: 90px;
    /* サイズを大きく */
    color: #FFF;
    font-size: 30px;
    font-weight: bold;
    background-color: #9E9E9E;
    border: none;
    border-radius: 50%;
    transform: rotate(-90deg);
    opacity: 0;
    transition-duration: 0.5s;
    cursor: pointer;
    /* マウスカーソルをポインタに */
  }

  #scroll-to-top-btn:hover {
    background: #2a2a2a;
    /* マウスオーバー時の色を変更 */
    color: #FFF;
    /* マウスオーバー時の文字色を変更 */
    transform: rotate(-90deg) translateX(-4px);
  }

}

/*ウィンドウ幅が864px以上の場合に適用*/
@media screen and (min-width: 864px) {
  #scroll-to-top-btn {
    display: none;
  }

  .chart1 {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
  }

  .chart2 {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
  }

  .ranking {
    min-width: 99%;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    font-size: 1.5rem;
  }

  .h5 {
    font-family: Helvetica Neue, Arial, Hiragino Sans, Hiragino Kaku Gothic ProN, BIZ UDPGothic, Meiryo, sans-serif;
    overflow-wrap: break-word;
    font-size: 1.4rem;
    margin: 0 0 3px 0;
    box-sizing: border-box;
  }

  .advice-range {
    padding-top: 2em;
    padding-bottom: 1em;
  }

  .advice-header {
    font-family: 'BIZ UDPGothic', Helvetica Neue, Arial, Hiragino Sans, Hiragino Kaku Gothic ProN, BIZ UDPGothic, Meiryo, sans-serif;
    max-width: 90%;
    display: inline-block;
    background: #404040;
    color: whitesmoke;
    border-radius: 5px;
    padding: 2px 10px;
    letter-spacing: 0.12em;

    box-sizing: border-box;
    position: relative;
    top: -15px;
    left: 0%;
    font-size: 1.12rem;
    margin: 0 0 3px 0;
  }

  .advice-header a {
    color: whitesmoke;
  }

  .advice-header a:hover {
    color: rgb(213, 214, 236);
  }

  .advice-header2 {
    font-family: Helvetica Neue, Arial, Hiragino Sans, Hiragino Kaku Gothic ProN, BIZ UDPGothic, Meiryo, sans-serif;
    max-width: 90%;
    display: inline-block;
    background: #404040;
    color: whitesmoke;
    border-radius: 5px;
    padding: 2px 10px;
    letter-spacing: 0.12em;

    box-sizing: border-box;
    position: relative;
    top: -15px;
    left: 2%;
    font-size: 1.12rem;
    margin: 0 0 3px 0;
  }

  .advice-header2 a {
    color: whitesmoke;
  }

  .advice-header2 a:hover {
    color: rgb(213, 214, 236);
  }

  .right {
    display: flex;
    justify-content: flex-end;
    position: relative;
    bottom: 5px;
  }

  .advice-after {
    max-width: 90%;
    display: inline-block;
    background: #404040;
    color: whitesmoke;
    border-radius: 5px;
    padding: 2px 10px;
    letter-spacing: 0.12em;
    transform: rotate(-90deg);

    box-sizing: border-box;
    position: relative;

    right: 0%;
    font-size: 1.35rem;
    margin: 0 0 3px 0;
  }

  .advice-after:hover {
    max-width: 90%;
    display: inline-block;
    background: #575656;
    color: whitesmoke;
    border-radius: 5px;
    padding: 2px 10px;
    letter-spacing: 0.12em;
    transform: rotate(-90deg);

    box-sizing: border-box;
    position: relative;

    right: 0%;
    font-size: 1.35rem;
    margin: 0 0 3px 0;
  }

  .border-box {
    background-color: #FAFAFA;
    min-width: 90%;
    max-width: 93%;
    display: block;
    border: 2px solid rgb(82, 79, 79);
    position: relative;
    border-radius: 8px;
  }

  .border-box2 {
    background-color: #FAFAFA;
    min-width: 98%;
    max-width: 98%;
    display: block;
    border: 2px solid rgb(82, 79, 79);
    position: relative;
    border-radius: 8px;
  }

  .inner {
    width: 90%;
    padding-left: 2%;
    padding-right: 2%;
    margin: 0 auto 0 auto;
  }

  .inner2 {
    width: 100%;
    padding-left: 0%;
    padding-right: 0%;
    margin: 0 auto 0 auto;
  }

  p.advice {
    position: relative;
    font-size: 0.9rem;
    top: -15px;
  }


  .left-ad-tsuiseki {
    width: 295px;
    min-height: 500px;
    float: left;
    margin: 0 auto;
    padding-top: 25px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }

  .topics dt {
    clear: left;
    float: left;
    width: 10%;
  }

  .topics dd {
    margin-left: 11%;
  }

  .ad {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    margin: 0 auto;
    width: 95%;
  }

  .pc-none {
    display: none
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .logo {

    color: white;
    padding-top: .312rem;
    padding-left: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.2rem;
    letter-spacing: 0.125em;
    text-decoration: none;
    white-space: nowrap;
  }


  h1 {
    background-color: #494848;
    /* Light grey background */
    color: #f2f2f2;
    /* Dark grey text color */
    padding: 10px 15px;
    /* Padding inside the heading */
    border-left: 5px solid #818183;
    /* Blue left border */
    /* font-family: 'Arial', sans-serif;  Font family */
    font-size: 1.5em;
    font-weight: normal;
    /* Font size */
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    /* Space below the heading */
    width: 95%;
  }

  h1.logo {
    color: white;
    padding-top: .312rem;
    padding-left: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.22rem;
    text-decoration: none;
    white-space: nowrap;
  }

  h2 {
    padding: 1px 5px;
    text-align: left;
    border-left: 8px double white;
    background: #3C4043;
    color: white;
    font-size: 1.2rem;

  }

  h3 {
    background-color: #494848;
    /* Light grey background */
    color: #f2f2f2;
    /* Dark grey text color */
    padding: 10px 15px;
    /* Padding inside the heading */
    border-left: 5px solid #818183;
    /* Blue left border */
    /* font-family: 'Arial', sans-serif;  Font family */
    font-size: 1.5em;
    font-weight: normal;
    /* Font size */
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    /* Space below the heading */
    width: 95%;

  }

  h3 a {
    color: #98BFF4;
    text-decoration: none;
    /* 必要に応じて装飾を調整 */
    transition: color 0.3s ease;
    /* スムーズな色変化 */
  }

  h3 a:hover {
    color: #B3D4FF;
    /* 少し薄い色 */
    text-decoration: underline;
    /* ホバー時の装飾（任意） */
  }


  /* ここからコメントアウト
  h3 {
    font-family: 'BIZ UDPGothic',Helvetica Neue, Arial, Hiragino Sans, Hiragino Kaku Gothic ProN, BIZ UDPGothic, Meiryo, sans-serif;
    position: relative;
    padding-top: 20px;
    padding-left: 25px;
    text-align: left;
    margin-right: auto;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  h3:before {
    text-align: left;
    position: absolute;
    content: '';
    bottom: -3px;
    left: 0;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 15px transparent;
    border-bottom: solid 15px rgba(32, 35, 45, 1.00);
  }

  h3:after {
    text-align: left;
    position: absolute;
    content: '';
    bottom: -3px;
    left: 10px;
    width: 97.5%;
    border-bottom: solid 3px rgba(32, 35, 45, 1.00);
  }
  ここまでコメントアウト */
  h4 {
    font-size: 1.18rem;
    color: #150c20;
    font-weight: normal;
    margin-top: 20px;
  }

  /* カラム構成 */
  body {

    background-image: url(https://jinsoku.net/common/img/wall.png);
    background-attachment: fixed;

  }

  /* 親要素、全てのコンテンツはこの中に入る。主に横幅を決める。 */
  .clear {
    clear: both;
  }

  img.width80 {
    width: 80%;
    height: 80%;
  }

  .header {
    width: 100%;
    height: 40px;

    z-index: 100;
    padding-top: 2px;
    padding-bottom: 2px;
    background-color: #3C4043;
    align-items: center;
  }

  .header-text {

    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #3C4043;
    align-items: center;

  }

  .all {
    height: 100%;
    width: 100%;
    max-width: 1400px;
    padding-top: 2px;
    margin: 0 auto;
  }

  .main {
    height: 100%;
    width: 100%;
    background-color: white;
  }

  /* フッター */
  .footer {

    width: 100%;
    display: flex;
    background-color: #3C4043;
    align-items: left;
    text-align: left;
    color: white;

  }

  .fotter-text {
    width: 100%;
    max-width: 1400px;
    min-width: 815px;
    margin: 0 auto;
    align-items: center;
    font-size: 0.835rem;

  }

  .fotter-left {
    width: 33%;
    float: left;
    font-size: 0.835rem;
  }

  .fotter-center {
    width: 33%;
    float: left;
    font-size: 0.835rem;

  }

  .fotter-right {
    width: 34%;
    float: left;
    font-size: 0.835rem;
    clear: both;
  }

  .copyright {
    padding-top: 15px;
    font-size: 0.835rem;
    text-align: center;
    width: 100%;
  }

  ul.footer_list {
    padding: 0.5em;
    padding-top: 20px;
    list-style-type: none;
  }





  ul.footer_list li {
    padding-left: 11px;
    padding-top: 9px;
    background-size: 12px auto;
  }


  ul.footer_list a {
    position: relative;
    display: inline-block;
    color: white;
    transition: .3s;
  }


  ul.footer_list a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 0;
    height: 2px;
    background-color: #0D6BB4;
    transition: .3s;
  }

  ul.footer_list a:hover::after {
    width: 100%;
  }


  ul.footer_list ol {
    padding-left: 8px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 15px;
    width: 40%;
    border-left: solid 4px #0D6BB4;

  }


  ul.data, ol.data {
    background: #fcfcfc;
    /*背景色*/
    padding: 0.5em 0.5em 0.5em 2em;
    /*ボックス内の余白*/
    border: solid 2px gray;
    /*線の種類 太さ 色*/
  }

  ul.data li, ol.data li {
    line-height: 1.2;
    /*文の行高*/
    padding: 0.5em 0;
    /*前後の文との余白*/
  }


  /* フッターここまで */

  .main-contents {
    color: #000;
    float: left;
    width: 100%;
    background-color: white;

  }

  /* 左メニュー */
  .left-navi {
    color: #000;
    width: 295px;
    float: left;
  }

  .left-tracking {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #000;
    width: 302px;
    float: left;
    height: 100%;
  }

  .left-tracking .grow {
    flex-grow: 1;
    width: 100%;
  }

  #left-nav {
    list-style: none;
  }

  #left-nav li {
    border-top: 1px solid #c0c0c0;
    width: 100%;
    padding: 5px 4px;
    margin-right: 2px;
    text-align: left;
    color: #33363B;
    background-color: #F8F8F8;
    font-size: 0.825rem;
  }

  #left-nav li a {
    display: block;
    height: 100%;
    width: 100%;
  }


  #left-nav ol {
    width: 100%;
    padding: 6px 4px;
    margin-right: 2px;
    text-align: center;
    color: #FCFCFC;
    background-color: #3C4043;
    font-weight: bold;
  }

  .left-menu3 {
    list-style: none;
    border-bottom: 1px solid #c0c0c0;
    width: 100%;
    padding: 3.5px 2.5px;
    margin-right: 2px;
    text-align: left;
    background-color: #d0d4dd;
    font-size: 0.87rem;
    border-right: 1px solid #c0c0c0;
    border-left: 1px solid #c0c0c0;
  }


  .left-menu2 {
    display: block;
    color: #333333;
    list-style: none;
    border-bottom: 1px solid #c0c0c0;
    width: 100%;
    padding: 3.5px 2.5px;
    margin-right: 2px;
    text-align: left;
    background-color: #F8F8F8;
    font-size: 0.87rem;
    transition: background-color 0.05s, color 0.15s;
    border-right: 1px solid #c0c0c0;
    border-left: 1px solid #c0c0c0;
  }

  .left-menu2 a {
    display: block;
    color: #333333;
    height: 100%;
    width: 100%;
  }

  .left-menu2:hover {
    background-color: #5a5a5a36;
    color: rgb(87, 87, 87);
  }

  .left-menu1 {
    width: 100%;
    padding: 3.5px 2.5px;
    margin-right: 2px;
    text-align: center;
    color: #FCFCFC;
    background-color: #3C4043;
    font-weight: 400;
    border-right: 1px solid #000000;
    border-left: 1px solid #000000;
    border-bottom: 1px solid #c0c0c0;
  }

  /* 左メニューここまで */


  .right-navi {

    color: #000;
    float: right;
    text-align: left;
    width: -webkit-calc(100% - 315px);
    width: calc(100% - 315px);


  }

  .context {
    color: #000;
    text-align: left;
    padding-left: 4px;
    padding-right: 4px;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 98%;
    font-size: 0.945rem;

  }

  .context2 {
    color: #000;
    text-align: left;
    line-height: 1.875rem;
    padding-left: 4px;
    padding-right: 4px;
    padding-top: 10px;
    padding-bottom: 20px;
    width: 98%;
    font-size: 0.945rem;

  }


  ul.info {
    counter-reset: list;
    list-style-type: none;
    font: 14px/1.6;
    padding: 0;
  }

  ul.info li {
    position: relative;
    color: #333;
    padding: 0 0 0 20px;
    margin: 7px 0px;
    line-height: 30px;
    border-bottom: dashed 1px #ccc;
  }

  ul.info li:before {
    counter-increment: list;
    content: counter(list) ".";
    display: block;
    position: absolute;
    left: 0px;
    font-weight: bold;
    top: 14.5px;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }


  table.gameinfo {
    width: 75%;
    border-collapse: collapse;
  }

  table.gameinfo tr {
    border-bottom: solid 2px white;
  }

  table.gameinfo tr:last-child {
    border-bottom: none;
  }

  table.gameinfo th {
    position: relative;
    text-align: center;
    padding-left: 4px;
    width: 30%;
    background-color: #686A6F;
    color: white;
    padding: 10px 0;
  }


  table.gameinfo td {
    z-index: -1;
    text-align: left;
    width: 70%;
    background-color: #eee;
    padding: 10px 5px;
  }

  /*ランキング表示用*/
  table.ranking {
    min-width: 50%;
    max-width: 100%;
  }

  table.ranking tr {
    border-bottom: solid 2px #1F1F1F;
  }

  table.ranking th {
    position: relative;
    background-color: #323232;
    color: white;
    text-align: center;
    padding: 5px 0;
  }

  table.ranking td {
    text-align: left;
    background-color: #eee;
    padding: 3px 5px;
  }

  table.ranking tr:nth-child(odd) td {
    text-align: left;
    background-color: #F5F5F5;
    padding: 3px 5px;
  }

  table.ranking td:nth-child(3) {
    text-align: right;
    padding: 3px 5px;
  }

  table.ranking tr:nth-child(odd) td:nth-child(3) {
    text-align: right;
    background-color: #F5F5F5;
    padding: 3px 5px;
  }


  /*目次*/
  .l_toc {
    width: 100%;
    max-width: 750.5px;
    margin: 10.5px;

  }


  .l_toc ol {
    background-color: #F8F8F8;
    padding-left: 0;
    list-style: none;
    counter-reset: section;
    padding: 20px;
  }

  .child_ol li {
    padding-left: 20px;
    padding-bottom: 7px;

  }

  section {
    max-width: 300px;
    margin: 0 auto;
    align-items: left;
  }

  a.btn_10 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    background: #fff;
    position: relative;
  }

  a.btn_10 span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background: #fff;
    box-sizing: border-box;
    color: #333;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-decoration: none;
    box-shadow: 0px 5px 12px #CAD4E2, -6px -6px 12px #FFF;
    border-radius: 10px;
    position: absolute;
    top: -5px;
    left: 0;
    transition-duration: 0.2s;
  }

  a.btn_10:hover span {
    left: 0;
    top: 0;
    box-shadow: 0 0 4px #CAD4E2, -2px -2px 4px #FFF;
  }

  section {
    max-width: 300px;
    margin: 0 auto;
  }

  button.btn_03 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    position: relative;
    background: #228bc8;
    border: 1px solid #228bc8;
    border-radius: 30px;
    box-sizing: border-box;
    padding: 0 45px 0 25px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    transition-duration: 0.3s;
  }

  button.btn_03:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 25px;
    margin-top: -6px;
  }

  button.btn_03:hover {
    background: #fff;
    color: #228bc8;
  }

  button.btn_03:hover:before {
    border-top: 2px solid #228bc8;
    border-right: 2px solid #228bc8;
  }

  /*** チェックボックス ***/
  .mycheckbox {

    width: 100%;
    padding-top: 2px;
    padding-bottom: 12px;
    padding-left: 8px;
    align-items: center;

  }

  /* 元々のチェックボックス（非表示） */
  .mycheckbox input[type="checkbox"] {
    display: none;
  }

  /* チェックボックスの代わりを成すラベル */
  .mycheckbox input[type="checkbox"]+label {
    display: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
  }

  /* ラベルの左に表示させる正方形のボックス□ */
  .mycheckbox input[type="checkbox"]+label::before {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    left: 0;
    top: 50%;
    border: 1px solid;
    border-color: #585753;
    /* 枠の色変更 お好きな色を */
    background-color: #FFF;
    /* 背景の色変更 お好きな色を */
  }

  /* チェックが入った時のレ点 */
  .mycheckbox input[type="checkbox"]:checked+label::after {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 18px;
    height: 9px;
    margin-top: -9px;
    top: 50%;
    left: 3px;
    transform: rotate(-45deg);
    border-bottom: 3px solid;
    border-left: 3px solid;
    border-color: #585753;
    /* チェックの色変更 お好きな色を */
  }
}

/*レスポンシブPC用ここまで*/




@media screen and (max-width: 863.98px) {

  .table-of-contents {
    margin: 0 auto;
    padding-top: 13px;
    padding-bottom: 20px;
    min-width: 98%;
    max-width: 98%;

    font-size: 0.95rem;
    border: solid 2px #524f4f;
    background: #f8f8f8;
    border-radius: 8px;
  }

  .chart1 {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
  }

  .h5 {
    overflow-wrap: break-word;
    font-size: 1.4rem;
    margin: 0 0 3px 0;
    box-sizing: border-box;
  }

  .advice-range {
    padding-top: 2em;
    padding-bottom: 1em;
  }

  .advice-header {
    max-width: 90%;
    display: inline-block;
    background: #404040;
    color: whitesmoke;
    border-radius: 5px;
    padding: 2px 10px;
    letter-spacing: 0.12em;

    box-sizing: border-box;
    position: relative;
    top: -15px;
    left: 0%;
    font-size: 1.12rem;
    margin: 0 0 3px 0;
  }

  .advice-header a {
    color: whitesmoke;
  }

  .advice-header a:hover {
    color: rgb(213, 214, 236);
  }

  .advice-header2 {
    max-width: 90%;
    display: inline-block;
    background: #404040;
    color: whitesmoke;
    border-radius: 5px;
    padding: 2px 10px;
    letter-spacing: 0.12em;

    box-sizing: border-box;
    position: relative;
    top: -15px;
    left: 2%;
    font-size: 1.12rem;
    margin: 0 0 3px 0;
  }

  .advice-header2 a {
    color: whitesmoke;
  }

  .advice-header2 a:hover {
    color: rgb(213, 214, 236);
  }

  .right {
    display: flex;
    justify-content: flex-end;
    position: relative;
    bottom: 5px;
  }

  .advice-after {
    max-width: 90%;
    display: inline-block;
    background: #404040;
    color: whitesmoke;
    border-radius: 5px;
    padding: 2px 10px;
    letter-spacing: 0.12em;
    transform: rotate(-90deg);

    box-sizing: border-box;
    position: relative;

    right: 0%;
    font-size: 1.35rem;
    margin: 0 0 3px 0;
  }

  .advice-after:hover {
    max-width: 90%;
    display: inline-block;
    background: #575656;
    color: whitesmoke;
    border-radius: 5px;
    padding: 2px 10px;
    letter-spacing: 0.12em;
    transform: rotate(-90deg);

    box-sizing: border-box;
    position: relative;

    right: 0%;
    font-size: 1.35rem;
    margin: 0 0 3px 0;
  }

  .border-box {
    background-color: #f8f8f8;
    min-width: 90%;
    max-width: 93%;
    display: block;
    border: 2px solid rgb(82, 79, 79);
    position: relative;
    border-radius: 8px;
  }

  .border-box2 {
    background-color: #fcfcfc;
    min-width: 98%;
    max-width: 98%;
    display: block;
    border: 2px solid rgb(82, 79, 79);
    position: relative;
    border-radius: 8px;
  }

  .inner {
    width: 90%;
    padding-left: 2%;
    padding-right: 2%;
    margin: 0 auto 0 auto;
  }

  .inner2 {
    width: 100%;
    padding-left: 0%;
    padding-right: 0%;
    margin: 0 auto 0 auto;
  }

  p.advice {
    position: relative;
    top: -15px;
  }


  #scroll-to-top-btn2 {
    font-family: 'Noto Sans JP', Helvetica Neue, Arial, Hiragino Sans, Hiragino Kaku Gothic ProN, BIZ UDPGothic, Meiryo, sans-serif;
    position: fixed;
    right: 25px;
    bottom: 60px;
    /* 位置を下げる */
    height: 60px;
    /* サイズを大きく */
    width: 60px;
    /* サイズを大きく */
    color: #FFF;
    font-size: 30px;
    font-weight: bold;
    background-color: #9E9E9E;
    border: none;
    border-radius: 50%;
    transform: rotate(-90deg);
    opacity: 0;
    transition-duration: 0.5s;
    cursor: pointer;
    /* マウスカーソルをポインタに */
  }

  #scroll-to-top-btn2:hover {
    background: #71c3f3;
    /* マウスオーバー時の色を変更 */
    color: #FFF;
    /* マウスオーバー時の文字色を変更 */
    transform: rotate(-90deg) translateX(-4px);
  }

  #scroll-to-top-btn {
    display: none;
  }



  .left-ad-tsuiseki {
    display: none;
  }

  textarea {
    width: 100%;
    height: 100px;
    resize: vertical;
  }


  .left-menu3 {
    list-style: none;
    border-top: 1px solid #c0c0c0;
    width: 100%;
    padding: 8px 0px;
    text-align: left;
    background-color: #d0d4dd;
    font-size: 11.5pt;
  }

  .left-menu2 {
    list-style: none;
    border-top: 1px solid #c0c0c0;
    width: 100%;
    padding: 8px 0px;
    text-align: left;
    background-color: #F8F8F8;
    font-size: 11.5pt;
  }

  .left-menu2:a {
    display: block;
    color: #4088EC;
    height: 100%;
    width: 100%;
  }

  .left-menu2:hover {
    background-color: #D0D0D0;
    color: #1154B0;
  }

  .left-menu1 {
    width: 100%;
    padding: 8px 0px;
    text-align: center;
    color: #FCFCFC;
    background-color: #3C4043;
    font-weight: bold;
  }

  img {
    max-width: 98%;
    height: auto;
  }

  .logo {
    color: white;
    padding-top: .3125rem;
    padding-left: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.2rem;
    letter-spacing: 0.115em;
    text-decoration: none;
    white-space: nowrap;
  }

  h1 {
    background-color: #494848;
    /* Light grey background */
    color: #f2f2f2;
    /* Dark grey text color */
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    /* Padding inside the heading */
    padding-left: 1rem;
    /* Optional: add left padding to avoid content touching the border */
    border-left: 5px solid #818183;
    /* Blue left border */
    font-size: 1.2em;
    font-weight: normal;
    /* Font size */
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    /* Space below the heading */
    width: 100%;
    box-sizing: border-box;
    /* Include border in element's width and height */
  }

  h2 {
    padding: 0.1rem 2rem;
    border-top: 3px dashed #000;
    border-bottom: 3px dashed #000;

  }

  h3 {
    background-color: #494848;
    /* Light grey background */
    color: #f2f2f2;
    /* Dark grey text color */
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    /* Padding inside the heading */
    padding-left: 1rem;
    /* Optional: add left padding to avoid content touching the border */
    border-left: 5px solid #818183;
    /* Blue left border */
    font-size: 1.2em;
    font-weight: normal;
    /* Font size */
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    /* Space below the heading */
    width: 100%;
    box-sizing: border-box;
    /* Include border in element's width and height */
  }

  h3 a {
    color: #98BFF4;
    text-decoration: none;
    /* 必要に応じて装飾を調整 */
    transition: color 0.3s ease;
    /* スムーズな色変化 */
  }

  h3 a:hover {
    color: #B3D4FF;
    /* 少し薄い色 */
    text-decoration: underline;
    /* ホバー時の装飾（任意） */
  }


  h4 {
    font-size: 1.18rem;
    color: #150c20;
    font-weight: normal;
    margin-top: 20px;
  }

  /* カラム構成 */
  body {
    height: 100%;
    background-color: #E3E3E3;
    font-size: 12pt;
  }

  /* 親要素、全てのコンテンツはこの中に入る。主に横幅を決める。 */
  .clear {
    clear: both;
  }


  .header {
    width: 100%;

    height: 35px;
    z-index: 100;
    padding-bottom: 5px;
    display: flex;
    background-color: #3C4043;
    align-items: center;
    border-bottom: 1px solid #c0c0c0;
  }

  .header-text {
    width: 100%;
    margin: 0 auto;
    background-color: #3C4043;
    align-items: center;

  }

  .all {
    width: 100%;
    padding-top: 2px;
    text-align: center;
    margin: 0 auto;
  }

  .main {
    width: 100%;
    background-color: white;
  }

  /* フッター */
  .footer {

    width: 100%;
    display: flex;
    background-color: #3C4043;
    align-items: left;
    text-align: left;
    color: white;

  }

  .fotter-text {
    width: 100%;
    margin: 0 auto;
    align-items: center;
    font-size: 14px;

  }

  .fotter-left {
    width: 100%;
    float: left;
    font-size: 14px;
  }

  .fotter-center {
    width: 100%;
    float: left;
    font-size: 14px;

  }

  .fotter-right {
    width: 100%;
    float: right;
    font-size: 14px;
    clear: both;
  }

  .copyright {
    font-size: 12px;
    padding-top: 20px;
    align-items: left;
    text-align: left;
    width: 100%;
  }

  ul.footer_list {
    padding: 0.5em;
    list-style-type: none;
  }

  ul.footer_list li {
    padding-left: 20px;
    padding-top: 8px;
    background-size: 14px auto;
  }




  ul.footer_list ol {
    padding-left: 20px;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 14px;
    width: 90%;
    border-bottom: dotted 2px #cecccd;
    list-style: none;

    background-size: 13px auto;
  }


  ul.data, ol.data {
    background: #fcfcfc;
    /*背景色*/
    padding: 0.5em 0.5em 0.5em 2em;
    /*ボックス内の余白*/
    border: solid 3px gray;
    /*線の種類 太さ 色*/
  }

  ul.data li, ol.data li {
    line-height: 1.2;
    /*文の行高*/
    padding: 0.5em 0;
    /*前後の文との余白*/
  }

  /* フッターここまで */

  .main-contents {
    color: #000;
    float: left;
    width: 100%;
    background-color: white;
  }

  /* 左メニュー */
  .left-navi {
    color: #000;
    width: 100%;
    float: left;
    height: 100%;
  }

  .sp-none {
    display: none
  }

  #left-nav {
    list-style: none;
  }

  #left-nav li {
    border-top: 1px solid #c0c0c0;
    width: 100%;
    padding: 8px 0px;
    text-align: left;
    color: #33363B;
    background-color: #F8F8F8;
    font-weight: inherit;
    font-size: 11.5pt;
  }

  #left-nav li a {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
    font-weight: inherit;
  }

  #left-nav ol {

    width: 100%;
    padding: 8px 0px;
    text-align: center;
    color: #FCFCFC;
    background-color: #3C4043;
    font-weight: bold;
  }


  /* 左メニューここまで */


  .right-navi {

    color: #000;
    float: right;
    text-align: left;

    width: 100%;


  }

  .context {
    color: #000;
    text-align: left;
    padding-left: 4px;
    padding-right: 4px;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 98%;
    font-size: 0.875rem
  }

  .context2 {
    color: #000;
    text-align: left;
    line-height: 1.875rem;
    padding-left: 4px;
    padding-right: 4px;
    padding-top: 10px;
    padding-bottom: 20px;
    width: 98%;
    font-size: 0.875rem;

  }

  ul.info {
    counter-reset: list;
    font: 14px/1.6;
    padding: 0;

    list-style-type: disc;
    list-style-position: outside;
  }

  ul.info li {
    position: relative;
    color: #333;
    padding: 0 0 0 20px;
    margin: 7px 0px;

    border-bottom: dashed 1px #ccc;
  }

  ul.info li:before {
    counter-increment: list;
    content: counter(list) ".";
    display: block;
    position: absolute;
    left: 0px;
    font-weight: bold;
    top: 12.5px;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }



  table.gameinfo {
    width: 98%;
    border-collapse: collapse;
  }

  table.gameinfo tr {
    border-bottom: solid 2px white;
  }

  table.gameinfo tr:last-child {
    border-bottom: none;
  }

  table.gameinfo th {
    position: relative;
    text-align: left;
    width: 30%;
    background-color: #686A6F;
    color: white;
    text-align: center;
    padding: 10px 0;
  }

  table.gameinfo th:after {
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top: calc(50% - 10px);

  }

  table.gameinfo td {
    text-align: left;
    width: 70%;
    text-align: center;
    background-color: #eee;
    padding: 10px 0;
  }

  /*目次*/
  .l_toc {
    width: 90%;
    margin: 10.5px;
    font-weight: inherit;
  }


  .l_toc ol {
    background-color: #F8F8F8;
    padding-left: 0;
    list-style: none;
    counter-reset: section;
    padding: 20px;
  }

  .l_toc li {
    list-style: none;
    font-weight: inherit;
    padding-bottom: 6px;

  }

  /*ランキング表示用*/
  table.ranking {
    width: 100%;

  }

  table.ranking tr {
    border-bottom: solid 2px #1F1F1F;
  }

  table.ranking th {
    position: relative;
    background-color: #323232;
    color: white;
    text-align: center;
    padding: 5px 0;
  }

  table.ranking td {
    text-align: left;
    background-color: #eee;
    padding: 3px 5px;
  }

  table.ranking tr:nth-child(odd) td {
    text-align: left;
    background-color: #F5F5F5;
    padding: 3px 5px;
  }

  table.ranking td:nth-child(3) {
    text-align: right;
    padding: 3px 5px;
  }

  table.ranking tr:nth-child(odd) td:nth-child(3) {
    text-align: right;
    background-color: #F5F5F5;
    padding: 3px 5px;
  }


  a.btn_10 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30px;
    box-sizing: border-box;
    background: #fff;
    position: relative;
  }

  a.btn_10 span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30px;
    background: #fff;
    box-sizing: border-box;
    color: #333;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-decoration: none;
    box-shadow: 0px 5px 12px #CAD4E2, -6px -6px 12px #FFF;
    border-radius: 10px;
    position: absolute;
    top: -5px;
    left: 0;
    transition-duration: 0.2s;
  }

  a.btn_10:hover span {
    left: 0;
    top: 0;
    box-shadow: 0 0 4px #CAD4E2, -2px -2px 4px #FFF;
  }

  section {
    max-width: 300px;
    margin: 0 auto;
  }

  button.btn_03 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    position: relative;
    background: #228bc8;
    border: 1px solid #228bc8;
    border-radius: 30px;
    box-sizing: border-box;
    padding: 0 45px 0 25px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    transition-duration: 0.3s;
  }

  button.btn_03:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 25px;
    margin-top: -6px;
  }

  button.btn_03:hover {
    background: #fff;
    color: #228bc8;
  }

  button.btn_03:hover:before {
    border-top: 2px solid #228bc8;
    border-right: 2px solid #228bc8;
  }

  /*** チェックボックス ***/
  .mycheckbox {

    width: 100%;
    padding-top: 2px;
    padding-bottom: 12px;
    padding-left: 8px;
    align-items: center;

  }

  /* 元々のチェックボックス（非表示） */
  .mycheckbox input[type="checkbox"] {
    display: none;
  }

  /* チェックボックスの代わりを成すラベル */
  .mycheckbox input[type="checkbox"]+label {
    display: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
  }

  /* ラベルの左に表示させる正方形のボックス□ */
  .mycheckbox input[type="checkbox"]+label::before {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    left: 0;
    top: 50%;
    border: 1px solid;
    border-color: #585753;
    /* 枠の色変更 お好きな色を */
    background-color: #FFF;
    /* 背景の色変更 お好きな色を */
  }

  /* チェックが入った時のレ点 */
  .mycheckbox input[type="checkbox"]:checked+label::after {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 18px;
    height: 9px;
    margin-top: -9px;
    top: 50%;
    left: 3px;
    transform: rotate(-45deg);
    border-bottom: 3px solid;
    border-left: 3px solid;
    border-color: #585753;
    /* チェックの色変更 お好きな色を */
  }

  p.list::before {
    font-size: 1.15em;
    /* スマホ用にアイコンのサイズを調整する */
    transform: translateY(0.25em);
    /* スマホ用にアイコンの垂直位置を調整する */
  }

}

/*レスポンシブスマホ用ここまで*/
