:root {
  --bg: #0a0a0a;
  --bg-alt: #17101e;
  --panel: rgba(19, 14, 24, 0.82);
  --panel-strong: rgba(24, 15, 32, 0.94);
  --line: rgba(201, 168, 76, 0.2);
  --accent: #8b5cf6;
  --accent-soft: rgba(139, 92, 246, 0.24);
  --accent-gold: #c9a84c;
  --text: #f5f5f5;
  --text-sub: #a8a2b3;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.45);
  --radius-lg: 30px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shell: min(1180px, calc(100vw - 32px));
  --header-height: 88px;
  --display: "Playfair Display", serif;
  --body: "Noto Sans JP", sans-serif;
}

html {
  color-scheme: dark;
  -webkit-tap-highlight-color: rgba(201, 168, 76, 0.2);
}

body {
  min-height: 100vh;
  font-family: var(--body);
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.16), transparent 26%),
    radial-gradient(circle at 85% 15%, rgba(201, 168, 76, 0.12), transparent 18%),
    linear-gradient(180deg, #090909 0%, #0f0b13 52%, #0b0b0e 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 92%);
  opacity: 0.28;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.08), transparent 30%),
    linear-gradient(320deg, rgba(201, 168, 76, 0.06), transparent 28%);
  mix-blend-mode: screen;
}

a,
button {
  color: inherit;
  touch-action: manipulation;
}

button {
  cursor: pointer;
  background: none;
  border: 0;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 120;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid rgba(201, 168, 76, 0.45);
  transform: translateY(-120%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(10, 10, 10, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__logo,
.site-footer__logo {
  width: auto;
  height: 34px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav__link {
  position: relative;
  font-size: 0.94rem;
  color: rgba(245, 245, 245, 0.78);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent));
  transition: transform 0.24s ease;
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 4px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-chip {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(245, 245, 245, 0.88);
  background: rgba(255, 255, 255, 0.03);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span:first-child {
  top: 16px;
}

.menu-toggle span:last-child {
  top: 26px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  overflow: clip;
}

.hero {
  min-height: 100vh;
  padding-top: var(--header-height);
}

.hero__backdrop,
.page-hero__backdrop {
  position: absolute;
  inset: 0;
}

.hero__image,
.page-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__veil,
.page-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.78) 0%, rgba(8, 8, 8, 0.44) 48%, rgba(8, 8, 8, 0.82) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.18) 0%, rgba(8, 8, 8, 0.8) 100%);
}

.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(139, 92, 246, 0.28), transparent 22%),
    radial-gradient(circle at 74% 18%, rgba(201, 168, 76, 0.15), transparent 16%),
    radial-gradient(circle at 60% 65%, rgba(255, 255, 255, 0.06), transparent 20%);
  mix-blend-mode: screen;
}

.hero__layout,
.page-hero__content {
  position: relative;
  z-index: 1;
}

.hero__layout {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 28px;
  padding-bottom: 48px;
}

.page-hero {
  min-height: 38vh;
  padding-top: var(--header-height);
}

.page-hero__content {
  min-height: 38vh;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 36px;
}

.hero__copy {
  max-width: 620px;
  padding: 48px 0 20px;
}

.hero__eyebrow,
.section-heading__en,
.price-card__label {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.hero__title,
.page-hero__title,
.section-heading__ja,
.coupon-card__title,
.social-card__title,
.contact-banner__title {
  font-family: var(--display);
  text-wrap: balance;
}

.hero__title {
  margin-top: 14px;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: 0.08em;
}

.hero__tagline {
  margin-top: 18px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(245, 245, 245, 0.85);
}

.hero__text,
.lead-copy,
.body-copy,
.site-footer__text {
  color: var(--text-sub);
  line-height: 1.9;
}

.hero__text {
  max-width: 540px;
  margin-top: 20px;
}

.hero__cta,
.contact-banner__actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__cta {
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--accent), #6d28d9);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.32);
}

.button--ghost {
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(255, 255, 255, 0.02);
}

