/* =========================================================
   Club 星華 official site
   Mobile-first luxury layout with graceful image fallbacks.
   ========================================================= */

:root {
  --color-black: #070707;
  --color-ink: #141414;
  --color-ink-soft: #26211a;
  --color-white: #ffffff;
  --color-ivory: #f8f5ee;
  --color-muted: #c9c0b1;
  --color-gold: #d8b45e;
  --color-gold-deep: #9b742f;
  --color-line: #04b900;
  --border-gold: rgba(216, 180, 94, 0.34);
  --border-soft: rgba(255, 255, 255, 0.14);
  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.38);
  --shadow-gold: 0 18px 60px rgba(216, 180, 94, 0.12);
  --font-sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --font-serif: "Hiragino Mincho ProN", "Yu Mincho", "Times New Roman", serif;
  --header-height: 72px;
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-ivory);
  background:
    radial-gradient(circle at 20% 0%, rgba(216, 180, 94, 0.12), transparent 32rem),
    linear-gradient(180deg, #060606 0%, #0d0b08 42%, #050505 100%);
  font-family: var(--font-sans);
  line-height: 1.8;
  letter-spacing: 0;
  padding-bottom: 74px;
}

body.is-lightbox-open {
  overflow: hidden;
}

img,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(216, 180, 94, 0.78);
  outline-offset: 4px;
}

/* Screen-reader and keyboard utility styles. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--color-black);
  background: var(--color-gold);
  border-radius: 999px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Shared page shell keeps desktop content centered and readable. */
.page-shell {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 78px 0;
}

.section-heading {
  display: grid;
  gap: 14px;
}

.section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading__label {
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section-heading h2,
.hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.35;
}

.section-heading h2 {
  font-size: clamp(1.55rem, 1.12rem + 1.8vw, 2.6rem);
}

.section-heading p,
.concept__body p {
  margin: 0;
  color: rgba(248, 245, 238, 0.82);
}

/* Header shifts from transparent to solid after scroll. */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(7, 7, 7, 0.48);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 7, 7, 0.9);
  border-color: var(--border-soft);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.site-header__inner {
  width: min(100% - 28px, 1200px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  display: block;
  width: 58px;
  height: 44px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(216, 180, 94, 0.32);
  border-radius: 8px;
}

.brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: grid;
  line-height: 1.25;
}

.brand__name {
  font-family: var(--font-serif);
  font-size: 1.08rem;
}

.brand__area {
  color: var(--color-muted);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--color-ivory);
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle::before,
.nav-toggle::after {
  position: absolute;
  left: 50%;
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle::before {
  top: calc(50% - 4px);
  transform: translateX(-50%);
}

.nav-toggle::after {
  top: calc(50% + 4px);
  transform: translateX(-50%);
}

.nav-toggle[aria-expanded="true"]::before {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.global-nav {
  position: absolute;
  top: var(--header-height);
  right: 14px;
  left: 14px;
  display: grid;
  gap: 4px;
  padding: 16px;
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.global-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.global-nav a {
  padding: 12px 14px;
  color: rgba(248, 245, 238, 0.88);
  border-radius: 6px;
  font-size: 0.94rem;
}

.global-nav a:hover,
.global-nav a:focus-visible {
  color: var(--color-white);
  background: rgba(216, 180, 94, 0.11);
}

.global-nav__cta {
  color: var(--color-black) !important;
  background: var(--color-gold);
  font-weight: 700;
}

.global-nav__social {
  color: var(--color-gold) !important;
  border: 1px solid var(--border-gold);
}

/* Hero uses the real interior photo with a dark readability layer. */
.hero {
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 86px);
  padding-bottom: 32px;
  background: #050505;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__photo {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.48) 48%, rgba(5, 5, 5, 0.48) 100%),
    radial-gradient(circle at 68% 28%, rgba(216, 180, 94, 0.42), transparent 20rem),
    linear-gradient(135deg, #16100a 0 20%, #2b2115 20% 28%, #0d0b0b 28% 45%, #3b2d18 45% 53%, #090909 53% 100%);
}

.hero__photo picture,
.hero__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__photo img {
  object-fit: cover;
  object-position: center top;
}

.hero__photo::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.55) 22%, rgba(5, 5, 5, 0.08) 48%, rgba(5, 5, 5, 0.08) 76%, rgba(5, 5, 5, 0.38) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.04) 52%, rgba(5, 5, 5, 0.78) 100%);
  content: "";
}

.hero__photo::after {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(5,5,5,0.35)
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.hero__content {
  max-width: 500px;
  grid-column: 1;
  grid-row: 1;
}

.hero__eyebrow {
  margin: 0 0 10px;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 0.78rem + 0.8vw, 1.3rem);
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.72);
  word-break: keep-all;
}

.hero h1 {
  max-width: 7.2em;
  /* モバイル: 2rem〜 → タブレット: 3rem → デスクトップ: 3.6rem */
  font-size: clamp(2rem, 1.2rem + 3.5vw, 3.6rem);
  letter-spacing: 0.04em;
  line-height: 1.22;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.76);
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hero__title-nowrap {
  white-space: nowrap;
}

.hero__lead {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(248, 245, 238, 0.9);
  font-size: clamp(0.88rem, 0.82rem + 0.26vw, 1.04rem);
  line-height: 1.9;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.76);
  word-break: keep-all;
}

.hero__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.3;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--color-black);
  background: linear-gradient(135deg, #f0d37d, #b88b39);
  box-shadow: var(--shadow-gold);
}

.button--line {
  color: var(--color-gold);
  background: rgba(7, 7, 7, 0.5);
  border-color: var(--border-gold);
}

.button--ghost {
  color: var(--color-ivory);
  border-color: var(--border-gold);
  background: rgba(255, 255, 255, 0.05);
}

.button--ghost-dark {
  color: var(--color-black);
  border-color: rgba(20, 20, 20, 0.28);
  background: rgba(255, 255, 255, 0.9);
}

.hero__badge {
  display: none;
}

.hero__panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  order: 3;
}

.hero__panel div {
  padding: 18px;
background: rgba(4, 4, 3, 0.97);
  border: 1px solid rgba(244, 206, 112, 0.9);
  border-radius: var(--radius);
  box-shadow: none;
  backdrop-filter: none;
}

