/* ========================================================================
   洋裁教室ベラドンナ - レディース製図マスター講座 LP
   ======================================================================== */

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

:root {
  --c-brand: #c84278;
  --c-brand-deep: #8e1c4a;
  --c-brand-soft: #fbe9f0;
  --c-cta: #3dcb92;
  --c-cta-hover: #2eaf7a;
  --c-text: #2b2826;
  --c-text-soft: #555;
  --c-bg: #ffffff;
  --c-cream: #faf6ee;
  --c-cream-deep: #f1ead9;
  --c-line: #e6e1d6;
  --c-shadow: 0 6px 24px rgba(40, 30, 20, 0.08);
  --c-shadow-strong: 0 10px 36px rgba(40, 30, 20, 0.14);
  --ff-mincho: "Shippori Mincho B1", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  --ff-gothic: "Noto Sans JP", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  --w-max: 1080px;
  --w-narrow: 760px;
  --r-card: 18px;
  --r-pill: 999px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-gothic);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.85;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-brand); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }
p { margin: 0 0 1em; }
strong { font-weight: 700; color: var(--c-brand-deep); }

/* レイアウト共通 */
.section { padding: 80px 20px; }
.section--cream { background: var(--c-cream); }
.section--brand { background: var(--c-brand); color: #fff; }
.section--dark { background: #2b2826; color: #fff; }
.container { max-width: var(--w-max); margin: 0 auto; }
.container--narrow { max-width: var(--w-narrow); }

/* 見出し */
.h-section {
  font-family: var(--ff-mincho);
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  text-align: center;
  line-height: 1.5;
  margin: 0 0 48px;
  letter-spacing: 0.04em;
}
.h-section__lead {
  display: block;
  font-family: var(--ff-gothic);
  font-size: 0.65em;
  font-weight: 600;
  color: var(--c-brand);
  margin-bottom: 14px;
  letter-spacing: 0.2em;
}
.h-section--white { color: #fff; }
.h-section--white .h-section__lead { color: rgba(255,255,255,0.85); }

/* ========================================================================
   ヒーロー（ファーストビュー）
   ======================================================================== */
.hero {
  position: relative;
  padding: 90px 20px 80px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.78) 100%),
    url("../img/hero-bg.png") center 35% / cover no-repeat;
  text-align: center;
  overflow: hidden;
}
.hero__brand {
  font-family: var(--ff-gothic);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--c-brand-deep);
  margin-bottom: 14px;
}
.hero__lead {
  font-family: var(--ff-gothic);
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
  color: var(--c-text);
}
.hero__lead-mark {
  display: inline-block;
  background: var(--c-brand);
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  font-size: 0.85em;
  margin-right: 8px;
}
.hero__title {
  font-family: var(--ff-mincho);
  font-weight: 800;
  font-size: clamp(1.7rem, 5.4vw, 3.2rem);
  line-height: 1.45;
  letter-spacing: 0.04em;
  margin: 0 0 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--c-brand);
  font-size: 1.05em;
}
.hero__sub {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 500;
  margin-bottom: 36px;
  color: var(--c-text-soft);
}
.hero__badges {
  list-style: none;
  padding: 0;
  margin: 0 auto 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 720px;
}
.hero__badges li {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--c-brand);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-gothic);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--c-shadow);
  line-height: 1.3;
}
.hero__badges .num {
  font-family: var(--ff-mincho);
  font-size: 1.7rem;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.hero__badges .label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  opacity: 0.95;
}

/* ========================================================================
   サブヘッド（製品名バー）
   ======================================================================== */
.product-bar {
  background: var(--c-brand);
  color: #fff;
  text-align: center;
  padding: 28px 20px;
  font-family: var(--ff-mincho);
  font-weight: 800;
}
.product-bar__small {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
  opacity: 0.9;
}
.product-bar__title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* ========================================================================
   問題提起
   ======================================================================== */
