/* ============================================
   K-Beauty オンライン相談会 LP（v2）
   Palette: white base + navy / teal accent
   ============================================ */

:root {
  --navy: #0e2a47;
  --navy-2: #16375c;
  --teal: #12a3a3;
  --teal-d: #0d8686;
  --line: #06c755;
  --ink: #1c2a38;
  --ink-soft: #55657a;
  --bg: #ffffff;
  --bg-tint: #f2f7f9;
  --section-tint: #e3f2f0;
  --border: #e3e9ef;
  --gold: #c9a24b;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 45px -20px rgba(14, 42, 71, 0.35);
  --shadow-sm: 0 8px 24px -12px rgba(14, 42, 71, 0.28);
  --container: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 84px 0; }
.section--tint { background: var(--section-tint); }
.section--dark { background: var(--navy); color: #fff; }

/* 日本語の改行を整える：末尾に1〜2文字だけ落ちる「泣き別れ」を防ぐ */
p, .section__title, .hero__title, .learn__item h3, .faq__item summary,
.bonus__hero-body h3, .finalcta__title, .worry {
  text-wrap: pretty;
}
.section__title, .learn__item h3, .learn__item p,
.bonus__item p, .bonus__hero-body p, .worry, .step p,
.hero__lead, .worries__msg, .register__lead, .trust__lead,
.bonus__cond, .finalcta__lead {
  text-wrap: balance;
}
/* 見出し・カタカナ語が語中で切れないように */
.section__title, .hero__title, .learn__item h3, .bonus__hero-body h3,
.finalcta__title, .step h3, .faq__item summary, .bonus__item p {
  word-break: keep-all; overflow-wrap: normal;
}
/* ただし1行が収まらない場合は、はみ出さず緊急改行する（列オーバーフロー防止） */
.section__title { overflow-wrap: anywhere; }

/* グリッド/フレックス子要素が縮小できるように（横はみ出し防止） */
.hero__inner > *, .hero__card, .livecard,
.trust__grid > li, .livecard__dates > li, .livecard__meta > li,
.worries__grid > *, .learn__grid > *, .bonus__grid > *,
.steps__grid > *, .register__inner > *, .footer__info > li {
  min-width: 0;
}

.sp-br { display: none; }
/* pc-br: PCでは改行、狭い画面(≤560px)では自然に流す */
.pc-br { display: inline; }

/* ---------- 見出し ---------- */
.section__eyebrow {
  text-align: center;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 14px;
  margin-bottom: 12px;
}
.section__eyebrow--light { color: #7fd6d6; }

.section__title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: clamp(26px, 4.4vw, 38px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 44px;
  letter-spacing: .01em;
}
.section__title--light { color: #fff; }
.section__title--left { text-align: left; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  text-align: center;
  line-height: 1.4;
}
.btn small { font-size: 12px; font-weight: 500; opacity: .85; }
.btn--sm { padding: 10px 20px; font-size: 14px; border-radius: 999px; }
.btn--lg { padding: 18px 40px; font-size: 18px; }
.btn--block { display: flex; width: 100%; }

.btn--primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  color: #fff;
  box-shadow: 0 14px 28px -12px rgba(18, 163, 163, .7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 34px -12px rgba(18, 163, 163, .8); }

.btn--line {
  flex-direction: row;
  gap: 10px;
  background: var(--line);
  color: #fff;
  padding: 16px 24px;
  font-size: 17px;
}
.btn--line:hover { transform: translateY(-2px); filter: brightness(1.03); }
.btn__line-icon {
  background: #fff; color: var(--line);
  font-size: 12px; font-weight: 900;
  padding: 3px 8px; border-radius: 6px; letter-spacing: .02em;
}

/* ---------- 告知バー ---------- */
.topbar {
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  color: #fff;
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 9px 20px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 13.5px; font-weight: 500;
}
.topbar__badge {
  background: #e5484d; color: #fff; font-weight: 900; font-size: 11px;
  padding: 2px 9px; border-radius: 5px; letter-spacing: .08em;
}
.topbar__text { text-align: center; }

/* ---------- ヘッダー ---------- */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.logo { display: flex; align-items: center; gap: 9px; }
.logo__mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff; font-weight: 900;
  display: grid; place-items: center; font-size: 18px;
}
.logo__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900; font-size: 19px; color: var(--navy);
}
.logo--light .logo__text { color: #fff; }
.logo__img { height: 46px; width: auto; display: block; }
.header__label {
  flex: 1; text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900; font-size: 16px; color: var(--navy); letter-spacing: .02em;
}

/* ---------- ヒーロー ---------- */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(18,163,163,.10), transparent 60%),
    linear-gradient(180deg, #fbfdfe, #eef5f7);
  padding: 68px 0 78px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-block;
  color: var(--teal-d); font-weight: 700; font-size: 15px;
  letter-spacing: .04em; margin-bottom: 16px;
  padding: 6px 14px; background: #dff1f1; border-radius: 999px;
}
.hero__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(32px, 5.4vw, 52px);
  font-weight: 900; line-height: 1.28; color: var(--navy);
  letter-spacing: .01em; margin-bottom: 22px;
}
.hero__hl {
  background: linear-gradient(transparent 62%, #ffe8a8 62%);
  color: var(--navy); padding: 0 4px;
}
.hero__lead { color: var(--ink-soft); font-size: 16px; margin-bottom: 26px; }

.hero__points { list-style: none; display: grid; gap: 10px; margin-bottom: 32px; }
.hero__points li {
  display: flex; align-items: center; gap: 10px;
  font-weight: 500; font-size: 16px;
}
.check {
  flex: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: grid; place-items: center; font-size: 13px; font-weight: 900;
}

.hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.hero__note { font-size: 13px; color: var(--ink-soft); }

/* ライブカード */
.hero__card { display: flex; justify-content: center; }
.livecard {
  width: 100%; max-width: 380px;
  background: #fff; border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 28px 26px 24px;
}
.livecard__head {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.livecard__notice {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fdecec; color: #e5484d;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900; font-size: 13.5px; padding: 7px 16px; border-radius: 999px;
  text-align: center; line-height: 1.3;
  word-break: keep-all; overflow-wrap: normal;
}
.livecard__notice .dot {
  flex: none;
  width: 8px; height: 8px; border-radius: 50%; background: #e5484d;
  animation: pulse 1.4s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.livecard__label { color: var(--ink-soft); font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.livecard__dates { list-style: none; display: grid; gap: 10px; margin-bottom: 18px; }
.livecard__dates li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  background: var(--bg-tint); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 16px;
}
.livecard__day {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 26px; font-weight: 900; color: var(--navy); line-height: 1;
}
.livecard__day small { font-size: 14px; font-weight: 700; margin: 0 1px; }
.livecard__day em { font-size: 14px; font-style: normal; color: var(--ink-soft); margin-left: 2px; }
.livecard__hour {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px; font-weight: 900; color: var(--teal-d); white-space: nowrap;
}
.livecard__platforms {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.livecard__platforms-label { font-size: 12.5px; font-weight: 700; color: var(--ink-soft); }
.pf {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900; font-size: 12.5px; color: #fff;
  padding: 4px 12px; border-radius: 999px; letter-spacing: .02em;
}
.pf--yt { background: #ff0033; }
.pf--x { background: #000; }

.livecard__meta { list-style: none; display: grid; gap: 10px; border-top: 1px dashed var(--border); padding-top: 16px; }
.livecard__meta li { font-size: 14px; color: var(--ink); display: flex; gap: 10px; }
.livecard__meta li span {
  flex: none; width: 72px; color: var(--ink-soft); font-weight: 700; font-size: 12.5px;
}
.livecard__count {
  margin-top: 18px; background: var(--bg-tint); border-radius: 12px;
  padding: 12px 14px; text-align: center;
}
.livecard__count-num { display: block; font-weight: 900; color: #e5484d; font-size: 17px; }
.livecard__count-txt { font-size: 12px; color: var(--ink-soft); }

/* ---------- 実績バー ---------- */
.trust { background: var(--navy); color: #fff; padding: 32px 0; }
.trust__lead { text-align: center; font-size: 15px; color: #c8d6e2; margin-bottom: 22px; }
.trust__lead strong { color: #fff; }
.trust__grid {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; max-width: 900px; margin: 0 auto;
}
.trust__grid li {
  text-align: center; padding: 0 8px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.trust__grid li:last-child { border-right: none; }
.trust__num {
  display: block; white-space: nowrap;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 30px; font-weight: 900; color: #7fd6d6; line-height: 1.1;
}
.trust__num em { font-size: 16px; font-style: normal; margin-left: 2px; }
.trust__label { display: block; font-size: 13px; color: #c8d6e2; margin-top: 6px; }
.trust__label small { font-size: 11px; color: #9fb2c4; }

/* ---------- 悩み ---------- */
.worries__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px;
}
.worry {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 20px; font-weight: 700; color: var(--navy);
  box-shadow: var(--shadow-sm); font-size: 15.5px; position: relative;
  padding-left: 44px;
}
.worry::before {
  content: "Q"; position: absolute; left: 16px; top: 20px;
  color: var(--teal); font-weight: 900; font-family: "Zen Kaku Gothic New", sans-serif;
}
.worries__msg { text-align: center; color: var(--ink-soft); font-size: 16px; }
.worries__msg strong { color: var(--navy); }

/* ---------- 分かること ---------- */
.learn__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.learn__item {
  background: #fff; border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: transform .18s ease;
}
.learn__item:hover { transform: translateY(-4px); }
.learn__no {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 30px; font-weight: 900; color: var(--teal);
  display: block; margin-bottom: 8px;
}
.learn__item h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; line-height: 1.5; }
.learn__item p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- 登壇者 ---------- */
.doctor__inner {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center;
}
.doctor__photo {
  aspect-ratio: 4/5; border-radius: 20px; overflow: hidden;
  background: linear-gradient(150deg, #dcecef, #cfe5e5);
  box-shadow: var(--shadow); display: grid; place-items: center;
}
.doctor__placeholder {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 64px; font-weight: 900; color: #9cc4c4;
}
.doctor__name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 28px; font-weight: 900; color: var(--navy); margin-top: 4px;
}
.doctor__name span { font-size: 16px; margin-left: 6px; color: var(--ink-soft); }
.doctor__role { color: var(--teal-d); font-weight: 700; margin-bottom: 16px; }
.doctor__desc { color: var(--ink-soft); margin-bottom: 20px; }
.doctor__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.doctor__tags li {
  background: var(--bg-tint); color: var(--navy); font-weight: 700; font-size: 13px;
  padding: 6px 14px; border-radius: 999px; border: 1px solid var(--border);
}

/* ---------- 特典 ---------- */
/* 2つのブロックを明確に区別：ギフト=ゴールド / 来院=ティール */
.bonus__block {
  max-width: 680px; margin: 0 auto 22px;
  border-radius: 20px; padding: 24px;
  border: 1px solid transparent;
}
.bonus__block:last-of-type { margin-bottom: 0; }

.bonus__block--gift {
  background: linear-gradient(180deg, rgba(201,162,75,.18), rgba(201,162,75,.06));
  border-color: rgba(201,162,75,.45);
}
.bonus__block--visit {
  background: linear-gradient(180deg, rgba(18,163,163,.16), rgba(18,163,163,.05));
  border-color: rgba(18,163,163,.42);
}

.bonus__block-head {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  margin-bottom: 16px; text-align: center;
}
.bonus__badge {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900; font-size: 13.5px; padding: 5px 14px; border-radius: 999px;
}
.bonus__badge--gift { background: var(--gold); color: #1a1300; }
.bonus__badge--visit { background: var(--teal); color: #fff; }
.bonus__block-when { font-size: 13px; font-weight: 700; color: #c8d6e2; }

/* 事前登録特典（スタバ） */
.bonus__hero { display: flex; align-items: center; gap: 20px; }
.bonus__hero-img {
  flex: none; width: 140px; height: auto; border-radius: 12px;
  box-shadow: 0 10px 24px -10px rgba(0,0,0,.5);
}
.bonus__hero-body h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #ffe6ad; font-size: 20px; margin-bottom: 8px; line-height: 1.4;
}
.bonus__hero-body p { color: #e7edf3; font-size: 14.5px; }

/* 来院特典 */
.bonus__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.bonus__grid--2 { grid-template-columns: repeat(2, 1fr); }
.bonus__item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px; padding: 18px 16px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.bonus__icon { font-size: 34px; display: block; margin-bottom: 6px; }
.bonus__item p { color: #eaf3f3; font-size: 14.5px; }
.bonus__item strong { color: #fff; }
.bonus__cond {
  text-align: center; color: #a9d4d4; font-size: 12.5px; margin-top: 14px;
}

/* ---------- ステップ ---------- */
.steps__grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px; align-items: center;
}
.step {
  background: #fff; border-radius: var(--radius); padding: 28px 22px;
  text-align: center; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.step__no {
  display: inline-block; background: var(--navy); color: #fff;
  font-weight: 900; font-size: 12.5px; letter-spacing: .06em;
  padding: 4px 14px; border-radius: 999px; margin-bottom: 12px;
}
.step h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-soft); }
.step__arrow { color: var(--teal); font-size: 28px; font-weight: 900; text-align: center; }

/* ---------- 登録フォーム ---------- */
.register__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.register__head { position: sticky; top: 90px; }
.register__head .section__title { text-align: left; margin-bottom: 16px; }
.register__head .section__eyebrow { text-align: left; }
.register__lead { color: var(--ink-soft); margin-bottom: 20px; }
.register__badges {
  display: block; white-space: nowrap;
  color: var(--teal-d); font-weight: 700; font-size: 15px;
}
.register__badges span { color: var(--border); margin: 0 6px; }
@media (max-width: 900px) { .register__badges { text-align: center; } }

.form {
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; padding: 32px; box-shadow: var(--shadow);
}
.form__row { margin-bottom: 20px; }
.form__row label {
  display: block; font-weight: 700; color: var(--navy);
  font-size: 15px; margin-bottom: 8px;
}
.req {
  background: #e5484d; color: #fff; font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 5px; margin-left: 8px; vertical-align: middle;
}
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form textarea {
  width: 100%; padding: 14px 16px; font-size: 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; transition: border-color .15s ease, box-shadow .15s ease;
  background: #fbfdfe;
}
.form textarea { resize: vertical; min-height: 88px; line-height: 1.7; }
.form input:focus,
.form textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(18,163,163,.15); background: #fff;
}
.form__hint { font-size: 12.5px; color: var(--ink-soft); margin-top: 6px; }

.form__radios { display: grid; gap: 10px; }
.radio {
  display: flex !important; align-items: center; gap: 10px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 16px; cursor: pointer; font-weight: 500 !important; color: var(--ink) !important;
  transition: border-color .15s ease, background .15s ease;
}
.radio input { width: 20px; height: 20px; accent-color: var(--teal); flex: none; }
.radio:has(input:checked) { border-color: var(--teal); background: #f2fbfb; }
.radio em { font-style: normal; color: var(--ink-soft); margin: 0 4px; font-size: 14px; }
.form__error { font-size: 12.5px; color: #e5484d; margin-top: 6px; min-height: 0; font-weight: 500; }
.form input.is-error { border-color: #e5484d; background: #fef6f6; }

.form__row--check { margin-bottom: 24px; }
.privacy {
  background: #f7f9fb; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px 18px; margin-bottom: 14px;
}
.privacy__intro { font-size: 13px; color: var(--ink); font-weight: 700; margin-bottom: 10px; }
.privacy__list { list-style: none; display: grid; gap: 7px; }
.privacy__list li {
  position: relative; padding-left: 14px;
  font-size: 12.5px; color: var(--ink-soft); line-height: 1.7;
}
.privacy__list li::before {
  content: "・"; position: absolute; left: 0; top: 0; color: var(--teal);
}
.privacy__key { font-weight: 700; color: var(--ink); }
.privacy__key::after { content: "："; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-weight: 500 !important; color: var(--ink) !important; cursor: pointer; }
.checkbox input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--teal); flex: none; }
.link { color: var(--teal-d); text-decoration: underline; }

.form__divider {
  text-align: center; position: relative; margin: 22px 0; color: var(--ink-soft); font-size: 13px;
}
.form__divider::before {
  content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border);
}
.form__divider span { background: #fff; padding: 0 14px; position: relative; }

.form__policy { font-size: 12px; color: var(--ink-soft); margin-top: 16px; text-align: center; }

/* 送信完了 */
.thanks {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 48px 32px; text-align: center; box-shadow: var(--shadow);
}
.thanks__icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--teal); color: #fff;
  display: grid; place-items: center; font-size: 34px; margin: 0 auto 18px; font-weight: 900;
}
.thanks h3 { font-size: 22px; color: var(--navy); margin-bottom: 12px; }
.thanks p { color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq__list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer; list-style: none; padding: 20px 52px 20px 22px;
  font-weight: 700; color: var(--navy); position: relative; font-size: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 24px; color: var(--teal); font-weight: 400; transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 22px 20px; color: var(--ink-soft); font-size: 15px; }

/* ---------- 最終CTA ---------- */
.finalcta {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(18,163,163,.25), transparent 60%),
    var(--navy);
}
.finalcta__inner { text-align: center; }
.finalcta__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(26px, 4.6vw, 40px); font-weight: 900; color: #fff; margin-bottom: 18px;
}
.finalcta__lead { color: #c8d6e2; margin-bottom: 30px; }

/* ---------- フッター ---------- */
.footer { background: #0a1f36; color: #9fb2c4; padding: 48px 0 90px; }
.footer__inner { text-align: center; }
.footer__logo { margin-bottom: 14px; }
.footer__logo .logo__img { margin: 0 auto; }
.footer__tagline { font-size: 13.5px; color: #c8d6e2; margin-bottom: 24px; }

.footer__info {
  list-style: none; max-width: 560px; margin: 0 auto 26px;
  text-align: left; display: grid; gap: 12px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 20px 22px;
}
.footer__info li { display: flex; gap: 14px; font-size: 14px; color: #dbe4ee; line-height: 1.7; }
.footer__info li span:first-child {
  flex: none; width: 74px; color: #8ea3b8; font-weight: 700; font-size: 12.5px;
}
.footer__info a { color: #7fd6d6; text-decoration: none; }
.footer__info a:hover { text-decoration: underline; }
.footer__hours { color: #dbe4ee; }

.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin-bottom: 20px; }
.footer__nav a { color: #c8d6e2; text-decoration: none; font-size: 14px; }
.footer__nav a:hover { color: #fff; text-decoration: underline; }
.footer__copy { font-size: 13px; margin-bottom: 14px; }
.footer__disclaimer { font-size: 12px; color: #6f849a; max-width: 720px; margin: 0 auto; line-height: 1.7; }

/* ---------- 追従CTA ---------- */
.stickycta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border-top: 1px solid var(--border); display: none;
}

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 900px) {
  .section { padding: 60px 0; }
  .hero { padding: 44px 0 56px; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__card { order: -1; }
  .hero__cta { align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .worries__grid { grid-template-columns: 1fr 1fr; }
  .learn__grid { grid-template-columns: 1fr 1fr; }
  .doctor__inner { grid-template-columns: 1fr; gap: 28px; }
  .doctor__photo { max-width: 320px; margin: 0 auto; }
  .bonus__grid { grid-template-columns: 1fr 1fr; }
  .steps__grid { grid-template-columns: 1fr; }
  .step__arrow { transform: rotate(90deg); }
  .register__inner { grid-template-columns: 1fr; gap: 28px; }
  .register__head { position: static; }
  .register__head .section__title, .register__head .section__eyebrow { text-align: center; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .sp-br { display: block; }
  .pc-br { display: none; }
  .topbar__inner { font-size: 12px; gap: 8px; }
  .worries__grid { grid-template-columns: 1fr; }
  .learn__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(28px, 8vw, 40px); }
  .form { padding: 24px 18px; }
  .btn--lg { padding: 16px 24px; font-size: 16px; }
  .stickycta { display: block; }
  .footer { padding-bottom: 96px; }
  .header .btn--sm { display: none; }
  .trust__grid { grid-template-columns: 1fr 1fr; gap: 20px 10px; }
  .trust__grid li:nth-child(2) { border-right: none; }
}

/* ============================================
   360px 幅 最適化（全テキストを 360px に収める）
   ============================================ */
@media (max-width: 400px) {
  html, body { overflow-x: hidden; }
  body { font-size: 14.5px; }

  .container { padding: 0 16px; }
  .section { padding: 48px 0; }

  /* 見出し */
  .section__title { font-size: 22px; margin-bottom: 32px; }
  .section__eyebrow { font-size: 13px; }

  /* 告知バー */
  .topbar__inner { font-size: 11px; gap: 6px; padding: 8px 12px; }
  .topbar__badge { font-size: 10px; padding: 2px 7px; }

  /* ロゴ */
  .logo__img { height: 40px; }

  /* ヒーロー */
  .hero { padding: 36px 0 48px; }
  .hero__title { font-size: 28px; line-height: 1.3; }
  .hero__eyebrow { font-size: 13px; padding: 5px 12px; }
  .hero__lead, .hero__points li { font-size: 14.5px; }
  .btn--lg { padding: 15px 20px; font-size: 15.5px; }
  .btn--lg small { font-size: 11px; }

  /* 実績バー */
  .trust { padding: 26px 0; }
  .trust__lead { font-size: 13.5px; margin-bottom: 18px; }
  .trust__num { font-size: 25px; }
  .trust__num em { font-size: 14px; }
  .trust__label { font-size: 12px; }
  .trust__label small { font-size: 10px; }

  /* ライブカード */
  .livecard { padding: 22px 18px 20px; }
  .livecard__dates li { padding: 10px 12px; gap: 6px; }
  .livecard__day { font-size: 21px; }
  .livecard__day small { font-size: 12px; }
  .livecard__day em { font-size: 12px; }
  .livecard__hour { font-size: 14px; }
  .livecard__meta li { font-size: 13px; }
  .livecard__meta li span { width: 64px; font-size: 11.5px; }

  /* 悩み */
  .worry { font-size: 14.5px; padding: 18px 16px 18px 40px; }
  .worries__msg { font-size: 14.5px; }

  /* 分かること */
  .learn__item { padding: 22px 18px; }
  .learn__item h3 { font-size: 16.5px; }
  .learn__item p { font-size: 14px; }

  /* 特典 */
  .bonus__block { padding: 18px 16px; border-radius: 16px; }
  .bonus__block-head { gap: 8px; margin-bottom: 14px; }
  .bonus__badge { font-size: 12.5px; padding: 4px 12px; }
  .bonus__block-when { font-size: 12px; }
  .bonus__hero { flex-direction: column; text-align: center; gap: 14px; }
  .bonus__hero-img { width: 150px; }
  .bonus__hero-body h3 { font-size: 18px; }
  .bonus__hero-body p { font-size: 14px; }
  .bonus__grid--2 { grid-template-columns: 1fr; gap: 10px; }
  .bonus__item { padding: 15px 14px; }
  .bonus__item p { font-size: 14px; }
  .bonus__cond { font-size: 12px; }

  /* ステップ */
  .step h3 { font-size: 16.5px; }

  /* 登録フォーム */
  .register__lead { font-size: 14.5px; }
  .register__badges { font-size: 13px; }
  .register__badges span { margin: 0 4px; }
  .form { padding: 22px 16px; }
  .form__row label { font-size: 14px; }
  .radio { padding: 11px 13px; gap: 8px; font-size: 14px; }
  .radio em { font-size: 13px; margin: 0 2px; }
  .form input[type="text"],
  .form input[type="email"],
  .form input[type="tel"],
  .form textarea { padding: 13px 14px; font-size: 15.5px; }
  .btn--line { font-size: 15px; padding: 15px 16px; }

  /* FAQ */
  .faq__item summary { font-size: 14.5px; padding: 18px 46px 18px 18px; }
  .faq__item p { font-size: 14px; }

  /* 最終CTA */
  .finalcta__title { font-size: 22px; }
  .finalcta__lead { font-size: 13.5px; line-height: 1.8; }

  /* フッター */
  .footer__tagline { font-size: 12.5px; }
  .footer__info { padding: 16px 16px; gap: 10px; }
  .footer__info li { flex-direction: column; gap: 2px; font-size: 13.5px; }
  .footer__info li span:first-child { width: auto; }
  .footer__nav { gap: 14px; }
  .footer__nav a { font-size: 13px; }
  .footer__disclaimer { font-size: 11.5px; }
}