.hero__panel span {
  display: block;
  color: #f3cd6f;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.hero__panel strong {
  display: block;
  margin-top: 6px;
  color: #ffe8a3;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.88);
}

.hero__panel small {
  display: block;
  margin-top: 8px;
  color: #fffaf0;
  font-weight: 600;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* ヒーロー直下のスケジュール帯 */
.hero-schedule {
  background: #050505;
  border-bottom: 1px solid rgba(216, 180, 94, 0.14);
  padding: 28px 0;
}

.hero-schedule .schedule-panel {
  /* ヒーロー外では glass-morphism を簡略化 */
background: rgba(4, 4, 3, 0.97);
  backdrop-filter: blur(10px);
}

/* Today's scheduled cast count — ヒーロー外に移動済み */
.schedule-panel {
  order: 2;
  display: grid;
  gap: 16px;
  padding: 20px;
  color: var(--color-ivory);
  background:
    linear-gradient(135deg, rgba(216, 180, 94, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(6, 6, 6, 0.76);
  border: 1px solid rgba(216, 180, 94, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.schedule-panel__copy,
.schedule-panel__status {
  display: grid;
  gap: 6px;
}

.schedule-panel__copy span,
.schedule-panel__status span,
.schedule-panel__status small {
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.schedule-panel__copy p,
.schedule-panel__status p {
  margin: 0;
  color: rgba(248, 245, 238, 0.76);
  font-size: 0.92rem;
  line-height: 1.7;
}

.schedule-panel__status,
.schedule-panel__meta {
  padding: 14px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(216, 180, 94, 0.24);
  border-radius: var(--radius);
}

.schedule-panel__status strong,
.schedule-panel__meta strong {
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 8vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
}

.schedule-panel__meta {
  display: grid;
  gap: 8px;
}

.schedule-panel__meta strong {
  color: var(--color-gold);
  font-size: clamp(1.15rem, 4.4vw, 1.8rem);
}

.schedule-panel__status small {
  color: rgba(248, 245, 238, 0.58);
}

/* Split content sections keep copy calm and readable. */
.split-layout {
  display: grid;
  gap: 34px;
}

.concept {
  background: linear-gradient(180deg, #0b0b0b 0%, #12100c 100%);
}

.concept__body {
  display: grid;
  gap: 16px;
  padding-left: 18px;
  border-left: 1px solid var(--border-gold);
}

.strength {
  background: var(--color-ivory);
  color: var(--color-ink);
}

.strength .section-heading__label {
  color: var(--color-gold-deep);
}

.strength__grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.feature-card {
  min-height: 224px;
  padding: 24px;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid rgba(155, 116, 47, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(20, 20, 20, 0.08);
}

.feature-card__number {
  color: var(--color-gold-deep);
  font-family: var(--font-serif);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  margin: 18px 0 12px;
  font-family: var(--font-serif);
  font-size: 1.28rem;
  line-height: 1.45;
}

.feature-card p {
  margin: 0;
  color: rgba(20, 20, 20, 0.72);
}

/* Pricing board favors legibility over decoration. */
.system {
  background:
    radial-gradient(circle at 88% 10%, rgba(216, 180, 94, 0.16), transparent 26rem),
    #080808;
}

.system__shell {
  display: grid;
  gap: 32px;
}

.price-board {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.price-board__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-gold);
}

.price-board__header p {
  margin: 0;
  color: var(--color-gold);
  font-family: var(--font-serif);
}

.price-board__header strong {
  color: var(--color-white);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.price-list {
  width: 100%;
  border-collapse: collapse;
}

.price-list tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.price-list th,
.price-list td {
  padding: 16px 0;
  text-align: left;
}

.price-list th {
  color: rgba(248, 245, 238, 0.86);
  font-weight: 400;
}

.price-list td {
  color: var(--color-white);
  font-weight: 700;
  text-align: right;
}

.vip-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 22px 0;
}

.vip-box div {
  padding: 16px;
  background: rgba(216, 180, 94, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
}

.vip-box p,
.vip-box strong {
  display: block;
  margin: 0;
}

.vip-box p {
  color: var(--color-gold);
  font-size: 0.85rem;
}

.vip-box strong {
  margin-top: 4px;
  font-size: 1.12rem;
}

.note {
  margin: 8px 0 0;
  color: rgba(248, 245, 238, 0.68);
  font-size: 0.88rem;
}

/* Gallery cards show refined placeholders until real photos are added. */
.gallery {
  background: #0e0d0b;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 34px;
}

.gallery-card {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(216, 180, 94, 0.2), transparent 42%),
    linear-gradient(180deg, #231b12 0%, #0a0a0a 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
}

.gallery-card::before {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 240ms ease;
}

.gallery-card.is-loaded img {
  opacity: 1;
}

.gallery-card.is-loaded::before {
  z-index: 1;
  inset: 0;
  border: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.72));
}

.gallery-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.movie {
  background:
    radial-gradient(circle at 15% 15%, rgba(216, 180, 94, 0.12), transparent 24rem),
    #080808;
}

.movie__shell {
  display: grid;
  gap: 30px;
}

.movie__media {
  display: grid;
  gap: 22px;
}

.movie__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(216, 180, 94, 0.12), transparent 44%),
    #151515;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.movie__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cast {
  background: var(--color-ivory);
  color: var(--color-ink);
}

.cast .section-heading p {
  color: rgba(20, 20, 20, 0.72);
}

.cast .section-heading__label {
  color: var(--color-gold-deep);
}

.cast__visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.05), rgba(7, 7, 7, 0.35)),
    radial-gradient(circle at 52% 24%, rgba(216, 180, 94, 0.46), transparent 12rem),
    linear-gradient(130deg, #ffffff, #d7c7a2 35%, #17110a 36%, #080808);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(20, 20, 20, 0.12);
}

.cast__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(7, 7, 7, 0.42));
  content: "";
}

.cast__visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.cast .button {
  width: fit-content;
  margin-top: 10px;
}

.cast__real {
  margin-top: 42px;
}

.cast__real .section-heading {
  max-width: 720px;
}

.cast__real .section-heading h3 {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 1.2rem + 1.2vw, 2.2rem);
  line-height: 1.35;
}

