/* =========================================
   style.css v1.6（PC/SP 明確切り分け）
   ・SPヘッダー高さ80px固定（中身paddingは現状維持）
   ・SPは親セクション width:95% + margin:0 auto
   ・KV：PC=上下150px / SP=幅100% + kv-box margin-top:60px
   ・追従ボタン：right:0 / 縦長・縦書き・白アイコン/白テキスト
   ・フッターリンク：#ffffff & センター
   ・SwiperのページネーションはPICK UP内のみ表示
========================================= */

/* ===== Base共通 ===== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=GFS+&display=swap');
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --sidebar-width: 200px;
  --page-max-width: 1440px;
  --color-ink: #f2f2f2;
  --color-accent: #4a4a6c;
  --jp-serif: "Noto Sans JP", sans-serif;
  --GFS: "", "Bodoni Moda", serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-accent);
  background-color: #ffffff;
}

@media (max-width: 768px) {
  body {
    position: relative;
    background-color: transparent;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("../images/background_master.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;   /* 画面全体を必ずカバー */
    z-index: 0;
    pointer-events: none;     /* クリックを邪魔しない保険 */
  }
}

/* 追加：全体の横ハミ出し保険 */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,svg{ max-width:100%; height:auto; display:block; }
a{ text-decoration:none; } /* 色は各所で個別指定（footerは白固定） */
h1,h2,h3,h4,h5,h6{
  margin: 0;
  color: var(--color-accent);
}
h2 {
  font-family:var(--GFS);
  font-weight: bold;
  font-size: 34px;
  color: #4a4a6c;
  font-family: "GFS Didot", "Times New Roman", serif;
  line-height: 1.2;
  background-color: rgba(255, 255, 255, 0.95);
  padding-left: clamp(24px, 5.56vw, 80px);
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}
h4 {
  font-size: 18px;
  color: #4a4a6c;
  line-height: 3.2;
  padding-left: 9px;
}

@media (max-width: 768px){
  /* AUDITIONセクション以外の見出し帯を、SPでは画面幅いっぱいに */
  .section:not(.section--audition) .section__inner > h2 {
    font-size: 28px;
    /* 上下だけ余白。左右は0 */
    margin: 80px 0 60px;
    padding-left: clamp(10px, 6.5vw, 45px);
    /* 画面幅100% ＋ 左右のマージンを打ち消すテクニック */
    width: 100vw;
    height: 96px;
  }
}

.header {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  padding: 15px 30px;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  transition: transform .35s cubic-bezier(.22,.61,.36,1), opacity .35s ease;
}

@media (min-width: 1025px) {
  .header {
    display: none;
  }
}

/* 非表示状態（上にスライド＋透明） */
.header.is-hidden {
  transform: translateX(-50%) translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

/* 表示状態 */
.header.is-shown {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== Footer全体の色＆中央揃え ===== */
.l-footer {
  background-color: #4a4a6c;
  color: #ffffff;
}

.l-footer a {
  color: #ffffff;
}

/* 中身をセンターに寄せる */
.p-footer {
  padding-block: 32px;
  font-size: 14px;
}

.p-footer__inner.l-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

/* ナビ部分も中央に寄せる */
.p-footer__nav {
  margin-bottom: 16px;
}

.p-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;       /* 中身だけ横並びでセンター */
  justify-content: center;
  gap: 16px;
}

/* 文字サイズや下マージンは、今の指定をそのまま活かす */
.p-footer__nav ul li {
  text-align: center;
  list-style: none;
}

.p-footer__nav ul li,
.p-footer__copy {
  font-size: 16px;
}

@media (max-width: 768px) {
  #section-pickup {
    overflow-x: hidden;
  }
  .pickup-swiper,
  .pickup-container,
  #section-pickup .swiper-wrapper {
    max-width: 100%;
  }
  .p-footer {
    margin-bottom: 40px;
  }
}

/* ===============================
   ScrollHint カスタマイズ
   （テキストを折り返さない＋白い板を少し広く）
=============================== */
.scroll-hint-icon-wrap {
  padding: 4px 12px 4px 20px;             /* 白い板を少し大きく */
}

.scroll-hint-text {
  display: inline-block;
  white-space: nowrap;           /* ★ここで折り返し禁止 */
  font-size: 12px;               /* 文字が大きければ調整してOK */
}

@media (max-width: 768px) {
  #section-meet,
  #section-audition,
  #section-pickup,
  #section-story,
  #section-cast,
  #section-message,
  #section-performance,
  #section-ticket,
  #section-sales,
  #section-movie,
  #section-faq,
  #section-access {
    /* ヘッダー80px＋ちょい余裕 */
    scroll-margin-top: 96px;
  }
}

@media (max-width: 1360px) {

  /* 上の白板（所在地＋ルート図） */
  .audition__lead,
  .story__box__inner,
  .cast__meta-text,
  .cast-program,
  .scroll-cont-about,
  .ticket-vip,
  .ticket-notes,
  .sales-schedule,
  .sales-attention,
  .youtube-list,
  #section-access .access__Contents {
    /* 左は今までの感覚をキープ（例として 5%）
       右は「左と同じ感覚 + 41px」でよける */
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
  }  
}

/* inview , fade関連（整理版） */
/* ---------------------------------- */
/* 最初は非表示＋ちょい下から      */
/* JS が .is-show を付けたら表示   */
/* ---------------------------------- */

.inview,
.inview_re {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity var(--reveal-dur, .6s) var(--reveal-ease, ease),
    transform var(--reveal-dur, .6s) var(--reveal-ease, ease);
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
}

/* 表示状態（1回きり／何度でも 共通） */
.inview.is-show,
.inview_re.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* 追加の「縦フェードイン」クラス（見た目だけ） */
.fadeIn {
  /* ベースの位置やopacityは .inview 側で制御するのでここでは何もしない */
}

/* is-show が付いたときに transform が確実に 0 になる保険 */
.fadeIn.is-show {
  transform: translate3d(0, 0, 0);
}

/* 左からフェードイン */
.fadeIn_left {
  opacity: 0;
  transform: translate3d(-50%, 0, 0);
  transition:
    opacity var(--reveal-dur, .8s) var(--reveal-ease, ease),
    transform var(--reveal-dur, .8s) var(--reveal-ease, ease);
}
.fadeIn_left.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* 右からフェードイン */
.fadeIn_right {
  opacity: 0;
  transform: translate3d(50%, 0, 0);
  transition:
    opacity var(--reveal-dur, .8s) var(--reveal-ease, ease),
    transform var(--reveal-dur, .8s) var(--reveal-ease, ease);
}
.fadeIn_right.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* 段階遅延（stagger） */
.late  { transition-delay: calc(var(--stagger-step, .10s) * 1); }
.late2 { transition-delay: calc(var(--stagger-step, .10s) * 2); }
.late3 { transition-delay: calc(var(--stagger-step, .10s) * 3); }
.late4 { transition-delay: calc(var(--stagger-step, .10s) * 4); }

/* 動きが苦手な人向け：位置移動をなくしてフェードだけに */
@media (prefers-reduced-motion: reduce) {
  .inview,
  .inview_re,
  .fadeIn,
  .fadeIn_left,
  .fadeIn_right {
    transform: none !important;
    transition: opacity .45s ease !important;
  }
}


/* =========================================
   共通レイアウト
   ========================================= */

.site-wrapper {
  max-width: var(--page-max-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: stretch;
  background-color: #ffffff;
}

/* 右側の固定背景（スクロールしても動かない） */
.bg-fixed-right {
  position: fixed;
  top: 0;
  left: var(--sidebar-width);
  right: 0;
  height: 100vh;
  background-image: url("img/bg_giselle.jpg"); /* 仮のパス。差し替えOK */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}

/* 左：固定メニュー（PC用） */

.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  max-height: 1080px;
  padding: 20px 16px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.88);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.side-nav__logo {
  text-align: center;
}

.side-nav__logo img {
  max-width: 140px;
  height: auto;
}

.side-nav__menu {
  flex: 1 1 auto;
  margin-top: 32px;
  margin-bottom: 32px;
}

.side-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.side-nav__item {
  font-size: 18px;
  font-family:"GFS Didot", "Times New Roman", serif;
  letter-spacing: 0.04em;
}

.side-nav__link {
  display: block;
  padding: 4px 0;
  color: var(--color-ink);
  text-decoration: none;
}

.side-nav__link:hover {
  text-decoration: underline;
}

.side-nav__item a {
  color: #4A4A6C;
}

.side-nav__sns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-left: -4px;
}

.side-nav__sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

/* 右：コンテンツ */

.main {
  position: relative;
  z-index: 0;
  flex: 1 1 auto;
  margin-left: var(--sidebar-width);
  min-height: 100vh;
  min-width: 0;  /* ★これを追加：右カラムが変なはみ出し方をしないようにする */

  /* このクラスの文字は GFS Didot ベースにする */
  font-family:"GFS Didot", "Times New Roman", serif;

  /* 背景：background_master.svg だけを固定表示で使う */
  background-image: url("../images/background_master.webp");
  background-repeat: no-repeat;
  background-position: center right;   /* 右上基準 */
  background-size: cover;              /* 画像全体が必ず収まる */
  background-attachment: fixed;        /* 背景だけスクロールしない */
}

.section {
  margin: 120px auto 0;
}

.section__inner {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  margin: 0 0 16px;
  font-size: 20px;
  letter-spacing: 0.16em;
}

.section__text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
}

@media (max-width: 768px) {
  
  .section {
    margin: 0 auto ;
  }

  .fv__overlay,
  .audition__lead,
  .audition__video-frame,
  .story__box__inner,
  .sales__Contents,
  .access__Contents {
    padding-left: 16px;
  }
}  
/* =========================================
   ファーストビュー（キービジュアル）
   ========================================= */

.fv {
  position: relative;
  height: calc(var(--vh, 1vh) * 100); /* JSで--vhを補正 */
  overflow: hidden;
  z-index: 1;
}

/* スライダー本体 */

.fv__slider {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;}

.fv__slider .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.fv__slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.fv__slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

/* カプセル型インジケータ */

.fv__indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.fv__indicator-body {
  width: 100px;
  height: 15px;
  border-radius: 999px;
  background-color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fv__indicator-body .swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.fv__indicator-body .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background-color: transparent; /* ◯ */
  opacity: 0.7;
  margin: 0;
}

.fv__indicator-body .swiper-pagination-bullet-active {
  background-color: #ffffff; /* ● */
  opacity: 1;
}

