@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Noto+Serif+JP:wght@200;300;400&display=swap');

:root {
    --ink: #1a1714;
    --parchment: #f5f0e8;
    --gold: #c9a84c;
    --gold-dim: #8a6f30;
    --fog: #d4cfc6;
    --smoke: #6b6560;
    --smoke-lighter: #9a948f;
    --white: #faf8f4;
    --section-pad: clamp(64px, 10vw, 120px);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    background: var(--ink);
    color: var(--parchment);
    font-family: 'Noto Serif JP', 'Times New Roman', serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 32px;
    background: linear-gradient(to bottom, rgba(26,23,20,0.25), transparent);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.4s, padding 0.3s;
  }
  nav.scrolled {
    background: rgba(26,23,20,0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 7px 32px;
  }
  .nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 13px; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; text-decoration: none; }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a { font-family: 'Cormorant Garamond', serif; font-size: 12px; letter-spacing: 0.25em; color: var(--fog); text-decoration: none; text-transform: uppercase; transition: color 0.3s; }
  .nav-links a:hover { color: var(--gold); }

  /* ── HERO ── */
  #hero {
    position: relative; height: 100svh; min-height: 600px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('../images/bg.png');
    background-size: cover; background-position: center top;
    background-attachment: fixed;
    filter: brightness(0.45) saturate(0.6);
    will-change: transform;
    animation: heroZoom 18s ease-out forwards;
  }
  @keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.0); } }
  .hero-vignette {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(26,23,20,0.7) 100%);
    pointer-events: none;
  }
  .hero-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 24px;
    text-align: center;
    animation: fadeUp 1.6s 0.3s both;
  }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
  .hero-eyebrow {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(10px, 1.5vw, 13px);
    letter-spacing: 0.5em; color: var(--gold); text-transform: uppercase;
  }
  .hero-logo img {
    width: clamp(280px, 60vw, 640px);
    filter: drop-shadow(0 4px 32px rgba(0,0,0,0.6));
  }
  .hero-divider {
    width: 60px; height: 1px; background: var(--gold-dim);
    animation: fadeUp 1.6s 0.8s both;
  }
  .hero-meta {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(13px, 2vw, 16px);
    letter-spacing: 0.3em; color: var(--fog);
    animation: fadeUp 1.6s 1.0s both;
  }
  .hero-cta {
    margin-top: 8px;
    animation: fadeUp 1.6s 1.2s both;
  }
  .btn {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif; font-size: 13px; letter-spacing: 0.35em;
    text-transform: uppercase; text-decoration: none;
    padding: 14px 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    position: relative; overflow: hidden;
  }
  .btn::before {
    content: ''; position: absolute; inset: 0;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s ease;
    z-index: -1;
  }
  .btn:hover { color: var(--ink); }
  .btn:hover::before { transform: scaleX(1); }
  .btn.disabled { border-color: var(--smoke-lighter); color: var(--smoke-lighter); cursor: default; pointer-events: none; }

  .scroll-hint {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-family: 'Cormorant Garamond', serif; font-size: 10px; letter-spacing: 0.4em;
    color: var(--smoke); text-transform: uppercase;
    animation: fadeUp 2s 2s both;
  }
  .scroll-hint span { display: block; width: 1px; height: 40px; background: var(--smoke); animation: scrollLine 2s 2s infinite; }
  @keyframes scrollLine { 0%,100%{opacity:0;transform:scaleY(0.3)} 50%{opacity:1;transform:scaleY(1)} }

  /* ── SECTIONS ── */
  section { padding: var(--section-pad) clamp(24px, 8vw, 120px); }
  .section-eyebrow {
    font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: 0.5em;
    color: var(--gold); text-transform: uppercase; margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 5vw, 52px);
    font-weight: 300; letter-spacing: 0.05em; line-height: 1.2;
    margin-bottom: 40px;
  }
  .gold-rule {
    width: 40px; height: 1px; background: var(--gold-dim); margin-bottom: 40px;
  }

  /* ── INTRO / STORY ── */
  #story { background: var(--ink); }
  .story-inner {
    max-width: 860px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start;
  }
  .story-label { padding-top: 8px; }
  .story-body p {
    font-size: clamp(14px, 1.5vw, 16px); line-height: 2.2;
    color: var(--fog); margin-bottom: 24px;
  }
  .story-body p:last-child { margin-bottom: 0; }
  .story-quote {
    margin-top: 40px; padding-left: 24px;
    border-left: 1px solid var(--gold-dim);
    font-family: 'Cormorant Garamond', serif; font-size: clamp(16px, 2vw, 20px);
    font-style: italic; color: var(--gold); letter-spacing: 0.05em; line-height: 1.7;
  }

  /* ── SCHEDULE ── */
  #schedule { background: #120f0c; }
  .schedule-inner { max-width: 900px; margin: 0 auto; }
  .info-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2px;
}
.info-grid.col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-cell {
    background: rgba(255,255,255,0.03);
    padding: 28px 32px;
    border: 1px solid rgba(201,168,76,0.12);
  }
  .info-cell dt {
    font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: 0.4em;
    color: var(--gold); text-transform: uppercase; margin-bottom: 12px;
  }
  .info-cell dd {
    font-size: clamp(14px, 1.6vw, 16px); color: var(--parchment); line-height: 1.8; font-weight: 200;
  }
  .info-cell dd small { font-size: 12px; color: var(--smoke-lighter); display: block; margin-top: 4px; }

  /* 星取表 placeholder */
  .seating-placeholder {
    margin-top: 48px;
    border: 1px dashed rgba(201,168,76,0.25);
    padding: 48px 32px; text-align: center;
    color: var(--smoke);
  }
  .seating-placeholder p {
    font-family: 'Cormorant Garamond', serif; font-size: 13px; letter-spacing: 0.3em;
    text-transform: uppercase;
  }

  /* ── CAST ── */
  #cast { background: var(--ink); }
  .cast-inner { max-width: 1100px; margin: 0 auto; }

  /* カラム切り替え：data-cols="3" or data-cols="2" */
  .cast-grid {
    display: grid; gap: 2px;
    grid-template-columns: repeat(3, 1fr);
  }
  .cast-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
  @media (max-width: 900px) {
    .cast-grid { grid-template-columns: repeat(2, 1fr) !important; }
  }
  @media (max-width: 540px) {
    .cast-grid { grid-template-columns: 1fr !important; }
  }

  .col-toggle {
    display: flex; gap: 8px; margin-bottom: 24px; justify-content: flex-end;
  }
  .col-btn {
    font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: 0.3em;
    padding: 6px 14px; border: 1px solid rgba(201,168,76,0.3);
    color: var(--smoke); background: none; cursor: pointer; transition: all 0.25s;
    text-transform: uppercase;
  }
  .col-btn.active, .col-btn:hover { border-color: var(--gold); color: var(--gold); }

  .cast-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 32px 28px;
    transition: border-color 0.3s, background 0.3s;
    position: relative; overflow: hidden;
  }
  .cast-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
    opacity: 0; transition: opacity 0.3s;
  }
  .cast-card:hover { border-color: rgba(201,168,76,0.2); background: rgba(255,255,255,0.04); }
  .cast-card:hover::after { opacity: 1; }
  .cast-role {
    font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: 0.4em;
    color: var(--gold); text-transform: uppercase; margin-bottom: 10px;
  }
  .cast-photo {
    width: 100%; aspect-ratio: 3/4; object-fit: cover; margin-bottom: 16px;
    background: rgba(255,255,255,0.04);
    display: flex; align-items: center; justify-content: center;
  }
  .cast-photo-placeholder {
    width: 100%; aspect-ratio: 3/4;
    background: rgba(255,255,255,0.03);
    border: 1px dashed rgba(201,168,76,0.15);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    font-family: 'Cormorant Garamond', serif; font-size: 11px;
    letter-spacing: 0.3em; color: rgba(201,168,76,0.3);
    text-transform: uppercase;
  }
  .cast-name {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 400; letter-spacing: 0.08em; color: var(--parchment);
    margin-bottom: 4px;
  }
  .cast-name-ja {
    font-size: clamp(12px, 1.4vw, 14px); color: var(--smoke-lighter);
    letter-spacing: 0.15em;
  }

  /* ── MUSIC ── */
  #music { background: #120f0c; }
  .music-inner { max-width: 860px; margin: 0 auto; }
  .music-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-top: 48px; }
  .music-item { display: flex; flex-direction: column; gap: 8px; }
  .music-instrument {
    font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: 0.4em;
    color: var(--gold); text-transform: uppercase;
  }
  .music-name { font-size: clamp(15px, 2vw, 18px); color: var(--parchment); letter-spacing: 0.08em; }

  /* ── KEY VISUAL / GOODS (placeholder panels) ── */
  #kv, #goods { background: var(--ink); }
  .panel-placeholder {
    max-width: 1100px; margin: 0 auto;
    border: 1px dashed rgba(201,168,76,0.2);
    padding: clamp(40px, 8vw, 96px) 32px;
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    text-align: center;
  }
  .panel-placeholder .ph-icon {
    font-family: 'Cormorant Garamond', serif; font-size: 40px; color: rgba(201,168,76,0.2);
  }
  .panel-placeholder p {
    font-family: 'Cormorant Garamond', serif; font-size: 12px; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--smoke-lighter);
  }
  .panel-placeholder .ph-note { font-size: 11px; color: rgba(107,101,96,0.7); letter-spacing: 0.15em; margin-top: 8px; }

  /* ── TICKET ── */
  #ticket { background: #0e0c09; }
  .ticket-inner { max-width: 800px; margin: 0 auto; text-align: center; }
  .ticket-body {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.15);
    padding: clamp(40px, 6vw, 80px) clamp(24px, 6vw, 80px);
  }
  /* チケット価格テーブル（発売決定後に表示） */
  .ticket-table {
    width: 100%; border-collapse: collapse; margin: 32px 0; text-align: left;
    display: none; /* 非表示：発売決定後に display:table で公開 */
  }
  .ticket-table th {
    font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: 0.4em;
    color: var(--gold); text-transform: uppercase; padding: 12px 0;
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }
  .ticket-table td {
    font-size: 14px; color: var(--fog); padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05); vertical-align: top;
  }
  .ticket-table td.price { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--parchment); letter-spacing: 0.05em; }
  /* プレイガイドリスト（発売決定後に表示） */
  .playguide-list { list-style: none; margin: 24px 0; display: none; }
  .playguide-list li { margin-bottom: 12px; }
  .playguide-list a {
    font-family: 'Cormorant Garamond', serif; font-size: 13px; letter-spacing: 0.2em;
    color: var(--gold); text-decoration: none; transition: opacity 0.3s;
  }
  .playguide-list a:hover { opacity: 0.7; }

  .ticket-coming {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(13px, 2vw, 16px); letter-spacing: 0.4em;
    color: var(--smoke-lighter); text-transform: uppercase; line-height: 2.2;
  }
  .ticket-notice {
    margin-top: 32px; padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 12px; color: var(--fog); line-height: 2.4; text-align: left;
  }

  /* ── NEWS ── */
  #news { background: var(--ink); }
  .news-inner { max-width: 800px; margin: 0 auto; }
  .news-list { list-style: none; }
  .news-item {
    display: grid; grid-template-columns: 120px 1fr; gap: 24px;
    padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    align-items: baseline;
  }
  .news-date {
    font-family: 'Cormorant Garamond', serif; font-size: 13px;
    color: var(--gold); letter-spacing: 0.15em;
  }
  .news-text { font-size: 14px; color: var(--fog); line-height: 1.8; letter-spacing: 0.05em; }

  /* ── FOOTER ── */
  footer {
    background: #0a0806;
    padding: 64px clamp(24px, 8vw, 120px) 40px;
    border-top: 1px solid rgba(201,168,76,0.1);
  }
  .footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 40px;
  }
  .footer-top {
    display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px;
  }
  .footer-brand { display: flex; flex-direction: column; gap: 12px; }
  .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 18px; letter-spacing: 0.15em; color: var(--parchment); }
  .footer-tagline { font-size: 11px; letter-spacing: 0.3em; color: var(--smoke-lighter); }
  .footer-contact a {
    font-family: 'Cormorant Garamond', serif; font-size: 13px; letter-spacing: 0.2em;
    color: var(--gold); text-decoration: none;
  }
  .footer-contact p { font-size: 11px; color: var(--smoke-lighter); margin-top: 6px; letter-spacing: 0.1em; }
  .footer-bottom {
    padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 11px; color: rgba(107,101,96,0.6); letter-spacing: 0.15em;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  }

  
