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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: #3a3a3a;
  background-color: #faf8f6;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --rose: #9e7683;
  --rose-dark: #7a5a65;
  --rose-light: #c4a0ad;
  --gold: #c9a96e;
  --gold-light: #e0c97a;
  --bg: #faf8f6;
  --bg-white: #fff;
  --bg-rose-tint: #f7f0f2;
  --bg-pink-soft: #fdf5f6;
  --text: #3a3a3a;
  --text-light: #777;
  --border: #e8e2df;
}

/* ---------- CTA Button ---------- */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: bold;
  padding: 18px 40px;
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  text-align: center;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

.cta-btn:active { transform: translateY(0); }

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

/* ---------- Sticky CTA (SP) ---------- */
.sticky-cta { display: none; }

/* ---------- Section common ---------- */
.section { padding: 80px 20px; }

.section-inner {
  max-width: 820px;
  margin: 0 auto;
}

.section-heading {
  font-size: 1.45rem;
  color: var(--rose-dark);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.section-lead {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 40px;
  white-space: pre-line;
}

/* ---------- S1: First View ---------- */
.fv {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--bg);
  padding: 0 20px;
}

.fv-image {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  line-height: 0;
}

.fv-image img {
  width: 100%;
  height: auto;
  display: block;
}

.fv-image .cta-btn {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.fv-image .cta-btn:hover {
  transform: translateX(-50%) translateY(-2px);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .fv {
    padding: 0;
  }
  .fv-image .cta-btn {
    bottom: 6%;
    padding: 14px 28px;
    font-size: 0.95rem;
    width: 85%;
    max-width: 340px;
  }
}

/* ---------- S2: Offer ---------- */
.offer { background-color: var(--bg-rose-tint); }

.offer-product {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  max-width: 560px;
  margin: 0 auto;
}

.offer-product-name {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.offer-price-main {
  font-size: 2rem;
  font-weight: bold;
  color: var(--rose-dark);
  margin-bottom: 4px;
}

.price-placeholder {
  background: #f0eae6;
  color: var(--rose-dark);
  padding: 2px 12px;
  border-radius: 4px;
  border: 1px dashed var(--rose-light);
}

.offer-price-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.offer-price-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 8px;
  margin-bottom: 24px;
}

.guarantee-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.guarantee-badge {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--rose-dark);
  text-align: center;
  line-height: 1.5;
}

.guarantee-badge-icon {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

/* ---------- S3: Problem ---------- */
.problem { background: var(--bg-white); }

.checklist {
  max-width: 560px;
  margin: 0 auto 32px;
}

.checklist li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid #f0edeb;
  line-height: 1.7;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--rose-light);
  border-radius: 4px;
}

.checklist li::after {
  content: "\2713";
  position: absolute;
  left: 3px;
  top: 13px;
  font-size: 0.85rem;
  color: var(--rose);
}

.problem-closing {
  text-align: center;
  font-size: 1rem;
  color: var(--text);
  line-height: 2;
  margin-top: 32px;
  white-space: pre-line;
}

/* ---------- S4: Lifestyle ---------- */
.lifestyle { background: var(--bg-pink-soft); }

.lifestyle-list {
  max-width: 560px;
  margin: 0 auto 32px;
}

.lifestyle-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(158,118,131,0.12);
}

.lifestyle-item:last-child { border-bottom: none; }

.lifestyle-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
}

.lifestyle-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  padding-top: 6px;
}

.lifestyle-closing {
  text-align: center;
  font-size: 1.05rem;
  color: var(--rose-dark);
  font-weight: bold;
  line-height: 2;
  margin-top: 32px;
  white-space: pre-line;
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  border-left: 4px solid var(--gold);
}

/* ---------- S5: Cause ---------- */
.cause-text {
  text-align: center;
  font-size: 1rem;
  color: var(--text);
  line-height: 2.2;
  white-space: pre-line;
  margin-bottom: 32px;
}

.placeholder-image {
  background-color: #eae5e1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.8rem;
  margin: 0 auto;
}

.placeholder-image--wide {
  width: 100%;
  height: 240px;
}

/* ---------- S6: Types ---------- */
.types-section { background: var(--bg-rose-tint); }

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

.type-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.type-card-image {
  width: 100%;
  height: 220px;
  background-color: #eae5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.75rem;
}

.type-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
	
	.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
	
	
.type-card-body { padding: 20px; }

.type-card-title {
  font-size: 1rem;
  font-weight: bold;
  color: var(--rose-dark);
  margin-bottom: 10px;
}

.type-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.type-tag {
  background: var(--bg-rose-tint);
  color: var(--rose);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 16px;
  font-weight: bold;
}

.types-closing {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 2;
  white-space: pre-line;
}

/* ---------- S7: Herbs ---------- */
.herbs { background: var(--bg-rose-tint); }