/* タイトルSVG＋2つのテキスト */
.fv__overlay {
  position: absolute;
  inset: 0;
  padding-left: 10%;      /* ここで全体の“横位置”を決める */
  padding-right: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 縦方向センター寄せ */
  align-items: flex-start;
  gap: 1.2em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 2;
  font-family: var(--jp-serif);
  font-size: clamp(12px, 1.2vw, 16px);

  /* ★ タイトル＋コピー共通の幅 */
  --hero-block-width: clamp(420px, 34vw, 660px);
}

/* タイトル画像 */
.fv__title {
  width: var(--hero-block-width);  /* 共通幅を使う */
  height: auto;
}

/* コピー全体（1行目＋2行目） */
.fv__copy {
  width: var(--hero-block-width);  /* タイトルと同じ幅 */
  color: #ffffff;
  margin-left: 0;
  text-align: center;
  transform: translateX(0.35em);
  font-family: "Noto Serif JP", serif;
}

/* 1行目・2行目共通のリセット */
.fv__copy--main,
.fv__copy--sub {
  margin: 0;
}

/* 1行目：新春公演〜 */
.fv__copy--main {
  font-size: clamp(18px, 2.2vw, 30px);
}

/* 2行目：日付＋会場 */
.fv__copy--sub {
  margin-top: 18px;
  font-size: clamp(12px, 1.6vw, 18px);  /* ★ 最大18px */
  line-height: 1.6;
}



/* =========================================
   SP ヘッダー（スクロール後にふわっと表示）
   ========================================= */

.sp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(74, 74, 108, 0.95);
  z-index: 100;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sp-header__inner {
  width: 100%;
  max-width: 768px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sp-header__logo img {
  max-height: 48px;
  width: auto;
  /* ★ ロゴを白系に見せるためのフィルタ */
  filter: brightness(0) invert(1);
}

.sp-header__burger {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  outline: none;
  appearance: none;
  border-radius: 0;
  background: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #ffffff;
}

.sp-header__burger-bar {
  width: 100%;
  height: 2px;
  background-color: currentColor;
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    background-color 0.25s ease;
}

/* ホバー時ちょい強調 */
.sp-header__burger:hover {
  opacity: 0.8;
}

/* 開いたとき（JSですでに .is-open が付く実装になっているのでそれを利用） */
.sp-header__burger.is-open {
  background: none;
  border: none;
  color: #ffffff;
}

/* 開いているときは線の色をネイビー側に */
.sp-header__burger.is-open .sp-header__burger-bar {
  background-color: currentColor;
}

/* X に変形 */
.sp-header__burger.is-open .sp-header__burger-bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.sp-header__burger.is-open .sp-header__burger-bar:nth-child(2) {
  opacity: 0;
}
.sp-header__burger.is-open .sp-header__burger-bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* 表示状態（スクロール後） */

.sp-header.sp-header--shown {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sp-nav__sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 4px 8px;
}

/* 通常時：3本のバーガー */
#spBurger span:nth-child(1) {
  top: 2px;
}

#spBurger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

#spBurger span:nth-child(3) {
  bottom: 2px;
}

/* 開いている時（.is-open）：×印に変形 */
#spBurger.is-open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

#spBurger.is-open span:nth-child(2) {
  opacity: 0;
}

#spBurger.is-open span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
@media (max-width: 768px) {
  .sp-nav__sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
}

/* ドロワー開閉中は背景スクロール禁止 */

body.is-fixed {
  overflow: hidden;
}

/* =========================================
   追従ボタン（画面右側固定）
   ========================================= */

.fixed-right {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 100;
}

.fixed-right__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fixed-right__item {
  margin-bottom: 16px;
}

.fixed-right__item:last-child {
  margin-bottom: 0;
}

.fixed-right__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  width: 41px;
  padding-top: 25px;
  padding-bottom: 25px;

  background-color: #4a4a6c;
  text-decoration: none;
  color: #ffffff;

  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;

  writing-mode: vertical-rl;
  text-orientation: mixed;

  box-shadow: none;
}

.fixed-right__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;   /* アイコンとテキストの間隔 25px */
}

.fixed-right__icon img,
.fixed-right__icon svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ラベルは縦書きで中央寄せ */
.fixed-right__label {
  letter-spacing: 0.5em;
  white-space: nowrap;
}

/* もしホバー時に少しだけ明るくしたい場合 */
.fixed-right__link:hover {
  opacity: 0.9;
}

/* SP用：追従ボタンを横並び（左右50%）にする */
@media (max-width: 768px) {
  .fixed-right {
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    /* トップに戻るボタン（高さ41px＋余白）より少し上に配置 */
    bottom: 0;
    transform: none;
    z-index: 100;
  }

  .fixed-right__list {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .fixed-right__item {
    flex: 1 1 50%;   /* 左右50%ずつ */
    margin: 0;       /* 縦並び用の margin-bottom を打ち消す */
  }

  .fixed-right__link {
    /* 横並び・横書き用にリセット */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    width: 100%;
    padding: 12px 8px;

    writing-mode: horizontal-tb;
    text-orientation: mixed;

    font-size: 16px;
    /* 縦書き前提の letter-spacing を少し抑える */
  }

  .fixed-right__icon {
    margin-bottom: 0;   /* 縦書き用の余白を打ち消し */
    margin-right: 8px;  /* アイコンとテキストの間に横方向の余白 */
  }

  .fixed-right__label {
    letter-spacing: 0.12em;
  }

    /* 2つ目のボタンの左側に白い仕切り線 */
  .fixed-right__item + .fixed-right__item .fixed-right__link {
    border-left: 1px solid #ffffff;
  }
}

/* 300〜335px：ボタン文字を少しずつ縮小して1行キープ */
@media screen and (max-width: 335px) and (min-width: 300px) {
  .fixed-right__link {
    /* 335px で 16px、幅が狭くなるほど少しずつ小さくなる */
    font-size: calc(16px * (100vw / 335));
  }

  /* 余裕を作るためにアイコンとの隙間も少しだけ詰める */
  .fixed-right__icon {
    margin-right: 4px;
  }
}


/* 〜299px：ボタンを上下2段に変更 */
@media screen and (max-width: 299px) {

  /* ボタンを縦並びに */
  .fixed-right__list {
    flex-direction: column;
  }

  .fixed-right__item {
    flex: 0 0 auto;
  }

  .fixed-right__link {
    width: 100%;
    font-size: 14px;      /* 読める範囲で少し小さめ */
    padding-top: 10px;
    padding-bottom: 10px;
  }

  /* 仕切り線：左の線は消して、2段目の上に白線を引く */
  .fixed-right__item + .fixed-right__item .fixed-right__link {
    border-left: none;
    border-top: 1px solid #ffffff;
  }

  /* トップへ戻るボタンがかぶらないように、さらに上に逃がす */
  .page-top {
    bottom: 96px; /* だいたいボタン2段ぶんの高さを想定 */
  }
}

/* Safariでアイコンが縮まないように固定する */
.fixed-right__icon {
  flex-shrink: 0;   /* アイコンボックス自体を縮ませない */
}

.fixed-right__item--access .fixed-right__icon img {
  width: 13px;
  height: 20px;
  flex-shrink: 0;   /* 画像本体も縮ませない */
}

.fixed-right__item--ticket .fixed-right__icon img {
  width: 27px;
  height: 15px;
  flex-shrink: 0;
}

/* =========================================
   トップに戻るボタン（PC/SP共通）
   ========================================= */

.page-top {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  background-color: #4a4a6c;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

/* 上向き三角形 */
.page-top::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 14px solid #ffffff;
}

.page-top:hover {
  opacity: 0.9;
}

.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 768px) {

  .page-top {
    bottom: 48px;
    width: 50px;
    height: 50px;
  }
}

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

  .page-top {
    bottom: 83px;
    width: 45px;
    height: 45px;
  }

}

/* =========================================
   レスポンシブ
   ========================================= */

@media (max-width: 768px) {
  .site-wrapper {
    position: relative;
    z-index: 1;
    max-width: 100%;
    display: block;
    background-color: transparent;
  }

  .side-nav {
    display: none !important;
  }

  .bg-fixed-right {
    display: none;
  }

  .main {
    margin-left: 0;
    min-height: 100vh;
    background: none;
  }

  /* ▼ SPファーストビュー：GISELLEロゴ＆コピーを横中央に */
  .fv__overlay {
    align-items: center;      /* 横方向センター寄せ */
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 200px;
    gap: 10px;
  }

  .fv__title {
    width: min(80%, 420px);   /* デバイス幅に応じて最大サイズ制御 */
    max-width: 420px;
    margin-inline: auto;      /* 画像自体も中央揃え */
  }

  .fv__copy {
    margin-left: 0;
    margin-right: 0;
    line-height: 1.9;
    text-align: center;       /* テキストを横中央 */
  }

  .fv__copy--main {
    font-size: 18px;
  }

  .fv__copy--sub {
    font-size: 14px;
  }
}

@media (min-width: 769px) {
  .sp-header,
  .sp-nav {
    display: none;
  }
}

/* ボタン本体 */
#spBurger {
  position: relative;
  width: 40px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  appearance: none;
  box-shadow: none;
}

/* 線（バーガーの3本線／×の線） */
#spBurger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;                 /* ★ここで線を太めに */
  background-color: currentColor; /* テキスト色に追従（黒や白でもOK） */
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    top 0.25s ease,
    bottom 0.25s ease,
    opacity 0.2s ease;
}

/* 通常時：3本のバーガー */
#spBurger span:nth-child(1) {
  top: 2px;
}

#spBurger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

#spBurger span:nth-child(3) {
  bottom: 2px;
}

/* 開いている時（.is-open）：×印に変形 */
#spBurger.is-open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

#spBurger.is-open span:nth-child(2) {
  opacity: 0;
}

#spBurger.is-open span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* =========================================
   PCワイド時のレイアウト調整
   ・左メニューは常に200px固定
   ・右側コンテンツは画面幅いっぱいに伸ばす
   ========================================= */
