/* ─────────────────────────────────────────────────────────
   ミュージカル「AI-WRI-EN（エイリアン）」LP
   Palette: deep navy / cyan glow / white-silver / iris spectrum
   Type:    Zen Kaku Gothic New + Noto Sans JP + Space Grotesk
   Base:    100era LP を土台に改変（class命名・構造は概ね踏襲）
   ───────────────────────────────────────────────────────── */

:root {
  --ink-deep: #0A0D1A;
  --ink: #10162A;
  --ink-soft: #161C33;
  --ink-line: #242C4A;

  --paper: #F2F2F2;
  --paper-soft: #E7ECF2;
  --paper-deep: #D8DEE8;

  --cyan: #2FCBD8;
  --cyan-bright: #5FE0EA;
  --cyan-deep: #1D8E99;
  /* ライト背景（--paper系）上の文字色専用。--cyan-deep はコントラスト比3.5:1程度でAA(4.5:1)未達のため、
     文字用途はこちらを使う（背景 #F2F2F2 に対し約5.6:1）。ダーク背景上は --cyan-deep のまま変更不要 */
  --cyan-text-on-light: #136A73;

  --wood: #C89A5E;

  --iris-magenta: #E86FB0;
  --iris-purple: #8A6FD8;
  --iris-green: #5FD3A0;

  --text-on-dark: #F2F2F2;
  --text-on-dark-mute: #9AA3BD;
  --text-on-light: #141A2E;
  --text-on-light-mute: #4A5470;

  --rule: rgba(47, 203, 216, 0.35);
  --rule-soft: rgba(47, 203, 216, 0.18);

  --iris-gradient: linear-gradient(90deg, #2FCBD8 0%, #8A6FD8 50%, #E86FB0 100%);

  --font-mincho: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-serif: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-latin: "Space Grotesk", "Zen Kaku Gothic New", sans-serif;

  --max-w: 1120px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-serif);
  color: var(--text-on-light);
  background: var(--ink-deep);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
}

img { display: block; max-width: 100%; }

a { color: inherit; }

/* ────────────  Page shell  ──────────── */
.lp {
  width: 100%;
  min-height: 100vh;
  background: var(--ink);
}

.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ────────────  HERO  ──────────── */
.hero {
  position: relative;
  background: var(--ink-deep);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg picture,
.hero__bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 38%;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(65% 55% at 78% 12%, rgba(47, 203, 216, 0.18) 0%, rgba(47, 203, 216, 0) 60%),
    linear-gradient(180deg, rgba(10, 13, 26, 0.4) 0%, rgba(10, 13, 26, 0.66) 46%, rgba(10, 13, 26, 0.95) 100%);
}

/* ── HERO 写真ストリップ（過去公演写真の横流しマーキー） ── */
.hero__strip {
  position: relative;
  z-index: 1;
  padding: 4px 0 18px;
  overflow: hidden;
}
.hero__strip-track {
  display: flex;
  width: max-content;
  animation: heroStrip 55s linear infinite;
  will-change: transform;
}
.hero__strip:hover .hero__strip-track { animation-play-state: paused; }
.hero__strip-group {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}
.hero__strip img {
  display: block;
  height: 290px;
  width: auto;
  border-radius: 4px;
  border: 1px solid var(--rule-soft);
}
.hero__strip-caption {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 32px 26px;
  font-family: var(--font-mincho);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-on-dark-mute);
  text-align: right;
}
@keyframes heroStrip {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__strip-track { animation: none; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 32px 92px;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
}

.hero__main {
  align-self: center;
  max-width: 560px;
}

.hero__tagline {
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: 16px;
  line-height: 2.1;
  color: var(--text-on-dark);
  letter-spacing: 0.06em;
  margin: 0 0 28px;
  opacity: 0.92;
  text-shadow: 0 1px 16px rgba(10, 13, 26, 0.7);
}

.hero__tagline .em-dash {
  letter-spacing: -0.1em;
}

.hero__title {
  margin: 0 0 22px;
  position: relative;
}

.hero__title img {
  width: clamp(300px, 32vw, 460px);
  height: auto;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.55));
}

.hero__rule {
  width: 56px;
  height: 1px;
  background: var(--cyan);
  margin: 0 0 22px;
  opacity: 0.9;
}

.hero__lead {
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: 17px;
  line-height: 2.2;
  color: var(--text-on-dark);
  letter-spacing: 0.04em;
  margin: 0;
  text-shadow: 0 1px 16px rgba(10, 13, 26, 0.7);
}

.hero__lead .accent {
  color: var(--cyan-bright);
}


/* Next Stage CTA card（旧 ticket-card。クラス名は踏襲しつつ内容はフォロー訴求に変更） */
.ticket-card {
  align-self: start;
  margin-top: 0;
  width: 100%;
  padding: 30px 32px 30px;
  background:
    linear-gradient(180deg, rgba(16,22,42,0.92) 0%, rgba(10,13,26,0.95) 100%);
  border: 1px solid rgba(47, 203, 216, 0.35);
  border-radius: 6px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(150,230,235,0.08) inset,
    0 30px 70px -20px rgba(0,0,0,0.6);
}

/* ornamental corner pieces */
.ticket-card::before,
.ticket-card::after,
.ticket-card > .corner-tl,
.ticket-card > .corner-tr,
.ticket-card > .corner-bl,
.ticket-card > .corner-br {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--cyan);
  opacity: 0.7;
}
.ticket-card > .corner-tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.ticket-card > .corner-tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.ticket-card > .corner-bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.ticket-card > .corner-br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
.ticket-card::before, .ticket-card::after { display: none; }