/* ── CAST + STAFF 2カラムレイアウト ── */
.cast-staff-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .cast-staff-wrap { grid-template-columns: 1fr; gap: 48px; }
}

/* ── STAFF LIST（縦並び・枠なし） */
.staff-col { min-width: 0; }
.staff-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.staff-item {
  display: grid;
  grid-template-columns: 7em 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: baseline;
}
.staff-item.origin {
  padding-bottom: 20px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  grid-template-columns: 7em 1fr;
}
.staff-item.seisaku {
  margin-top: 12px;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: none;
  padding-top: 20px;
  grid-template-columns: 1fr;
  text-align: center;
}
.staff-item dt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px; letter-spacing: 0.4em;
  color: var(--gold); text-transform: uppercase;
  padding-top: 2px;
  white-space: nowrap;
}
.staff-item dd {
  font-size: 13px;
  color: var(--fog); line-height: 1.8;
  letter-spacing: 0.04em;
}
.staff-item.origin dd {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 1.8vw, 17px);
  letter-spacing: 0.1em;
  color: var(--parchment);
}
.staff-item.seisaku dd {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  letter-spacing: 0.25em;
  color: var(--parchment);
  margin-top: 8px;
}
.staff-divider {
  height: 1px;
  background: rgba(201,168,76,0.1);
  margin: 4px 0;
}