.problem {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.92)),
    url("../img/bg-problem.png") center 100% / cover no-repeat;
}
.problem__card {
  background: #fff;
  border-radius: var(--r-card);
  padding: 56px 40px;
  box-shadow: var(--c-shadow);
}
.problem__list {
  list-style: none;
  padding: 0;
  margin: 32px 0 32px;
  display: grid;
  gap: 12px;
}
.problem__list li {
  position: relative;
  padding: 16px 18px 16px 50px;
  background: var(--c-cream);
  border-radius: 8px;
  font-weight: 500;
}
.problem__list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-brand) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='4'><polyline points='4 12 10 18 20 6'/></svg>") center / 14px no-repeat;
}
.problem__image {
  margin: 32px auto;
  max-width: 640px;
  border-radius: var(--r-card);
  overflow: hidden;
}
.problem__highlight {
  background: linear-gradient(transparent 60%, rgba(232, 83, 139, 0.22) 60%);
  font-weight: 700;
}

/* ========================================================================
   3 Points
   ======================================================================== */
.points {
  background: var(--c-cream);
}
.point-card {
  background: #fff;
  border-radius: var(--r-card);
  padding: 40px;
  margin-bottom: 28px;
  box-shadow: var(--c-shadow);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.point-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}
.point-card__num {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-brand);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mincho);
  line-height: 1;
}
.point-card__num small {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  margin-bottom: 3px;
  opacity: 0.9;
}
.point-card__num strong {
  font-size: 1.6rem;
  color: #fff;
}
.point-card__title {
  font-family: var(--ff-mincho);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.point-card__img {
  border-radius: 12px;
  overflow: hidden;
}
.point-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.point-card__list li {
  position: relative;
  padding-left: 30px;
  font-weight: 500;
}
.point-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-cta) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='4'><polyline points='4 12 10 18 20 6'/></svg>") center / 12px no-repeat;
}

/* ========================================================================
   カリキュラム
   ======================================================================== */
.curriculum {
  background:
    linear-gradient(180deg, rgba(250,246,238,0.92), rgba(250,246,238,0.92)),
    url("../img/bg-curriculum.png") right top / cover no-repeat;
}
.curriculum__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.curriculum__image {
  max-width: 640px;
  margin: 0 auto 40px;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--c-shadow);
}
.curriculum__items {
  display: grid;
  gap: 18px;
}
.curriculum__item {
  background: #fff;
  border-radius: 12px;
  padding: 26px 28px;
  border-left: 5px solid var(--c-brand);
  box-shadow: var(--c-shadow);
}
.curriculum__item-title {
  font-family: var(--ff-mincho);
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: var(--c-brand-deep);
}
.curriculum__item-title .duration {
  font-family: var(--ff-gothic);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--c-brand-soft);
  color: var(--c-brand-deep);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  margin-left: 8px;
  vertical-align: middle;
}
.curriculum__item-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--c-text-soft);
  margin: 0;
}
.curriculum__note {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--c-text-soft);
  text-align: center;
}

/* ========================================================================
   特典
   ======================================================================== */
.bonus {
  background: var(--c-brand-deep);
  color: #fff;
}
.bonus__card {
  background: #fff;
  color: var(--c-text);
  border-radius: var(--r-card);
  padding: 40px;
  display: grid;
  gap: 28px;
  box-shadow: var(--c-shadow-strong);
}
.bonus__ribbon {
  display: inline-block;
  background: var(--c-brand);
  color: #fff;
  font-family: var(--ff-mincho);
  font-weight: 800;
  padding: 6px 22px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}
.bonus__title {
  font-family: var(--ff-mincho);
  font-weight: 800;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.5;
  margin: 0 0 18px;
}
.bonus__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.bonus__list li {
  position: relative;
  padding-left: 28px;
}
.bonus__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-cta);
  font-weight: 700;
}
.bonus__image { border-radius: 12px; overflow: hidden; }

/* ========================================================================
   対象者
   ======================================================================== */
.target {
  background:
    linear-gradient(180deg, rgba(250,246,238,0.86), rgba(250,246,238,0.96)),
    url("../img/bg-target.png") center / cover no-repeat;
}
.target__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.target__list li {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px 20px 60px;
  position: relative;
  font-weight: 500;
  box-shadow: var(--c-shadow);
  line-height: 1.6;
}
.target__list li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-brand) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='4'><polyline points='4 12 10 18 20 6'/></svg>") center / 14px no-repeat;
}

/* ========================================================================
   お客様の声
   ======================================================================== */