.ticket-card__title {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.55;
  color: var(--text-on-dark);
  text-align: center;
  margin: 0;
  letter-spacing: 0.1em;
}

.ticket-card__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 14px;
}
.ticket-card__divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan) 50%, transparent);
  opacity: 0.6;
}

.ticket-card__sub {
  font-family: var(--font-mincho);
  font-size: 15px;
  color: var(--cyan-bright);
  text-align: center;
  margin: 0 0 22px;
  letter-spacing: 0.1em;
}

.ticket-card__facts {
  margin: -8px 0 22px;
  text-align: center;
}
/* 記念公演バッジが入る場合、facts の負のmargin-topがバッジに食い込むため打ち消す */
.ticket-card__badge + .ticket-card__facts {
  margin-top: 12px;
}
.ticket-card__facts p {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 13.5px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: var(--text-on-dark-mute);
}

.ticket-card__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-ticket {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 18px 22px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--cyan-bright) 0%, var(--cyan) 50%, var(--cyan-deep) 100%);
  color: var(--ink-deep);
  font-family: var(--font-mincho);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.16em;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(220,255,255,0.6) inset,
    0 -1px 0 rgba(10,40,45,0.4) inset,
    0 12px 24px -8px rgba(47,203,216,0.4);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  text-decoration: none;
}
.btn-ticket:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow:
    0 1px 0 rgba(220,255,255,0.7) inset,
    0 -1px 0 rgba(10,40,45,0.4) inset,
    0 18px 32px -10px rgba(47,203,216,0.55);
}
.btn-ticket .arrow {
  display: inline-flex;
  transition: transform .25s ease;
}
.btn-ticket:hover .arrow { transform: translateX(4px); }

.btn-ticket--outline {
  background: transparent;
  color: var(--text-on-dark);
  border: 1px solid var(--rule);
  box-shadow: none;
}
.btn-ticket--outline:hover {
  background: rgba(47, 203, 216, 0.08);
  filter: none;
  box-shadow: none;
}

.ticket-card__note {
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--text-on-dark-mute);
  margin: 14px 0 0;
}

/* hero: 開幕カウントダウン（JSが自動計算） */
.ticket-card__countdown {
  display: block;
  text-align: center;
  font-family: var(--font-mincho);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--cyan-bright);
  border: 1px solid rgba(47, 203, 216, 0.45);
  border-radius: 2px;
  padding: 7px 10px;
  margin: 0 0 18px;
}
.ticket-card__countdown[hidden] { display: none; }

/* ────────────  HIGHLIGHTS  ──────────── */
.highlights {
  position: relative;
  background: var(--ink);
  padding: 88px 0 92px;
  overflow: hidden;
  isolation: isolate;
}
.highlights::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(70% 60% at 50% 0%, rgba(47, 203, 216, 0.08) 0%, rgba(47, 203, 216, 0) 60%);
}
.highlights__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.highlights__head {
  margin: 0 0 52px;
  text-align: center;
}
.highlights__kicker {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
}
.highlights__kicker h2 {
  font-family: var(--font-latin);
  font-weight: 500;
  font-size: 52px;
  line-height: 1;
  color: var(--cyan-bright);
  letter-spacing: 0.08em;
  margin: 0;
}
.highlights__kicker .ja {
  font-family: var(--font-mincho);
  font-size: 15px;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.45em;
}
.highlights__rule {
  width: 48px;
  height: 1px;
  background: var(--iris-gradient);
  opacity: 0.8;
  margin: 18px auto 0;
}
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.highlight-card {
  position: relative;
  padding: 36px 28px 32px;
  background: linear-gradient(180deg, rgba(22,28,51,0.6) 0%, rgba(10,13,26,0.6) 100%);
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
}
.highlight-card__no {
  font-family: var(--font-latin);
  font-size: 28px;
  color: var(--cyan);
  opacity: 0.85;
  display: block;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.highlight-card__title {
  font-family: var(--font-mincho);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--text-on-dark);
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}
.highlight-card__body {
  font-family: var(--font-mincho);
  font-size: 14.5px;
  line-height: 2.05;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.03em;
  margin: 0;
}

@media (max-width: 960px) {
  .highlights { padding: 64px 0; }
  .highlights__grid { grid-template-columns: 1fr; gap: 20px; }
  .highlights__kicker h2 { font-size: 42px; }
}

/* ────────────  MOVIE  ──────────── */
.movie {
  background: var(--ink);
  padding: 96px 0 80px;
  border-top: 1px solid var(--rule-soft);
}

.movie__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.movie__head {
  margin: 0 0 48px;
  text-align: center;
}
.movie__kicker {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
}
.movie__kicker h2 {
  font-family: var(--font-latin);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--cyan-bright);
  letter-spacing: 0.08em;
  margin: 0;
}
.movie__kicker .ja {
  font-family: var(--font-mincho);
  font-size: 16px;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.5em;
}
.movie__rule {
  width: 48px;
  height: 1px;
  background: var(--iris-gradient);
  opacity: 0.8;
  margin: 18px auto 0;
}