/* ── CAST COL（右カラム） */
.cast-col { min-width: 0; }
.cast-role-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 22px 24px;
  margin-bottom: 2px;
  transition: border-color 0.3s, background 0.3s;
  position: relative; overflow: hidden;
}
.cast-role-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.cast-role-card:hover { border-color: rgba(201,168,76,0.2); background: rgba(255,255,255,0.04); }
.cast-role-card:hover::after { opacity: 1; }
.cast-role-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px; letter-spacing: 0.5em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.cast-role-label span {
  font-style: italic; font-size: 11px; letter-spacing: 0.08em;
  color: var(--gold-dim); margin-left: 8px;
}
.cast-members { display: flex; flex-direction: column; gap: 12px; }
.cast-member { display: flex; align-items: center; gap: 12px; }
.cast-member-photo {
  width: 72px; height: 90px; flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  display: block;
  overflow: hidden;
  position: relative;
}
.cast-member-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(20%) brightness(0.9);
  transition: filter 0.4s;
}
.cast-member-photo img:hover { filter: grayscale(0%) brightness(1.05); }
/* 画像未設定時のフォールバック */
.cast-member-photo img[src=""] ,
.cast-member-photo img:not([src]) {
  display: none;
}
.cast-member-photo::after {
  content: 'PHOTO';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8px; letter-spacing: 0.15em; color: rgba(201,168,76,0.2);
}
/* imgがある場合は::afterを非表示 */
.cast-member-photo:has(img[src]:not([src=""])) { }
.cast-member-photo:has(img[src]:not([src=""]))::after { display: none; }
.cast-member-info { display: flex; flex-direction: column; gap: 2px; }
.cast-member-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 400; letter-spacing: 0.06em; color: var(--parchment);
}
.cast-member-name.tbd { color: var(--smoke); font-style: italic; font-size: 12px; }
.cast-member-note { font-size: 11px; color: var(--smoke-lighter); letter-spacing: 0.08em; }