@media (min-width: 1441px) {

  /* 全体コンテナを画面幅いっぱいに */
  .site-wrapper {
    max-width: none;   /* 1440px制限を解除 */
    width: 100%;
  }

  /* 左ナビは常に200px固定 */
  .side-nav {
    width: var(--sidebar-width);          /* = 200px */
    flex: 0 0 var(--sidebar-width);       /* 念のためflexでも固定 */
  }

  /* 固定背景も200pxぶん左を空ける */
  .bg-fixed-right {
    left: var(--sidebar-width);           /* = 200px */
    right: 0;
  }

  /* 右側メインを残り全部使わせる */
  .site-wrapper > .main {
    margin-left: var(--sidebar-width);    /* 左ナビぶんだけオフセット */
    width: auto;                          /* max-widthの影響を受けないように */
  }
}

/* =========================================
   MEET THE CAST セクション（カードレイアウト）
========================================= */

/* SP専用改行 <br class="u-sp-br"> */
.u-sp-br {
  display: none;
}

.section--meet-cast {
  margin-top: 120px;
}

.meet-cast {
  font-family: "Noto Sans JP", sans-serif;
}

.meet-cast__inner {
  max-width: 1080px;
  margin: 60px auto 0;
}

/* PCベース：フレックスで4枚並び */
.meet-cast__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 32px;
}

/* ---------------------------------
   カード共通
--------------------------------- */
.meet-card {
  width: 260px;
  background-color: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;              /* 画像拡大＋テキストスライドをカード内にマスク */
  display: flex;
  flex-direction: column;
}

/* ---------------------------------
   画像エリア：上部260×260（PCベース）
--------------------------------- */
.meet-card__thumb {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: visible;             /* 画像は下方向にあふれてOK（カード側でマスク） */
  background-color: #ffffff;     /* 画像の背景は常に白 */
  z-index: 1;
}

.meet-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center top;  /* 上を基準に下へ広がる感じ */
  transform: scale(1);
  transition: transform 0.5s ease;
}

/* 長橋さんだけ上寄せにしたい場合（thumbに Nagahashi を付与） */
.Nagahashi img {
  object-position: 50% 0%;
}

/* ---------------------------------
   テキスト＋MOREボタン
--------------------------------- */
.meet-card__info {
  position: relative;
  padding: 12px 16px 80px;       /* 下80px = MOREボタン用スペース */
  box-sizing: border-box;
  flex: 1 1 auto;
  overflow: hidden;              /* 下にスライドしたテキストを隠す */
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 日付＋ジゼル：常に表示されるブロック */
.meet-card__meta {
  text-align: center;
  margin-bottom: 8px;
  color: #4a4a6c;
  transform: translateY(0);
  transition:
    transform 0.4s ease,
    color 0.3s ease,
    text-shadow 0.3s ease;
}

.meet-card__date {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0 0 4px;
}

.meet-card__role {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* 出演者名ブロック：ホバー時に下へ沈む */
.meet-card__presenter-wrap {
  text-align: center;
  margin-top: 0px;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

/* PC帯だけ、行数差があっても下端を揃えやすくする */
@media (min-width: 768px) {
  .meet-card__presenter-wrap {
    min-height: 72px;
  }
}

.meet-card__presenter {
  margin: 0;
  font-size: 14px;
  color: #4a4a6c;
}

/* MOREボタン位置（カード下端から16px上に固定） */
.meet-card__more-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  z-index: 3;
}

/* ボタン裏は常に白で塗る（テキストが透けて見えないように） */
.meet-card__more-wrap .more_button {
  background-color: #ffffff;
}

/* モーダル用の配役リストはカード上では非表示 */
.mthec-box__roles {
  display: none;
}

/* ---------------------------------
   PCホバー時のアニメーション（共通ベース）
--------------------------------- */
@media (hover: hover) and (pointer: fine) {
  .meet-card:hover .meet-card__thumb img {
    transform: scale(1.8);       /* 260×1.8 ≒ 468 → カード全体をほぼ覆う */
  }

  .meet-card:hover .meet-card__presenter-wrap {
    transform: translateY(140%);
    opacity: 0;
  }

  .meet-card:hover .meet-card__meta {
    transform: translateY(90px); /* ベース値（後のメディアクエリで上書き） */
    color: #ffffff;
    text-shadow: 0 0 4px rgba(50, 50, 50, 0.4);
  }
}

/* ==============================
   MEET THE CAST：PCホバー時の
   日付＋ジゼルの最終位置（968px以上）
============================== */
@media (min-width: 968px) {

  /* 基本：センター＆トランジション */
  .meet-card__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition:
      transform 0.35s ease,
      color 0.35s ease,
      text-shadow 0.35s ease;
  }

  /* 968px以上のベース：70px 下げる（1255px以上はこの見え方） */
  .meet-card:hover .meet-card__meta {
    transform: translateY(70px);
    color: #ffffff;
    text-shadow: 0 0 4px rgba(50, 50, 50, 0.4);
  }
}

/* ---------------------------------
   中間幅（768〜1254px）
   → 2列グリッド＋左右5%マージン
   → カードはPCと同じ比率(260:465)で拡大
--------------------------------- */
@media (min-width: 768px) and (max-width: 1254px) {

  .section--meet-cast {
    margin-top: 120px;
  }

  .meet-cast__inner {
    max-width: none;
    margin: 60px 5% 0;       /* 左右5%マージン */
  }

  .meet-cast__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2枚1列 */
    column-gap: 32px;
    row-gap: 32px;
    justify-items: stretch;
  }

  /* カード自体を「PC時の比率」でスケールアップ */
  .meet-card {
    width: 100%;
    max-width: none;
    aspect-ratio: 260 / 465;    /* 幅:高さ = 260:465 */
    height: auto;
  }

  /* カード高さに対して画像を 260/465 ≒ 56% にする（=画像は正方形） */
  .meet-card__thumb {
    height: 56%;
    overflow: visible;          /* ホバー時にカード内いっぱいに伸ばす */
  }
}

/* 768〜1254px かつ hover が効く環境では
   日付＋ジゼルをさらに下へ（ボタン直上あたり） */
@media (hover: hover) and (pointer: fine) and (min-width: 768px) and (max-width: 1254px) {
  .meet-card:hover .meet-card__meta {
    transform: translateY(170px);  /* さらに下げてボタンに近づける */
  }
}

/* ★修正：769〜860px だけカード高さを 492px に固定 */
@media (min-width: 769px) and (max-width: 860px) {
  .meet-card {
    height: 492px;
    aspect-ratio: auto;   /* 高さ優先にするため比率指定は解除 */
  }
}

/* ---------------------------------
   大きなPC（1255px以上）
   → 4枚並び＆カード高さ465px固定（元レイアウト）
--------------------------------- */
@media (min-width: 1255px) {
  .meet-card {
    height: 475px;
  }

  .meet-card__thumb {
    height: 260px;
  }
}

/* ---------------------------------
   SPレイアウト（〜767px）
   カードはSPもPCと同じ比率で2列グリッド
--------------------------------- */
@media (max-width: 767px) {

  .section--meet-cast {
    margin-top: 80px;
  }

  .meet-cast__inner {
    max-width: none;
    margin: 40px 5% 0;       /* 左右5%マージン */
  }

  .meet-cast__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2枚1列 */
    column-gap: 16px;
    row-gap: 16px;
    justify-items: stretch;
  }

  /* SPカードもPCと同じ比率(260:465)で伸縮 */
  .meet-card {
    width: 100%;
    max-width: none;
    aspect-ratio: 260 / 465;
    height: auto;
  }

  .meet-card__thumb {
    height: 56%;
    overflow: visible;
    background-color: #ffffff;
  }

  .meet-card__info {
    padding: 12px 8px 72px;
  }

  /* 日付：SPは14px＆改行用 <br> を有効化 */
  .meet-card__date {
    font-size: 14px;
    font-weight: 600;
  }

  .u-sp-br {
    display: block;   /* SPだけ改行を有効にする */
  }

  /* ジゼル：SPは14px */
  .meet-card__role {
    font-size: 14px;
  }

  /* MOREボタン：SPは130×40＋フォント14px 固定 */
  .meet-card .more_button {
    width: 130px;
    height: 40px;
  }

  .meet-card .more_button a {
    font-size: 14px;
  }
}

/* ★656px以下はカード高さ 502px に固定（MORE上で切れないように） */
@media (max-width: 656px) {
  .meet-card {
    height: 502px;
    aspect-ratio: auto;   /* 高さ優先にするため比率指定は解除 */
  }
}

/* ★追加：550px以下は高さ固定を解除して
   テキスト折り返しにあわせてカードを伸ばす */
@media (max-width: 550px) {
  .meet-card {
    height: auto;        /* 固定高さを解除 */
    aspect-ratio: auto;  /* 比率指定も解除 */
  }

  .meet-card__thumb {
    height: auto;        /* 56%指定を解除して自然な高さに */
  }

  .meet-card__thumb img {
    width: 100%;
    height: auto;        /* 画像は比率を保ったまま拡大縮小 */
  }
}


/* =========================================
   MEET THE CAST モーダル
========================================= */

/* 画面全体を覆うラッパー */
.meet-modal {
  position: fixed;
  inset: 0;
  display: none;              /* 通常は非表示 */
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* 開いているとき */
.meet-modal.is-active {
  display: flex;
}

/* 背面の黒半透明オーバーレイ */
.meet-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(40, 40, 40, 0.8);  /* #282828 / 80% */
}

/* 中央の白い板（95%くらいの白） */
.meet-modal__dialog {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: calc(100% - 40px);
  max-width: 560px;
  padding: 32px 32px 32px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  font-family: "Noto Sans JP", sans-serif;
}

/* 閉じるボタン（×） */
.meet-modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #4a4a6c;
}

/* モーダル本文部分 */
.meet-modal__body {
  margin-top: 16px;
  max-height: 60vh;
  overflow-y: auto;
}

/* 見出しブロック（上部） */
.meet-modal__heading {
  margin: 0 0 24px;
  font-size: 16px;
  color: #4a4a6c;
}

/* 日付行：太字＋下線 */
.meet-modal__date {
  margin: 0 0 20px;
  padding-bottom: 12px;
  font-weight: 700;             /* ★日付だけ少し太く */
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #4a4a6c;  /* ★日付の下のライン */
}

/* 「ジゼル」などの演目名 */
.meet-modal__role {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

/* 配役リスト */
.meet-modal .mthec-box__roles {
  display: block;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;              /* ●を消してカンプ寄せ */
  font-size: 16px;               /* ★16pxで統一 */
  line-height: 2.0;              /* ★行間広め */
  color: #4a4a6c;
}

.meet-modal .mthec-box__roles li + li {
  margin-top: 8px;
}

/* チケット購入ボタン */
.meet-modal__button-wrap {
  margin-top: 40px;
  text-align: center;
}

.meet-modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 480px;                  /* ★指定値 */
  max-width: 100%;               /* SPでははみ出さないように */
  height: 80px;                  /* ★指定値 */
  background-color: #4a4a6c;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-radius: 0;
}