.movie__grid {
  display: grid;
  /* repeat(auto-fit, minmax(min(100%,...))) はトラック数が1に潰れるため、
     明示ブレークポイントで段組みする（モバイル1列→タブレット以上2列） */
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
  gap: 40px;
  align-items: start;
}

@media (min-width: 700px) {
  .movie__grid {
    grid-template-columns: repeat(2, minmax(0, 560px));
  }
}

.movie__item {
  display: flex;
  flex-direction: column;
}

.movie__label {
  font-family: var(--font-mincho);
  font-size: 15px;
  color: var(--cyan-bright);
  letter-spacing: 0.18em;
  margin: 0 0 16px;
  text-align: center;
}

.movie__group {
  margin: 0 0 44px;
}
.movie__group:last-child {
  margin-bottom: 0;
}
.movie__subhead {
  margin: 0 0 10px;
  text-align: center;
  font-family: var(--font-latin);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--cyan-bright);
  text-transform: uppercase;
}
.movie__subhead .ja {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mincho);
  font-size: 11.5px;
  letter-spacing: 0.4em;
  color: var(--text-on-dark-mute);
  text-transform: none;
}
.movie__group-note {
  margin: 0 0 22px;
  text-align: center;
  font-family: var(--font-mincho);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-on-dark-mute);
}

/* ナンバー（稽古映像）: 縦スクロールを抑えるため小さめサムネイルで多列に並べる */
.movie__grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1000px;
  margin: 0 auto;
  gap: 26px 22px;
  justify-content: stretch;
}
.movie__grid--compact .movie__label {
  font-size: 13px;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
}
.movie__grid--compact .movie__frame {
  box-shadow: 0 18px 36px -20px rgba(0, 0, 0, 0.7);
}

.movie__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.7);
}
.movie__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* YouTube facade: クリックまでiframeを生成しない軽量サムネイル
   （サムネは4:3で保存しているため 16:9 の frame 全面に object-fit:cover で収める） */
.movie__facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: #000;
  display: block;
}
.movie__facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.movie__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--cyan-bright) 0%, var(--cyan) 50%, var(--cyan-deep) 100%);
  box-shadow: 0 12px 28px -8px rgba(47, 203, 216, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.movie__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--ink-deep);
}
.movie__facade:hover .movie__play,
.movie__facade:focus-visible .movie__play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 16px 34px -8px rgba(47, 203, 216, 0.7);
}
.movie__facade:focus-visible {
  outline: 2px solid var(--cyan-bright);
  outline-offset: 3px;
}
.movie__noscript-links {
  text-align: center;
  font-family: var(--font-mincho);
  font-size: 13px;
  line-height: 2.2;
  color: var(--text-on-dark-mute);
}
.movie__noscript-links a { color: var(--cyan-bright); }

@media (max-width: 960px) {
  .movie { padding: 72px 0; }
  .movie__kicker h2 { font-size: 44px; }
  .movie__group { margin: 0 0 36px; }
  .movie__grid { gap: 28px; }
  .movie__grid--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px 14px; }
  .movie__grid--compact .movie__label { font-size: 12px; margin: 0 0 8px; }
}

/* スマホ: ナンバーは横スワイプの1列に。縦スクロール量を抑えつつ再生画面の小型化を防ぐ */
@media (max-width: 640px) {
  .movie__grid--compact {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--cyan) transparent;
  }
  .movie__grid--compact .movie__item {
    flex: 0 0 66vw;
    max-width: 300px;
    scroll-snap-align: start;
  }
  .movie__grid--compact .movie__label {
    font-size: 12px;
    margin: 0 0 8px;
  }
  .movie__grid--compact::-webkit-scrollbar { height: 4px; }
  .movie__grid--compact::-webkit-scrollbar-thumb {
    background: var(--cyan);
    border-radius: 2px;
  }
}

/* ────────────  STORY  ──────────── */
.story {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.story::before, .story::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(47, 203, 216, 0.14), transparent 70%);
}
.story::before { top: -120px; left: -120px; width: 400px; height: 400px; }
.story::after { bottom: -160px; right: -180px; width: 520px; height: 520px; background: radial-gradient(ellipse at center, rgba(138, 111, 216, 0.12), transparent 70%); }

.story__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 96px 32px 100px;
}

.story__head {
  margin: 0 0 32px;
}

.story__kicker {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 0 0 8px;
}

.story__kicker h2 {
  font-family: var(--font-latin);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--cyan-text-on-light);
  letter-spacing: 0.08em;
  margin: 0;
}

.story__kicker .ja {
  font-family: var(--font-mincho);
  font-size: 16px;
  color: var(--text-on-light-mute);
  letter-spacing: 0.5em;
  margin-left: -2px;
}

.story__rule {
  width: 48px;
  height: 1px;
  background: var(--iris-gradient);
  opacity: 0.85;
  margin: 14px 0 0;
}

.story__body {
  font-family: var(--font-mincho);
  font-size: 16px;
  line-height: 2.3;
  letter-spacing: 0.05em;
  color: var(--text-on-light);
  margin: 0;
}
.story__body p {
  margin: 0 0 20px;
}
.story__body p:last-child { margin-bottom: 0; }
.story__body .ruby {
  color: var(--cyan-text-on-light);
  font-weight: 600;
}