.herbs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.herb-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.herb-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eae5e1;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.65rem;
}

.herb-name {
  font-size: 1rem;
  font-weight: bold;
  color: var(--rose-dark);
  margin-bottom: 4px;
}

.herb-reading {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.herb-desc {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.7;
}

.herbs-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ---------- Tagline ---------- */
.tagline-main {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gold);
  line-height: 1.6;
  margin-bottom: 8px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

.tagline-sub {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

.offer-tagline {
  text-align: center;
  font-size: 1.15rem;
  color: var(--rose-dark);
  line-height: 2;
  margin-bottom: 24px;
  white-space: pre-line;
}

.final-tagline {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--gold-light);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 24px;
  padding-bottom: 20px;
  white-space: pre-line;
}

/* ---------- S8: Comparison ---------- */
.comparison {
  background: var(--bg-white);
  padding-top: 0;
}

.comparison .section-inner > img {
  margin: 0 auto;
}

/* スマホでは画像を画面幅いっぱいに */
@media (max-width: 640px) {
  .section.comparison {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .section.comparison .section-inner > img {
    width: 100%;
    max-width: 100%;
  }
  .section.comparison .cta-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

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

.compare-table thead th {
  background: var(--bg);
  font-weight: bold;
  font-size: 0.85rem;
  color: var(--rose-dark);
}

.compare-table thead th:first-child { background: transparent; }

.compare-col-us { background: var(--bg-rose-tint); }

.compare-table tbody td:first-child {
  font-weight: bold;
  text-align: left;
  color: var(--text);
  font-size: 0.85rem;
}

.compare-good { color: var(--rose-dark); font-weight: bold; }
.compare-bad { color: #bbb; }

/* ---------- S: Reasons ---------- */
.reasons { background: #f5f0eb; }

.reasons-heading-top {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.reasons-heading-main {
  text-align: center;
  font-size: 1.45rem;
  color: var(--rose-dark);
  margin-bottom: 40px;
  line-height: 1.4;
}

.reasons-heading-num {
  font-size: 3.2rem;
  font-weight: bold;
  color: var(--gold);
  line-height: 1;
  vertical-align: baseline;
}

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

.reason-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.reason-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.reason-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.reason-num {
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--rose-light);
  letter-spacing: 0.04em;
}

.reason-title {
  font-size: 1rem;
  font-weight: bold;
  color: var(--rose-dark);
  margin-bottom: 8px;
}

.reason-desc {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.8;
}

/* ---------- S9: About ---------- */
.about { background: var(--bg-rose-tint); }

.about-image {
  width: 100%;
  height: 280px;
  margin-bottom: 32px;
}

.about-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 2.2;
  white-space: pre-line;
  margin-bottom: 24px;
}

.about-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.about-badge {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--rose-dark);
}

/* PC表示時のみ about-text に白い光彩を付けて可読性を確保 */
@media (min-width: 641px) {
  .about-text {
    text-shadow:
      0 0 6px #fff,
      0 0 6px #fff,
      0 0 10px #fff,
      0 0 10px #fff,
      0 0 14px #fff,
      0 0 14px #fff,
      0 0 20px #fff,
      0 0 20px #fff;
  }
}

/* ---------- S10: Testimonials ---------- */
.testimonials { background: var(--bg-white); }

.testimonials-note {
  text-align: center;
  font-size: 0.75rem;
  color: #aaa;
  margin-bottom: 32px;
}

.testimonials-cards {
  display: flex;
  gap: 20px;
}

.testimonial-card {
  flex: 1;
  background: var(--bg);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  left: 18px;
  font-size: 2.8rem;
  line-height: 1;
  color: #ddd;
  font-family: Georgia, serif;
}

.testimonial-attr {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 12px;
  padding-left: 2px;
}

.testimonial-body {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.9;
}

/* ---------- S11: Steps ---------- */
.steps { background: var(--bg-rose-tint); }

.step-list {
  max-width: 600px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.step-item:last-child { border-bottom: none; }

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1;
}

.step-body { flex: 1; }

.step-title {
  font-size: 1.05rem;
  font-weight: bold;
  color: var(--rose-dark);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.8;
}

.step-highlight {
  margin-top: 10px;
  background: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
}

.step-highlight-cta {
  margin-top: 8px;
  font-weight: bold;
  color: var(--rose-dark);
  font-size: 0.82rem;
}

/* ---------- S12: After ---------- */
.after { background: var(--bg-white); }

.after-cards {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.after-card {
  flex: 1;
  background: var(--bg);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.after-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.after-card-title {
  font-size: 1.05rem;
  font-weight: bold;
  color: var(--rose-dark);
  margin-bottom: 10px;
}

.after-card-text {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.8;
}

.after-closing {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: bold;
}

/* ---------- S: Guarantee ---------- */
.guarantee-section {
  background: var(--bg);
  padding: 80px 20px;
}

.guarantee-cert {
  max-width: 540px;
  margin: 0 auto;
  background: linear-gradient(160deg, #fdf8f0 0%, #f7eed8 100%);
  border: 3px solid var(--gold);
  border-radius: 8px;
  padding: 48px 36px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* 四隅の装飾 */
.guarantee-cert::before,
.guarantee-cert::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--gold);
  border-style: solid;
}

.guarantee-cert::before {
  top: 10px;
  left: 10px;
  border-width: 3px 0 0 3px;
}

.guarantee-cert::after {
  top: 10px;
  right: 10px;
  border-width: 3px 3px 0 0;
}

.guarantee-cert-inner::before,
.guarantee-cert-inner::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--gold);
  border-style: solid;
}

.guarantee-cert-inner::before {
  bottom: 10px;
  left: 10px;
  border-width: 0 0 3px 3px;
}

.guarantee-cert-inner::after {
  bottom: 10px;
  right: 10px;
  border-width: 0 3px 3px 0;
}

.guarantee-ribbon {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 6px 28px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(192,57,43,0.25);
}

.guarantee-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.guarantee-main {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.guarantee-body {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 2;
  margin-bottom: 20px;
}

.guarantee-notes {
  font-size: 0.75rem;
  color: #aaa;
  line-height: 1.8;
}

@media (max-width: 640px) {
  .guarantee-section { padding: 60px 16px; }
  .guarantee-cert { padding: 40px 20px 32px; }
  .guarantee-main { font-size: 1.35rem; }
}

/* ---------- S13: FAQ ---------- */
.faq { background: var(--bg-rose-tint); }

.faq-list { max-width: 680px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  text-align: left;
  padding: 18px 36px 18px 0;
  cursor: pointer;
  color: var(--text);
  font-weight: bold;
  position: relative;
  line-height: 1.7;
}

.faq-question::before {
  content: "Q.";
  color: var(--rose);
  font-weight: bold;
  margin-right: 8px;
}

.faq-question::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--rose);
  border-bottom: 2px solid var(--rose);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-question::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 0 18px 28px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.9;
}

/* ---------- S14: Final CTA ---------- */
.final-cta {
  background: #f7f1f3;
  color: var(--text);
  text-align: center;
}

.final-cta .section-heading { color: var(--rose-dark); }

.final-cta-text {
  font-size: 0.95rem;
  line-height: 2;
  opacity: 0.92;
  margin-bottom: 36px;
  white-space: pre-line;
}

.final-price-box {
  background: #fdfcf9;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 520px;
  margin: 0 auto 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  color: var(--text);
}

.final-price-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.final-price-product {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--text-light);
}

.final-price-main {
  font-size: 2rem;
  font-weight: bold;
  color: var(--rose-dark);
  margin-bottom: 4px;
}

.price-placeholder-light {
  background: #f0eae6;
  color: var(--rose-dark);
  padding: 2px 12px;
  border-radius: 4px;
  border: 1px dashed var(--rose-light);
}

.final-price-shipping {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.final-price-sub {
  font-size: 0.85rem;
  color: var(--text-light);
}

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

.final-guarantee {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: bold;
  color: var(--rose-dark);
}

.final-guarantee-icon {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 2px;
  text-align: center;
}

/* ---------- Footer ---------- */
.footer {
  background-color: #3a3a3a;
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 40px 20px;
  font-size: 0.82rem;
  line-height: 1.9;
}

.footer-name {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 8px;
}

.footer-links {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-copy {
  margin-top: 16px;
  font-size: 0.72rem;
  opacity: 0.5;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .section { padding: 60px 16px; }

  .section-heading {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  .cta-btn {
    font-size: 0.95rem;
    padding: 16px 28px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    padding: 10px 16px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    text-align: center;
  }

  .sticky-cta .cta-btn {
    font-size: 0.9rem;
    padding: 14px 20px;
    width: 100%;
    max-width: 360px;
  }

  body { padding-bottom: 70px; }

  .types-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .herbs-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .testimonials-cards, .after-cards { flex-direction: column; }
  .compare-table { font-size: 0.8rem; }
  .compare-table th, .compare-table td { padding: 10px 8px; }
  .offer-product { padding: 28px 20px; }
  .offer-price-main { font-size: 1.6rem; }
  .final-price-main { font-size: 1.6rem; }
  .final-price-box { padding: 28px 20px; }
  .about-image { height: 200px; }
}
/* ---------- Full Image Section ---------- */
.full-image-section {
  width: 100%;
  line-height: 0;
  text-align: center;
  background-color: #f0f0eb;
}

.full-image-section p {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.full-image-section img {
  display: block;
  max-width: 750px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ====== Order Flow Section（参考LPと同じスタイル・インライン版） ====== */
/* JSなしでもfade-target要素を表示する */
.fade-target { opacity: 1; }

.bg-background { background-color: #f7f5f2; }

section.bg-background {
  padding: 64px 16px;
}
@media (min-width: 768px) {
  section.bg-background { padding: 80px 24px; }
}

.container {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media only screen and (min-width: 768px) {
  .sp_only { display: none; }
}
@media only screen and (max-width: 767px) {
  .pc_only { display: none; }
}

.section-title {
  font-family: 'Noto Serif JP', "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.025em;
  line-height: 1.625;
  color: #3d3a35;
  font-weight: 500;
}
@media (min-width: 768px) {
  .section-title { font-size: 1.5rem; }
}
@media (min-width: 1024px) {
  .section-title { font-size: 1.875rem; }
}

.flow-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background-color: #fdfcf9;
  border-radius: 1rem;
  padding: 1.25rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.flow-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #8b5a5a;
  color: #fdfcf9;
  border-radius: 50%;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.flow-step-content {
  width: 100%;
  text-align: center;
}

.flow-step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #3d3a35;
  margin-bottom: 0.25rem;
}

.flow-step-description {
  font-size: 0.875rem;
  color: #605c56;
  line-height: 1.7;
}

.flow-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  color: #605c56;
}

.flow-step-arrow svg { opacity: 0.5; }

/* Survey Comparison Cards (Step 1内) */
.survey-comparison {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.survey-card {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-align: center;
}

.survey-card-yes {
  background-color: rgba(139, 104, 78, 0.1);
  border: 1px solid rgba(139, 104, 78, 0.2);
}

.survey-card-no {
  background-color: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.survey-card-label {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.survey-card-yes .survey-card-label { color: #8b5a5a; }
.survey-card-no  .survey-card-label { color: #605c56; }

.survey-card-text {
  font-size: 0.8125rem;
  line-height: 1.5;
}

.survey-card-yes .survey-card-text { color: #3d3a35; }
.survey-card-no  .survey-card-text { color: #605c56; }

.survey-cta-text {
  font-size: 0.8125rem;
  color: #8b5a5a;
  margin-top: 0.75rem;
  text-align: center;
  font-weight: 500;
}

.survey-fallback {
  margin-top: 1rem;
  padding: 1rem;
  background-color: rgba(107, 114, 95, 0.08);
  border: 1px solid rgba(107, 114, 95, 0.15);
  border-radius: 8px;
}

.survey-fallback-text {
  font-size: 0.8125rem;
  color: #605c56;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.btn-survey {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  background-color: #8b5a5a;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-survey:hover { opacity: 0.85; }

/* flow-step内に挿入される写真（薬袋など） */
.inset_photo {
  margin: 0.75rem auto 0;
  text-align: center;
}
.inset_photo img {
  width: 75%;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

/* ====== Offer Image Block（中央配置） ====== */
.offer-image-block {
  position: relative;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.offer-image-bg {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.offer-cta-link {
  display: block;
  margin: -8.5rem auto 0;
  padding: 0 1rem;
  text-align: center;
}

.offer-cta-btn {
  width: 95%;
  max-width: 460px;
  height: auto;
  display: block;
  margin: 0 auto;
  animation: floatBounce 2.5s ease-in-out infinite;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@media (min-width: 768px) {
  .offer-cta-link { margin-top: -11rem; }
  .offer-cta-btn { width: 85%; max-width: 460px; }
}

/* スマホでは画像を画面端ぴったりに表示 */
@media (max-width: 640px) {
  .offer-image-block {
    max-width: none;
    margin-left: -16px;
    margin-right: -16px;
  }
  .offer-image-bg {
    width: 100%;
  }
}

/* ====== Choice (続ける/見直す/やめる) Section ====== */
section.section-bg-doctor {
  background-color: #faf8f6;
  padding: 64px 16px;
}
@media (min-width: 768px) {
  section.section-bg-doctor { padding: 80px 24px; }
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 641px) {
  .choice-grid { grid-template-columns: repeat(3, 1fr); }
}

.choice-card {
  background-color: #fdfcf9;
  border-radius: 1rem;
  padding: 1.75rem 1rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.choice-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: #f0ece6;
  color: #8b5a5a;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
}

.choice-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #7a5a65;
  margin-bottom: 0.5rem;
}

.choice-description {
  font-size: 0.875rem;
  color: #605c56;
  line-height: 1.7;
}

/* Closing message card */
.card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.card-warm {
  background-color: #fdf5f6;
  border: 1px solid #f0e2e5;
}
.mt-8 { margin-top: 2rem; }
.card-centered-subtext {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.9;
}
.text-foreground { color: #3a3a3a; }
.text-primary { color: #8b5a5a; }
.font-medium { font-weight: 500; }
.container.container-narrow { padding: 0 0.75rem; }
