@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@600;800&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

:root {
  --cream: #fdf9f2;
  --ivory: #f6ede0;
  --gold: #b8944f;
  --gold-light: #d9bd85;
  --navy: #1f2a3c;
  --brown: #4a3c2c;
  --text: #3a332a;
  --line-green: #06c755;
  --max-w: 720px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.serif {
  font-family: "Shippori Mincho", serif;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, #fffdf8 0%, var(--cream) 60%, var(--ivory) 100%);
  padding: 48px 0 40px;
  text-align: center;
  border-bottom: 1px solid #ecdfc7;
}

.hero .prehead {
  font-size: 15px;
  color: var(--brown);
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: .02em;
}

.hero h1 {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-size: clamp(26px, 6.4vw, 34px);
  line-height: 1.55;
  color: var(--navy);
  margin: 0 0 20px;
}

.hero h1 .accent {
  color: var(--gold);
}

.hero-photo {
  width: 78%;
  max-width: 340px;
  margin: 0 auto 22px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(80,60,20,.15);
}

.hero .sub {
  font-size: 15.5px;
  color: var(--text);
  margin: 0 auto 28px;
  max-width: 560px;
}

.gold-rule {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto;
  border: none;
}

/* ---------- Sections ---------- */
section {
  padding: 46px 0;
}

section.alt {
  background: var(--ivory);
}

h2.section-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-size: clamp(21px, 5.4vw, 26px);
  color: var(--navy);
  text-align: center;
  line-height: 1.5;
  margin: 0 0 30px;
}

h2.section-title .kicker {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .12em;
  margin-bottom: 10px;
}

.lead {
  font-size: 15.5px;
  margin-bottom: 22px;
}

.pain-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.pain-list li {
  position: relative;
  padding: 14px 16px 14px 40px;
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid #ecdfc7;
  border-radius: 8px;
  font-size: 15px;
}

.pain-list li::before {
  content: "○";
  position: absolute;
  left: 14px;
  top: 13px;
  color: var(--gold);
  font-weight: 700;
}

.callout {
  background: #fff;
  border-left: 4px solid var(--gold);
  padding: 20px 22px;
  border-radius: 4px;
  font-size: 15px;
  margin: 26px 0;
}

/* ---------- CTA button ---------- */
.cta-block {
  text-align: center;
  padding: 8px 0 4px;
}

.cta-note {
  font-size: 13px;
  color: var(--brown);
  margin-bottom: 12px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  padding: 18px 20px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  transition: transform .15s ease;
}

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

.btn-line {
  background: var(--line-green);
  color: #fff;
}

.btn-form {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
}

.btn-cta .icon {
  width: 22px;
  height: 22px;
  flex: none;
}

.small-caption {
  font-size: 12.5px;
  color: #7a6f5e;
  margin-top: 10px;
}

/* ---------- Benefit table ---------- */
.benefit-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(80,60,20,.06);
}

.benefit-table th, .benefit-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #ecdfc7;
  text-align: left;
  vertical-align: top;
}

.benefit-table th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
}

.benefit-table tr:last-child td { border-bottom: none; }

/* ---------- Program box ---------- */
.program-box {
  background: #fff;
  border: 1px solid #ecdfc7;
  border-radius: 10px;
  padding: 24px 22px;
  margin: 20px 0;
}

.program-box h3 {
  font-family: "Shippori Mincho", serif;
  color: var(--navy);
  font-size: 17px;
  margin: 0 0 12px;
}

.program-box ul {
  margin: 0;
  padding-left: 20px;
  font-size: 14.5px;
}

/* ---------- Proof numbers ---------- */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 26px 0;
}

.proof-item {
  background: #fff;
  border: 1px solid #ecdfc7;
  border-radius: 8px;
  padding: 18px 20px;
  font-size: 14.5px;
}

.proof-item strong {
  display: block;
  font-family: "Shippori Mincho", serif;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 4px;
}

/* ---------- Testimonials ---------- */
.voice-card {
  background: #fff;
  border-radius: 10px;
  padding: 22px 20px;
  margin-bottom: 16px;
  border: 1px solid #ecdfc7;
}

.voice-card .voice-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  margin: 0 0 10px;
}

.voice-card p {
  font-size: 14.5px;
  margin: 0;
}

.voice-source {
  text-align: center;
  font-size: 12px;
  color: #9a8f7c;
  margin-top: 12px;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid #ecdfc7;
  padding: 18px 0;
}

.faq-item .q {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}

.faq-item .q::before {
  content: "Q";
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.faq-item .a {
  font-size: 14.5px;
  padding-left: 30px;
  color: var(--text);
}

/* ---------- Assurance list ---------- */
.assurance-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.assurance-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 14.5px;
  border-bottom: 1px dashed #ddcda5;
}

.assurance-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--navy);
  color: #f5ece0;
  padding: 52px 0 60px;
  text-align: center;
}

.final-cta .limit {
  font-size: 14.5px;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.final-cta h2.section-title {
  color: #fff;
}

.final-cta .ps {
  margin-top: 30px;
  font-size: 13.5px;
  color: #d8cdb9;
  text-align: left;
  border-top: 1px solid #3a4658;
  padding-top: 22px;
}

footer {
  text-align: center;
  padding: 24px 0 40px;
  font-size: 12px;
  color: #9a8f7c;
  background: var(--navy);
}

.diagnosis-banner {
  background: linear-gradient(135deg, #fff8ea, #f6ede0);
  border: 1px solid var(--gold-light);
  border-radius: 10px;
  padding: 18px 20px;
  margin: 0 0 30px;
  font-size: 14px;
  text-align: center;
}

.diagnosis-banner strong {
  color: var(--gold);
}