/* ────────────  CHARACTERS（story内・新設）  ──────────── */
.characters {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
}
.characters__label {
  display: block;
  font-family: var(--font-mincho);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--text-on-light-mute);
  margin: 0 0 24px;
}
.characters__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.character-card {
  padding: 26px 22px 24px;
  background: var(--paper-soft);
  border: 1px solid rgba(29, 142, 153, 0.22);
  border-radius: 4px;
}
.character-card__role {
  font-family: var(--font-mincho);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--cyan-text-on-light);
  margin: 0 0 8px;
}
.character-card__name {
  font-family: var(--font-mincho);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-on-light);
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}
.character-card__bio {
  font-family: var(--font-mincho);
  font-size: 13.5px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: var(--text-on-light-mute);
  margin: 0;
}

@media (max-width: 960px) {
  .story__inner { padding: 72px 24px; }
  .characters__grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ────────────  PROFILE  ──────────── */
.profile {
  background: var(--ink);
  padding: 88px 0 88px;
  border-top: 1px solid var(--rule-soft);
}
.profile__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.profile__head {
  margin: 0 0 48px;
  text-align: center;
}
.profile__kicker {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
}
.profile__kicker h2 {
  font-family: var(--font-latin);
  font-weight: 500;
  font-size: 52px;
  line-height: 1;
  color: var(--cyan-bright);
  letter-spacing: 0.08em;
  margin: 0;
}
.profile__kicker .ja {
  font-family: var(--font-mincho);
  font-size: 15px;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.45em;
}
.profile__rule {
  width: 48px;
  height: 1px;
  background: var(--iris-gradient);
  opacity: 0.8;
  margin: 18px auto 0;
}
.profile__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.profile-card {
  padding: 34px 30px 30px;
  background: linear-gradient(180deg, rgba(22,28,51,0.5) 0%, rgba(10,13,26,0.5) 100%);
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
}
.profile-card__top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.profile-card__photo {
  flex: 0 0 116px;
  width: 116px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 12px 28px -14px rgba(0,0,0,0.7);
}
.profile-card__photo img {
  width: 100%;
  height: auto;
  display: block;
}
.profile-card__head {
  flex: 1;
  min-width: 0;
}
.profile-card__role {
  font-family: var(--font-mincho);
  font-size: 12px;
  color: var(--cyan-bright);
  letter-spacing: 0.22em;
  margin: 0 0 10px;
}
.profile-card__name {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: 0.06em;
  margin: 0;
}
.profile-card__roman {
  display: block;
  margin-top: 6px;
  font-family: var(--font-latin);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.08em;
}
.profile-card__bio {
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 2.05;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.03em;
  margin: 0;
}

@media (max-width: 960px) {
  .profile { padding: 64px 0; }
  .profile__grid { grid-template-columns: 1fr; gap: 20px; }
  .profile__kicker h2 { font-size: 42px; }
}

/* ────────────  PERFORMANCE INFO  ──────────── */
.info {
  background: var(--ink-deep);
  padding: 92px 0 92px;
  border-top: 1px solid var(--rule-soft);
  scroll-margin-top: 24px;
}
.info__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.info__head {
  margin: 0 0 40px;
  text-align: center;
}
.info__kicker {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
}
.info__kicker h2 {
  font-family: var(--font-latin);
  font-weight: 500;
  font-size: 52px;
  line-height: 1;
  color: var(--cyan-bright);
  letter-spacing: 0.08em;
  margin: 0;
}
.info__kicker .ja {
  font-family: var(--font-mincho);
  font-size: 15px;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.45em;
}
.info__rule {
  width: 48px;
  height: 1px;
  background: var(--iris-gradient);
  opacity: 0.8;
  margin: 18px auto 24px;
}
.info__intro {
  font-family: var(--font-mincho);
  font-size: 15px;
  line-height: 2;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.04em;
  margin: 0;
}

/* 近日発表カード */
.info__next {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 36px 36px;
  text-align: center;
  background: linear-gradient(180deg, rgba(22,28,51,0.6) 0%, rgba(10,13,26,0.6) 100%);
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
}
.info__next-title {
  font-family: var(--font-mincho);
  font-size: 21px;
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}
.info__next-body {
  font-family: var(--font-mincho);
  font-size: 14.5px;
  line-height: 2;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.03em;
  margin: 0 0 26px;
}
.info__next .ticket-card__btns {
  max-width: 420px;
  margin: 0 auto;
}

/* run cards（公演日程確定後に使用するテンプレート） */
.info__runs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 0 auto 48px;
  max-width: 760px;
}
/* 公演回が1本のみの場合（単独カードを中央寄せ） */
.info__runs--single {
  grid-template-columns: 1fr;
  max-width: 560px;
}
.run {
  display: flex;
  flex-direction: column;
  padding: 32px 26px 26px;
  background: linear-gradient(180deg, rgba(22,28,51,0.55) 0%, rgba(10,13,26,0.55) 100%);
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
}
.run__pitch {
  margin: auto 0 14px;
  font-family: var(--font-mincho);
  font-size: 12.5px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: var(--cyan-bright);
  text-align: center;
}
.run__btn {
  padding: 13px 18px;
  font-size: 15px;
}
.run__btn-note {
  margin: 10px 0 0;
  font-family: var(--font-mincho);
  font-size: 11.5px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--text-on-dark-mute);
  text-align: center;
}
.run__when {
  text-align: center;
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.run__month {
  display: block;
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  color: var(--cyan-bright);
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.run__month small {
  font-size: 17px;
  margin: 0 1px;
}
.run__range {
  display: block;
  margin-top: 8px;
  font-family: var(--font-latin);
  font-size: 14px;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.06em;
}
.run__range i {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.run__venue {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mincho);
  font-size: 12.5px;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.1em;
}
.run__cast {
  font-family: var(--font-mincho);
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--text-on-dark);
  letter-spacing: 0.03em;
  text-align: center;
  margin: 0 0 20px;
}

/* schedule table (used inside each run) */
.schedule {
  width: 100%;
  border-collapse: collapse;
}
.schedule th,
.schedule td {
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
  text-align: left;
  vertical-align: middle;
}
.schedule tr:last-child th,
.schedule tr:last-child td {
  border-bottom: 0;
}
.schedule th {
  font-family: var(--font-mincho);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: 0.02em;
  width: 42%;
  white-space: nowrap;
}
.schedule th span {
  font-size: 12px;
  color: var(--text-on-dark-mute);
  margin-left: 3px;
}
.schedule td { text-align: right; }
.schedule__time {
  display: inline-block;
  font-family: var(--font-mincho);
  font-size: 14px;
  color: var(--text-on-dark);
  letter-spacing: 0.06em;
  padding: 3px 11px;
  margin: 0 0 5px 6px;
  border: 1px solid var(--rule);
  border-radius: 2px;
}
.schedule__cast {
  display: block;
  margin: 4px 0 0 6px;
  font-family: var(--font-mincho);
  font-size: 12px;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.03em;
}
.seat {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 7px 2px;
  font-family: var(--font-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  border-radius: 2px;
  vertical-align: 1px;
  white-space: nowrap;
}
.seat--few { color: var(--ink-deep); background: var(--wood); }
.seat--sold { color: var(--text-on-dark-mute); background: transparent; border: 1px solid var(--rule); }
.seat--final { color: var(--cyan-bright); background: transparent; border: 1px solid rgba(47, 203, 216, 0.5); }
.schedule__time--sold { color: var(--text-on-dark-mute); opacity: 0.72; }

/* footer: pricing + CTA */
.info__foot {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.info__subhead {
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 600;
  color: var(--cyan-bright);
  letter-spacing: 0.16em;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.info__tax {
  font-size: 12px;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.05em;
}
.price-list {
  margin: 0;
  padding: 0;
}
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-soft);
  text-align: left;
}
.price-row dt {
  font-family: var(--font-mincho);
  font-size: 16px;
  color: var(--text-on-dark);
  letter-spacing: 0.04em;
  margin: 0;
}
.price-row dt span {
  font-size: 12px;
  color: var(--text-on-dark-mute);
  margin-left: 4px;
  letter-spacing: 0;
}
.price-row dd {
  font-family: var(--font-mincho);
  font-size: 20px;
  font-weight: 600;
  color: var(--cyan-bright);
  letter-spacing: 0.04em;
  margin: 0;
  white-space: nowrap;
}
.info__note {
  font-family: var(--font-mincho);
  font-size: 13px;
  line-height: 1.95;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.03em;
  margin: 16px 0 0;
  text-align: left;
}
.info__btn {
  margin: 32px auto 0;
  max-width: 420px;
}
.info__channel {
  font-family: var(--font-mincho);
  font-size: 12.5px;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.08em;
  margin: 14px 0 0;
}
.info__ticket-notice {
  font-family: var(--font-mincho);
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text-on-dark);
  letter-spacing: 0.04em;
  margin: 0 0 22px;
}
.info__ticket-notice strong {
  color: var(--cyan-bright);
  font-weight: 600;
}

/* チケット料金表（昼公演／夜公演を並列表示、券種×前売/当日） */
.price-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 0 22px;
  text-align: left;
}
.price-table-wrap {
  overflow-x: auto;
}
.price-table-wrap__label {
  font-family: var(--font-mincho);
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan-bright);
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  text-align: center;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}
.price-table th,
.price-table td {
  padding: 9px 4px;
  text-align: center;
  border-bottom: 1px solid var(--rule-soft);
  font-family: var(--font-mincho);
  font-size: 12.5px;
  color: var(--text-on-dark);
  white-space: nowrap;
}
.price-table th:first-child,
.price-table td:first-child {
  text-align: left;
}
.price-table thead th {
  color: var(--text-on-dark-mute);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--rule);
}
.price-table tbody td:not(:first-child) {
  font-weight: 600;
  color: var(--cyan-bright);
  letter-spacing: 0.02em;
}
.info__note--small {
  font-size: 11.5px;
  margin-top: 18px;
}

