:root {
  color-scheme: light;
  --ink: #2b2b2b;
  --bg: #f7f7f5;
  --accent: #b06a3b;
  --accent-soft: #d9b48f;
  --muted: #8a8a8a;
  --card: #fff;
  --border: #ece9e4;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: "Zen Maru Gothic", -apple-system, BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  color: var(--ink);
  background: radial-gradient(120% 80% at 50% -10%, #fff7ee 0%, var(--bg) 55%);
  line-height: 1.8;
}

.hero {
  flex: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 72px 24px 48px;
  text-align: center;
}

.badge {
  display: inline-block;
  margin: 0 0 20px;
  padding: 4px 14px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  background: #fff3e6;
  border: 1px solid var(--accent-soft);
  border-radius: 999px;
}

.logo {
  font-size: clamp(2.6rem, 9vw, 4rem);
  font-weight: 900;
  letter-spacing: .01em;
  margin: 0 0 16px;
  color: var(--accent);
}

.tagline {
  font-size: clamp(1.05rem, 3.5vw, 1.3rem);
  font-weight: 500;
  margin: 0 auto 36px;
}

.points {
  list-style: none;
  padding: 0;
  margin: 0 auto 36px;
  display: inline-block;
  text-align: left;
}
.points li {
  margin: 10px 0;
  font-size: 1.02rem;
  font-weight: 500;
}

.note { color: var(--muted); font-size: .92rem; }

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--card);
  padding: 28px 24px;
  text-align: center;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
}
.legal-links a {
  color: var(--accent);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
}
.legal-links a:hover { text-decoration: underline; }
.copyright { color: #aaa; font-size: .8rem; margin: 16px 0 0; }
