@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #000;
}

#loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}

.loader-text {
  color: #fff;
  font-size: 80px;
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

.char {
  display: inline-block;
  /* flexではなくこちらを使う */
  opacity: 0;
  -webkit-transform: rotateY(-90deg);
          transform: rotateY(-90deg);
  -webkit-animation: flipChar 0.6s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
          animation: flipChar 0.6s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: pre;
  /* スペースを維持する */
}
.char:nth-child(-n+11) {
  color: #ff0000;
}

@-webkit-keyframes flipChar {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
            transform: rotateY(-90deg);
    text-shadow: 0 0 0px #fff;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 20px #fff;
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    text-shadow: 0 0 0px #fff;
  }
}

@keyframes flipChar {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
            transform: rotateY(-90deg);
    text-shadow: 0 0 0px #fff;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 20px #fff;
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    text-shadow: 0 0 0px #fff;
  }
}
.loader-finish {
  opacity: 0;
  pointer-events: none;
}

.lesson header {
  background-color: #000;
  padding: 10px 54px;
}
.lesson header .logo a {
  width: 145px;
  display: block;
}
.lesson header .logo a img {
  width: 100%;
  height: auto;
}

main {
  background-color: #333;
}

.section-title {
  position: relative;
  text-align: center;
  color: #ff0000;
  font-size: 48px;
  background: -webkit-gradient(linear, left top, right top, from(red), color-stop(100%, #999), to(#ffcc70));
  background: linear-gradient(90deg, red, #999 100%, #ffcc70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 30px;
  font-family: Roboto, sans-serif;
  letter-spacing: 9.6px;
  margin-bottom: 60px;
}
.section-title::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 3px;
  border-bottom: 3px solid #ff0000;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.sp-view {
  display: none;
}

.pc-view {
  display: block;
}

@media screen and (max-width: 854px) {
  .loader-text {
    font-size: 10.1781170483vw;
  }
  .lesson header {
    padding: 3.0534351145vw;
  }
  .lesson header .logo a {
    width: 28.2442748092vw;
  }
  .section-title {
    font-size: 8.1424936387vw;
    padding-bottom: 5.0890585242vw;
    letter-spacing: 1.6284987277vw;
    margin-bottom: 7.6335877863vw;
  }
  .section-title::after {
    width: 15.2671755725vw;
    height: 0.7633587786vw;
    border-bottom: 0.7633587786vw solid #ff0000;
  }
  .sp-view {
    display: block;
  }
  .pc-view {
    display: none;
  }
}
.neon-wrapper {
  padding: 50px;
}

.neon-text {
  font-family: noto-sans-jp, sans-serif;
  font-size: 100px;
  font-weight: bold;
  color: transparent;
  /* 文字の中身を透明にする */
  -webkit-text-stroke: 2px #fff;
  /* 線の太さと色を指定 */
  position: relative;
  /* 多層レイヤーのシャドウでインナー＆アウターの発光を表現 */
  text-shadow: 0 0 5px transparent, 0 0 10px transparent, 0 0 20px transparent, 0 0 40px #000000, 0 0 80px #000000, 0 0 90px #000000, 0 0 100px #000000, 0 0 150px #000000;
  /* 点滅アニメーション */
  -webkit-animation: neon-flicker 2s infinite alternate;
          animation: neon-flicker 2s infinite alternate;
}

/* リアルなネオンのチカチカ感を再現 */
@-webkit-keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 5px transparent, 0 0 10px transparent, 0 0 20px transparent, 0 0 40px #fff, 0 0 80px #fff, 0 0 90px #fff;
    opacity: 1;
  }
  20%, 22%, 24%, 55% {
    /* 影を弱めて一瞬だけ暗くする */
    text-shadow: 0 0 2px transparent;
    opacity: 0.3;
  }
}
@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 5px transparent, 0 0 10px transparent, 0 0 20px transparent, 0 0 40px #fff, 0 0 80px #fff, 0 0 90px #fff;
    opacity: 1;
  }
  20%, 22%, 24%, 55% {
    /* 影を弱めて一瞬だけ暗くする */
    text-shadow: 0 0 2px transparent;
    opacity: 0.3;
  }
}
@media screen and (min-width: 855px) and (max-width: 894px) {
  .neon-text {
    font-size: 90px;
  }
}
.lesson-hero {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), color-stop(50%, rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.9))), url(../../images/lesson/bg.jpg);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.9) 100%), url(../../images/lesson/bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 80px;
}
.lesson-hero .st-Content__Body h2 {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 49px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.677px;
  padding-bottom: 30px;
}
.lesson-hero .st-Content__Body .fv-text {
  color: #E5E7EB;
  text-align: left;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 46px;
  font-weight: bold;
  letter-spacing: 5.4px;
}
.lesson-hero .st-Content__Body .line-attention {
  display: inline-block;
  font-size: 14px;
  line-height: 2;
  color: #E5E7EB;
  text-align: center;
  width: 300px;
  margin: auto;
}
.lesson-hero .st-Content__Body a {
  display: block;
  width: 300px;
  text-align: center;
  color: #000;
  font-size: 18px;
  text-decoration: none;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  padding: 10px 0;
}
.lesson-hero .st-Content__Body a:hover {
  background: #ff0000;
  color: #fff;
}
.lesson-hero .lesson-article {
  position: absolute;
  bottom: 44px;
  left: 80px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.95);
  width: 420px;
  border-radius: 16px;
}
.lesson-hero .lesson-article .information-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}
.lesson-hero .lesson-article .information-header p {
  color: #FF0000;
  font-size: 14px;
  letter-spacing: 2.8px;
}
.lesson-hero .lesson-article .information-header a {
  font-family: Roboto, sans-serif;
  width: 80px;
  height: 24px;
  border-radius: 30px;
  background: #222;
  font-size: 10px;
  letter-spacing: 2px;
  text-decoration: none;
  text-align: center;
  line-height: 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.lesson-hero .lesson-article .information-header a:hover {
  background-color: #ff0000;
}
.lesson-hero .lesson-article .information-body time {
  font-family: Roboto, sans-serif;
  display: block;
  color: #999;
  font-size: 14px;
  margin-bottom: 6px;
}
.lesson-hero .lesson-article .information-body h2 {
  color: #FFF;
  font-size: 14px;
  margin-bottom: 6px;
}

@media screen and (max-width: 854px) {
  @-webkit-keyframes neon-flicker {
    /* 0%から90%までは「光らない」安定した状態 */
    0%, 9%, 90%, 100% {
      text-shadow: none;
      opacity: 0.6;
    }
    /* 91%〜95%の間で、1回だけ「パッ」と控えめに光る */
    10%, 91%, 94% {
      text-shadow: 0 0 5px #fff, 0 0 10px #fff;
      opacity: 1;
    }
    /* 92%, 93% は一瞬消す（瞬きを表現） */
    12%, 92%, 93% {
      text-shadow: none;
      opacity: 0.6;
    }
  }
  @keyframes neon-flicker {
    /* 0%から90%までは「光らない」安定した状態 */
    0%, 9%, 90%, 100% {
      text-shadow: none;
      opacity: 0.6;
    }
    /* 91%〜95%の間で、1回だけ「パッ」と控えめに光る */
    10%, 91%, 94% {
      text-shadow: 0 0 5px #fff, 0 0 10px #fff;
      opacity: 1;
    }
    /* 92%, 93% は一瞬消す（瞬きを表現） */
    12%, 92%, 93% {
      text-shadow: none;
      opacity: 0.6;
    }
  }
  .neon-text {
    font-size: 10.6870229008vw;
    text-align: center;
    -webkit-text-stroke: 0.5089058524vw #fff;
    -webkit-animation: neon-flicker 3s infinite alternate;
            animation: neon-flicker 3s infinite alternate;
    color: transparent;
    opacity: 0.6;
  }
  .lesson-hero {
    padding: 0;
    display: block;
    min-height: auto;
    padding-top: 39.4402035623vw;
    padding-bottom: 15.2671755725vw;
    background-attachment: scroll;
  }
  .lesson-hero .st-Content__Body {
    width: 84.7328244275vw;
    margin: 0 auto 7.6335877863vw;
    letter-spacing: 0;
  }
  .lesson-hero .st-Content__Body .neon-container {
    margin-bottom: 6.8702290076vw;
  }
  .lesson-hero .st-Content__Body .fv-text {
    font-size: 4.3256997455vw;
    margin-bottom: 7.6335877863vw;
    text-align: center;
    font-weight: normal;
  }
  .lesson-hero .st-Content__Body a {
    width: 76.3358778626vw;
    margin: auto;
    padding: 2.5445292621vw 0;
    font-size: 4.5801526718vw;
  }
  .lesson-hero .st-Content__Body .line-attention {
    font-size: 3.5623409669vw;
    width: 76.3358778626vw;
    display: block;
  }
  .lesson-hero .lesson-article {
    position: relative;
    padding: 5.0890585242vw;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    width: 83.2061068702vw;
    margin: auto;
  }
  .lesson-hero .lesson-article .information-header {
    margin-bottom: 2.0356234097vw;
  }
  .lesson-hero .lesson-article .information-header p {
    font-size: 3.5623409669vw;
    letter-spacing: 0.7124681934vw;
  }
  .lesson-hero .lesson-article .information-header a {
    width: 20.3562340967vw;
    height: 6.106870229vw;
    font-size: 2.5445292621vw;
    letter-spacing: 2px;
    line-height: 6.106870229vw;
  }
  .lesson-hero .lesson-article .information-body time {
    font-size: 3.5623409669vw;
    margin-bottom: 1.5267175573vw;
  }
  .lesson-hero .lesson-article .information-body h2 {
    font-size: 3.5623409669vw;
    margin-bottom: 1.5267175573vw;
  }
}
/* --- 変数定義 --- */
/* --- モーダル全体（ラッパー） --- */
.modal-wrapper {
  /* アニメーションのために display: none ではなく flex + opacity で制御 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  /* 初期状態: 透明で見えなくする */
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  /* ★表示状態 (.active) */
}
.modal-wrapper.active {
  opacity: 1;
  visibility: visible;
}

/* --- 背景の黒いオーバーレイ --- */
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

/* --- モーダルの中身（白い箱） --- */
.modal-content {
  position: relative;
  background-color: #fff;
  /* デザイン設定 */
  width: 680px;
  max-width: 90%;
  max-height: 90vh;
  padding: 60px 40px;
  border-radius: 16px;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 10;
  overflow-y: auto;
  /* アニメーション設定 (元のコード2を優先) */
  /* 初期位置: 少し下にずらしておく */
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  /* 動きの滑らかさを設定 */
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.21, 1.02, 0.73, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.21, 1.02, 0.73, 1);
  transition: transform 0.3s cubic-bezier(0.21, 1.02, 0.73, 1);
  transition: transform 0.3s cubic-bezier(0.21, 1.02, 0.73, 1), -webkit-transform 0.3s cubic-bezier(0.21, 1.02, 0.73, 1);
  /* --- 閉じるボタン (元のコード1のデザイン) --- */
}
.modal-content .modal-close-btn {
  position: absolute;
  top: 24px;
  right: 40px;
  background: none;
  border: none;
  font-size: 10px;
  cursor: pointer;
  line-height: 24px; /* line-heightはheightに合わせる */
  background-color: #222;
  color: #fff;
  border-radius: 100px;
  width: 120px;
  height: 24px;
  text-align: center; /* 文字中央揃えを追加 */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.modal-content .modal-close-btn:hover {
  background-color: #ff0000;
}
.modal-content {
  /* --- 記事本文スタイル (元のコード1のデザイン) --- */
}
.modal-content .modal-body time {
  display: block; /* 念のためブロック化 */
  color: #999;
  font-size: 14px;
  margin-bottom: 10px;
}
.modal-content .modal-body h2 {
  margin-top: 0;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 20px;
  color: #000;
  font-size: 24px; /* 見出しサイズが未指定だったので適当に追加 */
}
.modal-content .modal-body img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px; /* 画像の下に少し余白 */
}
.modal-content .modal-body .entry-content {
  color: #222;
  line-height: 1.6;
  font-weight: 500;
}
.modal-content .modal-body .entry-content p {
  margin-bottom: 15px;
}
.modal-content .modal-body .entry-content a {
  color: #ff0000;
  text-decoration: underline;
}
.modal-content .modal-body .entry-content a:hover {
  text-decoration: underline;
}