@media (max-width: 960px) {
  .info { padding: 64px 0; }
  .info__runs { grid-template-columns: 1fr; gap: 18px; max-width: 480px; margin-left: auto; margin-right: auto; }
  .info__kicker h2 { font-size: 42px; }
  .info__next { padding: 32px 24px; }
  .schedule th { width: 46%; }
  .price-blocks { grid-template-columns: 1fr; gap: 14px; }
}

/* ────────────  CAST（出演・新設）  ──────────── */
.cast {
  background: var(--ink);
  padding: 88px 0 88px;
  border-top: 1px solid var(--rule-soft);
}
.cast__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.cast__head {
  margin: 0 0 48px;
  text-align: center;
}
.cast__kicker {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
}
.cast__kicker h2 {
  font-family: var(--font-latin);
  font-weight: 500;
  font-size: 52px;
  line-height: 1;
  color: var(--cyan-bright);
  letter-spacing: 0.08em;
  margin: 0;
}
.cast__kicker .ja {
  font-family: var(--font-mincho);
  font-size: 15px;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.45em;
}
.cast__rule {
  width: 48px;
  height: 1px;
  background: var(--iris-gradient);
  opacity: 0.8;
  margin: 18px auto 0;
}
.cast__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}
.cast__grid--pianist {
  grid-template-columns: repeat(2, 1fr);
  max-width: 480px;
}
.cast-card {
  margin: 0;
  text-align: center;
}
.cast-card__photo {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--rule-soft);
  box-shadow: 0 16px 34px -16px rgba(0, 0, 0, 0.65);
}
.cast-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cast-card__name {
  margin-top: 14px;
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: 0.1em;
}
.cast__subhead {
  margin: 56px 0 28px;
  text-align: center;
  font-family: var(--font-latin);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--cyan-bright);
  text-transform: uppercase;
}
.cast__subhead .ja {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mincho);
  font-size: 11.5px;
  letter-spacing: 0.4em;
  color: var(--text-on-dark-mute);
  text-transform: none;
}

