/* ============================================================
   マイセラピストナビ ｜ 料金訴求LP
   Design system
   ============================================================ */

:root {
  /* color */
  --ink:        #2b1a20;
  --ink-soft:   #6c5860;
  --ink-faint:  #9a8890;
  --bg:         #fbf6f3;
  --bg-warm:    #f5ebe6;
  --bg-rose:    #f8e9ec;
  --card:       #ffffff;
  --line:       #ece0dc;
  --line-soft:  #f1e8e4;

  --rose:       #a8324c;
  --rose-deep:  #8a2540;
  --rose-bright:#c8455f;
  --rose-tint:  #f7e7ea;
  --gold:       #b5894f;
  --gold-soft:  #e8d4b6;

  --plum:       #2a141c;
  --plum-deep:  #1d0c13;

  --ok:         #2f8a5b;

  /* type */
  --sans: "Noto Sans JP", system-ui, sans-serif;
  --gothic: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --mincho: "Shippori Mincho", "Noto Serif JP", serif;
  --latin: "Jost", "Zen Kaku Gothic New", sans-serif;

  /* layout */
  --maxw: 1120px;
  --pad: clamp(20px, 5vw, 40px);
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(74, 30, 42, .06);
  --shadow:    0 14px 40px rgba(74, 30, 42, .10);
  --shadow-lg: 0 30px 70px rgba(74, 30, 42, .16);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

.lp2-root {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .01em;
  overflow-x: hidden;
}

.lp2-root img { max-width: 100%; display: block; }
.lp2-root a { color: inherit; text-decoration: none; }
.lp2-root button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- shared layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.wrap-narrow { max-width: 880px; }

.section { padding-block: clamp(72px, 11vw, 132px); position: relative; }
.section--rose { background: var(--bg-rose); }
.section--warm { background: var(--bg-warm); }
.section--dark { background: var(--plum); color: #fff; }

.eyebrow {
  font-family: var(--latin);
  font-size: 12px;
  letter-spacing: .42em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: .9em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--rose);
  display: inline-block;
}
.section--dark .eyebrow { color: var(--gold-soft); }
.section--dark .eyebrow::before { background: var(--gold-soft); }

.h-sec {
  font-family: var(--gothic);
  font-weight: 900;
  font-size: clamp(27px, 5.2vw, 46px);
  line-height: 1.32;
  letter-spacing: .01em;
  margin-top: 20px;
  text-wrap: balance;
}
.lede {
  color: var(--ink-soft);
  font-size: clamp(15px, 1.6vw, 17px);
  margin-top: 22px;
  max-width: 40em;
  text-wrap: pretty;
}
.section--dark .lede { color: rgba(255,255,255,.74); }

.accent { color: var(--rose); }
.section--dark .accent { color: var(--gold-soft); }

/* number / yen treatment */
.yen { font-family: var(--gothic); font-weight: 900; line-height: 1; font-feature-settings: "palt"; }
.num { font-family: var(--gothic); font-weight: 900; font-variant-numeric: tabular-nums; }

/* ---------- pill / badge ---------- */
.pill {
  display: inline-flex; align-items: center; gap: .5em;
  padding: 7px 15px;
  border-radius: 100px;
  font-size: 13px; font-weight: 700;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rose); }

/* ============================================================
   Buttons
   ============================================================ */