.cast__real-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.cast__real-card {
  display: block;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(155, 116, 47, 0.38);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(20, 20, 20, 0.13);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cast__real-card:hover,
.cast__real-card:focus-visible {
  border-color: rgba(155, 116, 47, 0.68);
  box-shadow: 0 24px 54px rgba(20, 20, 20, 0.2);
  transform: translateY(-3px);
}

.cast__real-card img {
  display: block;
  width: 100%;
  height: auto;
}

.cast__real-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.listing-links {
  background:
    radial-gradient(circle at 82% 0%, rgba(216, 180, 94, 0.13), transparent 24rem),
    #080808;
}

.listing-links__grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.listing-links__taiken {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.listing-banner {
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.listing-banner:hover,
.listing-banner:focus-visible {
  border-color: rgba(216, 180, 94, 0.72);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.46);
  transform: translateY(-3px);
}

.listing-banner img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #050505;
}

.access {
  background: #080808;
}

.access__shell {
  display: grid;
  gap: 26px;
}

.access__info {
  padding: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
}

.info-list {
  display: grid;
  gap: 14px;
}

.info-list__row {
  display: grid;
  gap: 2px;
}

.info-list__row span {
  color: var(--color-gold);
  font-size: 0.78rem;
}

.info-list__row p {
  margin: 0;
}

.access__info a {
  text-decoration: underline;
  text-decoration-color: rgba(216, 180, 94, 0.5);
  text-underline-offset: 4px;
}

.map-frame {
  margin-top: 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(216, 180, 94, 0.1), transparent 45%),
    #151515;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 300px;
}

.map-frame__actions {
  display: flex;
  justify-content: center;
  padding: 16px;
  border-top: 1px solid rgba(216, 180, 94, 0.22);
  background: rgba(7, 7, 7, 0.72);
}

.map-frame__button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 10px 18px;
  color: var(--color-black);
  background: var(--color-gold);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.recruit {
  color: var(--color-black);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(248, 245, 238, 0.88)),
    linear-gradient(135deg, #f3dd9c, #ffffff);
}