@media (max-width: 960px) {
  .cast { padding: 64px 0; }
  .cast__kicker h2 { font-size: 42px; }
  .cast__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 560px) {
  .cast__grid,
  .cast__grid--pianist { grid-template-columns: repeat(2, 1fr); max-width: 360px; }
}

/* ────────────  VENUE（会場・新設）  ──────────── */
.venue {
  background: var(--ink-deep);
  padding: 92px 0 92px;
  border-top: 1px solid var(--rule-soft);
}
.venue__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.venue__head {
  margin: 0 0 48px;
  text-align: center;
}
.venue__kicker {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
}
.venue__kicker h2 {
  font-family: var(--font-latin);
  font-weight: 500;
  font-size: 52px;
  line-height: 1;
  color: var(--cyan-bright);
  letter-spacing: 0.08em;
  margin: 0;
}
.venue__kicker .ja {
  font-family: var(--font-mincho);
  font-size: 15px;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.45em;
}
.venue__rule {
  width: 48px;
  height: 1px;
  background: var(--iris-gradient);
  opacity: 0.8;
  margin: 18px auto 0;
}
.venue__body {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: stretch;
}
.venue__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}
.venue__label {
  font-family: var(--font-mincho);
  font-size: 12px;
  color: var(--cyan-bright);
  letter-spacing: 0.3em;
  margin: 0 0 12px;
}
.venue__name {
  font-family: var(--font-mincho);
  font-size: 30px;
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: 0.06em;
  margin: 0 0 28px;
  line-height: 1.4;
}
.venue__meta {
  margin: 0 0 32px;
  padding: 0;
}
.venue__meta-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--rule-soft);
}
.venue__meta-row:last-child {
  border-bottom: 1px solid var(--rule-soft);
}
.venue__meta-row dt {
  font-family: var(--font-mincho);
  font-size: 13px;
  color: var(--cyan-bright);
  letter-spacing: 0.2em;
  margin: 0;
  padding-top: 4px;
}
.venue__meta-row dd {
  font-family: var(--font-mincho);
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-on-dark);
  letter-spacing: 0.05em;
  margin: 0;
}
.venue__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px 14px 24px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  color: var(--text-on-dark);
  font-family: var(--font-mincho);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-decoration: none;
  align-self: flex-start;
  background: rgba(47, 203, 216, 0.05);
  transition: all .25s ease;
}
.venue__link:hover {
  background: var(--cyan);
  color: var(--ink-deep);
  border-color: var(--cyan);
}
.venue__link .arrow {
  display: inline-flex;
  transition: transform .25s ease;
  color: var(--cyan-bright);
}
.venue__link:hover .arrow {
  transform: translateX(3px);
  color: var(--ink-deep);
}
.venue__map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 360px;
  background: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.7);
}
.venue__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(0.3) sepia(0.12) hue-rotate(140deg) brightness(0.92) contrast(1.05);
  transition: filter .35s ease;
}
.venue__map:hover iframe {
  filter: none;
}

@media (max-width: 960px) {
  .venue { padding: 72px 0; }
  .venue__body { grid-template-columns: 1fr; gap: 40px; }
  .venue__name { font-size: 25px; }
  .venue__kicker h2 { font-size: 42px; }
  .venue__map { min-height: 300px; }
}