.meet-modal__button:hover {
  opacity: 0.85;
}

/* モーダル表示中は背面スクロールを止める用 */
body.is-meet-modal-open {
  overflow: hidden;
}

/* SP 微調整 */
@media (max-width: 768px) {
  .meet-modal__dialog {
    padding: 24px 20px 28px;
  }
  .meet-modal__body {
    max-height: 70vh;
  }
}


/* =========================================
   AUDITION MOVIE セクション
   PC：テキスト左／動画右（白板＋紺板）
   SP：縦並び（白 → 紺）
========================================= */

/* ---------- PC 基本レイアウト（969px以上ベース） ---------- */

.section--audition {
  margin-top: 120px;
}

.section--audition .section__inner.audition {
  max-width: 1240px;
  margin: 100px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); /* 左を少し広め */
  column-gap: 0; /* 白板と紺板をくっつける */
  align-items: stretch;
  font-family: "Noto Sans JP", sans-serif;
}

/* 左：テキスト側（白い板） */
.section--audition .audition__col--text {
  position: relative;
}

.section--audition .audition__inner {
  padding: 56px 0 40px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

/* PC用 h2（白帯ナシ） */
.section--audition h2 {
  margin: 0 0 24px;
  padding-left: 80px;           /* 1240px幅の左端から80px */
  font-family: var(--GFS);
  font-weight: bold;
  font-size: 34px;              /* 他セクションと合わせて34px */
  line-height: 1.2;
  color: #4a4a6c;
  background: none;
  box-shadow: none;
  width: auto;
  height: auto;
}

/* リード文（PCは見出しとそろえて80pxからスタート） */
.section--audition .audition__lead {
  margin: 0;
  padding: 0 64px 0 80px;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #4a4a6c;
}

/* 右：動画側（紺色の板＋金縁サムネ） */
.section--audition .audition__col--video {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.section--audition .audition__video-shell {
  width: 100%;
  padding: 40px 48px;
  box-sizing: border-box;
  background-color: #4A4A6C; /* 紺色板（指定色） */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 外側：金色フレーム＋ドロップシャドウ（PC/SP共通ベース） */
.section--audition .audition__video-frame {
  max-width: 560px;
  width: 100%;
  border-radius: 20px;
  padding: 6px;
  background: linear-gradient(
    135deg,
    #f6e4a8 0%,
    #e3c56b 50%,
    #c89b2c 100%
  );
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  box-sizing: border-box;
}

.section--audition .audition__video-inner {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

/* iframe を 16:9 で伸縮 */
.section--audition .audition__video-inner iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: none;
}

/* PC のときだけ、白板と紺板の高さを 420px でそろえる */
@media (min-width: 969px) {
  .section--audition .audition__inner,
  .section--audition .audition__video-shell {
    min-height: 420px;  /* 内容が増えたらこれより大きくなる */
  }
}

/* ---------- SPレイアウト（968px以下） ---------- */

@media (max-width: 968px) {

  .section--audition {
    margin-top: 80px;
  }

  .section--audition .section__inner.audition {
    max-width: 100%;
    margin: 40px auto 0;
    display: block;              /* 縦並び */
  }

  .section--audition .audition__col {
    display: block;
    width: 100%;
  }

  /* 上：白いテキスト帯（全幅） */
  .section--audition .audition__col--text {
    background-color: rgba(255, 255, 255, 0.95);
  }

  .section--audition .audition__inner {
    padding: 32px 5% 40px;      /* 中身だけ左右5%マージン */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  }

  /* h2 は他セクション同様の「白帯」スタイルに上書き */
  .section--audition h2 {
    font-family: var(--GFS);
    font-weight: bold;
    font-size: 34px;      /* 他セクションのPC h2と同じ */
    line-height: 1.2;
    color: #4a4a6c;

    /* SP用の「白帯」指定を打ち消す */
    background: transparent;
    box-shadow: none;
    height: auto;
    display: block;
    width: 100%;
    margin-left: 0;

    /* PCと同じ位置に文字を置く */
    padding-left: 0;
    margin: 0 0 24px;
  }

  .section--audition .audition__lead {
    padding: 0;
    font-size: 14px;
  }

  /* 下：紺色の動画ブロック（全幅） */
  .section--audition .audition__col--video {
    background-color: #4A4A6C;
  }

  .section--audition .audition__video-shell {
    padding: 32px 5% 40px;  /* 左右5%＋上下余白 */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section--audition .audition__video-frame {
    max-width: 550px;
    width: 100%;
  }
}

/* さらに幅が狭い端末（340px以下）は念のため少し余裕を持たせる */
@media (max-width: 340px) {
  .section--audition .audition__inner {
    padding-inline: 16px;
  }

  .section--audition .audition__video-shell {
    padding-inline: 16px;
  }
}

/* ========================================================
  pick-up（ピックアップコンテンツ用、JS連動用含む）
======================================================== */

.pickup-swiper {
  max-width: 1240px;
  width: 100%;
  margin: 100px auto 0;
  display: flex;
  align-items: stretch;
}

/* Swiper コンテナ（v11でも .swiper-container を使っている想定） */
.swiper-container {
  overflow: hidden;  /* ← ここを変更 */
  margin-left: auto;
  margin-right: auto;
  position: relative;
  list-style: none;
  padding: 0;
  z-index: 1;
  height: 100%;
}


/* 参考：.swiper を使うブロックがあっても同等の見え方に */
.pick-up .swiper {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
  box-sizing: border-box;
}

.pick-up .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
  align-items: stretch;
}

/* 実際に使う pickup のコンテナ（左右に40pxの内側余白） */
.pick-up .pickup-container {
  max-width: 1240px;
  width: 100%;
  overflow: hidden;
  padding: 0 40px;
  box-sizing: border-box;
}

/* 基本のスライド箱：幅はSwiper（初期化後）または未初期化ルールで決める */
.pick-up .pickup-container .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  box-sizing: border-box;
}

.pick-up .pickup-container.swiper-initialized .swiper-slide > .pickup-cont {
  max-width: 300px;
  width: 300px;     /* ★ ここを固定 */
  margin: 0 auto;
}
.pick-up .pickup-container:not(.swiper-initialized) .swiper-slide > .pickup-cont {
  width: 100%;                 /* 300pxの箱の中で100% */
}

/* ====== 3枚以下（未初期化）：中央寄せ＆300px上限・等間隔 ====== */
.pick-up .pickup-container:not(.swiper-initialized) .swiper-wrapper {
  justify-content: center;
  gap: 30px;                   /* JSの spaceBetween 相当の見え方に */
}
.pick-up .pickup-container:not(.swiper-initialized) .swiper-slide {
  width: auto;                 /* 既存の width:100% を打ち消す */
  max-width: 300px;            /* 巨大化防止（未初期化時のみ） */
  flex: 0 1 300px;             /* 300pxを上限に自然縮小 */
  margin: 0;                   /* 余白は gap に一本化（margin-leftは使わない） */
}

/* 参考：.swiper/.swiper-container どちらでも未初期化の中央寄せを担保 */
.pick-up :is(.swiper, .swiper-container):not(.swiper-initialized) .swiper-wrapper {
  justify-content: center;
  gap: 30px;
}
.pick-up :is(.swiper, .swiper-container):not(.swiper-initialized) .swiper-slide {
  width: auto !important;
  max-width: 300px !important;
  flex: 0 1 300px;
  margin: 0 !important;
}

/* カードの中身（画像） */
.pick-up .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;         /* cover にする場合はここを変更 */
}

/* --------------------------------------------------------
   カード本体（白板）：等高＆下にボタン固定
   -------------------------------------------------------- */

:root {
  /* カードの最小高さ（調整しやすいよう変数化） */
  --pickup-card-min-h-pc: 420px;
  --pickup-card-min-h-sp: 360px;
  --header-h: 150px; /* 実際の固定ヘッダーの高さに合わせて */
  --header-h-pc: 150px;   /* 実寸に合わせて */
  --header-h-sp: 100px;   /* 実寸に合わせて */
  --anchor-extra: 88px;
  --anchor-gap: calc(var(--header-h) + 50px);
  --reveal-dur: .9s;                     /* ふわっと時間 */
  --reveal-ease: cubic-bezier(.22,.61,.36,1); /* しっとりしたイージング */
  --stagger-step: .10s;                  /* 段階の間隔 */  
  --sbw: 0px;
}

.pickup-cont {
  min-height: var(--pickup-card-min-h-pc);
  display: grid;
  grid-template-rows: auto 1fr auto;
  row-gap: 15px;
  height: 100%;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  max-width: 300px;
  width: 300px;
  margin: 0 auto;
}
.pickup-cont-img {
  margin-bottom: 0;
  width: 260px;
  height: 260px;
  background: #d5d5d5;
}

.pickup-cont-img img {
  width: 90%;
  margin: 0 auto;
  display: block;
}

.pickup-cont-txt {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
}

.pickup-cont-txt h3 {
  font-family: 'Noto Sans JP';
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  text-align: left;
  padding-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(2 * 1.2em);
}

.pickup-cont-txt p {
  font-family: 'Noto Sans JP';
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(3 * 1.4em);
}

/* PICK UP カード内ボタン（MEET THE CAST と同じスタイル） */
.pickup-btn {
  margin-top: auto;
  border: 1px solid #4a4a6c;
  background-color: #ffffff;
  text-align: center;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.pickup-btn a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a4a6c;
  font-family: "Noto Sans JP", sans-serif;
}

/* ホバー時：枠ごと反転（MEET THE CAST と同じ挙動） */
.pickup-btn:hover {
  background-color: #4a4a6c;
}

.pickup-btn:hover a {
  color: #ffffff;
}


/* ▼ PICK UP専用ページネーション（位置＆カプセル背景） */
#section-pickup .swiper-pagination {
  position: static;              /* デフォルトのabsoluteをやめて通常フローに */
  margin: 16px auto 0;           /* カードの下に16px空けて中央配置 */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 14px;             /* カプセル内の上下左右余白 */
  width: fit-content;
  border-radius: 999px;
  background-color: #4a4a6c;     /* カプセル型の背景板 */
}