/* --- ★表示時のアニメーション発火 --- */
/* 親(.modal-wrapper)にactiveがついたら、中身を元の位置に戻す */
.modal-wrapper.active .modal-content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.information-list {
  background-color: #000;
  margin: 60px auto;
  padding: 30px;
  width: 796px;
  border-radius: 16px;
}
.information-list h3 {
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
  color: #ff0000;
  background: -webkit-gradient(linear, left top, right top, from(red), color-stop(100%, #999), to(#ffcc70));
  background: linear-gradient(90deg, red, #999 100%, #ffcc70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2.8px;
}
.information-list time {
  font-family: Roboto, sans-serif;
  display: block;
  color: #999;
  font-size: 14px;
  margin-bottom: 6px;
}
.information-list h2 {
  color: #FFF;
  font-size: 14px;
  margin-bottom: 6px;
}

@media screen and (max-width: 854px) {
  .information-list {
    padding: 7.6335877863vw;
    width: 84.7328244275vw;
    margin: 15.2671755725vw auto;
  }
  .information-list h3 {
    font-size: 4.5801526718vw;
    margin-bottom: 3.8167938931vw;
    letter-spacing: 0.7124681934vw;
  }
  .information-list time {
    font-size: 3.5623409669vw;
    margin-bottom: 1.5267175573vw;
  }
  .information-list h2 {
    font-size: 3.5623409669vw;
    margin-bottom: 1.5267175573vw;
  }
}
.about {
  background: url("../../images/lesson/bg-about.png") repeat;
  background-size: contain;
  padding: 60px 0 0;
}
.about p {
  text-align: center;
  font-size: 18px;
  color: #E5E7EB;
  line-height: 1.6;
  margin-top: 20px;
}
.about p:nth-child(1) {
  margin-top: 0;
}

@media screen and (max-width: 854px) {
  .about {
    padding: 7.6335877863vw;
  }
  .about p {
    text-align: left;
    font-size: 4.0712468193vw;
    line-height: 1.75;
  }
}
.picture-area {
  width: 1035px;
  margin: 0 auto;
  padding: 60px 0;
}
.picture-area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 30px;
}
.picture-area ul li {
  width: calc(25% - 23px);
}
.picture-area ul li img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.picture-area img.js-zoom-img {
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border-radius: 16px;
}
.picture-area img.js-zoom-img:hover {
  opacity: 0.8;
}

.image-modal-wrapper {
  display: none;
  /* 初期状態は非表示 */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* Flexで上下左右中央寄せ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.image-modal-wrapper.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* 表示時にFlexにする */
}
.image-modal-wrapper .modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.image-modal-wrapper .image-modal-content {
  position: relative;
  z-index: 10;
  max-width: 90%;
  max-height: 90vh;
  /* 画面からはみ出さない */
}
.image-modal-wrapper .image-modal-content img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}
.image-modal-wrapper .image-modal-content .close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}
.image-modal-wrapper .image-modal-content .close-btn:hover {
  color: #ddd;
}