.hero__panel,
.coupon-card,
.social-card,
.map-card,
.detail-card,
.price-card,
.contact-banner,
.highlight-card,
.cast-card,
.gallery-item {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero__panel {
  padding: 18px;
  display: grid;
  gap: 12px;
  align-self: center;
  backdrop-filter: blur(12px);
}

.hero-stat {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-stat__label {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-sub);
}

.hero-stat__value {
  display: block;
  margin-top: 8px;
  font-size: 1.12rem;
  color: var(--text);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 1;
  width: 28px;
  height: 52px;
  margin-left: -14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.hero__scroll::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: var(--accent-gold);
  animation: pulse 1.8s infinite;
}

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

.section--concept,
.section--gallery,
.section--details {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.section-heading__ja {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.section-heading--tight .section-heading__ja {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.section-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-caption,
.text-link {
  color: var(--text-sub);
}

.text-link {
  position: relative;
  padding-bottom: 2px;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.feature-list li {
  padding: 14px 16px;
  border-left: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.split-panel__visual {
  position: relative;
}

.panel-image {
  border-radius: var(--radius-lg);
}

.panel-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.highlight-card {
  padding: 24px;
}

.highlight-card__index {
  color: var(--accent-gold);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
}

.highlight-card h3 {
  margin-top: 12px;
  font-size: 1.3rem;
}

.highlight-card p {
  margin-top: 12px;
  line-height: 1.8;
  color: var(--text-sub);
}

.featured-cast,
.hero-cast-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cast-card {
  overflow: hidden;
}

.cast-card__media {
  position: relative;
  min-height: 320px;
}

.cast-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cast-card__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 20px 18px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 8, 8, 0.82) 65%, rgba(8, 8, 8, 0.95) 100%);
}

.cast-card__name {
  font-family: var(--display);
  font-size: 1.55rem;
}

.cast-card__meta {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-sub);
  font-size: 0.92rem;
}

.cast-card__links {
  margin-top: 14px;
}

.cast-card__link {
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.gallery-item img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-item__body {
  padding: 16px 18px 18px;
}

.gallery-item__tag {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.gallery-item__title {
  margin-top: 10px;
  font-size: 1.1rem;
}

.gallery-item__source {
  margin-top: 8px;
  color: var(--text-sub);
  font-size: 0.88rem;
}

.info-layout,
.access-layout,
.detail-grid,
.price-columns {
  display: grid;
  gap: 22px;
}

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

.coupon-card,
.social-card,
.detail-card {
  padding: 28px;
}

.coupon-card__title,
.social-card__title {
  margin-top: 12px;
  font-size: 2rem;
}

.coupon-card__description {
  margin-top: 16px;
  color: var(--text-sub);
  line-height: 1.8;
}

.coupon-card__price {
  margin-top: 18px;
  font-size: 1.75rem;
  color: var(--accent-gold);
}

.access-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: stretch;
}

.info-table {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.info-table__row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-table dt {
  color: var(--accent-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.info-table dd {
  color: var(--text-sub);
  line-height: 1.7;
}

.map-card {
  overflow: hidden;
  min-height: 420px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.price-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.price-card {
  padding: 28px;
}

.price-card--vip {
  background:
    linear-gradient(180deg, rgba(201, 168, 76, 0.08), rgba(139, 92, 246, 0.14)),
    var(--panel-strong);
}

.price-card h3 {
  margin-top: 12px;
  font-size: 2rem;
  font-family: var(--display);
}

.price-list,
.detail-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.price-list li,
.detail-list li {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  line-height: 1.7;
}

.price-note {
  margin-top: 18px;
  color: var(--text-sub);
  line-height: 1.8;
}

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

.detail-grid--recruit {
  margin-top: 10px;
}

.benefit-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.benefit-tile {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-tile__label {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.benefit-tile__value {
  display: block;
  margin-top: 14px;
  font-size: 1.2rem;
}

.contact-banner {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-banner__title {
  margin-top: 10px;
  font-size: 2rem;
}

.site-footer {
  padding: 32px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.site-footer__text,
.site-footer__meta {
  margin-top: 16px;
}

.site-footer__nav {
  display: grid;
  gap: 12px;
}

.site-footer__nav a,
.site-footer__meta,
.site-footer__meta a {
  color: var(--text-sub);
}

.site-footer__bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-sub);
  font-size: 0.9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.88);
  overscroll-behavior: contain;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(92vw, 980px);
  max-height: 82vh;
  border-radius: 22px;
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    transform: translateY(0);
    opacity: 0.9;
  }
  60% {
    transform: translateY(18px);
    opacity: 0.2;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__scroll::after {
    animation: none;
  }

  .button,
  .site-header,
  .menu-toggle span,
  .site-nav__link::after,
  .skip-link {
    transition: none;
  }
}

@media (max-width: 1023px) {
  .hero__layout,
  .split-panel,
  .access-layout,
  .info-layout,
  .price-columns,
  .detail-grid,
  .site-footer__grid,
  .featured-cast,
  .hero-cast-grid,
  .highlight-grid,
  .gallery-grid,
  .cast-grid,
  .benefit-band {
    grid-template-columns: 1fr 1fr;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero__panel {
    align-self: end;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-banner {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  :root {
    --shell: min(100vw - 24px, 100%);
    --header-height: 76px;
  }

  .site-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    padding: 18px;
    border-radius: 22px;
    background: rgba(12, 12, 14, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .icon-chip {
    display: none;
  }

  .hero,
  .page-hero {
    min-height: auto;
  }

  .hero__layout,
  .split-panel,
  .access-layout,
  .info-layout,
  .price-columns,
  .detail-grid,
  .site-footer__grid,
  .featured-cast,
  .hero-cast-grid,
  .highlight-grid,
  .gallery-grid,
  .cast-grid,
  .benefit-band {
    grid-template-columns: 1fr;
  }

  .hero__layout {
    padding-bottom: 72px;
  }

  .hero__copy {
    padding-top: 36px;
  }

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

  .section {
    padding: 72px 0;
  }

  .section-row {
    align-items: start;
    flex-direction: column;
  }

  .cast-card__media {
    min-height: 280px;
  }

  .contact-banner__actions,
  .hero__cta,
  .page-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .map-card,
  .map-card iframe {
    min-height: 320px;
  }

  .brand__logo,
  .site-footer__logo {
    height: 30px;
  }
}