/* ────────────  VOICES（ご来場者の声）  ──────────── */
.voices {
  background: var(--ink-deep);
  padding: 96px 0 88px;
  border-top: 1px solid var(--rule-soft);
}
.voices__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.voices__head {
  margin: 0 0 44px;
  text-align: center;
}
.voices__kicker {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
}
.voices__kicker h2 {
  font-family: var(--font-latin);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--cyan-bright);
  margin: 0;
  letter-spacing: 0.08em;
}
.voices__kicker .ja {
  font-family: var(--font-mincho);
  font-size: 16px;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.5em;
}
.voices__rule {
  width: 48px;
  height: 1px;
  background: var(--iris-gradient);
  opacity: 0.8;
  margin: 18px auto 0;
}
.voices__intro {
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.04em;
  margin: 20px 0 0;
}
.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.voice-card {
  position: relative;
  background: linear-gradient(175deg, var(--paper) 0%, var(--paper-soft) 100%);
  border: 1px solid rgba(47, 203, 216, 0.45);
  border-radius: 4px;
  padding: 32px 30px 26px;
  margin: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.voice-card::before {
  content: "\201C";
  position: absolute;
  top: 4px;
  left: 16px;
  font-family: var(--font-latin);
  font-size: 64px;
  line-height: 1;
  color: var(--cyan-deep);
  opacity: 0.38;
  pointer-events: none;
}
.voice-card blockquote {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.03em;
  color: var(--text-on-light);
}
.voice-card__source {
  display: block;
  margin: 18px 0 0;
  font-family: var(--font-mincho);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-on-light-mute);
  text-align: right;
}
.voice-card--featured {
  grid-column: 1 / -1;
  border-color: var(--cyan);
  padding: 38px 40px 32px;
}
.voice-card--featured blockquote {
  font-size: 16.5px;
}
.voice-card--featured .voice-card__source {
  font-size: 12.5px;
}
.voice-card--wide {
  grid-column: 1 / -1;
  max-width: 660px;
  width: 100%;
  justify-self: center;
}
.voices__note {
  margin: 36px 0 0;
  text-align: center;
  font-family: var(--font-mincho);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--text-on-dark-mute);
}
@media (max-width: 900px) {
  .voices { padding: 68px 0 64px; }
  .voices__kicker h2 { font-size: 44px; }
  .voices__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .voice-card { padding: 26px 22px 22px; }
  .voice-card--featured { padding: 28px 24px 24px; }
  .voice-card blockquote { font-size: 14.5px; line-height: 1.95; }
  .voice-card--featured blockquote { font-size: 15.5px; }
}
@media (max-width: 600px) {
  .voices__grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ────────────  GALLERY  ──────────── */
.gallery {
  background: var(--ink);
  padding: 96px 0 84px;
}
.gallery__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.gallery__head {
  margin: 0 0 44px;
  text-align: center;
}
.gallery__kicker {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
}
.gallery__kicker h2 {
  font-family: var(--font-latin);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--cyan-bright);
  margin: 0;
  letter-spacing: 0.08em;
}
.gallery__kicker .ja {
  font-family: var(--font-mincho);
  font-size: 16px;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.5em;
}
.gallery__rule {
  width: 48px;
  height: 1px;
  background: var(--iris-gradient);
  opacity: 0.8;
  margin: 18px auto 0;
}
.gallery__intro {
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.04em;
  margin: 20px 0 0;
}
.gallery__grid {
  column-count: 3;
  column-gap: 16px;
}
.gallery__item {
  break-inside: avoid;
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--rule-soft);
}
.gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}
.gallery__item:hover img {
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .gallery__grid { column-count: 2; }
}
@media (max-width: 560px) {
  .gallery__grid { column-count: 2; column-gap: 12px; }
  .gallery__item { margin: 0 0 12px; }
}

/* ────────────  CTA BANNER  ──────────── */
.cta-banner {
  background: var(--ink);
  padding: 80px 0;
  position: relative;
}
.cta-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.cta-frame {
  position: relative;
  background: linear-gradient(180deg, #161C33 0%, #0A0D1A 100%);
  border: 1px solid rgba(47,203,216,0.3);
  border-radius: 4px;
  padding: 56px 56px 52px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  overflow: hidden;
}

.cta-frame .corner-tl,
.cta-frame .corner-tr,
.cta-frame .corner-bl,
.cta-frame .corner-br {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--cyan);
  opacity: 0.65;
}
.cta-frame .corner-tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.cta-frame .corner-tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.cta-frame .corner-bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.cta-frame .corner-br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.cta-frame__left {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.cta-cal-icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-bright);
  margin-top: 6px;
}
.cta-cal-icon svg { width: 26px; height: 26px; }

.cta-frame__content { flex: 1; min-width: 0; }

.cta-frame__title {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  line-height: 1.5;
}

.cta-frame__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
}
.cta-frame__divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan) 50%, transparent);
  opacity: 0.6;
}
.cta-frame__divider em {
  font-family: var(--font-mincho);
  font-style: normal;
  font-size: 14px;
  color: var(--cyan-bright);
  letter-spacing: 0.2em;
}

.cta-frame__lead {
  font-family: var(--font-mincho);
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.03em;
  margin: 0;
}

.cta-frame__btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
  margin-top: 22px;
}
.cta-frame__btn-wrap .btn-ticket { font-size: 16px; }
.cta-frame__note {
  margin: 14px 0 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-on-dark-mute);
}

.cta-frame__visual {
  position: relative;
  height: 220px;
}

@media (max-width: 640px) {
  .cta-frame__btn-wrap .btn-ticket {
    font-size: 14.5px;
    letter-spacing: 0.08em;
    padding: 15px 16px;
  }
}

/* ────────────  STAFF  ──────────── */
.staff {
  background: var(--ink-deep);
  padding: 72px 0 80px;
  border-top: 1px solid var(--rule-soft);
}
.staff__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
}

.staff__head h2 {
  font-family: var(--font-latin);
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  color: var(--text-on-dark);
  margin: 0;
  letter-spacing: 0.08em;
}
.staff__head .ja {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mincho);
  font-size: 13px;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.5em;
}
.staff__head .rule {
  width: 40px;
  height: 1px;
  background: var(--iris-gradient);
  opacity: 0.8;
  margin-top: 18px;
}

.staff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 28px;
  max-width: 640px;
}