/* ▼ PICK UP専用ドットデザイン */
#section-pickup .swiper-pagination-bullet {
  margin: 0;
  opacity: 1;                    /* うっすら表示をやめてハッキリ見せる */
  background-color: #4a4a6c;     /* 塗り #4a4a6c */
  border: 1px solid #ffffff;     /* 縁取り #ffffff */
  border-radius: 50%;
}

/* アクティブ：#ffffffの縁取り＋中身#4a4a6c（背景板と同じ色） */
#section-pickup .swiper-pagination-bullet-active {
  background-color: #ffffff;     /* 塗り #4a4a6c */
  border: 1px solid #ffffff;     /* 縁取り #ffffff */
}

/* PICK UP：Swiper 初期化後のカード幅は常に 300px 固定 */
#section-pickup .pickup-container.swiper-initialized .swiper-slide {
  width: 300px;
}

/* 420px以下：カードを265px固定（左右ちょい見え） */
@media screen and (max-width: 420px) {

  /* Swiper が参照する「1枚ぶんの箱」の幅 */
  #section-pickup .pickup-container.swiper-initialized .swiper-slide {
    width: 265px;
    max-width: 265px;
  }

  /* カード本体も合わせて 265px */
  .pickup-cont {
    max-width: 265px;
    width: 265px;
  }

  .pickup-cont-img {
    width: 240px;          /* 画像枠の横幅はそのまま260px */
    height: 260px;
    margin: 0 auto 0;      /* 左右autoでカードの中で中央寄せ */
    background: #d5d5d5;
  }

}

/* 421〜834px：カード本体の中で画像枠を横位置センターに */
@media screen and (min-width: 421px) and (max-width: 834px) {

  .pickup-cont-img {
    width: 260px;        /* 画像枠はそのまま260px */
    height: 260px;       /* 必要なら維持 */
    margin: 0 auto 0;    /* ★左右autoでカード中央に */
  }

}

/* --------------------------------------------------------
   PICK UP SP（〜479px：1枚＋左右ちょい見え）
   -------------------------------------------------------- */
@media screen and (max-width:968px) {

  .pickup-swiper {
    margin: 0;
  }
}

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

  .pick-up .swiper-slide,
  #section-pickup .swiper-slide {
    /* 幅は Swiper（slidesPerView）に任せる */
    height: auto;
    transition-property: transform;
  }

  .pickup-cont {
    min-height: var(--pickup-card-min-h-sp);
    padding: 15px;
    row-gap: 12px;
  }

  .pickup-cont-img img {
    width: 100%;
  }

  .pickup-cont-txt {
    gap: 8px;
  }

  .pickup-btn a {
    width: 100px;
  }
}

/* --------------------------------------------------------
   PICK UP SP（480〜768px：1枚＋左右ちょい見え）
   -------------------------------------------------------- */
@media screen and (min-width: 448px) and (max-width: 968px) {
  .pick-up .pickup-container {
    padding: 0 16px;  /* ← 元は 0 40px なので、Swiperが使える横幅が広がる */
  }
}
/* --------------------------------------------------------
   PICK UP SP（480〜834px：1枚＋左右ちょい見え）
   -------------------------------------------------------- */
@media screen and (min-width:480px) and (max-width:834px) {

  section.pick-up,
  #section-pickup {
    padding-top: 0;
  }

  .pick-up .swiper-slide,
  #section-pickup .swiper-slide {
    /* ここも幅は指定せず、slidesPerView で「見切れ」演出 */
    height: auto;
    transition-property: transform;
  }

  .pickup-cont {
    min-height: var(--pickup-card-min-h-sp);
    padding: 15px;
    row-gap: 12px;
  }

  .pickup-cont-img img {
    width: 100%;
  }

  .pickup-cont-txt {
    gap: 8px;
  }

  .pickup-btn a {
    width: 100px;
  }
}

/* =========================================
   STORY
   ========================================= */

.story__box {
  width: 768px;
  background-color: rgba(255, 255, 255, 0.95);
  margin: 100px auto 0;
}

.story__box__inner {
  padding: 4% 8%;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
  font-family: "Noto Sans JP", sans-serif;
}

.section__heading {
  font-size: 16px;
  font-weight: 600;
}

.section__text {
  font-size: 14px;
  letter-spacing: 0.05em;
}

@media (max-width: 995px) {

  .story__box {
    width: 95%;
    margin: 100px auto 0;
  }

  .story__box__inner {
    padding: 10% 8%;
  }
}

@media (max-width: 968px) {

  .story__box {
    margin: 60px auto 0;
  }

  .section__text {
    font-size: 14px;
    letter-spacing: 0.02em;
  }

}

/* =========================================
   CAST セクション
========================================= */

.section--cast {
  margin-top: 120px;
}

.cast {
  max-width: 1080px;
  margin: 100px auto 0;
  padding: 100px 60px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  font-family: "Noto Sans JP", sans-serif;
}

.cast__inner {
  width: 100%;
}

/* タブ（上部・下部共通） */
.cast__tabs {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  column-gap: 16px;
  row-gap: 14px;
}

.cast__tabs--top {
  margin-bottom: 40px;
}

.cast__tabs--bottom {
  margin-top: 40px;
  margin-bottom: 0;
}

/* タブボタン（4つ並びベース：幅は伸縮） */
.cast__tab {
  flex: 1 1 180px;
  max-width: 220px;
  min-width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #4a4a6c;
  color: #4a4a6c;
  cursor: pointer;
  border-radius: 0;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.cast__tab.is-active,
.cast__tab:hover {
  background-color: #4a4a6c;
  border-color: #4a4a6c;
  color: #ffffff;
}

/* 968px以下：タブを2×2グリッドに */
@media (max-width: 968px) {

  .section--cast {
    margin-top: 80px;
  }

  .cast {
    margin: 60px auto 0;
    padding: 60px 0 40px;
  }

  .cast__tabs {
    max-width: 480px;
    padding-inline: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    column-gap: 16px;
    row-gap: 16px;
    margin-bottom: 32px;
  }

  .cast__tab {
    width: 100%;
    max-width: 220px;
    min-width: 140px;
    height: 72px;
    font-size: 14px;
    justify-self: center;
  }

  .cast__tabs--bottom {
    margin-top: 32px;
  }
}

/* パネル群（各公演ごとに切り替え） */
.cast__panels {
  width: 100%;
}

.cast__panel {
  display: none;
}

.cast__panel.is-active {
  display: block;
}

/* メタ情報 */
.cast__meta {
  text-align: center;
  margin-bottom: 24px;
}

.cast__meta-title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 500;
  color: #4a4a6c;
}

.cast__meta-text {
  margin: 0 0 40px;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #4a4a6c;
}

/* メイン画像枠 */
.cast__main {
  margin-bottom: 32px;
}

.cast__main-frame {
  width: 100%;
  background-color: #e5e5e5;
  position: relative;
  overflow: hidden;
}

.cast__main-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 14px;
}

/* サムネイル：ベースは4カラム */
.cast__cards {
  max-width: 1080px;
  margin: 40px auto 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 4スロットを用意 */
  gap: 24px;
}

/* 769〜968px：3カラムにする */
@media (min-width: 769px) and (max-width: 968px) {

  .cast__inner {
    margin: 0 auto;
    width: 90%;
  }
  .cast-program {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .cast__cards {
    max-width: 768px; /* お好みで調整可 */
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* サムネ画像枠：220×220の正方形＋トリミング（PCベース） */
.cast-card__thumb {
  width: 100%;
  max-width: 305px;
  margin: 0 auto 10px;
}

/* 中の画像を中央トリミング */
.cast-card__thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;       /* 常に正方形 */
  object-fit: cover;         /* 中央トリミング */
  object-position: center;
  display: block;
}

/* 1〜3枚目：1段目 左3つ（PC帯だけ効かせる） */
.cast-card:nth-child(1) { grid-column: 1 / 2; }
.cast-card:nth-child(2) { grid-column: 2 / 3; }
.cast-card:nth-child(3) { grid-column: 3 / 4; }

/* 4〜6枚目：2段目 左3つ */
.cast-card:nth-child(4) { grid-column: 1 / 2; }
.cast-card:nth-child(5) { grid-column: 2 / 3; }
.cast-card:nth-child(6) { grid-column: 3 / 4; }

.cast-card {
  background-color: transparent;   /* 背景なし */
  box-shadow: none;                /* シャドウなし */
}

.cast-card__thumb-placeholder {
  width: 100%;
  background-color: #e5e5e5;
  position: relative;
}

/* 正方形サムネ（プレースホルダ用） */
.cast-card__thumb-placeholder::before {
  content: "";
  display: block;
  padding-top: 100%;
}

/* 役名オーバーレイ（サムネ左上） */
.cast-card__role-overlay {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 0;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

/* デフォルト：画像の「下にテキスト」を出すカード用 */
.cast-card:not(.cast-card--label-on-thumb) .cast-card__role-overlay {
  margin-top: 6px;
  color: #4A4A6C;
}

.cast-card__role-en {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.cast-card__role-ja {
  font-size: 12px;
  margin: 0;
}

.cast-card__body {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 4px;   /* 役名との間（被らない程度に少し開ける） */
  margin-left: 2px;
}

.cast-card__name-en {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.cast-card__name-ja {
  font-size: 14px;
  margin: 0;
}

/* 透過画像などで「画像の上に」役名帯を載せたいカード用 */
.cast-card--label-on-thumb .cast-card__thumb {
  position: relative;
  z-index: 1;
}

.cast-card--label-on-thumb .cast-card__role-overlay {
  position: absolute;
  left: -2px;
  top: 0;
  margin-top: 0;
  padding: 4px 8px;
  color: #ffffff;
  z-index: 2;
}

/* 裏側に回すパターン（cut-out 画像用） */
.cast-card--label-on-thumb.cast-card--label-back .cast-card__thumb img {
  z-index: 2;   /* 画像を一番手前に */
}

.cast-card--label-on-thumb.cast-card--label-back .cast-card__role-overlay {
  z-index: -1;   /* テキストをその奥（＝画像の裏側）に */
  color: #4A4A6C; /* on the back of the image 用の文字色（お好みで） */
}

/* PC帯向けの細かい調整（769px以上） */
@media (min-width: 769px) {
  .cast-card:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1;
  }
  .cast-card:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1;
  }
  .cast-card:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1;
  }
  .cast-card:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 2;
  }
  .cast-card:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 2;
  }
  .cast-card:nth-child(6) {
    grid-column: 3 / 4;
    grid-row: 2;
  }
  .cast-card__name-en {
    font-size: 16px;
    margin: 0;
  }
  .cast-card__name-ja {
    font-size: 14px;
    margin: 0;
  }
}

