:root {
  --bg: #140f0d;
  --bg-soft: #231814;
  --surface: rgba(34, 23, 19, 0.9);
  --surface-strong: rgba(43, 28, 23, 0.96);
  --border: rgba(255, 202, 140, 0.18);
  --text: #f7efe9;
  --muted: #dcc8bb;
  --accent: #ff9966;
  --accent-soft: #ffd07b;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

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

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "BIZ UDPGothic", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    sans-serif;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 153, 102, 0.18), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(255, 208, 123, 0.12), transparent 24%),
    linear-gradient(180deg, #1b130f 0%, #110d0b 52%, #0d0908 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.18;
  pointer-events: none;
}

body::before {
  top: 6rem;
  right: -6rem;
  background: #b85a2d;
}

body::after {
  bottom: 4rem;
  left: -5rem;
  background: #6f4332;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 20px 56px;
}

.hero,
.section-card,
.notice-card,
.value-card,
.actress-card,
.site-footer {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 24px;
  padding: 30px;
  border-radius: 28px;
}

.eyebrow,
.section-kicker,
.track-chip,
.card-order,
.hero-badge {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--accent-soft);
}

.hero h1,
.section-heading h2,
.value-card h3,
.actress-card h3,
.notice-card h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  line-height: 1.2;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.hero-lead {
  margin: 18px 0 12px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--text);
}

.hero-body,
.section-card p,
.notice-card p,
.value-card p,
.actress-card p,
.site-footer p,
.hero-panel dd {
  margin: 0;
  color: var(--muted);
}

.hero-panel {
  padding: 22px;
  border-radius: 22px;
  background: var(--surface-strong);
}

.hero-panel h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.hero-badges,
.footer-meta,
.policy-list,
.hero-facts {
  margin: 0;
  padding: 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.hero-badge,
.track-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 153, 102, 0.12);
  color: var(--accent-soft);
  border: 1px solid rgba(255, 153, 102, 0.22);
}

.hero-facts {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.hero-facts div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-facts dt {
  margin-bottom: 4px;
  font-size: 0.82rem;
  color: var(--accent-soft);
}

main {
  display: grid;
  gap: 28px;
  margin-top: 28px;
}

.section {
  display: grid;
  gap: 18px;
}

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

.section-heading h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.3rem);
}

.notice-grid,
.value-grid,
.actress-grid,
.two-column {
  display: grid;
  gap: 18px;
}

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

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

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

.notice-card,
.value-card,
.actress-card,
.section-card {
  padding: 22px;
  border-radius: 22px;
}

.notice-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--surface-strong);
}

.notice-card h2 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.value-card h3,
.actress-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.card-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.card-order {
  color: var(--accent-soft);
}

.card-footnote {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.policy-list {
  padding-left: 18px;
  color: var(--muted);
}

.policy-list li + li {
  margin-top: 10px;
}

.site-footer {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 24px;
}

.footer-title {
  margin-bottom: 8px;
  color: var(--accent-soft);
  font-weight: 700;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero,
  .notice-grid,
  .value-grid,
  .two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .page-shell {
    padding: 18px 14px 44px;
  }

  .hero,
  .notice-grid,
  .value-grid,
  .actress-grid,
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero,
  .notice-card,
  .value-card,
  .actress-card,
  .section-card,
  .site-footer {
    border-radius: 20px;
  }

  .hero,
  .notice-card,
  .value-card,
  .actress-card,
  .section-card {
    padding: 20px;
  }
}