.recruit__hero {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.recruit .section-heading__label {
  color: var(--color-gold-deep);
}

.recruit .section-heading p {
  color: rgba(20, 20, 20, 0.74);
}

.recruit__highlight {
  display: grid;
  align-content: center;
  min-height: 210px;
  padding: 26px;
  color: var(--color-ivory);
  background:
    linear-gradient(135deg, rgba(7, 7, 7, 0.8), rgba(7, 7, 7, 0.94)),
    radial-gradient(circle at 76% 12%, rgba(216, 180, 94, 0.44), transparent 12rem);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.recruit__highlight span {
  color: var(--color-gold);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
}

.recruit__highlight strong {
  display: block;
  margin-top: 6px;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 1.4rem + 5vw, 5rem);
  line-height: 1;
}

.recruit__highlight p {
  margin: 12px 0 0;
  color: rgba(248, 245, 238, 0.76);
}

.recruit__banners {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.recruit__banner-link {
  display: block;
  transition: transform 180ms ease, filter 180ms ease;
}

.recruit__banner-link:hover,
.recruit__banner-link:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.recruit__banner-link img {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(155, 116, 47, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(20, 20, 20, 0.1);
}

.recruit__cards {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.recruit__comic {
  margin-top: 42px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 245, 238, 0.82)),
    radial-gradient(circle at 14% 8%, rgba(216, 180, 94, 0.18), transparent 18rem);
  border: 1px solid rgba(155, 116, 47, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 20px 58px rgba(20, 20, 20, 0.09);
}

.recruit__comic .section-heading {
  max-width: 760px;
}

.recruit__comic .section-heading h3 {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 1.18rem + 1.4vw, 2.3rem);
  line-height: 1.36;
}

.recruit__comic-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.recruit__comic-card {
  margin: 0;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(155, 116, 47, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(20, 20, 20, 0.1);
  cursor: zoom-in;
}

.recruit__comic-card img {
  display: block;
  width: 100%;
  height: auto;
}

.recruit__step-flow {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.recruit__step-flow div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(155, 116, 47, 0.2);
  border-radius: var(--radius);
}

.recruit__step-flow span {
  color: var(--color-gold-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.recruit__step-flow strong {
  display: block;
  margin-top: 5px;
  font-family: var(--font-serif);
  font-size: 1.12rem;
}

.recruit__step-flow p {
  margin: 5px 0 0;
  color: rgba(20, 20, 20, 0.68);
}

.recruit__comic-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.comic-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.comic-lightbox.is-open {
  display: flex;
}

.comic-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.comic-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 760px);
  max-height: calc(100dvh - 32px);
  place-items: center;
}

.comic-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(100dvh - 118px);
  object-fit: contain;
  background: var(--color-white);
  border: 1px solid rgba(216, 180, 94, 0.52);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.comic-lightbox__close,
.comic-lightbox__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--color-black);
  background: var(--color-gold);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.comic-lightbox__close {
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  font-size: 1.45rem;
}

.comic-lightbox__controls {
  display: grid;
  grid-template-columns: 42px minmax(64px, auto) 42px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 12px;
}

.comic-lightbox__nav {
  position: static;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  transform: none;
}

.comic-lightbox__counter {
  margin: 0;
  color: var(--color-white);
  font-size: 0.86rem;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.comic-lightbox.is-guide-comic .comic-lightbox__dialog {
  overflow: auto;
  justify-items: center;
  -webkit-overflow-scrolling: touch;
}

.comic-lightbox.is-guide-comic .comic-lightbox__image {
  width: auto;
  max-width: min(92vw, 560px);
  max-height: 82vh;
  object-fit: contain;
}

.comic-lightbox.is-guide-comic .comic-lightbox__controls {
  position: static;
  width: 100%;
  justify-self: center;
}

.recruit-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(155, 116, 47, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(20, 20, 20, 0.08);
}

.recruit-card span {
  color: var(--color-gold-deep);
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.recruit-card h3 {
  margin: 12px 0 8px;
  font-family: var(--font-serif);
  font-size: 1.24rem;
  line-height: 1.45;
}

.recruit-card p,
.recruit__message p {
  margin: 0;
  color: rgba(20, 20, 20, 0.72);
}

.recruit__detail {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.recruit__photo {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.06), rgba(7, 7, 7, 0.32)),
    url("../images/hall.webp") center / cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 58px rgba(20, 20, 20, 0.12);
}

.recruit__photo img {
  width: min(320px, 82%);
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(216, 180, 94, 0.42);
  border-radius: var(--radius);
}

.recruit-table {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(155, 116, 47, 0.22);
  border-radius: var(--radius);
}

.recruit-table__row {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
}

.recruit-table__row + .recruit-table__row {
  border-top: 1px solid rgba(20, 20, 20, 0.09);
}

.recruit-table__row span {
  color: var(--color-gold-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.recruit-table__row p {
  margin: 0;
}

.recruit__message {
  margin-top: 30px;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid rgba(155, 116, 47, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(20, 20, 20, 0.08);
}

.recruit__message h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.36rem;
}

.recruit__actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

/* Dedicated recruitment landing page for cast and staff entry. */
.recruit-page {
  background:
    radial-gradient(circle at 84% 0%, rgba(216, 180, 94, 0.14), transparent 30rem),
    linear-gradient(180deg, #050505 0%, #10100e 44%, #060606 100%);
}

.recruit-lp-hero {
  min-height: 700px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 78px);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96), rgba(7, 7, 7, 0.7)),
    url("../images/hall_panorama.webp") center / cover;
}

.recruit-lp-hero__shell {
  display: grid;
  gap: 30px;
  align-items: center;
}

.recruit-lp-hero__content {
  max-width: 760px;
}

.recruit-lp-hero h1,
.recruit-lp-bottom h2 {
  margin: 12px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 1.22rem + 4vw, 4.7rem);
  line-height: 1.24;
}

.recruit-lp-hero p,
.recruit-lp-merit .section-heading p,
.recruit-lp-bottom p {
  margin: 18px 0 0;
  color: rgba(248, 245, 238, 0.8);
}

.recruit-lp-hero__actions,
.recruit-lp-bottom__actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.recruit-lp-hero__visual {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.recruit-lp-hero__visual img {
  width: 100%;
}

.recruit-lp-branch,
.recruit-lp-fit,
.recruit-lp-faq {
  color: var(--color-ink);
  background: var(--color-ivory);
}

.recruit-lp-branch .section-heading__label,
.recruit-lp-fit .section-heading__label,
.recruit-lp-faq .section-heading__label {
  color: var(--color-gold-deep);
}

.recruit-lp-branch__grid {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.recruit-lp-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 26px;
  color: var(--color-ivory);
  background:
    linear-gradient(145deg, rgba(12, 12, 11, 0.96), rgba(30, 25, 17, 0.92));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(20, 20, 20, 0.14);
}

.recruit-lp-card--cast {
  background:
    linear-gradient(145deg, rgba(16, 13, 9, 0.96), rgba(54, 41, 21, 0.88));
}

.recruit-lp-card span,
.recruit-lp-table span {
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recruit-lp-card h3,
.recruit-lp-table h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.38;
}

.recruit-lp-card ul,
.recruit-lp-checks {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruit-lp-card li,
.recruit-lp-checks li,
.recruit-lp-list-grid div {
  position: relative;
  padding-left: 22px;
}

.recruit-lp-card li::before,
.recruit-lp-checks li::before,
.recruit-lp-list-grid div::before {
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  content: "";
}

.recruit-lp-card .button {
  margin-top: 4px;
}

.recruit-lp-merit,
.recruit-lp-requirements {
  background:
    radial-gradient(circle at 14% 18%, rgba(216, 180, 94, 0.12), transparent 24rem),
    #080808;
}

.recruit-lp-list-grid {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.recruit-lp-list-grid div {
  padding: 18px 18px 18px 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
}

.recruit-lp-list-grid div::before {
  left: 20px;
}

.recruit-lp-fit__shell {
  display: grid;
  gap: 28px;
}

.recruit-lp-checks {
  padding: 24px;
  background: var(--color-white);
  border: 1px solid rgba(155, 116, 47, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(20, 20, 20, 0.08);
}

.recruit-lp-checks li {
  color: rgba(20, 20, 20, 0.76);
}

.recruit-lp-requirements__grid {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.recruit-lp-table {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
}

.recruit-lp-table h3 {
  padding: 22px;
  background: rgba(216, 180, 94, 0.1);
  border-bottom: 1px solid var(--border-gold);
}

.recruit-lp-table div {
  display: grid;
  gap: 5px;
  padding: 16px 22px;
}

.recruit-lp-table div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.recruit-lp-table p {
  margin: 0;
  color: rgba(248, 245, 238, 0.88);
}

.recruit-lp-table a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.recruit-lp-faq__list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.recruit-lp-faq details {
  background: var(--color-white);
  border: 1px solid rgba(155, 116, 47, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(20, 20, 20, 0.07);
}

.recruit-lp-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
}

.recruit-lp-faq p {
  margin: 0;
  padding: 0 20px 20px;
  color: rgba(20, 20, 20, 0.72);
}

.recruit-lp-faq a {
  color: var(--color-gold-deep);
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.recruit-lp-bottom {
  background:
    linear-gradient(135deg, rgba(216, 180, 94, 0.1), rgba(255, 255, 255, 0.03)),
    #080808;
}

.recruit-lp-bottom__box {
  display: grid;
  gap: 24px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* Staff recruitment page keeps the same brand while separating men's roles. */
.staff-page {
  background:
    radial-gradient(circle at 85% 0%, rgba(216, 180, 94, 0.13), transparent 30rem),
    #080808;
}

.staff-hero {
  min-height: 680px;
  display: grid;
  align-items: center;
  padding-top: calc(var(--header-height) + 78px);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96), rgba(7, 7, 7, 0.72)),
    url("../images/hall_panorama.webp") center / cover;
}

.staff-hero__shell {
  display: grid;
  gap: 30px;
  align-items: center;
}

.staff-hero__content {
  max-width: 760px;
}

.hero__logo {
  width: 160px;
  margin-bottom: 16px;
}

.staff-hero h1,
.staff-cta h2 {
  margin: 12px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.18rem + 3.5vw, 4.2rem);
  line-height: 1.28;
}

.staff-hero p,
.staff-jobs .section-heading p,
.staff-workplace .section-heading p,
.staff-cta p {
  color: rgba(248, 245, 238, 0.78);
}

.staff-hero__actions,
.staff-cta__actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.staff-hero__visual {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.staff-hero__visual img {
  width: 100%;
}

.staff-points {
  background: var(--color-ivory);
  color: var(--color-ink);
}

.staff-points .section-heading__label {
  color: var(--color-gold-deep);
}

.staff-points__grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.staff-point {
  padding: 24px;
  background: var(--color-white);
  border: 1px solid rgba(155, 116, 47, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(20, 20, 20, 0.08);
}

.staff-point h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.24rem;
}

.staff-point p {
  margin: 0;
  color: rgba(20, 20, 20, 0.72);
}

.staff-jobs {
  background: #080808;
}

.staff-job-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.staff-job {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
}

.staff-job__head {
  padding: 22px;
  background: rgba(216, 180, 94, 0.1);
  border-bottom: 1px solid var(--border-gold);
}

.staff-job__head span {
  color: var(--color-gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.staff-job__head h3 {
  margin: 8px 0 0;
  font-family: var(--font-serif);
  font-size: 1.52rem;
}

.staff-job__rows div {
  display: grid;
  gap: 4px;
  padding: 16px 22px;
}

.staff-job__rows div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.staff-job__rows span {
  color: var(--color-gold);
  font-size: 0.78rem;
}

.staff-job__rows p {
  margin: 0;
  color: rgba(248, 245, 238, 0.88);
}

.staff-workplace {
  color: var(--color-ink);
  background: var(--color-ivory);
}

.staff-workplace .section-heading__label {
  color: var(--color-gold-deep);
}

.staff-workplace .section-heading p {
  color: rgba(20, 20, 20, 0.72);
}

.staff-workplace__shell {
  display: grid;
  gap: 28px;
}

.staff-workplace__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.staff-workplace__photos img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
}

.staff-workplace__photos img:first-child {
  grid-column: 1 / -1;
}

.staff-cta {
  background:
    radial-gradient(circle at 16% 20%, rgba(216, 180, 94, 0.14), transparent 24rem),
    #080808;
}

.staff-cta__box {
  display: grid;
  gap: 24px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.site-footer {
  padding: 54px 0 96px;
  color: rgba(248, 245, 238, 0.78);
  background: #050505;
  border-top: 1px solid var(--border-soft);
}

.site-footer__inner {
  display: grid;
  gap: 28px;
}

.site-footer__brand {
  margin: 0 0 8px;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.site-footer__logo {
  width: min(210px, 70vw);
  margin-bottom: 18px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
}

.site-footer p {
  margin: 0;
}

.site-footer__links {
  display: grid;
  gap: 10px;
}

.site-footer__links a {
  color: var(--color-gold);
}

.site-footer__copy {
  color: rgba(248, 245, 238, 0.48);
}

/* ===== 404 Not Found ===== */

.not-found-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.66) 0%, rgba(5, 5, 5, 0.95) 100%),
    url("../images/hall_panorama.webp") center / cover no-repeat;
}

.not-found-hero__inner {
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
}

.not-found-hero__code {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(7rem, 4rem + 12vw, 16rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-gold);
  letter-spacing: 0.06em;
  text-shadow:
    0 0 60px rgba(216, 180, 94, 0.45),
    0 8px 40px rgba(0, 0, 0, 0.6);
}

.not-found-hero__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 1rem + 1.8vw, 2.2rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-white);
}

.not-found-hero__lead {
  max-width: 480px;
  margin: 0;
  color: rgba(248, 245, 238, 0.78);
  font-size: clamp(0.88rem, 0.84rem + 0.2vw, 1rem);
  line-height: 2;
}

.not-found-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 10px;
}

/* ===== First Visit Guide ===== */

.guide-hero {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 72px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 180, 94, 0.12), transparent 55%),
    linear-gradient(180deg, #060606 0%, #0c0c0c 100%);
}

.guide-hero__inner {
  max-width: 700px;
  margin-inline: auto;
}

.guide-hero h1 {
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3rem);
  color: var(--color-gold);
  margin-block: 12px 20px;
}

.guide-hero p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin-bottom: 32px;
}

.guide-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Comic guide */
.guide-comic {
  background:
    linear-gradient(180deg, rgba(216, 180, 94, 0.05), transparent 38%),
    #050505;
}

.guide-comic__grid {
  display: grid;
  gap: 22px;
  margin-top: 44px;
}

.guide-comic__item {
  display: grid;
  gap: 14px;
  margin: 0;
  cursor: zoom-in;
}

.guide-comic__item picture,
.guide-comic__item img {
  width: 100%;
}

.guide-comic__item picture {
  display: block;
}

.guide-comic__item img {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(216, 180, 94, 0.4);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.guide-comic__item:focus-visible img {
  outline: 3px solid rgba(216, 180, 94, 0.78);
  outline-offset: 4px;
}

.guide-comic__item figcaption {
  margin: 0;
  color: rgba(248, 245, 238, 0.72);
  font-size: 0.84rem;
  line-height: 1.8;
}

/* Flow */
.guide-flow {
  background: #080808;
}

.guide-steps {
  list-style: none;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.guide-steps::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--color-gold), rgba(216, 180, 94, 0.1));
}