/* SP：サムネは2列グリッド（〜768px） */
@media (max-width: 768px) {
  .cast__cards {
    margin: 32px 5% 40px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .cast-card:nth-child(n) {
    grid-column: auto;
  }

  /* ★SP時はサムネをカード幅いっぱいにして、下のテキストと揃える */
  .cast-card__thumb {
    max-width: none;   /* 220pxの制限を解除 */
    margin: 0 auto 10px;
  }
}

/* プログラム（第1部・第2部 共通） */
.cast-program {
  margin-top: 24px;
}

.cast-program__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
}

/* cols：基本は1列（PCもSPも） */
.cast-program__cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 16px;
  column-gap: 24px;
  margin-top: 16px;
  font-size: 14px;
}

.cast-program__list--major {
  display: grid;
  /* 左: 役名/名前, 右: 役名/名前 の2組 */
  grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr);
  column-gap: 40px;   /* 2役1列の間隔 */
  row-gap: 4px;
}

/* プログラムのPC向け調整（769px以上） */
@media (min-width: 769px) {
  .cast-program__col {
    font-size: 14px;
    line-height: 1.9;
  }
}

/* dt+dd = 1ペア1行（ベース） */
.cast-program__list {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr; /* 役名 / 名前 */
  column-gap: 10px;
  row-gap: 14px;
}

.cast-program__list dt {
  font-weight: 600;
  margin: 0;
}

.cast-program__list dd {
  margin: 0 0 4px;
}

/* ---------- 第1部：主要キャスト（ジゼル〜ウィルフリード） ---------- */
@media (min-width: 895px) {
  .cast-program__list--major {
    display: grid;
    /* 左: 役名/名前, 右: 役名/名前 の2組 */
    grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: 57px;   /* 2役1列の間隔 */
    row-gap: 4px;
  }

  .cast-program__list--major dt {
    white-space: nowrap;
  }

  /* 1役だけの行（ペザントPDD・ウィルフリード）はフル幅 */
  .cast-program__list--major .cast-program__role--full {
    grid-column: 1 / 2;
  }
  .cast-program__list--major .cast-program__name--full {
    grid-column: 2 / 5;
  }
}

/* ぶどう収穫祭〜従者：1役フル幅
   → 横の間隔を「ジゼル 大塚アリス」と同じにする */
.cast-program__list--group {
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 29px;   /* ★ここで dt と dd の距離を広げる（PC/SP共通） */
}

/* ---------- 第2部 ---------- */

.cast-program.cast-program--second .cast-program__grid {
  /* SP では普通の縦並び */
}

/* 第2部も第1部の major と同じ 2役1行レイアウト */
.cast-program.cast-program--second .cast-list--second {
  margin: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr);
  column-gap: 29px;
  row-gap: 14px;
  font-size: 14px;
  line-height: 1.9;
}

/* 第2部：PC調整（769px以上） */
@media (min-width: 769px) {
  .cast-program.cast-program--second .cast-program__grid {
    display: block;
  }

  .cast-program.cast-program--second .cast-list--second dt {
    white-space: nowrap;
    font-weight: 600;
  }

  .cast-program.cast-program--second .cast-list--second dd {
    margin: 0 0 4px;
  }

  /* 1役フル幅の行（ウィルフリード〜ウィリたち） */
  .cast-program.cast-program--second
    .cast-list--second
    .cast-list__role--full {
    grid-column: 1 / 2;
  }

  .cast-program.cast-program--second
    .cast-list--second
    .cast-list__name--full {
    grid-column: 2 / 5;
  }
}

/* SP：プログラムの1カラム＆第2部を1役ずつ表示（〜768px） */
@media (max-width: 768px) {
  .cast-program__grid {
    grid-template-columns: 1fr;
  }

  .cast-program.cast-program--second .cast-list--second {
    grid-template-columns: auto minmax(0, 1fr);  /* 役名 / 名前 の2列 */
    column-gap: 59px;                            /* 第1部と同じくらいの間隔 */
  }
}

/* cast-list（旧仕様の名残。別箇所で使っている可能性があるので残す） */
.cast-list {
  margin: 0;
  padding: 0;
}

.cast-list__row {
  display: flex;
  column-gap: 8px;
  margin-bottom: 4px;
}

.cast-list__role {
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}

.cast-list__name {
  margin: 0;
  flex: 1;
}

@media (min-width: 895px) {
  .cast-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 4px;
  }

  .cast-list__row {
    margin-bottom: 4px;
  }
}

@media (max-width: 768px) {
  .cast-list {
    display: block;
  }
}

/* ========================================================
   About（芸術監督：コンテンツ用 / MESSAGE セクション）
   ・PC：左 画像 / 右 テキスト（50% / 50%）
   ・高さはテキスト量に合わせて自動伸長
   ・左画像の縦横比は保ちつつ、コンテナにフィット
======================================================== */

.about {
  /* テキストの位置（画像上の about-txt） */
  --txt-left: 65%;   /* 左右位置（%） */
  --txt-bottom: 14%; /* 下からの距離（%） */

  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* 右テキストの高さに左画像を合わせる */
  max-width: 1240px;
  width: 100%;
  margin: 100px auto 0;
  padding: 0;
  z-index: 1;
}

/* 右側：テキストブロック（青背景） */
.about .scroll-cont {
  width: 50%;
  padding: clamp(15px, 1.25vw, 30px);
  background: rgba(74, 74, 108, 0.95); /* 青系の背景 */
  box-sizing: border-box;
}

/* 左側：画像ブロック */
.about .sticked-cont {
  width: 50%;
  position: relative;
  overflow: hidden;
  background: #d5d5d5; /* 読み込み前のバックアップ色（お好みで） */
  box-sizing: border-box;
}

/* 画像をコンテナいっぱいにフィットさせる */
.about .sticked-cont picture {
  position: absolute;
  inset: 0;
  display: block;
}

.about .sticked-cont img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* 横位置は中央寄せ（縦も中央） */
}

/* テキスト（MESSAGE本文） */
.scroll-cont-about-txt p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.25vw, 18px);
  letter-spacing: 0.05em;
  line-height: 1.7;
  text-align: left;
  color: #ffffff;
  padding-bottom: clamp(12px, 2.1vw, 30px);
}

/* 画像上の肩書き・名前（オーバーレイ） */
.about-txt {
  position: absolute;
  left: var(--txt-left);
  bottom: var(--txt-bottom);
  transform: translate(-50%, 0);
  text-align: center;
  white-space: nowrap;
}

.about-txt h3 {
  font-weight: 700;
  font-size: clamp(22px, 2.78vw, 40px);
  color: #fff;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  margin: 0;
  margin-bottom: 4px;
}

.about-txt h3 span {
  font-size: clamp(18px, 2.36vw, 34px);
  padding-right: clamp(8px, 1.39vw, 20px);
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
}

.about-txt p {
  font-weight: 700;
  font-size: clamp(20px, 2.78vw, 40px);
  color: #fff;
  line-height: 1.25;
  text-align: right;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  margin: 0;
}

/* =========================================
   SPレイアウト（画像 → テキストの縦並び）
   画像は横幅に合わせて縦長で表示
========================================= */
@media (max-width: 968px) {
  .about {
    flex-direction: column;
    max-width: 100%;
    margin: 80px auto 0;
  }

  .about .sticked-cont,
  .about .scroll-cont {
    width: 100%;
  }

  /* 画像ブロック：縦長画像を想定（2000 x 2800） */
  .about .sticked-cont {
    aspect-ratio: 2000 / 2800; /* 目安の縦横比。変えたければここを調整 */
  }

  .about .scroll-cont {
    margin-top: 0;
    padding: 40px 20px 40px;
  }
}

/* さらに狭いSPでの微調整用（必要なら） */
@media (max-width: 480px) {
  .about .scroll-cont {
    padding: 32px 16px 32px;
  }
}

/* ------------------------------------------------
   PERFORMANCE SCHEDULE
   ------------------------------------------------ */

.performance__Contents {
  max-width: 1080px;
  margin: 100px auto 0;
  padding: 100px 60px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  font-family: "Noto Sans JP", sans-serif;
  color: #4a4a6c;
}

.performance-schedule {
  text-align: center;
}

.performance-schedule__list {
  max-width: 640px;
  margin: 0 auto 64px;
}

.performance-schedule__item {
  margin: 0;
}

.performance-schedule__title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.performance-schedule__time {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.performance-schedule__divider {
  width: 100px;
  height: 1px;
  margin: 32px auto;
  background-color: #d9d9d9;
}

/* ボタンまわり */

.performance-schedule__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.performance-schedule__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 480px;
  max-width: 100%;
  height: 80px;
  padding: 0 16px;       /* 上下paddingは0にして高さで管理 */
  background-color: #4a4a6c;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.6;      /* 複数行になったときの行間用 */
}


.performance-schedule__btn--cast {
  line-height: 1.4;
}

.performance-schedule__btn-main {
  display: block;
}

.performance-schedule__btn-note {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

/* SP専用 */

@media (max-width: 968px) {

  .performance__Contents {
    width: 100%;
    margin: 60px auto 0;
    padding: 60px 5% 80px;
    box-sizing: border-box;
  }

  .performance-schedule__title {
    font-size: 20px;
  }

  .performance-schedule__time {
    font-size: 14px;
  }

  .performance-schedule__buttons {
    gap: 50px;
  }

  .performance-schedule__btn {
    width: 480px;
    max-width: 90%;
  }

  .performance-schedule__btn-note {
    font-size: 14px;
  }

  /* ボタン内の PC改行だけ消したいとき用 */
  .sp-only {
    display: inline;
  }
}

/* PCでの sp-only 改行はそのまま <br> として効いてOKならこの指定は不要 */

/* ------------------------------------------------
   TICKET セクション
--------------------------------------------------- */

/* ベースフォント */
#section-ticket {
  font-size: 14px;
  line-height: 1.8;
}

@media (min-width: 769px) {
  #section-ticket {
    font-size: 16px;
  }
}

#section-ticket .section__inner {
  margin-bottom: 32px;
}

/* 全体ボックス */
#section-ticket .ticket__Contents {
  max-width: 100vw;
  margin: 100px auto 120px;
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.95);
  font-family: "Noto Sans JP", sans-serif;
  /* ★flexはやめる：ここがScrollHint的な落とし穴だった */
  /* display: flex;
  flex-direction: column;
  align-items: center; */
}