.staff-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.staff-item__role {
  font-family: var(--font-mincho);
  font-size: 12px;
  color: var(--cyan-bright);
  letter-spacing: 0.14em;
  margin: 0 0 8px;
  line-height: 1.6;
}
.staff-item__name {
  font-family: var(--font-mincho);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-on-dark);
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 960px) {
  .staff__inner { grid-template-columns: 1fr; gap: 28px; }
  .staff__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 480px; }
}
@media (max-width: 560px) {
  .staff__grid { grid-template-columns: 1fr; max-width: 280px; gap: 22px; text-align: center; }
  .staff-item { align-items: center; }
}

/* ────────────  FOOTER  ──────────── */
.footer {
  background: var(--paper);
  padding: 28px 0 30px;
  border-top: 1px solid rgba(47,203,216,0.4);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.footer__logo img {
  height: 32px;
  width: auto;
}
.footer__copy {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 12px;
  color: var(--text-on-light-mute);
  letter-spacing: 0.05em;
}
.footer__sns {
  display: flex;
  gap: 10px;
}
.footer__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(20,26,46,0.3);
  border-radius: 50%;
  color: var(--text-on-light-mute);
  transition: all .2s ease;
  text-decoration: none;
}
.footer__sns a:hover {
  background: var(--ink);
  color: var(--cyan-bright);
  border-color: var(--ink);
}
.footer__sns svg { width: 14px; height: 14px; }

@media (max-width: 960px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

/* ────────────  Reveal animations  ──────────── */
/* JS無効時のフォールバック: .js クラス（index.html head内インラインスクリプトが付与）が
   無い場合は初期状態から非表示にせず、コンテンツを常に表示する */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s ease, transform .9s ease;
}
.js .reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.js .reveal[data-delay="1"] { transition-delay: .1s; }
.js .reveal[data-delay="2"] { transition-delay: .2s; }
.js .reveal[data-delay="3"] { transition-delay: .3s; }
.js .reveal[data-delay="4"] { transition-delay: .4s; }

/* ────────────  a11y  ──────────── */
.visually-hidden,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* キーボード操作時の可視フォーカス（全リンク・ボタン共通） */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cyan-bright);
  outline-offset: 2px;
}

/* ────────────  Responsive  ──────────── */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; padding: 64px 24px 48px; gap: 32px; min-height: auto; }
  .hero__strip img { height: 210px; }
  .hero__strip-caption { padding: 8px 24px 22px; font-size: 11px; }
  .cta-frame { grid-template-columns: 1fr; padding: 40px 28px; }
  .cta-frame__visual { display: none; }
}
@media (max-width: 560px) {
  .hero__title img { width: 70%; }
  .ticket-card { padding: 26px 22px; }
  .cta-frame__title { font-size: 18px; }
  /* 320〜375px幅でCTAボタンが窮屈にならないよう、左右パディングを詰め、
     アイコン＋本文の横並びを縦積みにして本文の幅を確保する */
  .cta-banner__inner { padding: 0 16px; }
  .cta-frame { padding: 32px 20px; }
  .cta-frame__left { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
  .cta-cal-icon { margin-top: 0; }
  .cta-frame__divider { justify-content: center; }
  .cta-frame__btn-wrap { margin-left: auto; margin-right: auto; }
  .cta-frame__btn-wrap .btn-ticket { gap: 8px; padding: 14px 12px; }
  .cta-frame__btn-wrap .btn-ticket .arrow svg { width: 18px; height: 18px; }
}

/* セクション見出しkicker: 欧文+和文の inline-flex 構成が320px幅で折り返せず
   はみ出すことがあるため、狭幅では折り返し可能にする */
@media (max-width: 400px) {
  .highlights__kicker,
  .movie__kicker,
  .story__kicker,
  .profile__kicker,
  .info__kicker,
  .history__kicker,
  .voices__kicker,
  .gallery__kicker {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 6px;
  }
}

/* ────────────  Reduced motion 強化  ────────────
   マーキー停止（hero__strip-track）に加え、reveal遷移・ボタン/カードのhover transform・
   ギャラリーの拡大効果もあわせて無効化する */
@media (prefers-reduced-motion: reduce) {
  .js .reveal,
  .js .reveal.in {
    transition: none;
  }
  .btn-ticket,
  .btn-ticket:hover,
  .btn-ticket .arrow,
  .btn-ticket:hover .arrow {
    transition: none;
    transform: none;
  }
  .gallery__item img,
  .gallery__item:hover img {
    transition: none;
    transform: none;
  }
}

/* 記念公演バッジ */
.run__badge,
.ticket-card__badge {
  display: inline-block;
  align-self: start;
  margin: 6px 0 2px;
  padding: 5px 12px;
  font-family: var(--font-mincho);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-deep);
  background: var(--iris-gradient);
  border-radius: 999px;
  white-space: nowrap;
}
.ticket-card__badge {
  margin: 12px auto 0;
  display: table;
}

/* スケジュール表の昼／夜の別 */
.schedule__part {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-family: var(--font-mincho);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  vertical-align: 2px;
}
.schedule__part--day {
  color: var(--wood);
  border: 1px solid rgba(200, 154, 94, 0.55);
}
.schedule__part--night {
  color: var(--cyan-bright);
  border: 1px solid var(--rule);
}
@media (max-width: 480px) {
  .schedule__part { margin-left: 6px; padding: 1px 6px; font-size: 10px; }
}