.guide-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 40px;
}

.guide-step:last-child {
  padding-bottom: 0;
}

.guide-step__num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-black);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.guide-step__body h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
  padding-top: 14px;
}

.guide-step__body p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
}

/* Price */
.guide-price {
  background:
    radial-gradient(circle at 80% 50%, rgba(216, 180, 94, 0.07), transparent 50%),
    #0a0a0a;
}

.guide-price__grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.guide-price__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.guide-price__card--vip {
  border-color: var(--color-gold);
  background: rgba(216, 180, 94, 0.06);
}

.guide-price__label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.guide-price__amount {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.guide-price__amount span {
  font-size: 1rem;
  margin-left: 2px;
}

.guide-price__note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
}

.guide-price__footer-note {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin-top: 28px;
}

.guide-price__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

/* FAQ */
.guide-faq {
  background: #080808;
}

.guide-faq__list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.guide-faq__item {
  border-bottom: 1px solid rgba(216, 180, 94, 0.15);
  padding: 28px 0;
}

.guide-faq__item:first-child {
  border-top: 1px solid rgba(216, 180, 94, 0.15);
}

.guide-faq__item dt {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.guide-faq__item dt::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold);
  font-weight: 700;
}

.guide-faq__item dd {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
  padding-left: 28px;
}