/* 料金表ラッパー（ScrollHint 対象） */
#section-ticket .ticket__table-wrap {
  max-width: 1080px;          /* コンテンツ最大幅 */
  margin: 0 auto;
  overflow-x: auto;           /* はみ出せばスクロール＋ヒント */
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  position: relative;         /* ヒントアイコンなどの絶対配置先 */
}

/* table 基本：横幅768px固定（セル幅を伸縮させない） */
#section-ticket .ticket-table {
  width: 768px;               /* 常に768px */
  margin: 0 auto;
  table-layout: fixed;
  border-collapse: collapse;
  background: #ffffff;
}

.ticket-table th,
.ticket-table td {
  border: 1px solid #d9d9d9;
  padding: 10px 16px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

/* ヘッダー行 */
.ticket-table thead th {
  background: #4a4a6c;
  color: #ffffff;
  font-weight: 500;
}

.ticket-table__seat-header {
  width: 140px;
}

/* 席種列 */
.ticket-seat {
  text-align: left;
  font-weight: 700;
  padding-left: 16px;
}

/* 席種ごとの色（左列のみ） */
.ticket-seat--vip {
  background: #b08829;
  color: #ffffff;
}
.ticket-seat--premier {
  background: #a597c5;
  color: #ffffff;
}
.ticket-seat--ss {
  background: #e3b3ce;
  color: #ffffff;
}
.ticket-seat--s {
  background: #a5d2f4;
  color: #ffffff;
}
.ticket-seat--aa {
  background: #b9b0a9;
  color: #ffffff;
}
.ticket-seat--a {
  background: #f1d7ac;
  color: #ffffff;
}
.ticket-seat--b {
  background: #b3d3ad;
  color: #ffffff;
}
.ticket-seat--c {
  background: #a9badf;
  color: #ffffff;
}
.ticket-seat--d {
  background: #e3b0a9;
  color: #ffffff;
}
.ticket-seat--e {
  background: #a894a0;
  color: #ffffff;
}

/* 金額・ステータス表示 */
#section-ticket .ticket-price {
  display: block;
  color: #4a4a6c;
}

#section-ticket .ticket-status {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 16px;
}

.ticket-status--soldout,
.ticket-status--few {
  color: #e60012;
}

/* チケット表：読み込み中は非表示にしてチラ見え防止 */
.ticket__table-wrap.ticket-loading {
  opacity: 0;
  pointer-events: none;
}
.ticket__table-wrap.ticket-loaded {
  opacity: 1;
  transition: opacity 0.25s ease;
  pointer-events: auto;
}

/* ------------------------------------------------
   VIP特典ボックス（768pxに収める＆見出しはみ出し防止）
--------------------------------------------------- */
#section-ticket .ticket-vip {
  width: 768px;
  max-width: 100%;            /* 画面が狭いときは縮む */
  margin: 100px auto 0;
  padding: 50px;
  background: #4a4a6c;
  color: #ffffff;
  box-sizing: border-box;
}

/* 白いピル型の見出し部分：こーさん版を採用 */
#section-ticket .ticket-vip__head-wrap {
  display: inline-block;
  max-width: 100%;
  width: 100%;
  margin: 0 auto 50px;
  padding: 8px 40px;
  background: #ffffff;
  border-radius: 999px;
  box-sizing: border-box;
  text-align: center;
}

#section-ticket .ticket-vip__head {
  display: inline-block;
  color: #4a4a6c;
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;        /* テキストを1行にキープ */
}

#section-ticket .ticket-vip__list {
  margin: 0;
  padding-left: 2.5em;
  width: 95%;
}

#section-ticket .ticket-vip__list li {
  margin-bottom: 4px;
}

/* 注意書き */
#section-ticket .ticket-notes {
  width: 768px;
  max-width: 100%;
  margin: 24px auto 0;
}

#section-ticket .ticket-notes__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

#section-ticket .ticket-notes__list li {
  font-size: 16px;
  margin-bottom: 4px;
  padding-left: 1em;
}

/* 割引帯 */
#section-ticket .ticket-discount {
  width: 768px;
  max-width: 100%;
  margin: 50px auto 0;
  text-align: center;
  background: #4a4a6c;
  box-sizing: border-box;
}

#section-ticket .ticket-discount p {
  display: inline-block;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

/* ------------------------------------------------
   SP相当レイアウト（メインは 968px 以下をSP扱い）
--------------------------------------------------- */
@media (max-width: 968px) {

  #section-ticket .ticket__Contents {
    margin: 0;
    padding: 60px 0 0;
    padding-bottom: 0;
    /* align-items: flex-start;  flex消したので不要だが残ってても実害なし */
  }

  #section-ticket .ticket__table-wrap {
    width: 90%;                   /* 画面の90%にして左右に余白 */
    margin: 0 auto;
    overflow-x: auto;             /* この幅帯でもスクロール＋ヒント */
    -webkit-overflow-scrolling: touch;
  }

  #section-ticket .ticket-vip {
    width: 90%;
    max-width: 768px;
    margin: 24px auto 0;
    padding: 40px 5%;
  }

  #section-ticket .ticket-vip__head-wrap {
    margin-bottom: 40px;
    padding-inline: 24px;
    padding: 0 40px;
  }

  #section-ticket .ticket-notes {
    width: 90%;
    max-width: 768px;
    margin: 24px auto 0;
    color: #4a4a6c;
  }

  #section-ticket .ticket-notes__list li {
    font-size: 14px;
    margin-bottom: 4px;
    padding-left: 0;
    max-width: 89vw;
  }

  #section-ticket .ticket-discount {
    width: 100%;
    max-width: none;
    margin: 50px 0;
  }
}

/* ========================================================
  SALES SCHEDULE
======================================================== */

.sales-schedule {
  color: #4a4a6c; /* いつもの青紫 */
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.9;
  max-width: 768px;
  margin: 0 auto;
}

.sales__Contents {
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  margin: 100px auto 0;
  padding: 100px 0;
}

.sales-schedule__lead {
  margin-bottom: 24px;
}

/* 日付テーブル風レイアウト */
.sales-schedule__table {
  margin: 0 0 24px;
  font-family: "Noto Sans JP", sans-serif;
  max-width: 768px;
}

.sales-schedule__row {
  display: flex;
  gap: 40px;
  margin-bottom: 4px;
}

.sales-schedule__row dt {
  width: 180px;
  white-space: nowrap;
}

.sales-schedule__row dd {
  flex: 1;
}

/* ※ 注意書き */
.sales-schedule__notes {
  margin: 8px 0 40px;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  list-style: none;
  max-width: 1080px;
}

.sales-schedule__notes li + li {
  margin-top: 4px;
}

.sales-schedule__link {
  color: #4a4a6c;
  text-decoration: underline;
}

/* 青いチケットボタン */
.sales-ticket-btns {
  margin: 80px auto 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  max-width: 1080px;
  font-family: "Noto Sans JP", sans-serif;
}

.sales-ticket-btn {
  display: block;
  width: 480px;
  max-width: 90%;
  padding: 18px 16px;
  background: #4a4a6c;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
}

.sales-ticket-btn__title {
  display: block;
  font-size: 16px;
  line-height: 1.6;
}

.sales-ticket-btn__cta {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.6;
}

/* 注意事項ボックス（濃い青背景） */
.sales-attention {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 5% 28px;
  background: #4a4a6c;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
}

.sales-attention h3 {
  font-size: 24px;           /* 指定どおり */
  font-weight: 600;          /* Noto Sans JP Medium 相当 */
  margin: 0 0 16px;
  color: #ffffff;
}

.sales-attention ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  line-height: 1.8;
}

.sales-attention li + li {
  margin-top: 4px;
}

/* SP 調整（SALES SCHEDULE） */
@media (max-width: 968px) {

  .sales__Contents {
    margin: 60px auto 0;
    padding: 60px 0;
  }

  .sales-schedule__row {
    flex-direction: column;
    gap: 0;
    margin-top: 24px;   /* ★各行の上マージンを24px */
    margin-bottom: 8px;
  }

  .sales-schedule__row:first-child {
    margin-top: 0;      /* 先頭だけはリード文との間を現状維持したい場合 */
  }

  .sales-schedule__row dt {
    width: auto;
    font-size: 16px;    /* ★SPでも明示的に16px指定 */
    font-weight: 600;   /* ★少し太く */
  }

  .sales-schedule__row dd {
    margin: 0;          /* ★デフォルトのインデントを消してdtと縦位置を揃える */
    font-size: 14px;
  }

  .sales-ticket-btns {
    margin: 32px auto 60px;
    gap: 50px;
  }

  .sales-attention {
    padding: 24px 5% 20px;
  }

  .sales-attention h3 {
    font-size: 20px; /* SPで少し抑えめにする場合はここ調整してOK */
  }
}

/* ========================================================
  Youtube（ユーチューブコンテンツ用）
======================================================== */

/* MOVIE セクション全体を青い帯に */
#section-movie {
  background: rgba(74, 74, 108, 0.95);
}

/* MOVIE 見出し専用調整 */
#section-movie .section__inner {
  /* 他セクションのレイアウトはそのままに、縦方向だけ調整 */
  padding-top: 100px;      /* 上に 100px */
}

#section-movie h2 {
  margin: 0 0 100px 80px;
  padding: 0;
  background: none;        /* 他セクションの白帯を打ち消し */
  color: #ffffff;
  margin-left: clamp(24px, 5.56vw, 80px);
}

/* 動画リスト本体 */
.youtube-list {
  display: block;
  width: 100%;
  padding: 0 0 100px;      /* 下だけ 100px、上側は h2 側で確保 */
  background: transparent; /* 背景は #section-movie に移動 */
}

.youtube-list ul {
  display: flex;
  flex-wrap: wrap;
  width: 80%;              /* PC時 80% */
  margin: 0 auto;          /* 中央寄せ */
  padding: 0;
  list-style: none;
  gap: clamp(16px, 2vw, 30px);
}

.youtube-list ul li {
  position: relative;
  flex: 0 1 calc(50% - (clamp(16px, 2vw, 30px) / 2)); /* PCで2列 */
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

/* 各サムネ間の縦スペース（PC） */
#section-movie .youtube-list li {
  margin-bottom: 50px;
}