.voice {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.92)),
    url("../img/bg-voice.png") center / cover no-repeat;
}
.voice__card {
  background: #fff;
  border-radius: var(--r-card);
  padding: 36px 32px;
  margin-bottom: 28px;
  box-shadow: var(--c-shadow);
}
.voice__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-line);
}
.voice__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-cream-deep);
  flex-shrink: 0;
  overflow: hidden;
}
.voice__avatar img { width: 100%; height: 100%; object-fit: cover; }
.voice__name {
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
  line-height: 1.4;
}
.voice__attr {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--c-text-soft);
  margin-top: 4px;
}
.voice__stars {
  color: #f7b500;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  margin-left: auto;
}
.voice__title {
  font-family: var(--ff-mincho);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--c-brand-deep);
  margin: 0 0 14px;
}
.voice__body {
  font-size: 0.95rem;
  line-height: 1.85;
  margin: 0;
  color: var(--c-text-soft);
}
.voice__body p + p { margin-top: 0.8em; }
.voice__disclaimer {
  text-align: right;
  font-size: 0.78rem;
  color: var(--c-text-soft);
  margin-top: 16px;
}

/* ========================================================================
   オファー / CTA
   ======================================================================== */
.offer {
  background: linear-gradient(180deg, var(--c-cream) 0%, #fff 100%);
}
.offer__card {
  background: #fff;
  border-radius: var(--r-card);
  border: 2px solid var(--c-brand-soft);
  box-shadow: var(--c-shadow-strong);
  overflow: hidden;
}
.offer__head {
  background: var(--c-brand);
  color: #fff;
  text-align: center;
  padding: 22px 20px;
  font-family: var(--ff-mincho);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
.offer__inner {
  padding: 40px;
  display: grid;
  gap: 28px;
  align-items: center;
}
.offer__inner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.offer__product {
  border-radius: 12px;
  overflow: hidden;
}
.offer__catch {
  font-family: var(--ff-mincho);
  font-weight: 800;
  font-size: clamp(1.3rem, 3.4vw, 1.7rem);
  line-height: 1.55;
  margin: 0 0 18px;
}
.offer__price-box {
  background: var(--c-cream);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 22px;
}
.offer__price-label {
  font-size: 0.85rem;
  color: var(--c-text-soft);
  margin-bottom: 4px;
}
.offer__price {
  font-family: var(--ff-mincho);
  font-weight: 800;
  font-size: clamp(1.6rem, 4.6vw, 2.2rem);
  color: var(--c-brand-deep);
  line-height: 1.2;
}
.offer__price small {
  font-family: var(--ff-gothic);
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 6px;
  color: var(--c-text);
}
.offer__price-note {
  font-size: 0.85rem;
  color: var(--c-text-soft);
  margin: 6px 0 0;
}
.offer__includes {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  list-style: none;
  padding: 0;
}
.offer__includes li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
}
.offer__includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-cta) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='5'><polyline points='4 12 10 18 20 6'/></svg>") center / 10px no-repeat;
}
.offer__attention {
  font-size: 0.82rem;
  color: var(--c-text-soft);
  margin: 18px 0 0;
  line-height: 1.7;
  padding-top: 16px;
  border-top: 1px dashed var(--c-line);
}

/* CTA ボタン */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 22px 28px;
  background: linear-gradient(180deg, #4ad9a0 0%, var(--c-cta) 100%);
  color: #fff;
  font-family: var(--ff-gothic);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  letter-spacing: 0.04em;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 0 rgba(46, 175, 122, 0.4), 0 12px 22px rgba(46, 175, 122, 0.3);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  position: relative;
  text-align: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-cta::after {
  content: "›";
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1;
}
.btn-cta:hover {
  transform: translateY(2px);
  box-shadow: 0 6px 0 rgba(46, 175, 122, 0.4), 0 8px 16px rgba(46, 175, 122, 0.3);
  opacity: 1;
}

/* ========================================================================
   FAQ
   ======================================================================== */
.faq { background: var(--c-cream); }
.faq__list {
  display: grid;
  gap: 16px;
}
.faq__item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--c-shadow);
}
.faq__q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 26px;
  font-weight: 700;
  font-size: 1.02rem;
  background: #fff;
  cursor: default;
  list-style: none;
}
.faq__q::before {
  content: "Q";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mincho);
  font-weight: 800;
}
.faq__a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 26px 22px;
  color: var(--c-text-soft);
  font-size: 0.95rem;
}
.faq__a::before {
  content: "A";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-cream-deep);
  color: var(--c-brand-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mincho);
  font-weight: 800;
}
.faq__a-text { flex: 1; }
.faq__a p { margin: 0 0 0.6em; }
.faq__a p:last-child { margin: 0; }

