:root {
  --bg-0: #090c14;
  --bg-1: #111124;
  --bg-2: #16142b;
  --surface: rgba(20, 21, 40, 0.82);
  --surface-soft: rgba(28, 28, 46, 0.64);
  --glass: rgba(238, 228, 255, 0.07);
  --glass-strong: rgba(238, 228, 255, 0.12);
  --line: rgba(225, 210, 255, 0.22);
  --line-soft: rgba(225, 210, 255, 0.14);
  --text: #f4f0ff;
  --text-soft: #d3cae8;
  --text-muted: #b6adc9;
  --accent: #8f5ccc;
  --accent-strong: #6f4cae;
  --accent-soft: #b8a3da;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-soft: 0 14px 34px rgba(5, 4, 12, 0.34);
  --shadow-card: 0 18px 38px rgba(7, 6, 16, 0.38);
  --container: min(1120px, 92vw);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  color: var(--text);
  background:
    radial-gradient(1000px 640px at 86% -12%, rgba(132, 90, 196, 0.18), transparent 66%),
    radial-gradient(760px 520px at 10% 8%, rgba(83, 120, 185, 0.14), transparent 58%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 38%, var(--bg-2) 100%);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Noto Sans JP", sans-serif;
  line-height: 1.82;
  letter-spacing: 0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(7, 8, 14, 0.08), rgba(6, 6, 12, 0.24));
  z-index: -1;
}

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

img {
  width: 100%;
  height: auto;
  display: block;
}

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

.narrow {
  max-width: 790px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(2.1rem, 6vw, 3.5rem);
}

h2 {
  font-size: clamp(1.55rem, 3.9vw, 2.4rem);
  margin-bottom: 16px;
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(8, 10, 18, 0.6);
  backdrop-filter: blur(12px) saturate(112%);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 74px;
}

.brand {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-size: 1.24rem;
  letter-spacing: 0.1em;
}

.main-nav {
  display: none;
  gap: 18px;
  color: var(--text-soft);
  font-size: 0.93rem;
}

.main-nav a {
  transition: color 220ms ease;
}

.main-nav a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: clip;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 10, 16, 0.62), rgba(8, 10, 16, 0.14) 55%, rgba(8, 10, 16, 0.4));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 118px 0 78px;
  display: grid;
  gap: 18px;
}

.hero-panel,
.hero-spot {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(236, 225, 255, 0.16), rgba(236, 225, 255, 0.05));
  backdrop-filter: blur(13px) saturate(112%);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  max-width: 760px;
  padding: clamp(24px, 4vw, 46px);
}

.hero-spot {
  max-width: 540px;
  padding: 22px 24px;
}

.eyebrow {
  color: var(--accent-soft);
  font-size: 0.79rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-copy {
  margin-top: 18px;
  font-size: clamp(1.08rem, 2.4vw, 1.42rem);
  line-height: 1.75;
  color: #f7f5ff;
}

.hero-title-sub {
  font-size: 0.82em;
  letter-spacing: 0.06em;
}

.hero-sub {
  margin-top: 12px;
  color: var(--text-soft);
  max-width: 38ch;
  font-size: 0.97rem;
}

.spot-label {
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.spot-price {
  margin-top: 8px;
  font-size: clamp(1.2rem, 3.7vw, 1.7rem);
  line-height: 1.45;
  color: #f5f1ff;
}

.spot-note {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.spot-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.card-link:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 221, 255, 0.42);
  box-shadow: 0 20px 44px rgba(7, 6, 16, 0.48);
}

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

.section + .section {
  margin-top: 6px;
}

.section-muted {
  background: linear-gradient(180deg, rgba(245, 241, 255, 0.03), rgba(245, 241, 255, 0.02));
}

.section-recruit {
  background: radial-gradient(130% 120% at 50% 0%, rgba(143, 92, 204, 0.18), rgba(15, 15, 28, 0.28) 52%);
}

.section-copy {
  max-width: 58ch;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.96;
}

.access-address {
  margin-top: 10px;
  color: var(--text-soft);
}

.map-wrap {
  margin-top: 18px;
  margin-inline: auto;
  width: min(90%, 980px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.cta-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row.center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(235, 223, 255, 0.28);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: #fbf9ff;
  background: linear-gradient(140deg, rgba(156, 109, 216, 0.56), rgba(92, 69, 155, 0.54));
  backdrop-filter: blur(7px);
  box-shadow: 0 10px 24px rgba(8, 8, 18, 0.38);
  transition: transform 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 230, 255, 0.4);
}

.btn-ghost {
  background: rgba(241, 231, 255, 0.08);
  border-color: rgba(232, 221, 255, 0.22);
}

.btn-small {
  min-height: 38px;
  padding: 0 15px;
  font-size: 0.82rem;
}

.point-grid,
.card-grid,
.sns-grid {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}

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

.point-card,
.cast-card,
.news-card,
.sns-card,
.faq-item,
.content-card,
.subpage .container {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: linear-gradient(160deg, var(--surface), rgba(15, 16, 30, 0.76));
  box-shadow: var(--shadow-card);
}

.point-card,
.cast-card .card-body,
.news-card .card-body,
.sns-card,
.content-card {
  padding: 20px;
}

.point-card,
.news-card,
.sns-card,
.faq-item {
  backdrop-filter: blur(9px) saturate(107%);
}

.point-card h3,
.card-body h3,
.sns-card strong {
  margin-bottom: 4px;
}

.sns-card i {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--accent-soft);
}

