/* 定数（CSSカスタムプロパティ） */
:root {
  --bg: #161515;
  /* サイドバー（左メニュー）の幅：PC（1440px以上）で適用 */
  --sidebar-width: 360px;
  /* 基本フォント。Adobe Fonts の fot-tsukubrdgothic-std を先頭に使う */
  --font-base: "fot-tsukubrdgothic-std", sans-serif, "游ゴシック体", YuGothic,
    "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
}


/* Windows では fot-tsukubrdgothic-std を使わず、次のフォントにフォールバックさせる */
html.is-windows {
  --font-base: sans-serif, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
    "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka,
    "ＭＳ Ｐゴシック", "MS PGothic";
}

* {
  box-sizing: border-box;
}

/* p のデフォルト上下marginをリセット */
p {
  margin: 0;
}

/* 下線を消す汎用クラス（a タグなどに付与） */
.no-underline {
  text-decoration: none;
}

body {
  margin: 0;
  background: var(--bg);
  font-family: var(--font-base);
}

/* メニューを開いている間は後ろ（body）をスクロールさせない */
body.menu-is-open {
  overflow: hidden;
}

/* 高さは100% */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg);
}

/* hero-info と lineup をまとめる箱（縦並び・gap: 56px）
   親 .hero が align-items:center のため、幅を100%に固定しないと
   中身の最大幅まで広がり（=ビューポート超え）、padding が効かなくなる */
.hero-body {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .hero-body {
    /* モバイル用の余白 */
    margin-bottom: 240px;
  }
}

/* PC用セクション1：コンサート背景画像の上にコピーを重ねる */
.pc-section-1 {
  position: relative;
  width: 100%;
  /* 1200:800 の比率を維持（幅いっぱいに広がり、高さは幅に比例して追従） */
  aspect-ratio: 1200 / 800;
}

/* 背景画像は枠いっぱいに敷き詰める（比率差分はクロップ） */
.pc-section-1 > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキストオーバーレイ（左寄せ・縦中央）。画像上でも読めるよう影を付ける */
.pc-section-1__copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 6vw, 88px);
  color: #FFFFFF;
  /* 上下中央から少し上へ（セクション高さに対する割合。数値を大きくするほど上がる） */
  transform: translateY(-16%);
}

/* 見出し GO GLOBAL（GO=白 / GLOBAL=ブランドピンク） */
.pc-section-1__title {
  margin: 0;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 800;
  font-size: 88px;
  line-height: 100%;
  letter-spacing: 1.52px;
}

.pc-section-1__title span {
  color: #E23C8E;
}

/* リード文（熱狂を、日本から世界へ。） */
.pc-section-1__lead {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: 0.88px;
}

/* 本文 */
.pc-section-1__text {
  margin-top: 40px;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 22px;
  line-height: 125%;
  letter-spacing: 0.6px;
}

/* ===== SP用セクション1（920px未満で表示。PCセクションと入れ替え） ===== */
.sp-section-1 {
  position: relative;
  width: 100%;
  /* セクション枠は 375:767 の比率。画像より下は背景色を見せる */
  aspect-ratio: 375 / 767;
  background: #000000;
}

/* 920px以上では非表示（PCセクションを表示） */
@media (min-width: 920px) {
  .sp-section-1 {
    display: none;
  }
}

/* 画像は上側に 375:726 の比率で配置（残りの下部は背景色を表示） */
.sp-section-1 > img {
  display: block;
  width: 100%;
  aspect-ratio: 375 / 726;
  object-fit: cover;
}

/* テキスト：下寄り・左寄せ */
.sp-section-1__copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 8vw, 80px);
  /* 左の余白だけ小さくして左へ寄せる（小さく→左 / 大きく→右） */
  padding-left: clamp(16px, 5vw, 52px);
  color: #FFFFFF;
  /* 下寄せから少し上へ（セクション高さに対する割合。数値を大きくするほど上がる） */
  transform: translateY(-39%);
}

/* 見出し GO GLOBAL（GO=白 / GLOBAL=ブランドピンク） */
.sp-section-1__title {
  margin: 0;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 800;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 1.52px;
}