.lp2-root .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--gothic);
  font-weight: 700;
  font-size: 16px;
  padding: 17px 30px;
  border-radius: 100px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.lp2-root .btn--primary {
  background: linear-gradient(135deg, var(--rose-bright), var(--rose-deep));
  color: #fff;
  box-shadow: 0 12px 26px rgba(168, 50, 76, .34);
}
.lp2-root .btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(168, 50, 76, .42); }
.lp2-root .btn--ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.lp2-root .btn--ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--rose); color: var(--rose); }
.lp2-root .btn--lg { font-size: 17px; padding: 20px 38px; }
.lp2-root .btn .arrow { transition: transform .2s ease; }
.lp2-root .btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 246, 243, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.header.scrolled { border-color: var(--line); background: rgba(251, 246, 243, .94); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 0;
  background: none; box-shadow: none;
  display: grid; place-items: center;
  overflow: hidden;
}
.brand__mark img { width: 100%; height: 100%; display: block; }
.brand__name { font-family: "Noto Sans JP", system-ui, sans-serif; font-weight: 700; font-size: 16px; letter-spacing: .02em; }
.brand__sub { font-size: 10.5px; color: var(--ink-faint); letter-spacing: .14em; font-family: var(--latin); }
.header__cta { display: flex; align-items: center; gap: 14px; }
.header__cta .btn { padding: 11px 22px; font-size: 14px; }
.header__price-hint {
  font-size: 12px; color: var(--ink-soft); font-weight: 700;
  display: flex; flex-direction: column; align-items: flex-end; line-height: 1.3;
  white-space: nowrap;
}
.header__price-hint b { color: var(--rose); font-family: var(--gothic); font-size: 14px; }
@media (max-width: 720px) { .header__price-hint { display: none; } }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-block: clamp(48px, 8vw, 92px); }
.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 84% 8%, rgba(200, 69, 95, .12), transparent 70%),
    radial-gradient(50% 45% at 6% 92%, rgba(181, 137, 79, .12), transparent 70%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 920px) { .hero__grid { grid-template-columns: 1fr; gap: 44px; } }