.cast-card img,
.news-card img {
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.cast-card img {
  aspect-ratio: 3 / 4;
}

.news-card img {
  aspect-ratio: 16 / 10;
}

.card-body p,
.sns-card span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.meta {
  color: var(--accent-soft);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: #e5d9ff;
  text-decoration: underline;
  text-decoration-color: rgba(229, 217, 255, 0.42);
  text-underline-offset: 4px;
  transition: text-decoration-color 220ms ease;
}

.text-link:hover {
  text-decoration-color: rgba(229, 217, 255, 0.86);
}

.center-link {
  margin-top: 20px;
  text-align: center;
}

.pager {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.simple-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.simple-pager .sublead {
  margin: 0;
}

.btn.is-disabled {
  pointer-events: none;
  opacity: 0.42;
}

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

.faq-item {
  padding: 16px 18px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: #f8f4ff;
}

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

.faq-item p {
  margin-top: 10px;
  color: var(--text-soft);
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: rgba(8, 10, 16, 0.55);
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 16px;
}

.footer-title {
  margin: 0;
  font-size: 1.05rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--text-soft);
}

.copyright {
  width: var(--container);
  margin: 24px auto 0;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.subpage {
  padding: 80px 0 96px;
}

.subpage .container {
  padding: 26px;
}

.sublead {
  color: var(--text-soft);
  font-size: 0.98rem;
  margin-top: 8px;
}

.content-card + .content-card {
  margin-top: 14px;
}

.prose {
  margin-top: 18px;
  color: var(--text-soft);
}

.prose p + p {
  margin-top: 12px;
}

.cast-detail {
  display: block;
}

.cast-detail img {
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.cast-detail-body p {
  color: var(--text-soft);
}

.info-list {
  display: grid;
  grid-template-columns: minmax(92px, 140px) 1fr;
  gap: 8px 14px;
  margin: 16px 0 0;
}

.info-list dt {
  color: var(--accent-soft);
  font-size: 0.86rem;
}

.info-list dd {
  margin: 0;
  color: var(--text-soft);
}

.note-list,
.flow-list {
  margin: 16px 0 0;
  padding-left: 1.2em;
  color: var(--text-soft);
}

.table-wrap {
  overflow-x: auto;
  margin-top: 14px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid var(--line-soft);
}

.price-table th {
  color: var(--accent-soft);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.chip-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  color: var(--text-soft);
  background: rgba(237, 226, 255, 0.08);
}

.payment-chip {
  gap: 8px;
}

.payment-chip i {
  font-size: 1.2rem;
}

.paypay-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 4px;
  background: #e6002d;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.system-card h3 {
  margin: 14px 0 8px;
  font-size: 1rem;
}

.helper {
  margin: 4px 0 2px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (min-width: 560px) {
  .cast-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner {
    padding-bottom: 96px;
  }
}

@media (min-width: 820px) {
  .main-nav {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .hero-spot {
    margin-bottom: 6px;
  }

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

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

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

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

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .section {
    padding: 112px 0;
  }

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

  .simple-pager {
    grid-template-columns: none;
  }
}

@supports not (backdrop-filter: blur(1px)) {
  .site-header,
  .hero-panel,
  .hero-spot,
  .btn,
  .point-card,
  .news-card,
  .sns-card,
  .faq-item {
    background: rgba(28, 27, 46, 0.94);
  }
}