/* col-toggleは非表示（2カラムに統合したため不要） */
.col-toggle { display: none; }

/* ── REVEAL ANIMATION ── */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  
/* ── QUICK NAV (hero直下) ── */
.quick-nav {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px;
  padding: 28px clamp(16px, 6vw, 80px);
  background: transparent;
  border-bottom: 1px solid rgba(201,168,76,0.06);
}
.quick-nav a {
  font-family: 'Cormorant Garamond', serif; font-size: 12px; letter-spacing: 0.35em;
  text-transform: uppercase; text-decoration: none;
  padding: 10px 28px;
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--fog);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  position: relative; overflow: hidden;
}
.quick-nav a::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(201,168,76,0.08); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.quick-nav a:hover { border-color: var(--gold); color: var(--gold); }
.quick-nav a:hover::before { transform: scaleX(1); }

/* ── CAST: 役カード（複数人対応） ── */
.cast-role-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px;
  transition: border-color 0.3s, background 0.3s;
  position: relative; overflow: hidden;
}
.cast-role-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.cast-role-card:hover { border-color: rgba(201,168,76,0.2); background: rgba(255,255,255,0.04); }
.cast-role-card:hover::after { opacity: 1; }
.cast-role-label {
  font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: 0.5em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.cast-role-label span {
  font-style: italic; font-size: 12px; letter-spacing: 0.1em;
  color: var(--gold-dim); margin-left: 8px;
}
.cast-members { display: flex; flex-direction: column; gap: 16px; }
.cast-member {
  display: flex; align-items: center; gap: 16px;
}
.cast-member-photo {
  width: 56px; height: 56px; flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; letter-spacing: 0.1em; color: rgba(201,168,76,0.25);
  font-family: 'Cormorant Garamond', serif;
}
.cast-member-info { display: flex; flex-direction: column; gap: 3px; }
.cast-member-name {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(15px, 2vw, 19px);
  font-weight: 400; letter-spacing: 0.08em; color: var(--parchment);
}
.cast-member-name.tbd { color: var(--smoke); font-style: italic; font-size: 13px; }
.cast-member-note { font-size: 11px; color: var(--smoke-lighter); letter-spacing: 0.1em; }

/* ── 星取表 ── */
.sched-section { margin-top: 60px; }
.sched-section .section-eyebrow { margin-bottom: 24px; }
.sched-scroll { overflow-x: auto; }
table.sched {
  width: 100%; min-width: 640px; border-collapse: collapse;
  font-family: 'Noto Serif JP', serif; font-weight: 300;
}
table.sched th {
  font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase;
  padding: 12px 14px; background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  border-right: 1px solid rgba(255,255,255,0.04);
  white-space: nowrap; text-align: center;
}
table.sched th.role-th { text-align: left; min-width: 110px; }
table.sched td {
  padding: 12px 14px; vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.04);
}
table.sched td.role-cell {
  font-family: 'Cormorant Garamond', serif; font-size: 13px; letter-spacing: 0.08em;
  color: var(--parchment); white-space: nowrap;
  border-right: 1px solid rgba(201,168,76,0.1);
}
table.sched td.role-cell small { display: block; font-size: 10px; color: var(--smoke-lighter); letter-spacing: 0.15em; margin-top: 2px; }
.sched-chips { display: flex; flex-direction: column; gap: 4px; min-width: 80px; }
.sched-chip {
  display: inline-block; font-size: 11px; letter-spacing: 0.05em;
  padding: 3px 8px; border: 1px solid rgba(201,168,76,0.2);
  color: var(--fog); background: rgba(201,168,76,0.05);
  white-space: nowrap;
}
.sched-chip.tbd {
  border-style: dashed; color: var(--smoke); background: transparent; font-style: italic;
}
.sched-show-head { font-size: 10px; color: var(--smoke-lighter); display: block; margin-bottom: 4px; letter-spacing: 0.2em; }
.sched-day-label { font-size: 12px; color: var(--parchment); display: block; }
.sched-day-sub { font-size: 10px; color: var(--smoke-lighter); }

