:root {
  --bg: #fff8f2;
  --bg-accent: #ffe7d3;
  --surface: rgba(255, 255, 255, 0.9);
  --text: #3e2a22;
  --muted: #7a5a4f;
  --line: rgba(121, 78, 57, 0.16);
  --brand: #d98248;
  --brand-deep: #9f5d36;
  --shadow: 0 18px 50px rgba(125, 86, 60, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.8), transparent 36%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-accent) 100%);
}

a {
  color: var(--brand-deep);
}

.page {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.hero,
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -60px -70px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(217, 130, 72, 0.24), transparent 72%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(217, 130, 72, 0.14);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(30px, 6vw, 46px);
  line-height: 1.1;
}

.lead {
  max-width: 42rem;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

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

@media (min-width: 720px) {
  .grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  padding: 24px;
}

.card h2,
.card h3 {
  margin-top: 0;
}

.card p,
.card li {
  line-height: 1.8;
}

.card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.button.secondary {
  background: rgba(217, 130, 72, 0.14);
  color: var(--brand-deep);
}

.section-title {
  margin: 28px 0 12px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.policy h2 {
  margin-top: 0;
}

.policy section + section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer {
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