.hero__tagline {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 100px; padding: 8px 8px 8px 16px;
  font-size: 13px; font-weight: 700; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.hero__tagline .tag { background: var(--rose); color: #fff; border-radius: 100px; padding: 3px 11px; font-size: 11.5px; letter-spacing: .04em; }

.hero h1 {
  font-family: var(--gothic);
  font-weight: 900;
  font-size: clamp(33px, 6.6vw, 64px);
  line-height: 1.28;
  letter-spacing: .005em;
  margin-top: 22px;
  text-wrap: balance;
}
.hero h1 .hl { position: relative; color: var(--rose); white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .06em; height: .34em;
  background: linear-gradient(transparent 55%, rgba(200,69,95,.20) 0);
  z-index: -1;
}
.hero__sub { margin-top: 26px; color: var(--ink-soft); font-size: clamp(15px, 1.7vw, 18px); max-width: 33em; text-wrap: pretty; }
.hero__sub b { color: var(--ink); font-weight: 700; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; align-items: center; }
.hero__note { font-size: 12.5px; color: var(--ink-faint); margin-top: 16px; display: flex; align-items: center; gap: 7px; }

.hero__chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.hero__chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: 8px 15px; font-size: 13px; font-weight: 700; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.hero__chip .check { color: var(--ok); font-weight: 900; }

/* ---- hero price card / phone ---- */
.hero__visual { position: relative; display: flex; justify-content: center; }
.pricecard {
  position: relative; width: min(380px, 100%);
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-soft);
  padding: 30px 30px 26px;
  z-index: 2;
}
.pricecard__top { display: flex; align-items: center; justify-content: space-between; }
.pricecard__label { font-family: var(--latin); font-size: 11px; letter-spacing: .3em; color: var(--ink-faint); }
.pricecard__camp { background: var(--rose); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 100px; }
.pricecard__row { display: flex; align-items: baseline; gap: 4px; margin-top: 22px; }
.pricecard__was { color: var(--ink-faint); text-decoration: line-through; font-size: 18px; font-weight: 700; font-family: var(--gothic); }
.pricecard__now { display: flex; align-items: baseline; gap: 4px; margin-top: 6px; }
.pricecard__now .yen { font-size: 72px; color: var(--rose); }
.pricecard__now .unit { font-size: 17px; font-weight: 700; color: var(--ink); }
.pricecard__per { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.pricecard__divider { height: 1px; background: var(--line); margin: 22px 0; }
.pricecard__list { display: grid; gap: 12px; }
.pricecard__li { display: flex; align-items: center; gap: 11px; font-size: 13.5px; font-weight: 700; }
.pricecard__li .ic {
  width: 24px; height: 24px; border-radius: 8px; background: var(--rose-tint); color: var(--rose);
  display: grid; place-items: center; font-size: 13px; font-weight: 900; flex: none;
}
.pricecard__li .zero { background: #eaf5ee; color: var(--ok); }

.pricecard__float {
  position: absolute; z-index: 3;
  background: #fff; border-radius: 16px; box-shadow: var(--shadow);
  border: 1px solid var(--line-soft);
  padding: 13px 16px; display: flex; align-items: center; gap: 11px;
}
.pricecard__float .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-size: 17px; flex: none; }
.pricecard__float .ttl { font-size: 11px; color: var(--ink-faint); font-weight: 700; }
.pricecard__float .val { font-size: 14px; font-weight: 900; font-family: var(--gothic); }
.pricecard__float--a { top: -48px; left: -22px; }
.pricecard__float--b { bottom: 36px; right: -30px; }
@media (max-width: 480px) { .pricecard__float--a { left: -8px; } .pricecard__float--b { right: -6px; } }

/* ============================================================
   Zero cards (3 zeros)
   ============================================================ */
.zeros { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
@media (max-width: 820px) { .zeros { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.zerocard {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.zerocard__tag { font-family: var(--latin); font-size: 11px; letter-spacing: .28em; color: var(--ink-faint); }
.zerocard__big { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin: 12px 0 8px; }
.zerocard__big .yen { font-size: clamp(56px, 11vw, 84px); color: var(--rose); }
.zerocard__big .unit { font-size: 22px; font-weight: 900; font-family: var(--gothic); color: var(--ink); }
.zerocard__name { font-family: var(--gothic); font-weight: 900; font-size: 19px; }
.zerocard__desc { font-size: 13.5px; color: var(--ink-soft); margin-top: 10px; }
.zerocard__ring { position: absolute; top: -40px; right: -40px; width: 120px; height: 120px; border-radius: 50%; border: 14px solid var(--rose-tint); opacity: .6; }

/* ============================================================
   Mechanism (how billing works)
   ============================================================ */
.mech { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 54px; position: relative; }
@media (max-width: 860px) { .mech { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .mech { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
.mstep {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 18px; text-align: center; position: relative;
}
.mstep__n { font-family: var(--latin); font-size: 12px; letter-spacing: .2em; color: var(--ink-faint); }
.mstep__ic { width: 50px; height: 50px; margin: 12px auto 12px; border-radius: 14px; background: var(--bg-warm); display: grid; place-items: center; font-size: 24px; }
.mstep__t { font-family: var(--gothic); font-weight: 700; font-size: 15px; }
.mstep__d { font-size: 12px; color: var(--ink-soft); margin-top: 6px; }
.mstep--charge { border-color: var(--rose); background: linear-gradient(180deg, #fff, var(--rose-tint)); box-shadow: 0 14px 30px rgba(168,50,76,.16); }
.mstep--charge .mstep__ic { background: var(--rose); color: #fff; }
.mstep--charge .mstep__n { color: var(--rose); font-weight: 700; }
.mstep__flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--rose); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 13px; border-radius: 100px; white-space: nowrap;
}
.mech__arrow { position: absolute; color: var(--line); }

.mech-note {
  margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.mech-note__item {
  display: inline-flex; align-items: center; gap: 9px;
  background: #eaf5ee; color: #1f6e45; border: 1px solid #cde8d8;
  border-radius: 100px; padding: 10px 18px; font-size: 13.5px; font-weight: 700;
}

/* ============================================================
   Simulator
   ============================================================ */
.sim {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; margin-top: 48px;
}
@media (max-width: 860px) { .sim { grid-template-columns: 1fr; } }
.sim__control { padding: clamp(28px, 4vw, 46px); }
.sim__result { padding: clamp(28px, 4vw, 46px); background: var(--plum); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.sim__q { font-family: var(--gothic); font-weight: 700; font-size: 18px; }
.sim__count { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 6px; }
.sim__count .num { font-size: 60px; color: var(--rose); }
.sim__count .unit { font-size: 18px; font-weight: 700; }

.slider { width: 100%; -webkit-appearance: none; appearance: none; height: 8px; border-radius: 100px; background: var(--bg-warm); margin: 20px 0 8px; outline: none; }
.slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 30px; height: 30px; border-radius: 50%; background: #fff; border: 4px solid var(--rose); box-shadow: 0 4px 12px rgba(168,50,76,.4); cursor: pointer; transition: transform .15s; }
.slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
.slider::-moz-range-thumb { width: 30px; height: 30px; border-radius: 50%; background: #fff; border: 4px solid var(--rose); cursor: pointer; }
.slider__scale { display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-faint); font-family: var(--latin); }

.sim__presets { display: flex; gap: 8px; margin-top: 22px; flex-wrap: wrap; }
.sim__preset { border: 1px solid var(--line); border-radius: 100px; padding: 8px 15px; font-size: 13px; font-weight: 700; color: var(--ink-soft); transition: all .15s; }
.sim__preset.is-on, .sim__preset:hover { background: var(--rose); color: #fff; border-color: var(--rose); }

.sim__rlabel { font-family: var(--latin); font-size: 11px; letter-spacing: .26em; color: var(--gold-soft); }
.sim__rbig { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 4px; }
.sim__rbig .yen { font-size: clamp(48px, 8vw, 72px); color: #fff; }
.sim__rbig .unit { font-size: 18px; font-weight: 700; }
.sim__rsub { font-size: 13px; color: rgba(255,255,255,.6); }
.sim__compare { margin-top: 26px; display: grid; gap: 14px; }
.sim__bar-row { font-size: 12.5px; }
.sim__bar-top { display: flex; justify-content: space-between; margin-bottom: 6px; color: rgba(255,255,255,.85); font-weight: 700; }
.sim__bar { height: 12px; border-radius: 100px; background: rgba(255,255,255,.12); overflow: hidden; }
.sim__bar i { display: block; height: 100%; border-radius: 100px; transition: width .4s ease; }
.sim__bar i.now { background: linear-gradient(90deg, var(--rose-bright), var(--gold)); }
.sim__bar i.fixed { background: rgba(255,255,255,.4); }
.sim__save { margin-top: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 14px; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sim__save .t { font-size: 12.5px; color: rgba(255,255,255,.72); font-weight: 700; }
.sim__save .v { font-family: var(--gothic); font-weight: 900; font-size: 24px; color: var(--gold-soft); }
.sim__disc { font-size: 11px; color: var(--ink-faint); margin-top: 18px; }

/* ============================================================
   Comparison table
   ============================================================ */
.cmp { margin-top: 48px; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: #fff; }
.cmp table { width: 100%; border-collapse: collapse; }
.cmp th, .cmp td { padding: 18px 18px; text-align: center; font-size: 14px; border-bottom: 1px solid var(--line-soft); }
.cmp thead th { font-family: var(--gothic); font-weight: 900; font-size: 14px; background: var(--bg-warm); }
.cmp thead th.is-us { background: var(--rose); color: #fff; position: relative; }
.cmp tbody td:first-child, .cmp tbody th:first-child { text-align: left; font-weight: 700; font-size: 13.5px; color: var(--ink-soft); background: #fff; }
.cmp tbody td.is-us { background: var(--rose-tint); font-weight: 900; font-family: var(--gothic); color: var(--rose-deep); }
.cmp tbody tr:last-child td { border-bottom: none; }
.cmp .x { color: var(--ink-faint); }
.cmp .o { color: var(--ink); font-weight: 700; }
.cmp__cap { font-size: 12px; color: var(--ink-faint); margin-top: 14px; text-align: center; }
@media (max-width: 620px) { .cmp th, .cmp td { padding: 13px 10px; font-size: 12.5px; } .cmp tbody td:first-child, .cmp tbody th:first-child { font-size: 12px; } }

/* reasons grid (why our pricing) */
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
@media (max-width: 860px) { .reasons { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reasons { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
.reason { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.reason:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.reason__ic { width: 46px; height: 46px; border-radius: 13px; background: var(--rose-tint); color: var(--rose); display: grid; place-items: center; font-family: var(--latin); font-weight: 600; font-size: 16px; letter-spacing: .04em; }
.reason__t { font-family: var(--gothic); font-weight: 900; font-size: 18px; margin-top: 18px; line-height: 1.4; }
.reason__d { font-size: 13.5px; color: var(--ink-soft); margin-top: 9px; line-height: 1.8; }

/* ============================================================
   Campaign / countdown
   ============================================================ */
.camp { position: relative; overflow: hidden; }
.camp__bg { position: absolute; inset: 0; background: radial-gradient(70% 80% at 50% 0%, rgba(181,137,79,.18), transparent 70%); pointer-events: none; }
.camp__inner { position: relative; z-index: 1; text-align: center; }
.camp__price { display: flex; align-items: baseline; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.camp__was { font-size: 26px; font-weight: 700; color: rgba(255,255,255,.5); text-decoration: line-through; font-family: var(--gothic); }
.camp__arrow { color: var(--gold-soft); font-size: 26px; }
.camp__now { display: flex; align-items: baseline; gap: 6px; }
.camp__now .yen { font-size: clamp(64px, 13vw, 120px); color: #fff; }
.camp__now .unit { font-size: 22px; font-weight: 700; }
.camp__per { color: rgba(255,255,255,.62); font-size: 14px; margin-top: 8px; }

.countdown { display: flex; gap: 12px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.cdcell { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: 16px; padding: 18px 10px; min-width: 88px; }
.cdcell .n { font-family: var(--gothic); font-weight: 900; font-size: clamp(30px, 6vw, 46px); line-height: 1; color: var(--gold-soft); font-variant-numeric: tabular-nums; }
.cdcell .l { font-family: var(--latin); font-size: 11px; letter-spacing: .2em; color: rgba(255,255,255,.6); margin-top: 8px; }
.camp__deadline { margin-top: 26px; font-size: 14px; color: rgba(255,255,255,.8); font-weight: 700; }

/* ============================================================
   Flow
   ============================================================ */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 50px; }
@media (max-width: 880px) { .flow { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .flow { grid-template-columns: 1fr; } }
.fstep { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; position: relative; }
.fstep__n { font-family: var(--gothic); font-weight: 900; font-size: 40px; color: var(--rose-tint); line-height: 1; }
.fstep__t { font-family: var(--gothic); font-weight: 700; font-size: 17px; margin-top: 8px; }
.fstep__d { font-size: 13px; color: var(--ink-soft); margin-top: 10px; }
.fstep__time { display: inline-block; margin-top: 14px; font-size: 11.5px; font-weight: 700; color: var(--rose); background: var(--rose-tint); padding: 5px 12px; border-radius: 100px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { margin-top: 44px; display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: border-color .2s; }
.faq__item.is-open { border-color: var(--rose); box-shadow: var(--shadow-sm); }
.faq__q { width: 100%; display: flex; align-items: center; gap: 14px; padding: 21px 24px; text-align: left; font-family: var(--gothic); font-weight: 700; font-size: 15.5px; }
.faq__q .qmark { color: var(--rose); font-family: var(--mincho); font-weight: 700; font-size: 18px; flex: none; }
.faq__q .plus { margin-left: auto; flex: none; width: 22px; height: 22px; position: relative; transition: transform .25s; }
.faq__q .plus::before, .faq__q .plus::after { content: ""; position: absolute; background: var(--rose); border-radius: 2px; }
.faq__q .plus::before { left: 0; right: 0; top: 50%; height: 2px; transform: translateY(-50%); }
.faq__q .plus::after { top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); transition: opacity .25s; }
.faq__item.is-open .plus::after { opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a > div { padding: 0 24px 22px; color: var(--ink-soft); font-size: 14px; }

/* ============================================================
   Final CTA
   ============================================================ */
.final { position: relative; overflow: hidden; text-align: center; }
.final__bg { position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 30%, rgba(200,69,95,.16), transparent 70%); pointer-events: none; }
.final__inner { position: relative; z-index: 1; }
.final__chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.final__chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: 100px; padding: 10px 18px; font-size: 13.5px; font-weight: 700; }
.final__chip .check { color: var(--gold-soft); }
.final__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 38px; }
.lp2-root .btn--gold { background: linear-gradient(135deg, #d8b478, var(--gold)); color: var(--plum-deep); box-shadow: 0 12px 26px rgba(181,137,79,.36); }
.lp2-root .btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(181,137,79,.46); }
.lp2-root .btn--outline-light { border: 1px solid rgba(255,255,255,.3); color: #fff; }
.lp2-root .btn--outline-light:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--plum-deep); color: rgba(255,255,255,.6); padding-block: 56px 30px; }
.footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; }
.footer__desc { max-width: 26em; font-size: 13px; margin-top: 14px; line-height: 1.9; }
.footer__links { display: flex; gap: 22px; font-size: 13px; flex-wrap: wrap; }
.footer__links a:hover { color: #fff; }
.footer__bar { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: 12px; }
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ============================================================
   Mobile sticky CTA bar
   ============================================================ */
.mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: none; align-items: center; gap: 12px;
  box-shadow: 0 -8px 24px rgba(74,30,42,.08);
}
.mobilebar__price { line-height: 1.2; flex: none; }
.mobilebar__price .s { font-size: 10.5px; color: var(--ink-faint); font-weight: 700; }
.mobilebar__price .b { font-family: var(--gothic); font-weight: 900; font-size: 16px; color: var(--rose); }
.mobilebar .btn { flex: 1; padding: 14px; font-size: 15px; }
@media (max-width: 720px) { .mobilebar { display: flex; } .lp2-root { padding-bottom: 76px; } }

/* ============================================================
   Reveal animation
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* section heading block */
.sec-head { max-width: 760px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }

/* ============================================================
   Management section (fully equipped)
   ============================================================ */
.manage { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(28px, 4.5vw, 58px); align-items: start; margin-top: 52px; }
@media (max-width: 940px) { .manage { grid-template-columns: 1fr; gap: 40px; } }

/* console mock */
.console { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.console__bar { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-bottom: 1px solid var(--line-soft); background: var(--bg-warm); }
.console__dots { display: flex; gap: 6px; }
.console__dots i { width: 10px; height: 10px; border-radius: 50%; background: #d9c8c2; display: block; }
.console__url { font-family: var(--latin); font-size: 11.5px; color: var(--ink-faint); background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 4px 14px; }
.console__body { display: grid; grid-template-columns: 168px 1fr; min-height: 320px; }
@media (max-width: 480px) { .console__body { grid-template-columns: 1fr; } }
.console__side { border-right: 1px solid var(--line-soft); padding: 16px 12px; background: #fdfafa; }
@media (max-width: 480px) { .console__side { display: none; } }
.console__brand { display: flex; align-items: center; gap: 8px; padding: 0 6px 14px; font-family: var(--gothic); font-weight: 700; font-size: 13px; }
.console__brand .m { width: 24px; height: 24px; border-radius: 7px; background: linear-gradient(140deg, var(--rose-bright), var(--rose-deep)); color: #fff; display: grid; place-items: center; font-family: var(--mincho); font-size: 13px; }
.console__nav { display: grid; gap: 3px; }
.console__nav a { display: flex; align-items: center; gap: 9px; padding: 9px 11px; border-radius: 9px; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); }
.console__nav a .gl { width: 16px; text-align: center; }
.console__nav a.is-active { background: var(--rose-tint); color: var(--rose-deep); }
.console__main { padding: 20px 22px; }
.console__h { display: flex; align-items: center; justify-content: space-between; }
.console__h h4 { font-family: var(--gothic); font-weight: 900; font-size: 16px; }
.console__chip { font-size: 11px; font-weight: 700; color: var(--ink-soft); background: var(--bg-warm); border-radius: 100px; padding: 4px 11px; }
.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 16px 0 18px; }
.kpi { border: 1px solid var(--line-soft); border-radius: 12px; padding: 13px 12px; }
.kpi .l { font-size: 10.5px; color: var(--ink-faint); font-weight: 700; }
.kpi .v { font-family: var(--gothic); font-weight: 900; font-size: 26px; line-height: 1.1; margin-top: 4px; }
.kpi .v small { font-size: 12px; color: var(--ok); font-weight: 700; margin-left: 4px; }
.console__sub { font-size: 11.5px; color: var(--ink-faint); font-weight: 700; letter-spacing: .04em; margin-bottom: 8px; }
.booking-list { display: grid; gap: 7px; }
.booking { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line-soft); border-radius: 11px; padding: 10px 13px; font-size: 12.5px; }
.booking .time { font-family: var(--gothic); font-weight: 900; font-size: 14px; width: 48px; }
.booking .course { color: var(--ink-soft); font-weight: 700; flex: 1; }
.booking .badge { font-size: 10.5px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.booking .badge.ok { background: #eaf5ee; color: var(--ok); }
.booking .badge.wait { background: #fff3e6; color: #b5742a; }

/* feature list */
.manage__free { display: inline-flex; align-items: center; gap: 8px; background: #eaf5ee; color: #1f6e45; border: 1px solid #cde8d8; border-radius: 100px; padding: 8px 16px; font-size: 13px; font-weight: 700; margin-bottom: 20px; }
.mfeat-list { display: grid; gap: 14px; margin-top: 26px; }
.mfeat { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.mfeat:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.mfeat__ic { width: 46px; height: 46px; border-radius: 13px; background: var(--rose-tint); color: var(--rose); display: grid; place-items: center; flex: none; }
.mfeat__ic svg { width: 23px; height: 23px; }
.mfeat__t { font-family: var(--gothic); font-weight: 900; font-size: 16px; }
.mfeat__d { font-size: 13px; color: var(--ink-soft); margin-top: 5px; line-height: 1.75; }

/* ============================================================
   Plans
   ============================================================ */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 50px; align-items: stretch; }
@media (max-width: 1000px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .plans { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
.plan { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 24px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.plan--featured { border: 2px solid var(--rose); box-shadow: 0 24px 50px rgba(168,50,76,.18); }
.plan__ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--rose); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 17px; border-radius: 100px; white-space: nowrap; box-shadow: 0 6px 14px rgba(168,50,76,.3); }
.plan__label { font-family: var(--latin); font-size: 11px; letter-spacing: .2em; color: var(--ink-faint); }
.plan__name { font-family: var(--gothic); font-weight: 900; font-size: 23px; margin-top: 3px; }
.plan__was { color: var(--ink-faint); text-decoration: line-through; font-size: 14px; font-weight: 700; font-family: var(--gothic); display: block; margin-top: 16px; min-height: 21px; }
.plan__price { display: flex; align-items: baseline; gap: 3px; }
.plan__price .yen { font-size: 42px; color: var(--rose); }
.plan__price .unit { font-size: 14px; font-weight: 700; color: var(--ink); }
.plan__sub { font-size: 12px; color: var(--ink-soft); margin-top: 7px; min-height: 32px; line-height: 1.5; }
.plan__init { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--ok); margin-top: 4px; }
.plan__cta { margin-top: 18px; }
.plan__cta .btn { width: 100%; padding: 13px; font-size: 14px; }
.plan__feats { list-style: none; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line-soft); display: grid; gap: 10px; }
.plan__feats li { font-size: 13px; display: flex; gap: 9px; align-items: flex-start; font-weight: 700; }
.plan__feats li .ck { color: var(--rose); font-weight: 900; flex: none; }

/* fee bar (pay per booking, common) */
.fee { margin-top: 22px; background: var(--plum); color: #fff; border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 42px); display: grid; grid-template-columns: 1.25fr .75fr; gap: 30px; align-items: center; }
@media (max-width: 760px) { .fee { grid-template-columns: 1fr; gap: 20px; } }
.fee__tag { font-family: var(--latin); font-size: 11px; letter-spacing: .22em; color: var(--gold-soft); }
.fee__t { font-family: var(--gothic); font-weight: 900; font-size: clamp(20px, 2.4vw, 24px); margin-top: 9px; }
.fee__d { font-size: 13.5px; color: rgba(255,255,255,.7); margin-top: 11px; line-height: 1.8; }
.fee__price { text-align: right; }
@media (max-width: 760px) { .fee__price { text-align: left; } }
.fee__was { font-size: 18px; color: rgba(255,255,255,.5); text-decoration: line-through; font-weight: 700; font-family: var(--gothic); }
.fee__now { display: flex; align-items: baseline; gap: 5px; justify-content: flex-end; }
@media (max-width: 760px) { .fee__now { justify-content: flex-start; } }
.fee__now .yen { font-size: clamp(46px, 7vw, 66px); color: #fff; }
.fee__now .unit { font-size: 16px; font-weight: 700; }
.fee__cap { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 8px; }
.plans__disc { font-size: 11.5px; color: var(--ink-faint); margin-top: 20px; line-height: 1.9; }

/* pricing — included / options cards */
.pricing__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
@media (max-width: 760px) { .pricing__cols { grid-template-columns: 1fr; } }
.pcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 28px; box-shadow: var(--shadow-sm); }
.pcard__tag { display: flex; align-items: center; gap: 10px; font-family: var(--gothic); font-weight: 900; font-size: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line-soft); }
.pcard__free { font-family: var(--sans); font-size: 11px; font-weight: 700; color: #1f6e45; background: #eaf5ee; border: 1px solid #cde8d8; border-radius: 100px; padding: 4px 11px; }
.pcard__opt { font-family: var(--sans); font-size: 11px; font-weight: 700; color: var(--ink-soft); background: var(--bg-warm); border-radius: 100px; padding: 4px 11px; }
.inc-list { list-style: none; display: grid; gap: 13px; margin-top: 18px; }
.inc-list li { display: flex; gap: 11px; font-size: 14px; align-items: flex-start; }
.inc-list li .ck { color: var(--rose); font-weight: 900; flex: none; }
.inc-list li b { font-weight: 900; font-family: var(--gothic); }
.opt-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.opt-row:first-of-type { padding-top: 20px; }
.opt-row__l strong { display: block; font-family: var(--gothic); font-weight: 900; font-size: 15.5px; }
.opt-row__l span { font-size: 12.5px; color: var(--ink-soft); }
.opt-row__p { text-align: right; white-space: nowrap; }
.opt-row__p .yen { font-family: var(--gothic); font-weight: 900; font-size: 27px; color: var(--rose); }
.opt-row__p .u { font-size: 13px; font-weight: 700; margin-left: 3px; }
.opt-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 16px; }

/* campaign limited slots */
.camp__limit { max-width: 420px; margin: 32px auto 0; }
.camp__limit-top { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.82); margin-bottom: 11px; }
.camp__limit-top .v { font-family: var(--gothic); font-weight: 900; font-size: 24px; color: var(--gold-soft); }
.camp__limit-top .v small { font-size: 14px; color: rgba(255,255,255,.6); font-weight: 700; }

/* ============================================================
   Founder
   ============================================================ */
.founder { position: relative; overflow: hidden; }
.founder__bg { position: absolute; inset: 0; background: radial-gradient(58% 70% at 82% 8%, rgba(181,137,79,.18), transparent 70%); pointer-events: none; }
.founder__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .82fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
@media (max-width: 880px) { .founder__grid { grid-template-columns: 1fr; gap: 36px; } }
.founder__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.founder__chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: 100px; padding: 10px 16px; font-size: 13px; font-weight: 700; }
.founder__chip .ck { color: var(--gold-soft); }
.founder__panel { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); padding: clamp(26px, 3.5vw, 34px); }
.founder__plabel { font-family: var(--latin); font-size: 11px; letter-spacing: .22em; color: var(--gold-soft); }
.founder__gtop { display: flex; justify-content: space-between; align-items: baseline; margin-top: 14px; }
.founder__gtop .l { font-size: 13px; color: rgba(255,255,255,.7); font-weight: 700; }
.founder__gtop .v { font-family: var(--gothic); font-weight: 900; font-size: 32px; color: var(--gold-soft); line-height: 1; }
.founder__gtop .v small { font-size: 15px; color: rgba(255,255,255,.55); font-weight: 700; }
.founder__gauge { height: 14px; border-radius: 100px; background: rgba(255,255,255,.12); overflow: hidden; margin-top: 16px; }
.founder__gauge i { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--gold), #d8b478); }
.founder__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
