/* =========================================
   ガラスの仮面劇中劇ミュージカル化プロジェクト
   ========================================= */

:root {
  --black: #07070b;
  --night: #10111c;
  --wine: #5f1020;
  --red: #a8172a;
  --gold: #d5aa52;
  --sand: #e6d8bb;
  --paper: #f8f1e4;
  --white: #fffaf0;
  --muted: rgba(230, 216, 187, 0.62);
  --body: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  --heading: "Shippori Mincho", "Yu Mincho", "游明朝", serif;
}

/* =========================================================
   テーマ配色バリエーション（admin.html で切替）
   nocturne（金×墨）＝ :root の既定値
   背景の光（body background）まで切り替えて印象を大きく変える
   ========================================================= */

/* 紫のバラ ── ガラスの仮面オマージュ。紫 × 金 */
body[data-theme="murasaki"] {
  --wine: #3a1c4a;
  --red:  #9c3b7a;
  --gold: #d8b15a;
  background:
    radial-gradient(circle at 18% 8%, rgba(126, 58, 158, 0.34), transparent 30rem),
    radial-gradient(circle at 85% 4%, rgba(216, 177, 90, 0.18), transparent 24rem),
    linear-gradient(180deg, #09060f 0%, #150b1c 48%, #06040a 100%);
}

/* 薔薇色 ── 情熱・ドラマティック。深紅 × 金 */
body[data-theme="rosa"] {
  --wine: #6b1228;
  --red:  #c0314a;
  --gold: #dcb45f;
  background:
    radial-gradient(circle at 18% 8%, rgba(192, 49, 74, 0.34), transparent 30rem),
    radial-gradient(circle at 85% 4%, rgba(220, 180, 95, 0.18), transparent 24rem),
    linear-gradient(180deg, #0a0508 0%, #1a0d12 48%, #070406 100%);
}

/* 荒野 ── 第一弾『忘れられた荒野』。月光と大地、土 × 月金 */
body[data-theme="wilderness"] {
  --wine: #4a2a18;
  --red:  #9b5a2e;
  --gold: #d8c06a;
  background:
    radial-gradient(circle at 18% 8%, rgba(120, 90, 40, 0.32), transparent 30rem),
    radial-gradient(circle at 85% 4%, rgba(216, 192, 106, 0.16), transparent 24rem),
    linear-gradient(180deg, #080705 0%, #13110a 48%, #060503 100%);
}

/* 蒼海 ── 第二弾『女海賊ビアンカ』。エーゲ海、深い藍 × 金 × 珊瑚 */
body[data-theme="bianca"] {
  --wine: #0f3a4a;
  --red:  #c85a3c;
  --gold: #e0bd67;
  background:
    radial-gradient(circle at 18% 8%, rgba(20, 90, 120, 0.34), transparent 30rem),
    radial-gradient(circle at 85% 4%, rgba(224, 189, 103, 0.16), transparent 24rem),
    linear-gradient(180deg, #04070a 0%, #0a1820 48%, #030507 100%);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  font-family: var(--body);
  line-height: 1.9;
  font-size: 16px;
  background:
    radial-gradient(circle at 18% 8%, rgba(168, 23, 42, 0.36), transparent 30rem),
    radial-gradient(circle at 85% 4%, rgba(213, 170, 82, 0.18), transparent 24rem),
    linear-gradient(180deg, #05050a 0%, #12101a 48%, #050507 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.22;
  background-image:
    linear-gradient(90deg, rgba(213, 170, 82, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(255, 250, 240, 0.08) 1px, transparent 1px);
  background-size: 78px 78px, 26px 26px;
  mask-image: linear-gradient(to bottom, transparent 0, #000 12%, #000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 12%, #000 85%, transparent 100%);
}
body.nav_open { overflow: hidden; }
a { color: inherit; text-decoration: none; transition: color 220ms ease; }
img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0;
  z-index: 999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s 0.3s, visibility 0s 1s;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader::after {
  content: '';
  width: 54px; height: 54px;
  border: 1px solid rgba(213, 170, 82, 0.35);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 900ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Header ---------- */
header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 30px;
  background: linear-gradient(180deg, rgba(5, 5, 10, 0.92), rgba(5, 5, 10, 0.58));
  border-bottom: 1px solid rgba(213, 170, 82, 0.26);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.headlogo a {
  display: inline-block;
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.logo-text {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(213, 170, 82, 0.5);
  color: var(--gold);
}

/* ---------- Nav ---------- */
.nav_trigger {
  width: 48px; height: 48px;
  border: 1px solid rgba(213, 170, 82, 0.44);
  background: rgba(16, 17, 28, 0.72);
  cursor: pointer;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 110;
}
.nav_icon, .nav_icon::before, .nav_icon::after {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  transition: transform 220ms ease, opacity 220ms ease;
}
.nav_icon { position: relative; }
.nav_icon::before, .nav_icon::after {
  content: '';
  position: absolute;
  left: 0;
}
.nav_icon::before { top: -8px; }
.nav_icon::after { top: 8px; }

.toggle_nav.active .nav_icon { background: transparent; }
.toggle_nav.active .nav_icon::before { transform: translateY(8px) rotate(45deg); }
.toggle_nav.active .nav_icon::after { transform: translateY(-8px) rotate(-45deg); }

.nav {
  position: fixed;
  inset: 82px 0 auto;
  display: none;
  padding: 22px 24px 36px;
  background: rgba(5, 5, 10, 0.97);
  border-bottom: 1px solid rgba(213, 170, 82, 0.28);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.toggle_nav.active .nav { display: block; }
.nav .global {
  list-style: none;
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  color: var(--sand);
}
.nav .global a {
  display: block;
  padding: 14px 6px;
  min-height: 42px;
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  border-bottom: 1px solid rgba(213, 170, 82, 0.16);
}
.nav .global a:hover { color: var(--gold); }

/* ---------- TOP (Hero) ---------- */
.top {
  position: relative;
  height: 100svh; /* small viewport height: モバイル URL バー込みでも収まる */
  min-height: 600px;
  background: #050507;
  overflow: hidden;
}
.top::after {
  content: "WILDERNESS  /  BIANCA";
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: 26px;
  z-index: 4;
  color: rgba(213, 170, 82, 0.42);
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.36em;
  writing-mode: vertical-rl;
  display: none;
}
.top_l {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.top_l .kv {
  position: absolute;
  inset: 0;
  margin: 0;
  height: 100%;
  width: 100%;
}
.top_l .kv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.05) contrast(1.06) brightness(0.95) sepia(0.06);
  transition: transform 1.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.top:hover .top_l .kv img { transform: scale(1.02); }
.top_l::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 28%, transparent 0 38%, rgba(5, 5, 7, 0.55) 92%),
    radial-gradient(circle at 82% 10%, rgba(213, 170, 82, 0.16), transparent 38%);
  pointer-events: none;
}
.top_l::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg,
      rgba(5, 5, 7, 0.55) 0%,
      rgba(5, 5, 7, 0.15) 14%,
      rgba(5, 5, 7, 0.08) 38%,
      rgba(5, 5, 7, 0.55) 56%,
      rgba(5, 5, 7, 0.92) 78%,
      rgba(5, 5, 7, 0.98) 100%);
  pointer-events: none;
}

@media (min-width: 880px) {
  .top_l .kv img {
    object-position: center 22%;
    filter: saturate(1.05) contrast(1.06) brightness(0.92) sepia(0.08);
  }
  .top_l::after {
    background:
      linear-gradient(180deg, rgba(5, 5, 7, 0.4) 0%, transparent 25%, transparent 65%, rgba(5, 5, 7, 0.92) 100%),
      linear-gradient(90deg, transparent 38%, rgba(5, 5, 7, 0.85) 92%);
  }
}

.top_r {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 70px 22px 22px;
  background: none;
  pointer-events: none;
}
.top_r > * { pointer-events: auto; }
.top_r::before { content: none; }
.top_tit {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  text-align: center;
}

.anniversary {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(213, 170, 82, 0.3);
  color: var(--gold);
  font-family: var(--heading);
  font-size: clamp(10px, 1.2vw, 13px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.tit {
  margin: 0 0 16px;
  font-family: var(--heading);
  line-height: 1.2;
  font-weight: 800;
}
.tit-sub-top {
  display: block;
  margin-bottom: 6px;
  color: var(--sand);
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 700;
  letter-spacing: 0.18em;
}
.tit-main {
  display: block;
  color: var(--paper);
  font-size: clamp(22px, 4.4vw, 44px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.18;
  text-shadow: 0 0 28px rgba(213, 170, 82, 0.18);
}
.tit-main .amp {
  display: inline-block;
  margin: 2px 0;
  color: var(--gold);
  font-size: 0.5em;
  font-weight: 400;
  font-style: italic;
}
.tit-sub {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: clamp(11px, 1.3vw, 14px);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.date {
  margin-top: 16px;
}
.txt2 {
  display: inline-block;
  margin: 0;
  padding: 10px 18px;
  border-top: 1px solid rgba(213, 170, 82, 0.65);
  border-bottom: 1px solid rgba(213, 170, 82, 0.65);
  color: var(--sand);
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.03em;
}
.txt2 strong {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-right: 4px;
}
.credit-line {
  margin: 16px 0 0;
  color: var(--paper);
  font-family: var(--heading);
  font-size: clamp(11px, 1.3vw, 13px);
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media (min-width: 880px) {
  .top::after { display: block; }
  .top_l { right: 44%; }
  .top_r {
    left: auto;
    right: 0;
    top: 0;
    width: 44%;
    align-items: center;
    padding: 110px 5vw 50px 3vw;
    background:
      linear-gradient(160deg, rgba(95, 16, 32, 0.36), transparent 40%),
      radial-gradient(circle at 75% 20%, rgba(213, 170, 82, 0.16), transparent 17rem),
      linear-gradient(90deg, rgba(5, 5, 7, 0.94), rgba(5, 5, 7, 0.86));
  }
  .top_r::before {
    content: "";
    position: absolute;
    inset: 6% 6% 8% 6%;
    border: 1px solid rgba(213, 170, 82, 0.22);
    transform: skewX(-6deg);
    background: linear-gradient(140deg, rgba(255, 250, 240, 0.025), transparent 48%);
    pointer-events: none;
  }
  .anniversary {
    margin-bottom: 22px;
    padding-bottom: 18px;
    line-height: 1.7;
  }
  .tit { margin-bottom: 24px; }
  .tit-sub-top { margin-bottom: 10px; }
  .date { margin-top: 24px; }
  .txt2 { padding: 16px 24px; line-height: 1.9; }
  .credit-line { margin-top: 24px; }
}

/* ---------- Section base ---------- */
.bg_filter {
  position: relative;
  overflow: hidden;
}
section { scroll-margin-top: 96px; }
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
#news, .about, .cast, #audition, #guide { padding: 96px 0; }

.stit {
  margin: 0 0 40px;
  color: var(--gold);
  font-family: var(--heading);
  font-size: clamp(42px, 8vw, 76px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 28px rgba(213, 170, 82, 0.18);
  letter-spacing: 0.04em;
}

/* ---------- Fade animation ---------- */
.anime {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms ease, transform 720ms ease;
}
.anime.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- NEWS ---------- */
.news { max-width: 980px; margin: 0 auto; }
.news_list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.news_list li {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(230, 216, 187, 0.16);
  background: linear-gradient(90deg, rgba(255, 250, 240, 0.06), rgba(255, 250, 240, 0.02));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.news_date {
  margin: 0;
  color: var(--gold);
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.news_list .txt, .news_list .txt p { margin: 0; color: var(--paper); }
.news_list .txt p + p { margin-top: 10px; }

@media (max-width: 640px) {
  .news_list li { grid-template-columns: 1fr; gap: 6px; padding: 18px 18px; }
}

/* ---------- STORY ---------- */
.about { text-align: center; }
.about p {
  margin: 0 auto 1.8em;
  max-width: 760px;
  color: var(--paper);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 500;
  line-height: 2;
}
.story-intro {
  max-width: 920px;
  padding-bottom: 50px;
  margin-bottom: 60px !important;
  border-bottom: 1px solid rgba(213, 170, 82, 0.28);
  font-weight: 700 !important;
}
.story-work {
  max-width: 940px;
  margin: 0 auto 70px;
  text-align: left;
  padding: 42px 44px;
  border: 1px solid rgba(213, 170, 82, 0.25);
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.04), rgba(255, 250, 240, 0.01));
}
.story-work:last-child { margin-bottom: 0; }
.work-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 8px;
  color: var(--paper);
  font-family: var(--heading);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.work-num {
  display: inline-block;
  padding: 4px 14px;
  background: var(--wine);
  color: var(--gold);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  border: 1px solid rgba(213, 170, 82, 0.45);
}
.work-sub {
  margin: 0 0 22px !important;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(213, 170, 82, 0.25);
  color: var(--gold);
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left !important;
}
.story-work p {
  text-align: left;
  max-width: none;
  margin: 12px 0;
  font-weight: 500;
}
.work-subhead {
  margin: 60px 0 28px;
  padding-left: 18px;
  border-left: 4px solid var(--gold);
  color: var(--gold);
  font-family: var(--heading);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.work-subhead:first-of-type { margin-top: 20px; }

/* ---------- CAST ---------- */
.cast {
  background: linear-gradient(180deg, rgba(5, 5, 7, 0.16), rgba(95, 16, 32, 0.22), rgba(5, 5, 7, 0.16));
}
.cast_wrap + .cast_wrap { margin-top: 90px; }
.cast-lead {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--paper);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.cast_block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cast_block li {
  color: var(--paper);
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  font-family: var(--heading);
  letter-spacing: 0.05em;
}
.castimg {
  position: relative;
  margin: 0 0 18px;
  border: 1px solid rgba(213, 170, 82, 0.45);
  background: rgba(5, 5, 7, 0.56);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  transition: transform 220ms ease, border-color 220ms ease;
}
.castimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.castimg-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(213, 170, 82, 0.55);
  font-family: var(--heading);
  font-size: 12px;
  letter-spacing: 0.3em;
}
.castimg::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 10px rgba(255, 250, 240, 0.04), inset 0 -80px 80px rgba(5, 5, 7, 0.4);
  pointer-events: none;
}
.cast_block li:hover .castimg {
  border-color: rgba(213, 170, 82, 0.86);
  transform: translateY(-4px);
}
.cast-name {
  margin: 0 0 12px;
  font-size: 17px;
}
.cast-role {
  display: inline-block;
  margin-left: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.prof_pop {
  display: block;
  width: min(100%, 220px);
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(213, 170, 82, 0.62);
  background: rgba(5, 5, 7, 0.3);
  color: var(--gold);
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 220ms ease;
}
.prof_pop:hover { background: rgba(213, 170, 82, 0.12); }

/* ---------- STAFF ---------- */
.cblock {
  max-width: 960px;
  margin: 0 auto 22px;
  padding: 28px 34px;
  border: 1px solid rgba(213, 170, 82, 0.2);
  background: linear-gradient(90deg, rgba(255, 250, 240, 0.04), rgba(255, 250, 240, 0.01));
  color: var(--paper);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}
.cblock.director { text-align: left; }
.yel {
  color: var(--gold);
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ---------- Modal ---------- */
.modal_overlay {
  position: fixed; inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(5, 5, 7, 0.82);
}
.modal_overlay.active { display: grid; place-items: center; }
.modal_content {
  position: relative;
  width: min(720px, 100%);
  max-height: min(78vh, 760px);
  overflow: auto;
  padding: 44px 38px 38px;
  border: 1px solid rgba(213, 170, 82, 0.55);
  background: linear-gradient(180deg, #14131b, #08080d);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  color: var(--paper);
  font-weight: 500;
}
.modal_close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(213, 170, 82, 0.45);
  background: transparent;
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 310;
}
.modal_content .tit {
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(213, 170, 82, 0.3);
  color: var(--gold);
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.modal_content p, .modal_content span { margin: 12px 0; }
.modal_content .pop_block > .txt_box > span { display: block; margin: 10px 0; }

/* ---------- SCHEDULE / TICKET (paper section) ---------- */
.bgw {
  padding: 96px 0;
  color: #1a1210;
  background:
    linear-gradient(180deg, rgba(248, 241, 228, 0.96), rgba(226, 211, 184, 0.96)),
    radial-gradient(circle at 10% 0%, rgba(168, 23, 42, 0.18), transparent 25rem);
}
.bgw .stit {
  color: var(--wine);
  text-shadow: none;
}
.scheblock {
  max-width: 1060px;
  margin: 0 auto 50px;
  padding: 46px 42px;
  border: 1px solid rgba(95, 16, 32, 0.28);
  background: rgba(255, 250, 240, 0.78);
  text-align: center;
  box-shadow: 0 18px 46px rgba(26, 18, 16, 0.08);
}
.scheblock + .scheblock { margin-top: 30px; }
.scheblock .lead {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--wine);
  font-family: var(--heading);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  letter-spacing: 0.06em;
}
.scheblock .lead .work-num {
  background: var(--wine);
  color: var(--gold);
  border-color: rgba(213, 170, 82, 0.6);
}
.scheblock .date {
  margin: 0 0 18px;
  color: var(--red);
  font-family: var(--heading);
  font-size: clamp(28px, 5.5vw, 50px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.scheblock .date span { font-size: 0.42em; }
.venue {
  margin: 0 0 22px;
  color: #1a1210;
  font-family: var(--heading);
  font-size: clamp(18px, 2.3vw, 22px);
  font-weight: 800;
  letter-spacing: 0.04em;
}
.address {
  display: inline-block;
  margin-top: 6px;
  color: #5a514b;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.maplink {
  display: inline-block;
  margin-left: 12px;
  padding: 4px 14px;
  background: var(--wine);
  color: var(--white);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.note-inline {
  margin: 14px 0 0;
  color: #5a514b;
  font-size: 12px;
  font-weight: 500;
}

/* ---------- Schedule table ---------- */
.hoshi { margin: 24px 0 0; overflow-x: auto; }
.demo01 {
  width: 100%;
  min-width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid rgba(26, 18, 16, 0.4);
}
.demo01 th, .demo01 td {
  padding: 13px 10px;
  border: 1px solid rgba(26, 18, 16, 0.22);
  text-align: center;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 14px;
}
.demo01 th {
  background: #2a1a1a;
  color: var(--white);
  letter-spacing: 0.04em;
}
.demo01 .time { color: var(--red); }
.demo01 tbody td { color: #1a1210; }

/* ---------- Price ---------- */
.price { max-width: 1060px; margin: 0 auto 30px; }
.price-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0 16px;
  color: var(--wine);
  font-family: var(--heading);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  letter-spacing: 0.06em;
}
.price-title .work-num {
  background: var(--wine);
  color: var(--gold);
}
.price_list {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  border: 1px solid rgba(26, 18, 16, 0.28);
  background: rgba(255, 250, 240, 0.92);
}
.price_l {
  display: grid;
  place-items: center;
  padding: 24px;
  background: #2a1a1a;
  color: var(--white);
}
.price_l h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0.04em;
}
.price_l span { font-size: 14px; }
.price_r .block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  border-bottom: 1px solid rgba(26, 18, 16, 0.18);
}
.price_r .block:last-child { border-bottom: 0; }
.price_r .left, .price_r .right {
  padding: 16px 22px;
  font-family: var(--heading);
  font-weight: 700;
  color: #1a1210;
}
.price_r .right {
  color: var(--red);
  text-align: right;
  font-weight: 900;
}

.note {
  margin-top: 22px;
  padding: 18px 22px;
  background: rgba(95, 16, 32, 0.06);
  border-left: 3px solid var(--wine);
  color: #5a514b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.85;
}
.note p { margin: 6px 0; }

/* ---------- TICKETS ---------- */
.ticket_list {
  max-width: 1060px;
  margin: 70px auto 0;
}
.ticket_link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 14px;
}
.ticket_l, .ticket_r a {
  display: flex;
  align-items: center;
  min-height: 84px;
  padding: 18px 22px;
  border: 1px solid rgba(26, 18, 16, 0.24);
  background: rgba(255, 250, 240, 0.92);
  color: #1a1210;
  font-family: var(--heading);
  font-weight: 700;
  transition: transform 180ms ease, filter 180ms ease;
}
.ticket_l { gap: 18px; flex-direction: column; align-items: flex-start; justify-content: center; }
.ticket_l strong {
  color: var(--red);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.ticket_r a {
  justify-content: center;
  background: var(--red);
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-align: center;
}
.ticket_r a:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.ticket_link.cs .ticket_r a { background: #5a514b; }

.ticket-platform {
  margin-top: 36px;
  padding: 20px 24px;
  background: rgba(95, 16, 32, 0.06);
  border: 1px solid rgba(95, 16, 32, 0.18);
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
  color: #1a1210;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.04em;
}
.ticket-platform a { color: var(--wine); text-decoration: underline; }

/* ---------- AUDITION ---------- */
#audition {
  background: linear-gradient(180deg, rgba(5, 5, 7, 0.36), rgba(95, 16, 32, 0.18));
}
.audition-lead {
  max-width: 960px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--paper);
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 600;
  line-height: 2;
}
#audition .cblock {
  max-width: 1020px;
  padding: 38px 44px;
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.05), rgba(255, 250, 240, 0.015));
}
#audition .cblock p { margin: 6px 0; color: var(--paper); }
#audition .cblock strong {
  color: var(--gold);
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.audition-head {
  margin: 26px 0 8px !important;
  color: var(--gold);
  font-family: var(--heading);
  font-size: clamp(16px, 1.9vw, 19px);
  font-weight: 800;
  letter-spacing: 0.06em;
}
.audition-head:first-child { margin-top: 0 !important; }
#audition .list_circle {
  margin: 8px 0 0;
  padding: 0;
}
#audition .list_circle li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.5em;
  color: var(--paper);
  list-style: none;
}
#audition .list_circle li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* AUDITION 内の note は背景が暗いので明るめに */
#audition .note {
  background: rgba(255, 250, 240, 0.05);
  border-left-color: rgba(213, 170, 82, 0.55);
  color: var(--sand);
  font-weight: 500;
  line-height: 2;
}
#audition .note p {
  color: var(--sand);
  margin: 8px 0;
}

/* ---------- Cast Coming Soon ---------- */
.cast-coming-soon {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 32px;
  text-align: center;
  border: 1px solid rgba(213, 170, 82, 0.35);
  background:
    radial-gradient(ellipse at 50% 40%, rgba(213, 170, 82, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.04), rgba(255, 250, 240, 0.01));
  position: relative;
}
.cast-coming-soon::before,
.cast-coming-soon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cast-coming-soon::before { top: 20px; }
.cast-coming-soon::after { bottom: 20px; }
.coming-soon-mark {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--heading);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-shadow: 0 0 28px rgba(213, 170, 82, 0.3);
}
.coming-soon-sub {
  margin: 0;
  color: var(--sand);
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .cast-coming-soon { padding: 50px 20px; }
}

/* ---------- GUIDE ---------- */
.guide_wrap {
  max-width: 1060px;
  margin: 0 auto;
}
.guide_wrap > ul, .list_circle, .list_kome {
  margin: 0;
  padding: 0;
  list-style: none;
}
.guide_wrap > ul > li.block {
  padding: 32px 0;
  border-bottom: 1px solid rgba(230, 216, 187, 0.18);
}
.head_3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--heading);
  font-size: clamp(20px, 2.3vw, 24px);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.head_4 {
  margin: 18px 0 8px;
  color: var(--sand);
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.guide_wrap p {
  margin: 0 0 8px;
  color: var(--paper);
  font-weight: 500;
}
.list_circle li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.55em;
  color: var(--paper);
  font-weight: 500;
}
.list_circle li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.list_kome li {
  position: relative;
  padding-left: 1.4em;
  margin: 6px 0;
  color: rgba(230, 216, 187, 0.75);
  font-size: 13px;
}
.list_kome li::before {
  content: "※";
  position: absolute;
  left: 0;
}

/* ---------- Footer ---------- */
footer {
  padding: 60px 24px 44px;
  background: #050507;
  border-top: 1px solid rgba(213, 170, 82, 0.24);
  color: var(--sand);
  text-align: center;
  font-size: 14px;
  line-height: 1.85;
}
.footer-info p {
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-info strong { color: var(--gold); }
.footer-info a {
  color: var(--gold);
  text-decoration: underline;
}
.footer-credits {
  margin-top: 30px !important;
  padding-top: 24px;
  border-top: 1px solid rgba(213, 170, 82, 0.18);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 2;
}
.footer-note {
  display: block;
  margin-top: 4px;
  color: rgba(230, 216, 187, 0.55);
  font-size: 12px;
  letter-spacing: 0.04em;
}
footer small {
  display: block;
  margin-top: 28px;
  color: rgba(230, 216, 187, 0.55);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-family: var(--heading);
}

/* ---------- Responsive ---------- */
@media (min-width: 961px) {
  .nav_trigger { display: none; }
  .nav {
    position: static;
    display: block !important;
    padding: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
  }
  .nav .global {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--sand);
  }
  .nav .global a {
    padding: 6px 0;
    min-height: 34px;
    border: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 640px) {
  header { min-height: 70px; padding: 10px 18px; }
  .nav { inset: 70px 0 auto; }
  .container { width: min(100% - 28px, 1040px); }
  #news, .about, .cast, #audition, #guide, .bgw { padding: 72px 0; }
  .stit { margin-bottom: 28px; }
  .story-work { padding: 28px 22px; }
  .scheblock { padding: 30px 18px; }
  .price_list { grid-template-columns: 1fr; }
  .price_r .block { grid-template-columns: 1fr 130px; }
  .price_l { padding: 18px; }
  .price_l h2 { font-size: 20px; }
  .ticket_link { grid-template-columns: 1fr; }
  .ticket_l, .ticket_r a { min-height: 64px; }
  #audition .cblock { padding: 24px 20px; }
  .modal_content { padding: 50px 22px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