.guide-faq__more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* ===== FAQ Page ===== */

.faq-hero {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 64px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(216, 180, 94, 0.08), transparent 62%),
    #060606;
}

.faq-hero__inner {
  max-width: 760px;
  margin-inline: auto;
}

.faq-hero h1 {
  margin: 12px 0 20px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.3rem + 2.4vw, 3rem);
  font-weight: 600;
  line-height: 1.35;
}

.faq-hero p {
  margin: 0 auto 30px;
  color: rgba(248, 245, 238, 0.76);
  line-height: 1.9;
}

.faq-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.faq-lead {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #080808;
}

.faq-lead__grid {
  display: grid;
  gap: 14px;
}

.faq-link-card {
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(216, 180, 94, 0.24);
  border-radius: var(--radius);
}

.faq-link-card span {
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.faq-link-card strong {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.5;
}

.faq-link-card small {
  color: rgba(248, 245, 238, 0.62);
  font-size: 0.82rem;
  line-height: 1.7;
}

.faq-section {
  background: #080808;
}

.faq-section--deep,
.faq-contact {
  background: #0a0a0a;
}

.faq-section .section-heading a,
.faq-item a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 42px auto 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(216, 180, 94, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.faq-item[open] {
  border-color: rgba(216, 180, 94, 0.48);
  background: rgba(216, 180, 94, 0.055);
}

.faq-item summary {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 64px;
  padding: 18px 18px 18px 20px;
  color: #fff;
  font-weight: 700;
  line-height: 1.65;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "Q";
  flex: 0 0 auto;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.55;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--color-gold);
  border: 1px solid rgba(216, 180, 94, 0.32);
  border-radius: 50%;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item summary span {
  flex: 1 1 auto;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 22px 52px;
  color: rgba(248, 245, 238, 0.72);
  font-size: 0.92rem;
  line-height: 1.9;
}

/* CTA */
.guide-cta {
  background: #0a0a0a;
}

.guide-cta__box {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 56px 24px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
}

.guide-cta__box h2 {
  font-size: clamp(1.3rem, 1rem + 1.5vw, 1.8rem);
  color: var(--color-gold);
  margin-bottom: 12px;
}

.guide-cta__box p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.guide-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== SNS Section ===== */

.sns {
  background: #080808;
}

.sns-cards {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.sns-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  position: relative;
  overflow: hidden;
}

.sns-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 200ms ease;
}

.sns-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.sns-card:hover::before {
  opacity: 1;
}

/* Instagram: purple→pink→orange グラデーション */
.sns-card--instagram {
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.15) 0%, rgba(253, 29, 29, 0.1) 50%, rgba(252, 176, 69, 0.1) 100%);
}

.sns-card--instagram::before {
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.22) 0%, rgba(253, 29, 29, 0.15) 50%, rgba(252, 176, 69, 0.15) 100%);
}

.sns-card--instagram:hover {
  border-color: rgba(253, 29, 29, 0.4);
}

/* TikTok: ダーク＋シアン＋レッドアクセント */
.sns-card--tiktok {
  background: linear-gradient(135deg, rgba(105, 201, 208, 0.1) 0%, rgba(18, 18, 18, 0.8) 50%, rgba(238, 29, 82, 0.1) 100%);
}

.sns-card--tiktok::before {
  background: linear-gradient(135deg, rgba(105, 201, 208, 0.18) 0%, rgba(18, 18, 18, 0.8) 50%, rgba(238, 29, 82, 0.15) 100%);
}

.sns-card--tiktok:hover {
  border-color: rgba(105, 201, 208, 0.4);
}

.sns-card__icon {
  color: rgba(255, 255, 255, 0.85);
}