.sp-section-1__title span {
  color: #E23C8E;
}

/* リード文（熱狂を、日本から世界へ。） */
.sp-section-1__lead {
  font-family: var(--font-base);
  margin-top: 14px;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.88px;
  color: #FFFBF2;
}

/* 本文 */
.sp-section-1__text {
  font-family: var(--font-base);
  margin-top: 22px;
  font-weight: 700;
  font-size: 18px;
  line-height: 125%;
  letter-spacing: 0.6px;
  color: #FFFBF2;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* ===== SP用セクション2（920px未満で表示） ===== */
.sp-section-2 {
  position: relative;
  width: 100%;
  /* セクション枠は 375:912 の比率。画像より下は背景色を見せる */
  aspect-ratio: 375 / 912;
  background: #000000;
}

/* 920px以上では非表示（PCセクションを表示） */
@media (min-width: 920px) {
  .sp-section-2 {
    display: none;
  }
}

/* 画像は上側に 375:573 の比率で配置（残りの下部は背景色を表示） */
.sp-section-2 > img {
  display: block;
  width: 100%;
  aspect-ratio: 375 / 573;
  object-fit: cover;
}

/* テキスト：下寄り・左寄せ */
.sp-section-2__copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 8vw, 80px);
  color: #FFFFFF;
  /* 下寄せから少し上へ（数値を大きくするほど上がる） */
  transform: translateY(-18%);
}

/* 見出し JAPAN'S / LARGEST / IDOL & FASHION / FESTIVAL. */
.sp-section-2__title {
  margin: 0;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 1.31px;
}

/* IDOL / FASHION はブランドピンク（& は白のまま） */
.sp-section-2__title .pink {
  color: #E23C8E;
}

/* リード文 */
.sp-section-2__lead {
  font-family: var(--font-base);
  margin-top: 22px;
  font-weight: 700;
  font-size: 18px;
  line-height: 145%;
  letter-spacing: 0.88px;
  color: #FFFBF2;
}

/* 本文 */
.sp-section-2__text {
  font-family: var(--font-base);
  margin-top: 18px;
  font-weight: 400;
  font-size: 18px;
  line-height: 125%;
  letter-spacing: 0.6px;
  color: #FFFBF2;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* ===== SP用セクション3（920px未満で表示） ===== */
.sp-section-3 {
  position: relative;
  width: 100%;
  /* セクション枠は 375:1015 の比率。画像より下は背景色を見せる */
  aspect-ratio: 375 / 1015;
  background: #000000;
}

/* 920px以上では非表示（PCセクションを表示） */
@media (min-width: 920px) {
  .sp-section-3 {
    display: none;
  }
}

/* 画像は上側に 375:573 の比率で配置（残りの下部は背景色を表示） */
.sp-section-3 > img {
  display: block;
  width: 100%;
  aspect-ratio: 375 / 573;
  object-fit: cover;
}

/* テキスト：下寄り・左寄せ */
.sp-section-3__copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 8vw, 80px);
  color: #FFFFFF;
  /* 下寄せから少し上へ（数値を大きくするほど上がる） */
  transform: translateY(-13%);
}

/* 見出し GROWTH */
.sp-section-3__title {
  margin: 0;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 1.31px;
  color: #FFFBF2;
}

/* リード文（確かな実りから、新たな芽吹きへ。） */
.sp-section-3__lead {
  font-family: var(--font-base);
  margin-top: 18px;
  font-weight: 700;
  font-size: 20px;
  line-height: 145%;
  letter-spacing: 0.88px;
  color: #FFFBF2;
}

/* 本文 */
.sp-section-3__text {
  font-family: var(--font-base);
  margin-top: 18px;
  font-weight: 400;
  font-size: 18px;
  line-height: 125%;
  letter-spacing: 0.6px;
  color: #FFFBF2;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* PC用セクション2：背景画像の上に右寄せでコピーを重ねる */
.pc-section-2 {
  position: relative;
  width: 100%;
  /* 1200:880 の比率を維持（幅いっぱいに広がり、高さは幅に比例して追従） */
  aspect-ratio: 1200 / 880;
}

/* 背景画像は枠いっぱいに敷き詰める（比率差分はクロップ） */
.pc-section-2 > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキストオーバーレイ（ブロックを右側に寄せ、文字は左揃え・縦中央） */
.pc-section-2__copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: clamp(16px, 6vw, 88px);
  color: #FFFFFF;
  transform: translateY(-2%);
}