/* scroll-margin-top: fixed navの高さ分オフセット */
section, .cast-role-card { scroll-margin-top: 72px; }

/* ── RESPONSIVE ── */
  /* ── モバイルハンバーガー */
  .hamburger {
    display: none;
    flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 4px;
  }
  .hamburger span {
    display: block; width: 22px; height: 1px;
    background: var(--fog); transition: all 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .nav-drawer {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,8,6,0.97);
    z-index: 99;
    flex-direction: column; align-items: center; justify-content: center; gap: 36px;
  }
  .nav-drawer.open { display: flex; animation: drawerIn 0.3s ease; }
  @keyframes drawerIn { from { opacity: 0; } to { opacity: 1; } }
  .nav-drawer a {
    font-family: 'Cormorant Garamond', serif; font-size: 22px; letter-spacing: 0.35em;
    color: var(--fog); text-decoration: none; text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-drawer a:hover { color: var(--gold); }

  @media (max-width: 768px) {
    nav { padding: 12px 20px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .quick-nav { gap: 8px; padding: 20px 16px; }
    .quick-nav a { font-size: 11px; padding: 8px 16px; letter-spacing: 0.2em; }

    .story-inner { grid-template-columns: 1fr; gap: 28px; }

    .info-grid.col2 { grid-template-columns: 1fr !important; }

    .sched-scroll { -webkit-overflow-scrolling: touch; }
    table.sched { font-size: 11px; }
    table.sched th, table.sched td { padding: 8px 8px; }

    .cast-grid { grid-template-columns: 1fr !important; }
    .cast-member-photo { width: 48px; height: 48px; }

    .music-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

    .ticket-body { padding: 28px 20px; }

    .news-item { grid-template-columns: 1fr; gap: 4px; }
    .footer-top { flex-direction: column; }
    .footer-bottom { flex-direction: column; gap: 6px; }

    /* パララックス：モバイルはfixedを無効化（パフォーマンス）*/
    .hero-bg { background-attachment: scroll; }
  }

  @media (max-width: 480px) {
    .section-title { margin-bottom: 24px; }
    .cast-grid[data-cols="2"], .cast-grid[data-cols="3"] { grid-template-columns: 1fr !important; }
    .info-grid { grid-template-columns: 1fr !important; }
    .music-grid { grid-template-columns: 1fr; }
  }