@media screen and (max-width: 854px) {
  .picture-area {
    width: 100%;
    padding: 7.6335877863vw 0;
  }
  .picture-area ul {
    gap: 4.3256997455vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .picture-area ul li {
    width: 40.203562341vw;
  }
  .picture-area ul li img {
    height: 31.5521628499vw;
  }
  .image-modal-wrapper {
    display: none;
    /* 初期状態は非表示 */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Flexで上下左右中央寄せ */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .image-modal-wrapper.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* 表示時にFlexにする */
  }
  .image-modal-wrapper .modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
  }
  .image-modal-wrapper .image-modal-content {
    position: relative;
    z-index: 10;
    max-width: 90%;
    max-height: 90vh;
    /* 画面からはみ出さない */
  }
  .image-modal-wrapper .image-modal-content img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
  }
  .image-modal-wrapper .image-modal-content .close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
  }
  .image-modal-wrapper .image-modal-content .close-btn:hover {
    color: #ddd;
  }
}
.instructor {
  width: 1035px;
  margin: auto;
  padding: 60px 0;
}
.instructor ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  padding: 0;
}
.instructor li.js-instructor-trigger {
  width: calc(25% - 23px);
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.instructor li.js-instructor-trigger:hover {
  opacity: 0.8;
}
.instructor li.js-instructor-trigger figure {
  margin: 0;
  text-align: center;
}
.instructor li.js-instructor-trigger figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.instructor li.js-instructor-trigger figure figcaption {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1.27px;
  padding: 16px 0;
}
.instructor .hidden-data {
  display: none !important;
}

/* ==========================================================
   ▼ モーダルのスタイル (アニメーション対応版)
   ========================================================== */
/* --- モーダル全体（ラッパー） --- */
.instructor-modal-wrapper {
  /* display: none ではなく flex + opacity で制御 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 初期状態: 透明 */
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  /* ★表示状態 (.active) */
}
.instructor-modal-wrapper.active {
  opacity: 1;
  visibility: visible;
}

/* --- 背景の黒いオーバーレイ --- */
.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* 濃さを統一 */
  cursor: pointer;
}

