@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=M+PLUS+Rounded+1c:wght@400;500;700;800&display=swap');

:root {
  --teal: #81CABF;
  --pink: #E55477;
  --pink-soft: #EC73A8;
  --yellow: #FFF56B;
  --yellow-pop: #FFF462;
  --cream: #FBF7F1;
  --orange: #E88F00;
  --blue: #2EA7E0;
  --green: #7FBE26;
  --ink: #3E3A39;
  --white: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.8;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 64px 0; }

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.5;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  background: var(--white);
  border: 2px solid var(--pink);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(180deg, var(--teal) 0%, #a3d8cf 100%);
  color: var(--white);
  padding: 56px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-corridor {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(46,94,84,0.55) 0%, rgba(129,202,191,0.6) 55%, rgba(129,202,191,0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero .brand {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  opacity: 0.95;
}

.hero .catch {
  font-size: 15px;
  font-weight: 700;
  background: rgba(255,255,255,0.9);
  color: var(--pink);
  display: inline-block;
  border-radius: 999px;
  padding: 8px 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 30px;
  color: var(--white);
  text-shadow: 0 2px 0 rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.hero h1 .accent {
  display: block;
  font-size: 22px;
  color: #FFF9DE;
  margin-top: 8px;
}

.hero p.sub {
  font-size: 16px;
  font-weight: 500;
  margin: 0 auto 32px;
  max-width: 520px;
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 18px 20px;
}

/* ===== CTA button ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #06C755;
  color: var(--white);
  font-weight: 800;
  font-size: 17px;
  border-radius: 999px;
  padding: 18px 36px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(6,199,85,0.35);
  transition: transform 0.15s ease;
  width: 100%;
  max-width: 380px;
}

.cta-btn:active { transform: scale(0.97); }

.cta-btn .line-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.cta-wrap { text-align: center; margin-top: 8px; }

.cta-note {
  font-size: 12px;
  margin-top: 12px;
  opacity: 0.85;
}

/* ===== Section headers ===== */
.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: 24px;
  color: var(--ink);
}

.section-head h2 .mark {
  color: var(--pink);
}

.section-head p {
  font-size: 15px;
  margin-top: 12px;
  color: #6b6663;
}

/* ===== Empathy ===== */
.empathy { background: var(--white); }

.empathy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.empathy-list li {
  background: var(--cream);
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.empathy-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-soft);
  margin-top: 8px;
  flex-shrink: 0;
}

.empathy .lead {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--pink);
  line-height: 1.9;
}

/* ===== Promise ===== */
.promise { background: var(--teal); color: var(--white); }
.promise .section-head p { color: #eafaf6; }
.promise .section-head h2 { color: var(--white); }

.promise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.promise-card {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}

.promise-card .num {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin-bottom: 14px;
}

.promise-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.promise-card p {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.95;
}

/* ===== Myths ===== */
.myths { background: var(--white); }

.myth-card {
  display: flex;
  gap: 16px;
  background: var(--cream);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.myth-card .x {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f3d9de;
  color: var(--pink);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.myth-card .content h3 {
  font-size: 15px;
  text-decoration: line-through;
  color: #8a8582;
  font-weight: 700;
  margin-bottom: 6px;
}

.myth-card .content .answer {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.myth-card .content .answer .arrow { color: var(--pink); margin-right: 4px; }

.myth-card .content p.detail {
  font-size: 13px;
  margin-top: 6px;
  color: #6b6663;
  font-weight: 500;
}

/* ===== Voices ===== */
.voices { background: var(--yellow); }

.voice-highlight {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 6px 0 rgba(229,84,119,0.15);
}

.voice-highlight .tag {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 12px;
}

.voice-highlight blockquote {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: 12px;
}

.voice-highlight .who {
  font-size: 13px;
  color: #6b6663;
  font-weight: 500;
}

.voice-mini-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}

.voice-mini {
  background: rgba(255,255,255,0.7);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 500;
}

.voice-mini .who { font-weight: 700; margin-top: 6px; display: block; font-size: 12px; }

.stat-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.stat-pill {
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
}

.stat-pill b { font-size: 18px; margin-right: 4px; }

/* ===== Compare table ===== */
.compare { background: var(--white); }

.compare-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 2px solid var(--cream);
}

table.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 480px;
}

table.compare-table th, table.compare-table td {
  padding: 12px 10px;
  text-align: center;
  border-bottom: 1px solid var(--cream);
}

table.compare-table th {
  background: var(--cream);
  font-weight: 700;
  font-size: 12px;
}

table.compare-table td:first-child, table.compare-table th:first-child {
  text-align: left;
  font-weight: 700;
}

table.compare-table .col-us {
  background: #fdeef2;
  color: var(--pink);
  font-weight: 800;
}

.compare-note {
  font-size: 12px;
  color: #8a8582;
  margin-top: 14px;
  font-weight: 500;
}

/* ===== Offer ===== */
.offer { background: var(--pink); color: var(--white); }
.offer .section-head h2 { color: var(--white); }
.offer .section-head p { color: #ffe4ec; }

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.offer-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 18px;
  padding: 18px 14px;
  text-align: center;
}

.offer-card .icon { font-size: 28px; margin-bottom: 8px; }
.offer-card h3 { font-size: 13px; font-weight: 700; line-height: 1.6; }

.offer-badge {
  text-align: center;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 24px;
}

/* ===== FAQ ===== */
.faq { background: var(--cream); }

.faq-item {
  background: var(--white);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 12px;
}

.faq-item .q {
  font-weight: 700;
  font-size: 14px;
  display: flex;
  gap: 10px;
  color: var(--pink);
}

.faq-item .a {
  font-size: 13px;
  margin-top: 10px;
  display: flex;
  gap: 10px;
  font-weight: 500;
  color: var(--ink);
}

.faq-item .q .letter, .faq-item .a .letter {
  flex-shrink: 0;
  font-weight: 800;
}

/* ===== Closing ===== */
.closing {
  background: var(--teal);
  color: var(--white);
  text-align: center;
}

.closing-msg {
  display: flex;
  gap: 18px;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 22px;
  margin-bottom: 32px;
  text-align: left;
}

.closing-msg img {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 50%;
  padding: 6px;
}

.closing-msg p {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.closing-msg .name {
  display: block;
  margin-top: 8px;
  font-weight: 700;
  font-size: 12px;
}

.closing h2 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 24px;
}

footer {
  background: var(--ink);
  color: #cfcbc8;
  text-align: center;
  padding: 24px;
  font-size: 11px;
}

@media (min-width: 640px) {
  .promise-grid { grid-template-columns: repeat(3, 1fr); }
  .offer-grid { grid-template-columns: repeat(4, 1fr); }
  .hero h1 { font-size: 36px; }
  .hero h1 .accent { font-size: 26px; }
}