.sns-card--instagram .sns-card__icon { color: #e1306c; }
.sns-card--tiktok .sns-card__icon { color: #69C9D0; }

.sns-card__body {
  flex: 1;
}

.sns-card__platform {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

.sns-card__handle {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.sns-card__desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.sns-card__cta {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  transition: color 200ms ease;
}

.sns-card:hover .sns-card__cta {
  color: #fff;
}

/* ===== Event Page ===== */

.event-hero {
  padding-top: calc(var(--header-height) + 72px);
  padding-bottom: 56px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 180, 94, 0.15), transparent 60%),
    var(--color-black);
  text-align: center;
}

.event-hero .button--line {
  margin-top: 24px;
}

.event-list {
  background: #080808;
}

.event-cards {
  display: grid;
  gap: 32px;
  margin-top: 40px;
}

.event-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.event-card--ended {
  opacity: 0.6;
}

.event-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.event-card__badge--upcoming {
  background: var(--color-gold);
  color: var(--color-black);
}

.event-card__badge--ended {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.event-card__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.event-card__body {
  padding: 24px;
}

.event-card__title {
  font-size: 1.3rem;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.event-card__date {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.event-card__desc {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.event-card__note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
}

.event-cta {
  background: #0a0a0a;
}

.event-cta__box {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 56px 24px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
}

.event-cta__box h2 {
  font-size: clamp(1.3rem, 1rem + 1.5vw, 1.8rem);
  color: var(--color-gold);
  margin-bottom: 12px;
}

.event-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== Privacy Policy ===== */

.privacy-hero {
  padding-top: calc(var(--header-height) + 76px);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.94)),
    url("../images/hall_panorama.webp") center / cover no-repeat;
}

.privacy-hero__inner {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.privacy-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.2rem + 3vw, 3.6rem);
  font-weight: 600;
  line-height: 1.35;
}

.privacy-hero p {
  margin: 0;
  color: rgba(248, 245, 238, 0.82);
}

.privacy-content {
  background: #050505;
}

.privacy-content__inner {
  display: grid;
  gap: 24px;
  max-width: 900px;
}

.privacy-section {
  padding: 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
}

.privacy-section h2 {
  margin: 0 0 10px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: clamp(1.18rem, 1rem + 0.55vw, 1.45rem);
  font-weight: 600;
  line-height: 1.5;
}

.privacy-section p {
  margin: 0;
  color: rgba(248, 245, 238, 0.84);
}

.cookie-consent {
  position: fixed;
  right: 12px;
  bottom: 86px;
  left: 12px;
  z-index: 120;
  color: var(--color-ivory);
}

.cookie-consent__body {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin-inline: auto;
  padding: 16px;
  background: rgba(5, 5, 5, 0.96);
  border: 1px solid rgba(216, 180, 94, 0.52);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.cookie-consent p {
  margin: 0;
  color: rgba(248, 245, 238, 0.88);
  font-size: 0.88rem;
  line-height: 1.75;
}

.cookie-consent a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cookie-consent__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cookie-consent__button {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
}

.cookie-consent__button--accept {
  color: var(--color-black);
  background: linear-gradient(135deg, #f0d37d, #b88b39);
}

.cookie-consent__button--reject {
  color: var(--color-ivory);
  background: rgba(255, 255, 255, 0.04);
}

/* Mobile bottom CTA is thumb-friendly and always visible. */
.fixed-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: rgba(7, 7, 7, 0.92);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.fixed-cta--four {
  grid-template-columns: repeat(4, 1fr);
}

.fixed-cta a {
  display: grid;
  min-height: 54px;
  place-items: center;
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 700;
}

.fixed-cta a + a {
  border-left: 1px solid var(--border-soft);
}

.fixed-cta a:nth-child(2) {
  color: var(--color-black);
  background: var(--color-gold);
}

.fixed-cta--four a:nth-child(3) {
  color: var(--color-gold);
  background: rgba(255, 255, 255, 0.04);
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 86px;
  z-index: 80;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--color-black);
  background: var(--color-gold);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

@media (max-width: 759px) {
  .hero__content {
    margin-top: 132px;
  }

  .hero__eyebrow {
    margin-bottom: 8px;
    font-size: 0.88rem;
  }

  .hero h1 {
    max-width: 6.4em;
    font-size: clamp(1.58rem, 1.32rem + 1.1vw, 1.9rem);
    line-height: 1.34;
  }
}

@media (min-width: 560px) {
  .hero__actions,
  .vip-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .cookie-consent {
    bottom: 24px;
  }

  .cookie-consent__body {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 18px 20px;
  }

  .cookie-consent__actions {
    min-width: 220px;
  }

  .hero h1 {
    max-width: 9.5em;
    font-size: clamp(1.8rem, 1rem + 2vw, 2.8rem);
    line-height: 1.4;
  }

  .section {
    padding: 104px 0;
  }

  .cast__real-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-toggle {
    display: none;
  }

  .global-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .global-nav a {
    padding: 10px 9px;
    font-size: 0.88rem;
  }

  .global-nav__cta {
    margin-left: 4px;
    padding-inline: 18px !important;
    border-radius: 999px !important;
  }

  .hero {
    /* 画像(1227×551)の縦横比に合わせて高さをビューポート幅から算出。
       コンテンツがそれ以上になる場合は自然に伸長する。 */
    min-height: clamp(500px, calc(100vw * 551 / 1227), 760px);
    padding-bottom: 42px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) 250px;
    align-items: center;
  }

  .hero__actions {
    grid-template-columns: repeat(2, max-content);
  }

  .hero__badge {
    /* パネル行の右列に配置してモデルの顔と被らないよう調整 */
    display: grid;
    width: 190px;
    aspect-ratio: 1;
    place-items: center;
    justify-self: end;
    align-self: center;
    grid-column: 2;
    grid-row: 2;
    padding: 22px;
    text-align: center;
    background: rgba(8, 8, 8, 0.52);
    border: 1px solid rgba(216, 180, 94, 0.82);
    border-radius: 50%;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(10px);
  }

  .hero__badge span {
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 0.8rem;
  }

  .hero__badge strong {
    display: block;
    color: var(--color-gold);
    font-family: var(--font-serif);
    font-size: 1.06rem;
    line-height: 1.5;
  }

  .hero__badge p {
    margin: 0;
    color: rgba(248, 245, 238, 0.9);
    font-size: 0.75rem;
    line-height: 1.75;
  }

  .hero__panel {
    /* バッジと同じ行に並べる（左列）。右列はバッジ。 */
    grid-column: 1;
    grid-row: 2;
    align-self: stretch;
    order: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .schedule-panel {
    order: 0;
    grid-column: 1 / -1;
    grid-template-columns: minmax(280px, 1.25fr) minmax(260px, 1fr) minmax(210px, 0.8fr);
    align-items: center;
  }

  .split-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }

  .split-layout--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  }

  .split-layout--reverse .cast__visual {
    order: 2;
  }

  .strength__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .system__shell,
  .movie__shell,
  .access__shell {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
  }

  .access__shell .map-frame {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-top: 0;
  }

  .map-frame iframe {
    height: 420px;
  }

  .gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-card {
    min-height: 250px;
  }

  .recruit__hero,
  .recruit__detail {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    align-items: center;
  }

  .recruit__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .recruit__comic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .recruit__step-flow,
  .recruit__comic-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .recruit__comic-actions .button {
    justify-self: stretch;
  }

  .recruit__comic-actions .button--primary {
    grid-column: span 2;
  }

  .listing-links__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sns-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sns-card {
    flex-direction: row;
    align-items: center;
  }

  .sns-card__icon {
    flex-shrink: 0;
  }

  .guide-comic__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .guide-price__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-lead__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .guide-price__card--vip {
    grid-column: 1 / -1;
  }

  .guide-steps::before {
    left: 34px;
  }

  .guide-cta__box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .guide-cta__actions {
    flex-shrink: 0;
    flex-direction: column;
    align-items: flex-end;
  }

  .event-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-cta__box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .event-cta__actions {
    flex-shrink: 0;
    flex-direction: column;
    align-items: flex-end;
  }

  .recruit__banners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruit__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruit-lp-hero__shell,
  .recruit-lp-bottom__box {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  }

  .recruit-lp-hero__actions,
  .recruit-lp-bottom__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruit-lp-bottom__actions .button--ghost {
    grid-column: 1 / -1;
  }

  .recruit-lp-branch__grid,
  .recruit-lp-requirements__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruit-lp-list-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .recruit-lp-fit__shell {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    align-items: start;
  }

  .recruit-lp-checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .staff-hero__shell,
  .staff-workplace__shell,
  .staff-cta__box {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  }

  .staff-hero__actions,
  .staff-cta__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .staff-cta__actions .button--ghost {
    grid-column: 1 / -1;
  }

  .staff-points__grid,
  .staff-job-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fixed-cta {
    display: none;
  }

  .back-to-top {
    bottom: 24px;
  }

  .site-footer {
    padding-bottom: 56px;
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .site-footer__copy {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .page-shell {
    width: min(100% - 72px, 1200px);
  }

  .site-header__inner {
    width: min(100% - 72px, 1200px);
  }

  .hero__panel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cast__real-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .price-board {
    padding: 34px;
  }
}

@media (min-width: 760px) and (max-width: 1119px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) 210px;
  }

  .hero__badge {
    width: 176px;
    padding: 20px;
  }

  .hero__panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .hero__panel div {
    min-height: 128px;
    padding: 18px 20px;
  }

  .hero__panel strong {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero__panel small {
    line-height: 1.65;
  }

  .nav-toggle {
    display: grid;
    flex: 0 0 auto;
  }

  .global-nav {
    position: absolute;
    top: var(--header-height);
    right: 24px;
    left: auto;
    display: grid;
    width: min(360px, calc(100vw - 48px));
    gap: 4px;
    padding: 16px;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
  }

  .global-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .global-nav a {
    padding: 12px 14px;
    font-size: 0.94rem;
  }

  .global-nav__cta {
    margin-left: 0;
    padding-inline: 14px !important;
    border-radius: 6px !important;
  }
}

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

/* =========================================================
   Cast Type Diagnosis Page  (cast-diagnosis.html)
   ========================================================= */

/* — イントロセクション — */
.diag-intro {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 80px;
  overflow: hidden;
}

.diag-intro__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.72) 0%, rgba(5, 5, 5, 0.9) 100%),
    url("../images/hall_panorama.webp") center / cover no-repeat;
}