/* 各行の左端を揃えるためのまとめ箱（幅は最長行に合わせて収縮） */
.pc-section-2__inner {
  text-align: left;
}

/* 見出し JAPAN'S LARGEST / IDOL & FASHION / FESTIVAL. */
.pc-section-2__title {
  margin: 0;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: 1.52px;
}

/* IDOL / FASHION はブランドピンク（& は白のまま） */
.pc-section-2__title .pink {
  color: #E23C8E;
}

/* リード文 */
.pc-section-2__lead {
  font-family: var(--font-base);
  margin-top: 20px;
  margin-bottom: 38px;
  font-weight: 700;
  font-size: 20px;
  line-height: 145%;
  letter-spacing: 0.88px;
}

/* 本文 */
.pc-section-2__text {
  font-family: var(--font-base);
  margin-top: 24px;
  font-weight: 400;
  font-size: 20px;
  line-height: 125%;
  letter-spacing: 0.6px;
}

/* PC用セクション3：背景画像の上に左寄せ・下寄りでコピーを重ねる */
.pc-section-3 {
  position: relative;
  width: 100%;
  /* 1200:1312 の比率を維持（幅いっぱいに広がり、高さは幅に比例して追従） */
  aspect-ratio: 1200 / 1312;
  /* 下部に下線 */
  border-bottom: 1px solid #FFFFFF1F;
}

/* 背景画像は枠いっぱいに敷き詰める（比率差分はクロップ） */
.pc-section-3 > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキストオーバーレイ（左寄せ・縦は下寄り） */
.pc-section-3__copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: clamp(16px, 6vw, 88px);
  color: #FFFFFF;
  transform: translateY(-7%);
}

/* テキストのまとめ箱（左揃え）。スクロール表示の監視対象 */
.pc-section-3__inner {
  text-align: left;
}

/* 見出し GROWTH */
.pc-section-3__title {
  margin: 0;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: 1.52px;
  color: #FFFBF2;
}

/* リード文（確かな実りから、新たな芽吹きへ。） */
.pc-section-3__lead {
  font-family: var(--font-base);
  margin-top: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 145%;
  letter-spacing: 0.88px;
  color: #FFFBF2;
}

/* 本文（段落間は少し広めに） */
.pc-section-3__text {
  margin-top: 26px;
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 20px;
  line-height: 125%;
  letter-spacing: 0.5px;
  color: #FFFBF2;
}

/* ===== スクロール表示：表示範囲に入ったらコピーをフェードイン ===== */
/* html.is-reveal は head で即時付与。JS無効時はこの規則が効かず通常表示される */
html.is-reveal .js-reveal > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

/* 表示範囲に入ったら表示 */
html.is-reveal .js-reveal.is-visible > * {
  opacity: 1;
  transform: none;
}

/* 子要素を少しずつ遅らせて順に出す（stagger） */
.js-reveal.is-visible > *:nth-child(1) { transition-delay: 0s; }
.js-reveal.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.js-reveal.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.js-reveal.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.js-reveal.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.js-reveal.is-visible > *:nth-child(6) { transition-delay: 0.40s; }
.js-reveal.is-visible > *:nth-child(7) { transition-delay: 0.48s; }
.js-reveal.is-visible > *:nth-child(8) { transition-delay: 0.56s; }
.js-reveal.is-visible > *:nth-child(9) { transition-delay: 0.64s; }