.youtube-list ul li iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* SPは1列表示 */
@media (max-width: 968px) {

  /* 見出しまわり SP用 */
  #section-movie .section__inner {
    padding-top: 40px;
    padding-right: 5%;
    padding-left: 5%;    
  }

  #section-movie h2 {
    margin-left: 0;
    margin-bottom: 40px;
  }

  .youtube-list {
    padding-bottom: 40px;
  }

  .youtube-list ul {
    width: 90%;
    gap: 0;
  }

  .youtube-list ul li {
    flex-basis: 100%;
  }

  #section-movie .youtube-list li {
    margin-bottom: 16px;
  }
}


/* =========================================
   faq
========================================= */

.faq-list {
  color: #4a4a6c;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  max-width: 1080px;
  margin: 0 auto;
}

.faq__Contents {
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  margin: 100px auto 0;
  padding: 100px 0;
}

.faq-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-list ul li {
  margin-bottom: 30px;
  padding: 20px;
  margin-left: 40px;
  margin-right: 40px;
}

/* Q./A. ＋ テキストを横並びにする行 */
.faq-list-flex {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;  /* ★ここがポイント：ベースライン揃え */
}

/* 左側 Q./A. */
.faq-list-flex-title {
  width: 60px;
}

.faq-list-flex-title p {
  margin: 0;                          /* 余計なmarginを消す */
  font-family: var(--GFS);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.1em;
  color: #4a4a6c;
}

/* 右側 テキスト */
.faq-list-flex-txt {
  width: calc(100% - 60px);
}

.faq-list-flex-txt p {
  margin: 0;                          /* 余計なmarginを消す */
  font-size: 14px;
  line-height: 1.9;
  color: #4a4a6c;
}

/* 1行目（質問文）だけ太字＆16px */
.faq-list ul li .faq-list-flex:nth-child(1) .faq-list-flex-txt p {
  font-weight: 700;
  font-size: 16px;
}

/* Q行とA行の間にちょっとだけ余白 */
.faq-list ul li .faq-list-flex:nth-child(1) {
  margin-bottom: 10px;
}

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

  .faq-list ul li {
    margin-bottom: 20px;
    padding: 15px 10px;
  }

  .faq-list ul li .faq-list-flex:nth-child(1) {
    margin-bottom: 10px;
  }

  .faq-list-flex-title {
    width: 40px;
  }

  .faq-list-flex-title p {
    font-size: 24px;
  }

  .faq-list-flex-txt {
    width: calc(100% - 40px);
  }

  .faq-list ul li .faq-list-flex:nth-child(1) .faq-list-flex-txt p {
    font-size: 16px;
  }
}

/* =========================================
   access-map Googleマップ用
   ========================================= */

.access__Contents {
  width: 100%;
  margin: 100px auto 0;
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.95);
  font-family: "Noto Sans JP", sans-serif;
}

.access__Contents ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.access__Contents li {
  list-style: none;  /* ドット非表示 */
  font-size: 16px;
  font-weight: 700;
}

.access-txt {
  max-width: 1080px;
  margin: 0 auto;
}
.access-list {
  max-width: 1080px;
  margin: 0;
}
/* ACCESS 内の h3 共通スタイル */
#section-access .access-txt h3,
#section-access .access-list h3 {
  font-size: 16px;      /* お好みのサイズに */
  font-weight: 500;     /* 太さもここで指定 */
  margin: 50px 0 8px;      /* 下だけ少し余白（お好みで） */
  font-family: "Noto Sans JP", sans-serif;
}
#section-access .access-list-img {
  position: relative;
  overflow-x: auto;              /* 横スクロールさせる */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
/* ACCESS内のルート図画像：高さを大きく＋横スクロール用に制御 */
#section-access .access-list-img img {
  display: block;
  max-width: none;      /* グローバルの max-width:100% を打ち消す */
  width: auto;          /* 高さ基準で横幅が決まるようにする */
  height: 160px;        /* ★元よりだいたい2倍くらいの高さに */
}

/* PCではもう少し大きく見せたい場合（お好み） */
@media (min-width: 769px) {

  #section-access .access-list {
    max-width: 1080px;
    margin: 0 auto;
  }

  #section-access .access-list-img {
    overflow-x: visible;
  }

  #section-access .access-list-img img {
    height: 160px;        /* 高さは自動に戻す */
    width: auto;         /* 実表示幅 = max-width に揃えるイメージ */
    margin-left: 0;
  }

}

.access-list-img {
  position: relative;
  overflow-x: auto;              /* 横方向だけスクロール */
  overflow-y: hidden;            /* 縦ははみ出さない */
  -webkit-overflow-scrolling: touch; /* SPでスワイプを滑らかに */
  font-family: "Noto Sans JP", sans-serif;
}
.access-map {
  width: 100%;
  margin: 0 auto;
}
.access-map__frame {
  position: relative;
  width: 100%;
  margin-inline: auto;
  padding-top: 56.25%;     /* 16:9比率（= 9 / 16 * 100） */
}
.access-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .access__Contents {
    width: 100vw;
    margin: 0;
    padding: 10px 16px 80px;
    box-sizing: border-box;
  }

  .access__Contents ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
  }

  .access__Contents li {
    list-style: none;  /* ドット非表示 */
    font-size: 16px;
    font-weight: 700;
  }

  .access__Contents p {
    font-size: 14px;
  }

  #section-access .access-map {
    margin-top: 0;
    padding-top: 0;
  }
}

@media (max-width: 1360px) {

  /* 上の白板（所在地＋ルート図） */
  #section-access .access__Contents {
    /* 左は今までの感覚をキープ（例として 5%）
       右は「左と同じ感覚 + 41px」でよける */
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
  }

  /* 下の地図も同じように右をよける */
  #section-access .access-map {
    box-sizing: border-box;
  }
}
@media (min-width: 1601px) {
  .access-map__frame {
    padding-top: 50.25%;     /* 16:9比率（= 9 / 16 * 100） */
  }
}

/* =======================================================
   MORE ボタン共通スタイル（MEET THE CAST / PICK UP）
   ======================================================= */

/* ボタン本体：白塗り＋ネイビーボーダー（220×50固定） */
.mthec-box .more_button,
.pickup-btn {
  margin-top: auto;               /* 下に押し付ける（グリッド内で） */
  margin-left: auto;              /* 左右センター */
  margin-right: auto;
  width: 220px;                   /* 幅固定 */
  height: 50px;                   /* 高さ固定 */
  border: 1px solid #4a4a6c;      /* ネイビーの枠 */
  background-color: #ffffff;      /* 白塗り */
  text-align: center;

  display: flex;                  /* 中のテキストを縦横中央寄せ */
  align-items: center;
  justify-content: center;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    opacity 0.25s ease;
}

/* ボタン内テキスト：18px Bold / Noto Sans JP / 通常時ネイビー */
.mthec-box .more_button a,
.pickup-btn a {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: 700;               /* Bold */
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a4a6c;                 /* 文字色：ネイビー */
  font-family: "Noto Sans JP", sans-serif;
}

/* ホバー時：ネイビー塗り＋白文字（ボーダーはそのまま） */
.mthec-box .more_button:hover,
.pickup-btn:hover {
  background-color: #4a4a6c;      /* 塗り：ネイビー */
}

.mthec-box .more_button:hover a,
.pickup-btn:hover a {
  color: #ffffff;                 /* 文字：白 */
}

/* ===========================
   MEET THE CAST SP用 MOREボタン
   =========================== */
@media (max-width: 767px) {
  /* 幅160pxカード内の MORE ボタンサイズ上書き */
  #section-meet .meet-card .more_button {
    width: 130px;
    height: 40px;
  }

  #section-meet .meet-card .more_button a {
    font-size: 14px;
  }
}

  /* =========================================
     SP ナビ：ポップアップ＋吹き出しデザイン
     ========================================= */

  /* ルート：常に存在させておき、pointer-events でON/OFF */
  .sp-nav {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: block;          /* 既存の display:none; を上書き */
    pointer-events: none;    /* 閉じているときは触れない */
  }

  /* 背景のうっすら黒板（タップで閉じるところ） */
  .sp-nav__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  /* 白いメニュー板（吹き出し本体） */
  .sp-nav__panel {
    position: absolute;
    right: 0;                    /* 右から 5% 空ける */
    top: 68px;                     /* SPヘッダーの下あたりに配置（ヘッダー80px想定） */
    bottom: 3vh;                   /* 下から 5% の位置で止める */
    width: 95vw;                   /* デバイス幅の 90% */
    max-width: 520px;              /* 横幅の上限。不要なら削除OK */
    margin: 0;
    padding: 35px 0 24px 30px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px 0 0 12px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow-y: auto;
  }

  /* 吹き出しの三角形（バーガーボタン側に向ける） */
  .sp-nav__panel::before {
    content: "";
    position: absolute;
    top: -12px;
    right: 26px; /* バーガーボタンの少し左下あたりに見える位置 */
    border-style: solid;
    border-width: 0 10px 12px 10px;
    border-color: transparent transparent rgba(255, 255, 255, 0.95) transparent;
  }

  /* 開いているとき */
  .sp-nav.is-open {
    pointer-events: auto;
  }

  .sp-nav.is-open .sp-nav__backdrop {
    opacity: 1;
  }

  .sp-nav.is-open .sp-nav__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* メニューリストやSNSは中身のレイアウトを維持 */
  .sp-nav__list {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2列 */
    column-gap: 40px;
    row-gap: 20px;
  }

  .sp-nav__list li + li {
    margin-top: 0;
  }

  .sp-nav__list a {
    display: block;
    font-family: var(--GFS);
    font-size: 14px;
    letter-spacing: 0.14em;
    color: #4a4a6c;
    text-decoration: none;
    text-align: left;
  }

  .sp-nav__list a:hover {
    text-decoration: underline;
  }
  
  .sp-nav__sns {
    margin-top: auto;
    margin-right: 33px;
    display: flex;
    justify-content: center;
    gap: 16px;
  }

    /* ▼ SPナビ内 CTAボタン（アクセス / チケット購入） */
  .sp-nav__buttons {
    margin: 16px 30px 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .sp-nav__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 360px;
    height: 80px;
    background-color: #4a4a6c;
    color: #ffffff;
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
  }

  .sp-nav__btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
  }

  .sp-nav__btn-icon img,
  .sp-nav__btn-icon svg {
    display: block;
    width: 22px;
    height: 22px;
  }

  .sp-nav__btn-label {
    letter-spacing: 0.12em;
    white-space: nowrap;
  }

}