.diag-intro__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.diag-intro__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.2rem + 3.5vw, 4rem);
  font-weight: 600;
  line-height: 1.3;
}

.diag-intro__lead {
  margin: 0;
  color: rgba(248, 245, 238, 0.82);
  font-size: clamp(0.95rem, 0.88rem + 0.28vw, 1.1rem);
  line-height: 1.9;
}

.diag-intro__meta {
  color: var(--color-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.diag-intro__start {
  justify-self: center;
  min-width: 220px;
}

.diag-noscript {
  margin: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  font-size: 0.92rem;
  line-height: 1.7;
}

.diag-noscript__actions {
  display: grid;
  gap: 10px;
}

/* — 質問セクション — */
.diag-quiz {
  min-height: calc(100vh - var(--header-height));
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
}

.diag-quiz__inner {
  display: grid;
  gap: 28px;
  max-width: 560px;
  margin-inline: auto;
}

.diag-progress {
  display: grid;
  gap: 10px;
}

.diag-progress__label {
  display: block;
}

.diag-progress__track {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.diag-progress__fill {
  height: 100%;
  background: var(--color-gold);
  border-radius: 999px;
  transition: width 320ms ease;
}

.diag-question {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.28rem, 1.06rem + 0.95vw, 1.72rem);
  font-weight: 600;
  line-height: 1.55;
}

.diag-question:focus {
  outline: none;
}

.diag-choices {
  display: grid;
  gap: 10px;
}

.diag-choice {
  display: flex;
  min-height: 64px;
  align-items: center;
  padding: 14px 20px;
  color: var(--color-ivory);
  background: rgba(255, 255, 255, 0.048);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.96rem;
  text-align: left;
  line-height: 1.55;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.diag-choice:hover {
  background: rgba(216, 180, 94, 0.12);
  border-color: var(--color-gold);
  transform: translateY(-1px);
}

.diag-choice:active {
  transform: translateY(0);
}

.diag-back {
  justify-self: start;
  min-height: 44px;
  padding: 8px 18px;
  font-size: 0.9rem;
}

/* — 結果セクション — */
.diag-result {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
}

.diag-result__inner {
  display: grid;
  gap: 24px;
  max-width: 620px;
  margin-inline: auto;
}

.diag-result__card {
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.diag-result__eyebrow {
  display: block;
  margin-bottom: 12px;
}

.diag-result__title {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 1.2rem + 1.28vw, 2.2rem);
  font-weight: 600;
  line-height: 1.35;
}

.diag-result__body {
  margin: 0;
  color: rgba(248, 245, 238, 0.82);
  line-height: 1.9;
}

.diag-tips {
  padding: 22px 20px;
  background: rgba(216, 180, 94, 0.07);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
}

.diag-tips__heading {
  margin: 0 0 14px;
  color: var(--color-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.diag-tips ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.diag-tips li {
  position: relative;
  padding-left: 20px;
  color: rgba(248, 245, 238, 0.86);
  font-size: 0.94rem;
  line-height: 1.75;
}

.diag-tips li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  content: "";
}

.diag-result__note {
  margin: 0;
  padding: 14px 16px;
  color: rgba(248, 245, 238, 0.58);
  font-size: 0.86rem;
  line-height: 1.8;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.diag-cta {
  display: grid;
  gap: 12px;
}

.diag-retry {
  width: 100%;
}

/* — index.html キャストセクション 診断導線 — */
.cast__diagnosis {
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(20, 20, 20, 0.12);
}

.cast .cast__diagnosis p {
  margin: 0;
  color: rgba(20, 20, 20, 0.65);
  font-size: 0.88rem;
  line-height: 1.7;
}

.cast .cast__diagnosis .button {
  margin-top: 0;
  width: 100%;
}

/* — 診断ページ レスポンシブ — */
@media (min-width: 560px) {
  .diag-cta {
    grid-template-columns: repeat(2, 1fr);
  }

  .diag-noscript__actions {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
  }

  .cast__diagnosis {
    grid-template-columns: 1fr;
  }

  .cast .cast__diagnosis .button {
    width: fit-content;
  }
}

@media (min-width: 760px) {
  .diag-quiz,
  .diag-result {
    padding-top: calc(var(--header-height) + 80px);
  }
}