/* --- モーダルの中身（白い箱） --- */
.instructor-modal-content {
  position: relative;
  background: #fff;
  /* サイズ設定 (記事モーダルと雰囲気を合わせつつ、2カラム用に少し広め) */
  width: 800px;
  max-width: 90%;
  max-height: 90vh;
  padding: 60px 40px;
  /* 余白を記事モーダルと統一 */
  border-radius: 16px;
  /* 角丸を統一 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 10;
  overflow-y: auto;
  /* アニメーション設定 (下からスッと) */
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.21, 1.02, 0.73, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.21, 1.02, 0.73, 1);
  transition: transform 0.4s cubic-bezier(0.21, 1.02, 0.73, 1);
  transition: transform 0.4s cubic-bezier(0.21, 1.02, 0.73, 1), -webkit-transform 0.4s cubic-bezier(0.21, 1.02, 0.73, 1);
  /* --- 閉じるボタン (記事モーダルと同じデザイン) --- */
}
.instructor-modal-content .close-btn {
  position: absolute;
  top: 24px;
  right: 40px;
  background: none;
  border: none;
  font-size: 10px;
  cursor: pointer;
  line-height: 24px;
  background-color: #222;
  color: #fff;
  border-radius: 100px;
  width: 120px;
  height: 24px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0;
}
.instructor-modal-content .close-btn:hover {
  background-color: #ff0000;
}

/* --- ★表示時のアニメーション発火 --- */
.instructor-modal-wrapper.active .instructor-modal-content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ==========================================================
   ▼ モーダルの中身（レイアウト）
   ========================================================== */