/* ========================================================================
   追伸
   ======================================================================== */
.postscript {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.92)),
    url("../img/bg-postscript.png") center / cover no-repeat;
}
.postscript__card {
  background: #fff;
  border-radius: var(--r-card);
  padding: 56px 40px;
  box-shadow: var(--c-shadow);
}
.postscript__title {
  font-family: var(--ff-mincho);
  font-weight: 800;
  font-size: 1.6rem;
  text-align: center;
  margin: 0 0 32px;
  letter-spacing: 0.1em;
}
.postscript__title::before,
.postscript__title::after {
  content: "—";
  margin: 0 14px;
  color: var(--c-brand);
  font-weight: 400;
}
.postscript__body p { margin: 0 0 1.2em; }
.postscript__signature {
  text-align: right;
  font-family: var(--ff-mincho);
  margin-top: 32px;
}
.postscript__signature small {
  display: block;
  font-family: var(--ff-gothic);
  font-size: 0.85rem;
  color: var(--c-text-soft);
  margin-bottom: 6px;
}
.postscript__signature strong {
  font-size: 1.4rem;
  color: var(--c-text);
  letter-spacing: 0.15em;
}

/* ========================================================================
   フッター
   ======================================================================== */
.site-footer {
  background: #2b2826;
  color: #fff;
  text-align: center;
  padding: 36px 20px 28px;
  font-size: 0.85rem;
}
.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.site-footer__links a { color: #fff; opacity: 0.85; }
.site-footer__copyright { opacity: 0.7; }

/* ========================================================================
   モバイル固定 CTA
   ======================================================================== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--c-line);
  padding: 10px 14px;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}
.sticky-cta__price {
  flex-shrink: 0;
  font-family: var(--ff-mincho);
  font-weight: 800;
  line-height: 1.2;
}
.sticky-cta__price small {
  display: block;
  font-family: var(--ff-gothic);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--c-text-soft);
  margin-bottom: 2px;
}
.sticky-cta__price strong {
  font-size: 1.15rem;
  color: var(--c-brand-deep);
}
.sticky-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #4ad9a0 0%, var(--c-cta) 100%);
  color: #fff;
  font-weight: 800;
  border-radius: var(--r-pill);
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(46, 175, 122, 0.35);
}
.sticky-cta__btn::after { content: "›"; font-size: 1.3em; }

/* ========================================================================
   レスポンシブ
   ======================================================================== */
@media (min-width: 720px) {
  .section { padding: 100px 32px; }
  .point-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 36px;
    padding: 48px;
  }
  .point-card__head { grid-column: 1 / -1; margin-bottom: 0; }
  .bonus__card {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .offer__inner-grid {
    grid-template-columns: 0.85fr 1fr;
    gap: 40px;
  }
  .voice__card { padding: 40px 44px; }
}

@media (max-width: 720px) {
  body { font-size: 15px; line-height: 1.8; }
  .section { padding: 64px 16px; }
  .hero { padding: 64px 16px 56px; }
  .hero__badges li {
    width: 110px;
    height: 110px;
  }
  .hero__badges .num { font-size: 1.3rem; }
  .hero__badges .label { font-size: 0.7rem; }
  .problem__card { padding: 36px 22px; }
  .point-card { padding: 30px 22px; }
  .point-card__head { flex-direction: column; text-align: center; gap: 12px; }
  .bonus__card { padding: 30px 22px; }
  .offer__inner { padding: 28px 22px; }
  .postscript__card { padding: 40px 22px; }
  .postscript__title { font-size: 1.3rem; }
  .postscript__title::before,
  .postscript__title::after { display: none; }
  .voice__card { padding: 28px 22px; }
  .voice__head { flex-wrap: wrap; gap: 12px; }
  .voice__stars { margin-left: 0; }
  body { padding-bottom: 80px; }
  .sticky-cta { display: block; }
}

/* PC/SP切替 */
.is-pc-only { display: inline; }
.is-sp-only { display: none; }
@media (max-width: 720px) {
  .is-pc-only { display: none; }
  .is-sp-only { display: inline; }
}
