:root {
  --night: #14152b;
  --night-2: #1d1f3d;
  --card: #232650;
  --moon: #f2efe4;
  --gold: #c9a96a;
  --gold-deep: #a9853f;
  --wisteria: #9d94c6;
  --line: rgba(242, 239, 228, 0.14);
  --font-display: "Shippori Mincho", serif;
  --font-body: "Zen Kaku Gothic New", sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--night);
  color: var(--moon);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}
.wrap { max-width: 560px; margin: 0 auto; padding: 0 22px; }

.pr-note {
  font-size: 11px;
  color: var(--wisteria);
  text-align: center;
  padding: 10px 16px;
  background: var(--night-2);
  letter-spacing: 0.06em;
}

header.site {
  text-align: center;
  padding: 26px 0 8px;
}
header.site .brand {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.42em;
  color: var(--gold);
}
header.site .brand-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--wisteria);
  margin-top: 4px;
}

.hero { text-align: center; padding: 34px 0 40px; position: relative; }
.moon-svg { display: block; margin: 0 auto 26px; }
.type-eyebrow {
  font-size: 12px;
  letter-spacing: 0.34em;
  color: var(--wisteria);
  margin-bottom: 14px;
}
h1.type-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0.18em;
  line-height: 1.4;
  color: var(--moon);
}
.type-catch {
  margin-top: 18px;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.stars { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.stars span {
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: var(--moon); opacity: 0.5;
}
@media (prefers-reduced-motion: no-preference) {
  .stars span { animation: tw 3.4s ease-in-out infinite; }
  .stars span:nth-child(2n) { animation-delay: 1.1s; }
  .stars span:nth-child(3n) { animation-delay: 2.2s; }
  @keyframes tw { 0%, 100% { opacity: 0.15; } 50% { opacity: 0.7; } }
}

section { padding: 34px 0; border-top: 1px solid var(--line); }
h2.sec {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 22px;
}
p + p { margin-top: 16px; }
.reading p { color: #d9d6c8; font-size: 15px; }

.guide { list-style: none; counter-reset: g; }
.guide li {
  counter-increment: g;
  padding: 18px 0 18px 52px;
  position: relative;
  border-bottom: 1px dashed var(--line);
}
.guide li:last-child { border-bottom: none; }
.guide li::before {
  content: counter(g);
  position: absolute; left: 4px; top: 20px;
  width: 32px; height: 32px; line-height: 32px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--night);
  background: var(--gold);
  border-radius: 50%;
}
.guide b { display: block; font-size: 15px; color: var(--moon); margin-bottom: 4px; }
.guide span { font-size: 14px; color: #c9c6ba; }

.rec-cards { display: grid; gap: 20px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px 26px;
  position: relative;
}
.card .pr-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--wisteria);
  border: 1px solid var(--wisteria);
  border-radius: 3px;
  padding: 1px 7px;
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--moon);
  margin-bottom: 6px;
}
.card .fit {
  font-size: 12px; color: var(--gold);
  letter-spacing: 0.08em; margin-bottom: 12px;
}
.card p { font-size: 14px; color: #c9c6ba; }
.cta {
  display: block;
  margin-top: 20px;
  text-align: center;
  background: var(--gold);
  color: var(--night);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 10px;
  transition: background 0.2s;
}
.cta:hover, .cta:focus-visible { background: var(--gold-deep); }
.cta:focus-visible { outline: 2px solid var(--moon); outline-offset: 3px; }
.card .note { font-size: 11px; color: var(--wisteria); margin-top: 10px; text-align: center; }

.others { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.others a {
  display: block; text-decoration: none;
  background: var(--night-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 14px;
  color: var(--moon);
  transition: border-color 0.2s;
}
.others a:hover, .others a:focus-visible { border-color: var(--gold); }
.others .o-name { font-family: var(--font-display); font-size: 15px; letter-spacing: 0.1em; }
.others .o-sub { font-size: 11px; color: var(--wisteria); margin-top: 3px; }

.line-back {
  text-align: center; padding: 36px 0 8px;
}
.line-back a {
  color: var(--wisteria); font-size: 13px; letter-spacing: 0.08em;
}

footer.site {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding: 28px 0 44px;
  text-align: center;
}
footer.site nav { font-size: 12px; }
footer.site nav a { color: var(--wisteria); text-decoration: none; margin: 0 10px; }
footer.site nav a:hover { color: var(--moon); }
footer.site .copy { font-size: 11px; color: #6d6a8f; margin-top: 14px; letter-spacing: 0.1em; }

.legal h1 { font-family: var(--font-display); font-size: 24px; letter-spacing: 0.14em; padding: 40px 0 10px; color: var(--gold); font-weight: 500; }
.legal h2 { font-size: 16px; margin: 28px 0 8px; color: var(--moon); }
.legal p, .legal li { font-size: 14px; color: #c9c6ba; }
.legal ul { padding-left: 20px; }

.disclaimer { font-size: 11px; color: #6d6a8f; margin-top: 26px; line-height: 1.8; }