/* モーション低減設定の環境ではアニメーションせず即表示 */
@media (prefers-reduced-motion: reduce) {
  html.is-reveal .js-reveal > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.sp-section-information {
  margin-left: 12px;
  margin-right: 12px;
  margin-bottom: 100px;
}

/* 920px以上では非表示（PC版INFORMATIONを表示） */
@media (min-width: 920px) {
  .sp-section-information {
    display: none;
  }
}

.sp-section-information__card {
  border: 2px solid #FFFFFF1F;
  border-radius: 8px;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sp-section-information__title-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sp-section-information__title {
  margin: 0;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0.76px;
  color: #FFFFFF;
}

.sp-section-information__subtitle {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.33px;
  color: #FFFFFF;
}

.sp-section-information__content-col {
  display: flex;
  flex-direction: column;
  background: #171717;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.sp-section-information__map {
  width: 100%;
  height: 350px;
}

.sp-section-information__content {
  padding-top: 40px;
  gap: 32px;
  color: #FFFFFF;
}

.sp-section-information__content-item {
  display: flex;
  flex-direction: row;
  /* ラベルと値の1行目の上端を揃える（中央寄せだと長い行でラベルが下にずれるため） */
  align-items: flex-start;
  gap: 24px;
  padding-top: 32px;
  &:first-child {
    padding-top: 0;
  }
  padding-bottom: 32px;
  border-bottom: 2px solid #FFFFFF1F;
  &:last-child {
    border-bottom: none;
  }
}

.sp-section-information__content-item-left {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 83px;
}

.sp-section-information__content-item-left-label1 {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.33px;
  color: #E13C8C;
}

.sp-section-information__content-item-left-label2 {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -5%;
  color: #FFFFFF80;
}

.sp-section-information__content-item-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sp-section-information__content-item-right-value1 {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.33px;
  color: #FFFFFF;
}

.sp-section-information__content-item-right-value2 {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.33px;
  color: #FFFFFF80;
}


/* information */
.pc-section-information {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1104px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
}

.pc-section-information__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  background: #171717;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.pc-section-information__content-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.pc-section-information__content-item-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 120px;
  text-align: right;
}

.pc-section-information__content-item-left-label1 {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.33px;
  color: #FFFFFF;
}

.pc-section-information__content-item-left-label2 {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: -0.33px;
  color: #FFFFFF80;
}

.pc-section-information__content-item-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pc-section-information__content-item-right-value1 {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.33px;
  color: #FFFFFF;
  text-align: left;
}

.pc-section-information__content-item-right-value2 {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: -0.33px;
  color: #FFFFFF80;
  text-align: left;
}

/* これ動線（アイコンボタン。SVG自体が56×56の角丸ボタンデザイン） */
.menu-open {
  padding: 0;
  border: none;
  background: none;
  line-height: 0;
  cursor: pointer;
}

.menu-open img {
  display: block;
  width: 56px;
  height: 56px;
  /* 開閉に合わせて滑らかに回転 */
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* メニューを開いている間は矢印を反転（上向き→下向き） */
body.menu-is-open .menu-open img {
  transform: rotate(180deg);
}

/* モバイル＝メニューが左に常時表示されない時（1440px未満）：Openボタンを右下に固定表示 */
@media (max-width: 1679.98px) {
  .menu-open {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 40;
  }
}

/* アクションボタン（ピンク枠線の共通ボタン） */
.action-btn {
  height: 56px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  border: 2px solid #E13C8C;
  border-radius: 100px;
  color: #E23C8E;
  background: #FFFFFF;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.33px;
  align-items: center;
}

/* セカンドボタン（構造は同じ。色だけ変更） */
.action-btn--secondary {
  border-color: #FFFFFF4D;
  color: #FFFFFF;
  background: #161515;
}

/* ボタン右端のアイコン（テキストは中央のまま） */
.action-btn__icon {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

/* チケット購入導線（共通デザイン。a/button どちらでも使える） */
.ticket-cta {
  display: block;
  width: 100%;
  padding: 16px;
  background: #161515;
  border: 1px solid #FFFFFF1F;
  border-radius: 24px 24px 0 0;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
}

/* 画面下に固定表示するバリエーション／メニュー上部のバリエーション：通常は非表示 */
.ticket-cta--fixed,
.ticket-cta--menu {
  display: none;
}

/* モバイル（1440px未満）かつ画面の高さが700px以下のときだけ表示 */
@media (max-width: 1679.98px) and (max-height: 700px) {

  /* 画面下に固定表示 */
  .ticket-cta--fixed {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 30;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /* 閉じるアニメ（メニュースライド0.55s）が終わってから、ゆっくりフェードイン
       opacity/transform に 0.55s のディレイ、visibility も同タイミングで可視へ */
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.35s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.35s, visibility 0s linear 0.35s;
  }

  /* メニュー表示中は消す。開く時はディレイなしで素早くフェードアウト */
  body.menu-is-open .ticket-cta--fixed {
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  }

  /* メニュー上部にも同条件で表示 */
  .ticket-cta--menu {
    display: block;
  }
}

/* イベント情報バー（コンテナ）：通常は非表示 */
.event-bar {
  display: none;
}

/* 幅720px未満かつ画面の高さが700px超のときだけ画面下に固定表示（720px以上は非表示） */
@media (max-width: 719.98px) and (min-height: 700.02px) {
  .event-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 30;
    width: 100%;
    border-radius: 24px 24px 0 0;
    padding-top: 42px;
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 16px;
    background: #161515;
    border-top: 1px solid #FFFFFF1F;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /* 閉じるアニメ（メニュースライド0.55s）が終わってから、ゆっくりフェードイン */
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.35s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.35s, visibility 0s linear 0.35s;
  }

  /* 下のチケット購入（event-bar）表示中はOpenボタンを上にずらす */
  .menu-open {
    bottom: 192px;
  }

  /* メニュー表示中は消す。開く時はディレイなしで素早くフェードアウト */
  body.menu-is-open .event-bar {
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  }
}

.event-bar__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.event-bar__date {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 80%;
  letter-spacing: -0.076px;
  color: #FFFFFF;
}

.event-bar__date-day {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 13.3px;
  letter-spacing: 1.4px;
  color: #FFFFFF;
}

.event-bar__place {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.event-bar__venue {
  /* Tsukushi B Round Gothic */
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  color: #FFFFFF;
}

.event-bar__address {
  /* Tsukushi B Round Gothic */
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  color: #FFFFFF;
}

.event-bar__btn {
  width: 100%;
  max-width: 368px;
  height: 56px;
}


/* =========================================================
   SP用メニュー：下から開く（1440px未満で使用）
   ※PC用は .menu-pc（1440px以上のメディアクエリ内で定義）
   ========================================================= */
.menu-sp {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  /* 初期は画面下に隠す */
  transform: translateY(100%);
  /* 立ち上がりは速く、止まり際はフワッと（ease-out系のcubic-bezier） */
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  overflow-y: auto;
}

.menu-sp.is-open {
  transform: translateY(0);
}

/* SPメニューの中身（背景色はコンテナではなくこちらに付ける） */
.menu-sp__inner {
  background: var(--bg);
}

/* --- SPメニュー：イベント情報エリア --- */
/* pt: 42px, pb: 16px, px: 32px */
.menu-sp-content {
  padding: 84px 16px 16px 16px;
  gap: 48px;
}

/* コンテンツ内の各セクション（イベント情報／カウントダウン／ABOUT）を縦に並べる */
.menu-sp-sections {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* イベント情報全体（情報ブロック＋ボタン群） */
.menu-sp-event {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 日付＋会場の情報ブロック */
.menu-sp-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 日付（09.20 SUN）の行 */
.menu-sp-date {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
}

.menu-sp-date-text {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 80%;
  letter-spacing: 0.76px;
  color: #FFFFFF;
}

/* 曜日（SUN） */
.menu-sp-date-unit {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 22px;
  line-height: 13.3px;
  letter-spacing: 1.4px;
  font-weight: 800;
  color: #FFFFFF;
}

/* 会場（中央寄せ） */
.menu-sp-venue {
  text-align: center;
}

.menu-sp-venue-text {
  font-family: var(--font-base);
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  color: #FFFFFF;
}

.menu-sp-venue-text-address {
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  color: #FFFFFF;
}

/* ボタン縦並び（中央寄せ） */
.menu-sp-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* このエリアのアクションボタンは幅368px（画面が狭い時ははみ出さない） */
.menu-sp-actions .action-btn {
  width: 368px;
  max-width: 100%;
}

/* --- SPメニュー：カウントダウン --- */
.menu-sp-countdown {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  padding-top: 8px;
}

/* 各単位（日／時／分／秒）：数字＋ラベルを縦並び中央寄せ */
.menu-sp-countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 数字 */
.menu-sp-countdown-num {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0.76px;
  color: #FFFFFF;
}

/* ラベル（日・時・分・秒） */
.menu-sp-countdown-label {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  color: #FFFFFFB2;
}

/* --- SPメニュー：リンク行（ABOUT/NEWSなど共通。テキスト左・アイコン右） --- */
.menu-sp-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-right: 16px;
  padding-left: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #FFFFFF1F;
}

/* スクロール動線（クリック可能なもの）はカーソルを指に */
.menu-sp-link[data-target] {
  cursor: pointer;
}

/* タイトル */
.menu-sp-link-title {
  font-family: var(--font-base);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.33px;
  font-size: 18px;
  color: #ECECEC;
}

/* ラベル */
.menu-sp-link-label {
  padding-top: 4px;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: 0.76px;
  font-size: 16px;
  color: #ECECEC;
}

/* 右端のアイコン（20px） */
.menu-sp-link-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* --- メニュー：フッター（SNSアイコン）SP・PC共通 --- */
.menu-footer {
  padding-top: 24px;
}

/* 高さ 720px以下 */
@media (max-height: 720px) {
  .menu-footer {
    margin-bottom: 48px;
  }
}

/* SNSアイコンを横並び・左寄せ（gap: 12px） */
.menu-sns {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}

.menu-sns-link {
  line-height: 0;
}

.menu-sns-link img {
  display: block;
  width: 38px;
  height: 38px;
}

/* --- メニュー：コピーライト SP・PC共通 --- */
.menu-copyright {
  padding-top: 24px;
  padding-bottom: 48px;
}

.menu-copyright p {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 800;
  font-size: 8.5px;
  line-height: 100%;
  letter-spacing: 1.26px;
  color: #FFFFFF;
}

/* 主催行とコピーライト行の間隔をあける */
.menu-copyright p:first-child {
  margin-bottom: 12px;
}

/* コピーライトを一行で表示 */
.menu-copyright p:last-child {
  white-space: nowrap;
}

/* PC用メニューは1440px未満では非表示（表示は下のメディアクエリで） */
.menu-pc {
  display: none;
}

/* --- PCメニュー：中身 --- */
.menu-pc-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

/* イベント情報カード（明るいカード） */
.menu-pc-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: #FFFFFFEB;
  border-radius: 24px;
  padding-top: 48px;
  padding-left: 32px;
  padding-right: 32px;
  padding-bottom: 32px;
}

/* 日付＋会場 */
.menu-pc-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 日付（09.20 SUN） */
.menu-pc-date {
  text-align: center;
}

.menu-pc-date-text {
  font-family: "ropa-mix-pro", sans-serif;
  margin: 0;
  font-weight: 800;
  font-size: 72px;
  line-height: 80%;
  letter-spacing: 0.76px;
  color: #161515;
}

.menu-pc-date-unit {
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 13.3px;
  letter-spacing: 1.4px;
}

/* 会場（中央寄せ） */
.menu-pc-venue {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}

.menu-pc-venue-name {
  margin: 0;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  color: #000000;
}

.menu-pc-venue-addr {
  margin: 0;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  color: #000000;
}

/* ボタン群（縦並び・全幅） */
.menu-pc-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-pc-actions .action-btn {
  display: flex;
  width: 100%;
}

/* カウントダウン */
.menu-pc-countdown {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
}

.menu-pc-countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-pc-countdown-num {
  margin: 0;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 100%;
  letter-spacing: 0.76px;
  color: #000000;
}

.menu-pc-countdown-label {
  margin: 0;
  margin-top: 6px;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  color: #00000066;
}

/* リンク一覧（menu-sp-link を流用） */
.menu-pc-links {
  display: flex;
  flex-direction: column;
}

.menu-pc-links .menu-sp-link {
  padding-top: 18px;
  text-decoration: none;
}

/* 背景オーバーレイ（開いている間うっすら暗くする） */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* モバイル（1440px未満）のみ表示。表示切替は @media (min-width: 1440px) 側で行う */
.mobile-only {
  display: block;
}

/* メニューロゴ（中央寄せ・321px × 106px） */
.menu-logo {
  text-align: center;
}

/* SP（モバイル）のロゴは上下に24pxの余白・中央寄せ */
.menu-logo.mobile-only {
  width: 100%;
  padding-top: 24px;
  padding-bottom: 16px;
  text-align: center;
}

/* SPロゴは920px未満で表示（920px以上は非表示）。PCセクションと表示が入れ替わる */
@media (min-width: 920px) {
  .menu-logo.mobile-only {
    display: none;
  }
}

/* モバイル端末（480px以下）はロゴを321px × 34pxに */
@media (max-width: 480px) {
  .menu-logo.mobile-only img {
    width: 319px;
    height: 34px;
  }
}

.menu-logo img {
  width: 312px;
  height: 58px;
}

/* ロゴのリンクが sp-section-1 の重なりに負けないよう前面に出す */
.menu-logo a {
  position: relative;
  z-index: 2;
}

/* メニュー内の動線 */
.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.menu-nav a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  color: #111;
  text-decoration: none;
  font-size: 16px;
}

.menu-nav a:hover {
  background: rgba(0, 0, 0, 0.12);
}

/* 幅1440px以上：PC用メニューを左に常時表示 */
@media (min-width: 1440px) {
  body {
    display: flex;
  }

  /* PC用メニューを左固定のサイドバーとして常時表示 */
  .menu-pc {
    display: block;
    position: sticky;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    flex-shrink: 0;
    /* 左側に表示 */
    order: -1;
    background: #00000033;
    padding: 32px 24px;
    overflow-y: auto;
  }

  /* hero は残りの幅いっぱいに */
  .hero {
    flex: 1;
  }

  /* SP用メニュー・Openボタン・オーバーレイはPCでは不要 */
  .menu-sp,
  .menu-open,
  .overlay {
    display: none;
  }

  /* モバイル専用要素はPCで隠す */
  .mobile-only {
    display: none;
  }
}

/* =========================================================
   INFORMATION
   ========================================================= */

/* カード型2カラム（背景・枠線・角丸・PCで横並び） */
.pc-section-information__card {
  display: flex;
  flex-direction: column;
  background: #00000033;
  border: 2px solid #FFFFFF1F;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .pc-section-information__card {
    flex-direction: row;
  }
}

/* 大文字タイトル（40px） */
.pc-section-information__title {
  margin: 0;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0.76px;
  color: #FFFFFF;
}

/* サブタイトル（14px） */
.pc-section-information__subtitle {
  margin: 0;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.33px;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .pc-section-information__subtitle {
    text-align: center;
  }
}

/* カード本体（gap・padding） */
.pc-section-information__body {
  gap: 80px;
  padding: 40px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .pc-section-information__body {
    gap: 24px;
    padding: 24px 16px;
  }
}

/* 左：タイトル列（縦中央・一定幅） */
.pc-section-information__title-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 220px;
  width: 200px;
  flex-shrink: 0;
  padding: 48px 40px 48px 0;
}

@media (max-width: 768px) {
  .pc-section-information__title-col {
    width: 100%;
    align-items: center;
    padding: 0px;
  }
}

/* 右：地図＋情報列 */
.pc-section-information__content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* 地図（角丸） */
.pc-section-information__map {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
  line-height: 0;
}

.pc-section-information__map iframe {
  display: block;
  width: 100%;
}

/* PCセクションは920px以上で表示（920px未満は非表示）
   基本ルールより後ろに置き、display を確実に上書きする */
@media (max-width: 919.98px) {
  .pc-section-1,
  .pc-section-2,
  .pc-section-3,
  .pc-section-information {
    display: none;
  }
}
