* {
  box-sizing: border-box;
}

:root {
  --bg: #fffdfb;
  --paper: #ffffff;
  --text: #302a2d;
  --muted: #6d6266;
  --line: #eadfe2;
  --accent: #bd4966;
  --accent-dark: #96384f;
  --soft: #f8edf0;
  --soft-2: #eef7f3;
  --green: #3e7d65;
  --shadow: 0 18px 45px rgba(103, 62, 74, 0.09);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.85;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 251, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 14px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  white-space: nowrap;
}

.nav a {
  color: var(--muted);
}

.nav .nav-cta {
  color: #fff;
  background: var(--accent);
  padding: 8px 14px;
  border-radius: 999px;
}

.hero {
  background:
    linear-gradient(120deg, rgba(248, 237, 240, 0.92), rgba(238, 247, 243, 0.82)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='960' height='520' viewBox='0 0 960 520'%3E%3Crect width='960' height='520' fill='%23fff7f7'/%3E%3Cg fill='none' stroke='%23e8cfd6' stroke-width='2' opacity='.75'%3E%3Cpath d='M80 390C180 250 270 235 380 310S610 420 820 210'/%3E%3Cpath d='M120 145c85 75 170 82 255 20s190-78 325 18'/%3E%3C/g%3E%3Cg fill='%23f0d6dc' opacity='.65'%3E%3Ccircle cx='740' cy='120' r='82'/%3E%3Ccircle cx='185' cy='345' r='56'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.hero-inner,
.section-inner,
.footer-inner {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  min-height: 530px;
  padding: 72px 0 58px;
  display: grid;
  align-content: center;
}

.hero-copy {
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.45;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 52px);
}

h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

p {
  margin: 0 0 16px;
}

.lead {
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  text-decoration: none;
}

.button-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(189, 73, 102, 0.23);
}

.button-secondary {
  color: var(--accent-dark);
  background: #fff;
  border: 1px solid var(--line);
}

.section {
  padding: 66px 0;
}

.section-soft {
  background: var(--soft);
}

.section-green {
  background: var(--soft-2);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 32px;
  align-items: start;
}

.card {
  height: 100%;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card p:last-child,
.note p:last-child {
  margin-bottom: 0;
}

.list {
  padding-left: 1.2em;
  margin: 0;
}

.list li {
  margin: 8px 0;
}

.note {
  padding: 22px;
  background: #fff;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
}

.flow {
  counter-reset: flow;
  display: grid;
  gap: 14px;
}

.flow-step {
  position: relative;
  padding: 20px 20px 20px 58px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.flow-step::before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  left: 18px;
  top: 22px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.page-title {
  padding: 56px 0 42px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-title h1 {
  font-size: clamp(28px, 5vw, 44px);
}

.breadcrumbs {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.cta-band {
  padding: 48px 0;
  color: #fff;
  background: #7f3549;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band .button-primary {
  color: var(--accent-dark);
  background: #fff;
  box-shadow: none;
}

.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.site-footer {
  padding: 34px 0;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 12px;
}

.small {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .header-inner {
    min-height: auto;
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-inner {
    min-height: 470px;
    padding: 54px 0 44px;
  }

  h2 {
    font-size: 24px;
  }

  .lead {
    font-size: 16px;
  }

  .section {
    padding: 48px 0;
  }

  .grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