.instructor-modal-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 10px;
  /* 閉じるボタンとの被り防止のため少し下げる */
  /* 写真エリア */
}
.instructor-modal-inner .instructor-img {
  width: 40%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.instructor-modal-inner .instructor-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  /* 少しだけ角丸に */
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* 軽く影をつける */
}
.instructor-modal-inner {
  /* テキストエリア */
}
.instructor-modal-inner .instructor-text {
  width: 60%;
  color: #333;
}
.instructor-modal-inner .instructor-text h3 {
  margin: 0 0 20px;
  font-size: 32px;
  color: #222;
  display: block;
  font-weight: bold;
}
.instructor-modal-inner .instructor-text h3::after {
  content: "";
  border-bottom: 2px solid #ff0000;
  width: 60px;
  display: block;
  padding-top: 10px;
}
.instructor-modal-inner .instructor-text h3 span {
  font-size: 14px;
  font-weight: normal;
  display: block;
  padding-bottom: 20px;
}
.instructor-modal-inner .instructor-text .genre {
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 20px;
  color: #ff0000;
  background: -webkit-gradient(linear, left top, right top, from(red), color-stop(100%, #999), to(#ffcc70));
  background: linear-gradient(90deg, red, #999 100%, #ffcc70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.instructor-modal-inner .instructor-text .bio {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.instructor-modal-inner .instructor-text .bio-title {
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  color: #ff0000;
  background: -webkit-gradient(linear, left top, right top, from(red), color-stop(100%, #999), to(#ffcc70));
  background: linear-gradient(90deg, red, #999 100%, #ffcc70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 854px) {
  .instructor {
    width: 100%;
    padding: 7.6335877863vw;
  }
  .instructor ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    gap: 5.0890585242vw;
    overflow-x: scroll;
  }
  .instructor ul li.js-instructor-trigger figure {
    width: 66.1577608142vw;
  }
  .instructor ul li.js-instructor-trigger figure figcaption {
    font-size: 6.106870229vw;
    letter-spacing: 1.27px;
    padding: 3.5623409669vw 0;
  }
  .view-more {
    position: absolute;
    bottom: 27.989821883vw;
    right: 3.8167938931vw;
    background-color: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 2.0356234097vw;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .instructor-modal-content {
    padding: 10.1781170483vw 5.0890585242vw;
  }
  .instructor-modal-content .close-btn {
    top: 6.106870229vw;
    right: 5.0890585242vw;
    font-size: 2.5445292621vw;
    line-height: 1;
    width: 30.534351145vw;
    height: 6.106870229vw;
  }
  .instructor li.js-instructor-trigger {
    width: calc(100% - 7.6335877863vw);
    position: relative;
  }
  .instructor-modal-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    /* 縦並び */
  }
  .instructor-modal-inner .instructor-img,
  .instructor-modal-inner .instructor-text {
    width: 100%;
  }
  .instructor-modal-inner .instructor-img {
    margin-bottom: 6.106870229vw;
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 5.0890585242vw;
  }
  .instructor-modal-inner .instructor-text h3 {
    width: 100%;
    /* 下線を引き伸ばす */
  }
  .instructor-modal-inner .instructor-text {
    width: 100%;
  }
  .instructor-modal-inner .instructor-text h3 {
    margin: 0 0 5.0890585242vw;
    font-size: 6.106870229vw;
  }
  .instructor-modal-inner .instructor-text h3::after {
    content: "";
    border-bottom: 2px solid #ff0000;
    width: 15.2671755725vw;
    display: block;
    padding-top: 2.5445292621vw;
  }
  .instructor-modal-inner .instructor-text h3 span {
    font-size: 3.5623409669vw;
    font-weight: normal;
    display: block;
    padding-bottom: 5.0890585242vw;
  }
  .instructor-modal-inner .instructor-text .genre {
    font-size: 4.0712468193vw;
    margin-bottom: 5.0890585242vw;
  }
  .instructor-modal-inner .instructor-text .bio {
    font-size: 3.5623409669vw;
    margin-bottom: 0;
  }
  .instructor-modal-inner .instructor-text .bio-title {
    font-size: 4.0712468193vw;
    margin-bottom: 2.5445292621vw;
  }
  .dots-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.5445292621vw;
    margin-top: 3.8167938931vw;
  }
  .dot {
    width: 2.2900763359vw;
    height: 2.2900763359vw;
    background-color: #555;
    /* 通常時の色 */
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .dot.active {
    background-color: #ff0000;
    /* 該当する時の色 */
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    /* 少し大きくする */
  }
}
.schedule {
  width: 1035px;
  margin: auto;
  padding: 60px 0;
}
.schedule .schedule-title {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.schedule .schedule-wrapper .day-schedule {
  margin-bottom: 30px;
}
.schedule .schedule-wrapper .day-schedule .day-name {
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  color: #ff0000;
  background: -webkit-gradient(linear, left top, right top, from(red), color-stop(100%, #999), to(#ffcc70));
  background: linear-gradient(90deg, red, #999 100%, #ffcc70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.schedule .schedule-wrapper .day-schedule hr {
  border: none;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
}
.schedule .schedule-wrapper .day-schedule ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 30px;
}
.schedule .schedule-wrapper .day-schedule ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.schedule .schedule-wrapper .day-schedule ul li figure {
  width: 150px;
}
.schedule .schedule-wrapper .day-schedule ul li figure img {
  width: 100%;
  height: auto;
  border-radius: 16px 0 0 16px;
}
.schedule .schedule-wrapper .day-schedule ul li .schedule-details {
  background-color: #000;
  padding: 30px;
  border-radius: 0 16px 16px 0;
  width: 196px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.schedule .schedule-wrapper .day-schedule ul li .schedule-details p {
  color: #fff;
  font-size: 16px;
  text-align: center;
}
.schedule .schedule-wrapper .day-schedule ul li .schedule-details p:nth-child(3) {
  font-size: 14px;
}
.schedule .schedule-wrapper .day-schedule ul li .other-schedule {
  padding: 22px 17px;
}

.calendar-wrapper {
  position: relative;
  width: 100%;
  margin: 60px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.calendar-wrapper p {
  width: 502px;
  margin: auto;
}
.calendar-wrapper p img {
  width: 100%;
}

@media screen and (max-width: 854px) {
  .schedule {
    width: 100%;
    padding: 7.6335877863vw;
  }
  .schedule .schedule-title {
    font-size: 5.0890585242vw;
    gap: 2.5445292621vw;
    margin-bottom: 7.6335877863vw;
  }
  .schedule .schedule-wrapper .day-schedule {
    margin-bottom: 7.6335877863vw;
  }
  .schedule .schedule-wrapper .day-schedule .day-name {
    font-size: 5.0890585242vw;
  }
  .schedule .schedule-wrapper .day-schedule hr {
    border-bottom: 1px solid #fff;
    margin-bottom: 5.0890585242vw;
  }
  .schedule .schedule-wrapper .day-schedule ul {
    gap: 7.6335877863vw;
  }
  .schedule .schedule-wrapper .day-schedule ul li figure {
    width: 33.8422391858vw;
  }
  .schedule .schedule-wrapper .day-schedule ul li .schedule-details {
    padding: 5.0890585242vw;
    width: 50.8905852417vw;
  }
  .schedule .schedule-wrapper .day-schedule ul li .schedule-details p {
    font-size: 5.0890585242vw;
  }
  .schedule .schedule-wrapper .day-schedule ul li .schedule-details p:nth-child(3) {
    font-size: 4.0712468193vw;
  }
  .schedule .schedule-wrapper .day-schedule ul li .other-schedule {
    padding: 3.5623409669vw;
  }
  .calendar-wrapper {
    position: relative;
    width: 100%;
    margin: 7.6335877863vw auto 0;
    border-radius: 10px;
    display: block;
  }
  .calendar-wrapper p {
    width: 84.7328244275vw;
    margin: 4.0712468193vw auto 0;
  }
  .calendar-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    /* 強制的に幅100% */
    height: 100% !important;
    /* 強制的に高さ100% */
  }
}
.price {
  max-width: 1035px;
  margin: 0 auto;
}
.price .price-wrapper {
  margin-bottom: 60px;
}
.price .price-wrapper .price-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.price .price-wrapper .price-list {
  width: 500px;
}
.price .price-wrapper .price-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #757575;
  height: 112px;
  background-color: #222;
}
.price .price-wrapper .price-item dt {
  font-size: 18px;
  color: #fff;
  padding: 25px;
  width: 204px;
  background-color: #000;
  height: 111px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid #757575;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.price .price-wrapper .price-item dd {
  font-size: 24px;
  color: #fff;
  background-color: #222;
  padding: 25px;
  width: 300px;
  text-align: center;
}
.price .price-wrapper .price-item.visitor {
  border-bottom: none;
}
.price .price-section {
  width: 506px;
}
.price .price-table-wrapper {
  width: 100%;
}
.price .price-table {
  width: 100%;
  border-collapse: collapse;
}
.price .price-table th,
.price .price-table td {
  border: 1px solid #757575;
  text-align: center;
  vertical-align: middle;
  background-color: #000;
}
.price .price-table {
  /* --- ヘッダー行 --- */
}
.price .price-table thead {
  border: none;
}
.price .price-table thead th {
  color: #fff;
  font-weight: bold;
  padding: 15px;
  font-size: 16px;
  border-top: none;
}
.price .price-table thead .header-menu {
  border: none;
}
.price .price-table thead .header-ticket {
  border-right: none;
}
.price .price-table {
  /* --- ボディ --- */
}
.price .price-table tbody {
  /* 左側のメニュー列 (赤背景) */
}
.price .price-table tbody .menu-cell {
  background-color: #EF5350;
  color: #fff;
  font-weight: normal;
  font-size: 14px;
  width: 20%;
  border-left: none;
  border-bottom: none;
}
.price .price-table tbody {
  /* 真ん中の金額列 */
}
.price .price-table tbody .price-cell {
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  width: 33%;
  background-color: #222;
  border-bottom: none;
}
.price .price-table tbody {
  /* 右側のチケット列 */
}
.price .price-table tbody .ticket-cell {
  font-size: 24px;
  font-weight: normal;
  width: 33%;
  background-color: #222;
  color: #fff;
  height: 70px;
  border-right: none;
  border-bottom: none;
}
.price {
  /* --- 注釈テキスト --- */
}
.price .price-note {
  text-align: right;
  font-size: 12px;
  margin-top: 10px;
  width: 100%;
}
.price .price-note-mobile {
  background-color: #000;
  width: 100%;
  padding: 25px;
  margin: 60px auto;
  border-radius: 16px;
}
.price .price-note-mobile p.price-note-mobile-title {
  color: #f00;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.price .price-note-mobile p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: normal;
}

@media screen and (max-width: 854px) {
  .price {
    max-width: 100%;
    margin: 0 auto;
    padding: 7.6335877863vw;
  }
  .price .price-wrapper {
    margin-bottom: 0;
  }
  .price .price-wrapper .price-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .price .price-wrapper .price-list {
    width: 100%;
    margin-bottom: 7.6335877863vw;
  }
  .price .price-wrapper .price-item {
    border-bottom: 1px solid #757575;
    height: 22.9007633588vw;
  }
  .price .price-wrapper .price-item dt {
    font-size: 3.5623409669vw;
    color: #fff;
    padding: 5.7251908397vw 4.0712468193vw;
    width: 40.7124681934vw;
    height: 22.6463104326vw;
    border-right: 1px solid #757575;
  }
  .price .price-wrapper .price-item dd {
    font-size: 6.106870229vw;
    padding: 6.7430025445vw;
    width: 44.0203562341vw;
  }
  .price .price-section {
    width: 100%;
  }
  .price .price-table-wrapper {
    width: 100%;
  }
  .price .price-table {
    width: 100%;
    border-collapse: collapse;
  }
  .price .price-table th,
  .price .price-table td {
    border: 1px solid #757575;
  }
  .price .price-table {
    /* --- ヘッダー行 --- */
  }
  .price .price-table thead th {
    padding: 2.5445292621vw;
    font-size: 3.5623409669vw;
  }
  .price .price-table {
    /* --- ボディ --- */
  }
  .price .price-table tbody {
    /* 左側のメニュー列 (赤背景) */
  }
  .price .price-table tbody .menu-cell {
    font-size: 3.5623409669vw;
    width: 24%;
  }
  .price .price-table tbody {
    /* 真ん中の金額列 */
  }
  .price .price-table tbody .price-cell {
    font-size: 5.0890585242vw;
    letter-spacing: 0.2544529262vw;
    width: 30%;
  }
  .price .price-table tbody {
    /* 右側のチケット列 */
  }
  .price .price-table tbody .ticket-cell {
    font-size: 5.0890585242vw;
    width: 30%;
    height: 17.8117048346vw;
  }
  .price {
    /* --- 注釈テキスト --- */
  }
  .price .price-note {
    font-size: 2.5445292621vw;
    margin-top: 2.5445292621vw;
  }
  .price .price-note-mobile {
    padding: 6.3613231552vw;
    margin: 7.6335877863vw auto 0;
  }
  .price .price-note-mobile p.price-note-mobile-title {
    font-size: 4.5801526718vw;
    margin-bottom: 2.5445292621vw;
  }
  .price .price-note-mobile p {
    font-size: 3.5623409669vw;
    margin-bottom: 0;
  }
}
.conversion-area {
  background-color: #222;
  padding: 60px 0 60px;
}
.conversion-area p {
  color: #fff;
  font-size: 24px;
  text-align: center;
}
.conversion-area p span {
  font-size: 14px;
}
.conversion-area a {
  display: block;
  width: 300px;
  margin: auto;
  background-color: #fff;
  color: #222;
  border-radius: 100px;
  padding: 16px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}
.conversion-area a:hover {
  background-color: #ff0000;
  color: #fff;
}

.contact-area {
  padding: 120px 0 60px;
}
.contact-area p {
  margin-bottom: 60px;
}

@media screen and (max-width: 854px) {
  .conversion-area {
    padding: 15.2671755725vw 0;
  }
  .conversion-area p {
    font-size: 4.0712468193vw;
  }
  .conversion-area p span {
    font-size: 3.5623409669vw;
    line-height: 3;
  }
  .conversion-area a {
    width: 76.3358778626vw;
    padding: 4.0712468193vw 0;
    font-size: 4.5801526718vw;
  }
  .contact-area p {
    margin-bottom: 7.6335877863vw;
  }
}
.access {
  width: 1035px;
  margin: auto;
  padding: 60px 0;
}
.access-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.access-wrapper .address-info {
  width: 502px;
  background-color: #000;
  padding: 30px;
  border-radius: 16px;
}
.access-wrapper .address-info p:nth-child(1) {
  padding-bottom: 15px;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.access-wrapper .address-info p:nth-child(2) {
  padding-bottom: 5px;
}
.access-wrapper .address-info p:nth-child(3) {
  padding-bottom: 15px;
  font-weight: normal;
  font-size: 14px;
}
.access-wrapper .address-info p {
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}
.access-wrapper .address-info p a {
  font-size: 14px;
}
.access-wrapper .address-info .contact-item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.access-wrapper .address-info .contact-item a svg {
  margin-right: 4px;
}
.access-wrapper .address-info .contact-item a img {
  margin-right: 4px;
}
.access-wrapper .address-info p.contact {
  padding-bottom: 5px;
}
.access-wrapper .address-info .name {
  font-size: 16px;
  font-weight: bold;
}
.access-wrapper .address-info address {
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  padding-bottom: 15px;
}
.access-wrapper .address-info dl dt {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 5px;
}
.access-wrapper .address-info dl dd {
  font-size: 14px;
  font-weight: normal;
}
.access .google-map {
  margin-top: 60px;
  text-align: center;
  background: #000;
  padding: 15px;
  border-radius: 16px;
}
.access .google-map iframe {
  width: 100%;
  height: 640px;
  border: none;
}

@media screen and (max-width: 854px) {
  .access {
    width: 100%;
    padding: 7.6335877863vw;
  }
  .access-wrapper .address-info {
    width: 100%;
    padding: 7.6335877863vw;
    margin-bottom: 7.6335877863vw;
  }
  .access-wrapper .address-info p:nth-child(1) {
    padding-bottom: 3.8167938931vw;
  }
  .access-wrapper .address-info p:nth-child(2) {
    padding-bottom: 1.272264631vw;
  }
  .access-wrapper .address-info p:nth-child(3) {
    padding-bottom: 3.8167938931vw;
    font-size: 3.5623409669vw;
  }
  .access-wrapper .address-info p {
    font-size: 4.5801526718vw;
    gap: 8px;
  }
  .access-wrapper .address-info p a {
    font-size: 3.5623409669vw;
  }
  .access-wrapper .address-info .name {
    font-size: 4.0712468193vw;
  }
  .access-wrapper .address-info address {
    font-size: 3.5623409669vw;
    padding-bottom: 3.8167938931vw;
  }
  .access-wrapper .address-info dl dt {
    font-size: 4.0712468193vw;
    padding-bottom: 1.272264631vw;
  }
  .access-wrapper .address-info dl dd {
    font-size: 3.5623409669vw;
  }
  .access .google-map {
    margin-top: 0;
    padding: 3.8167938931vw;
  }
  .access .google-map iframe {
    width: 100%;
    height: 76.3358778626vw;
    border: none;
  }
}
.faq {
  width: 1035px;
  margin: 0 auto;
  padding: 60px 0;
  font-family: sans-serif;
}
.faq .faq-area {
  margin-bottom: 40px;
}
.faq .faq-area h3 {
  margin-bottom: 5px;
  font-size: 24px;
}
.faq {
  /* 質問リストごとのスタイル */
}
.faq .faq-list {
  margin-top: 10px;
}
.faq .is-open .faq-question {
  border-radius: 10px 10px 0 0;
}
.faq {
  /* 質問部分 (クリックできる場所) */
}
.faq .faq-question {
  position: relative;
  padding: 20px 30px;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  margin: 0;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border-radius: 10px;
}
.faq .faq-question:hover {
  opacity: 0.7;
}
.faq {
  /* 矢印アイコンの作成 (::afterのみ使用) */
}
.faq .faq-question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  /* 右端からの位置 */
  width: 10px;
  /* 矢印のサイズ */
  height: 10px;
  /* 白い線でL字を作る */
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  /* 初期状態：下矢印 (v) に回転 */
  /* translateYで垂直位置の微調整 */
  -webkit-transform: translateY(-60%) rotate(45deg);
          transform: translateY(-60%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq {
  /* 開いている状態：上矢印 (^) に回転 */
}
.faq .faq-list.is-open .faq-question::after {
  -webkit-transform: translateY(-20%) rotate(225deg);
          transform: translateY(-20%) rotate(225deg);
}
.faq {
  /* 回答部分 (最初は隠す) */
}
.faq .faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: height 0.3s ease, opacity 0.3s ease;
  transition: height 0.3s ease, opacity 0.3s ease;
}
.faq .faq-answer p {
  padding: 20px 30px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  background-color: #757575;
  border-radius: 0 0 10px 10px;
}
.faq {
  /* 開いた時に中身を表示するためのクラス */
}
.faq .faq-list.is-open .faq-answer {
  opacity: 1;
}

@media screen and (max-width: 854px) {
  .faq {
    width: 100%;
    margin: 0 auto;
    padding: 7.6335877863vw;
  }
  .faq .faq-area {
    margin-bottom: 7.6335877863vw;
  }
  .faq .faq-area h3 {
    margin-bottom: 3.5623409669vw;
    font-size: 5.0890585242vw;
  }
  .faq {
    /* 質問リストごとのスタイル */
  }
  .faq .faq-list {
    margin-top: 2.5445292621vw;
  }
  .faq {
    /* 質問部分 (クリックできる場所) */
  }
  .faq .faq-question {
    padding: 5.0890585242vw 15.2671755725vw 5.0890585242vw 7.6335877863vw;
    font-size: 3.5623409669vw;
  }
  .faq .faq-question:hover {
    opacity: 0.7;
  }
  .faq {
    /* 矢印アイコンの作成 (::afterのみ使用) */
  }
  .faq .faq-question::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 30px;
    /* 右端からの位置 */
    width: 10px;
    /* 矢印のサイズ */
    height: 10px;
    /* 白い線でL字を作る */
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    /* 初期状態：下矢印 (v) に回転 */
    /* translateYで垂直位置の微調整 */
    -webkit-transform: translateY(-60%) rotate(45deg);
            transform: translateY(-60%) rotate(45deg);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .faq {
    /* 開いている状態：上矢印 (^) に回転 */
  }
  .faq .faq-list.is-open .faq-question::after {
    -webkit-transform: translateY(-20%) rotate(225deg);
            transform: translateY(-20%) rotate(225deg);
  }
  .faq {
    /* 回答部分 (最初は隠す) */
  }
  .faq .faq-answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: height 0.3s ease, opacity 0.3s ease;
    transition: height 0.3s ease, opacity 0.3s ease;
  }
  .faq .faq-answer p {
    padding: 5.0890585242vw 7.6335877863vw;
    margin: 0;
    font-size: 3.5623409669vw;
    line-height: 1.6;
  }
  .faq {
    /* 開いた時に中身を表示するためのクラス */
  }
  .faq .faq-list.is-open .faq-answer {
    opacity: 1;
  }
}/*# sourceMappingURL=lesson.css.map */