/* =========================================================
   サキミエ — styles.css
   温かみ・安心系 / 医師運営の信頼感
   ========================================================= */

:root {
  --bg:        #fffaf3;   /* クリーム */
  --bg-warm:   #fff3e4;   /* 淡いオレンジ */
  --bg-soft:   #f3f7f2;   /* 淡いグリーン */
  --ink:       #3d3a34;   /* 文字(やわらかい黒) */
  --ink-soft:  #6f6a61;   /* 補助文字 */
  --accent:    #f4a259;   /* メイン:温かいオレンジ */
  --accent-dk: #e3893d;
  --accent-2:  #6bbf8a;   /* サブ:やさしいグリーン */
  --accent-2dk:#4fa472;
  --line:      #36c34a;   /* LINEグリーン */
  --card:      #ffffff;
  --shadow:    0 10px 30px rgba(180, 140, 90, 0.12);
  --shadow-sm: 0 4px 14px rgba(180, 140, 90, 0.10);
  --radius:    18px;
  --radius-lg: 28px;
  --maxw:      1080px;
  --font:      "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-round:"Zen Maru Gothic", var(--font);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

img, svg { max-width: 100%; }

a { color: inherit; }

.container {
  width: min(92%, var(--maxw));
  margin-inline: auto;
}

.pc-only { display: inline; }
.sp-only { display: none; }

.mark {
  background: linear-gradient(transparent 62%, #ffe1b0 62%);
  padding: 0 .1em;
  font-weight: 900;
}

/* 日本語の改行制御:文節の途中で泣き別れしないようにする */
.nobr { display: inline-block; }            /* このまとまりは途中で改行しない */
.hero-title, .section-title, .worries-bridge,
.hero-lead, .essence-question, .local-title,
.essence-highlight, .pillar-title, .step-title {
  word-break: auto-phrase;                  /* 対応ブラウザでは文節単位で改行 */
  overflow-wrap: break-word;                /* 非対応でもはみ出しは防ぐ */
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-round);
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  line-height: 1.3;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #fff;
  box-shadow: 0 8px 20px rgba(227, 137, 61, .35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(227, 137, 61, .45); }
.btn-line { background: var(--line); color: #fff; box-shadow: 0 8px 20px rgba(54, 195, 74, .3); }
.btn-line:hover { transform: translateY(-2px); }
.btn-outline {
  background: #fff;
  color: var(--accent-dk);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--bg-warm); }
.btn-sm { padding: .6em 1.2em; font-size: .92rem; }
.btn-lg { padding: 1em 1.9em; font-size: 1.08rem; }
.btn-block { width: 100%; }
.btn-sub { font-size: .72em; font-weight: 700; opacity: .85; margin-right: .2em; }
.line-icon { flex-shrink: 0; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 243, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f0e6d6;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 68px;
}
.logo { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--ink); }
.logo-mark { color: var(--accent); display: inline-flex; }
.logo-text {
  font-family: var(--font-round);
  font-weight: 900;
  font-size: 1.32rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-text small { font-size: .58rem; font-weight: 500; color: var(--ink-soft); letter-spacing: .04em; }
.logo-text.light { color: #fff; }
.logo-text.light small { color: rgba(255,255,255,.7); }

.nav { margin-left: auto; display: flex; gap: 1.5rem; }
.nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-soft);
  transition: color .15s;
  position: relative;
}
.nav a:hover { color: var(--accent-dk); }
.header-cta { margin-left: .3rem; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 6px;
}
.nav-toggle span { display: block; height: 3px; width: 26px; background: var(--ink); border-radius: 3px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 400px at 80% -10%, #ffe9cf 0%, transparent 60%),
    radial-gradient(900px 500px at 0% 30%, #eaf6ee 0%, transparent 55%),
    var(--bg);
  padding: clamp(2.5rem, 6vw, 5rem) 0 5.5rem;
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.5rem; align-items: center; }
.hero-badge {
  display: inline-block;
  background: #fff;
  color: var(--accent-dk);
  font-weight: 700;
  font-size: .85rem;
  padding: .4em 1.1em;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin: 0 0 1.2rem;
}
.hero-title {
  font-family: var(--font-round);
  font-weight: 900;
  font-size: clamp(2rem, 5.2vw, 3.2rem);
  line-height: 1.3;
  margin: 0 0 1.2rem;
  letter-spacing: .01em;
}
.hero-lead { font-size: 1.05rem; color: var(--ink); margin: 0 0 1.8rem; max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.5rem; }
.hero-points { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; }
.hero-points li { font-weight: 700; font-size: .92rem; color: var(--accent-2dk); }

.hero-visual { display: flex; justify-content: center; }
.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
  max-width: 340px;
  transform: rotate(-1.5deg);
}
.hero-card-row { display: flex; align-items: center; gap: .9rem; }
.hero-card-icon {
  font-size: 1.5rem;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  flex-shrink: 0;
}
.hero-card-icon.doctor { background: #ffeede; }
.hero-card-icon.check  { background: #e5f5ec; }
.hero-card-icon.star   { background: #fff3d6; }
.hero-card-title { margin: 0; font-weight: 700; font-size: 1rem; }
.hero-card-text { margin: 0; font-size: .82rem; color: var(--ink-soft); line-height: 1.5; }

.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.hero-wave svg { width: 100%; height: 60px; display: block; }

/* ===== Section base ===== */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-eyebrow {
  text-align: center;
  color: var(--accent-dk);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  margin: 0 0 .6rem;
}
.section-eyebrow.light { color: var(--accent); }
.section-eyebrow.center, .section-title.center, .section-desc.center { text-align: center; }
.section-title {
  font-family: var(--font-round);
  font-weight: 900;
  font-size: clamp(1.5rem, 3.6vw, 2.2rem);
  line-height: 1.45;
  text-align: center;
  margin: 0 0 1rem;
}
.section-desc {
  text-align: center;
  color: var(--ink-soft);
  max-width: 40em;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

/* ===== お悩み ===== */
.worries { background: var(--bg-soft); }
.worry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 2rem 0 1.5rem; }
.worry-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  box-shadow: var(--shadow-sm);
  font-weight: 500;
}
.worry-emoji { font-size: 1.6rem; flex-shrink: 0; }
.worry-card p { margin: 0; }
.worries-bridge { text-align: center; font-family: var(--font-round); font-weight: 700; font-size: 1.25rem; margin: 1.5rem 0 0; }
.worries-bridge strong { color: var(--accent-dk); }

/* ===== 成績の本質(目玉) ===== */
.essence {
  background:
    radial-gradient(1000px 500px at 100% 0%, #fff0dd 0%, transparent 55%),
    linear-gradient(180deg, #fffdf8, #fff6ea);
}
.essence-inner { max-width: 760px; }
.essence-head { margin-bottom: 2.2rem; }
.essence-message { font-size: 1.08rem; }
.essence-message > p { margin: 0 0 1.3rem; }
.essence-message strong { font-weight: 700; color: var(--ink); }

.essence-subhead {
  font-family: var(--font-round);
  font-weight: 900;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  margin: 2.6rem 0 1.1rem;
  padding-left: .8rem;
  border-left: 6px solid var(--accent);
  line-height: 1.5;
}

/* ハイライト(流し読みでも拾える目立つ囲み) */
.essence-highlight {
  background: #fff;
  border: 2px solid #ffd9a6;
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(227,137,61,.14);
  padding: 1.5rem 1.6rem;
  margin: 1.8rem 0 !important;
  text-align: center;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  line-height: 1.6;
  position: relative;
}
.essence-highlight .hl-strong {
  color: var(--accent-dk);
  font-weight: 900;
  font-size: 1.18em;
  background: linear-gradient(transparent 60%, #ffe1b0 60%);
}
.essence-highlight.finale {
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  border: none;
  color: #fff;
  box-shadow: 0 14px 30px rgba(227,137,61,.4);
  padding: 2rem 1.6rem;
}
.essence-highlight.finale .hl-strong { color: #fff; background: none; }
.essence-highlight.finale .hl-sub { font-size: .8em; font-weight: 700; opacity: .92; }

.essence-question {
  text-align: center;
  font-family: var(--font-round);
  font-weight: 900;
  font-size: clamp(1.3rem, 3.6vw, 1.9rem);
  line-height: 1.55;
  color: var(--accent-2dk);
  background: #eaf6ee;
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  margin: 1.8rem 0 !important;
}

.essence-sign { text-align: right; color: var(--ink-soft); font-weight: 700; margin: 2rem 0 0; }
.essence-cta { text-align: center; margin-top: 2.2rem; }

/* ===== 選ばれる理由 ===== */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 1rem; }
.pillar {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.9rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.pillar-no {
  position: absolute;
  top: .6rem; right: 1.2rem;
  font-family: var(--font-round);
  font-weight: 900;
  font-size: 3.4rem;
  color: #f6ede0;
  line-height: 1;
}
.pillar-icon { font-size: 2.2rem; margin-bottom: .6rem; }
.pillar-title { font-family: var(--font-round); font-weight: 900; font-size: 1.35rem; margin: 0 0 .8rem; }
.pillar-text { margin: 0 0 1rem; color: var(--ink); }
.pillar-note { font-size: .8rem; color: var(--ink-soft); margin: 0; }
.pillar-link { color: var(--accent-dk); font-weight: 700; text-decoration: none; }
.pillar-link:hover { text-decoration: underline; }

/* ===== 選抜プロセス ===== */
.selection { background: var(--bg-warm); }
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  counter-reset: step;
}
.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.6rem 1.3rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
}
.step-num { font-family: var(--font-round); font-weight: 900; font-size: .82rem; color: var(--accent-dk); letter-spacing: .06em; margin-bottom: .5rem; }
.step-icon { font-size: 2rem; margin-bottom: .5rem; }
.step-title { font-family: var(--font-round); font-weight: 700; font-size: 1.05rem; margin: 0 0 .6rem; min-height: 2.6em; display: flex; align-items: center; justify-content: center; }
.step-text { font-size: .86rem; color: var(--ink-soft); margin: 0; line-height: 1.6; }
.step-final { background: linear-gradient(160deg, #fff, #fff3e4); border: 2px solid var(--accent); }
.step-final .step-num { color: var(--accent-dk); }

/* ===== 対応範囲 ===== */
.coverage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.coverage-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--accent-2);
}
.coverage-card h3 { font-family: var(--font-round); font-weight: 900; font-size: 1.15rem; margin: 0 0 1rem; }
.coverage-card ul { margin: 0; padding-left: 1.1rem; }
.coverage-card li { margin-bottom: .5rem; }

/* ===== 料金 ===== */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 820px; margin: 0 auto 1.2rem; }
.price-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
}
.price-card.featured { border: 2px solid var(--accent); box-shadow: var(--shadow); transform: translateY(-6px); }
.price-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-family: var(--font-round); font-weight: 700; font-size: .78rem;
  padding: .25em 1em; border-radius: 999px;
}
.price-grade { font-family: var(--font-round); font-weight: 700; font-size: 1.1rem; margin: 0 0 .6rem; color: var(--ink-soft); }
.price-amount { font-family: var(--font-round); font-weight: 900; font-size: 2.2rem; color: var(--accent-dk); margin: 0 0 .4rem; line-height: 1; }
.price-amount .yen { font-size: 1.1rem; vertical-align: .15em; margin-right: .05em; }
.price-amount .unit { font-size: .78rem; color: var(--ink-soft); font-weight: 700; margin-left: .2em; }
.price-monthly { font-size: .85rem; color: var(--ink-soft); margin: 0; }
.price-meta { text-align: center; font-size: .82rem; color: var(--ink-soft); max-width: 44em; margin: 0 auto 2rem; }

.price-special {
  background: linear-gradient(135deg, #fff7ec, #fdeede);
  border: 2px dashed var(--accent);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.price-special-title { font-family: var(--font-round); font-weight: 900; font-size: 1.2rem; margin: 0 0 .4rem; color: var(--accent-dk); }
.price-special-text p { margin: 0; }
.price-special .btn { white-space: nowrap; }

/* ===== 利用の流れ ===== */
.flow { background: var(--bg-soft); }
.flow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.flow-step {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem 1.3rem 1.4rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
}
.flow-no {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  margin: 0 auto .8rem;
  background: var(--accent-2);
  color: #fff;
  font-family: var(--font-round); font-weight: 900; font-size: 1.3rem;
  border-radius: 50%;
}
.flow-step h3 { font-family: var(--font-round); font-weight: 700; font-size: 1.05rem; margin: 0 0 .5rem; }
.flow-step p { font-size: .85rem; color: var(--ink-soft); margin: 0; }

/* ===== 地域 ===== */
.local-inner {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-2dk));
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow);
}
.local-badge { display: inline-block; background: rgba(255,255,255,.22); padding: .35em 1.1em; border-radius: 999px; font-weight: 700; font-size: .85rem; margin-bottom: 1rem; }
.local-title { font-family: var(--font-round); font-weight: 900; font-size: clamp(1.4rem, 3.4vw, 2rem); margin: 0 0 1rem; }
.local-text { max-width: 38em; margin: 0 auto 1.8rem; opacity: .96; }
.local .btn-primary { background: #fff; color: var(--accent-2dk); }
.local .btn-primary:hover { background: #fff; }
.local-note { margin: 1.2rem 0 0; font-size: .82rem; opacity: .9; }
.local-note a { color: #fff; font-weight: 700; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 3rem 1.2rem 1.4rem;
  font-weight: 700;
  position: relative;
  font-family: var(--font-round);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--accent); font-weight: 400; transition: transform .2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { margin: 0; padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }

/* ===== 問い合わせ ===== */
.contact { background: var(--bg-warm); }
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 1.5rem; max-width: 900px; margin: 0 auto; align-items: start; }
.contact-h3 { font-family: var(--font-round); font-weight: 900; font-size: 1.2rem; margin: 0 0 1.2rem; }
.contact-form-wrap, .contact-line {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.9rem;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 1.1rem; }
.form-row label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: .4rem; }
.req { background: var(--accent); color: #fff; font-size: .68rem; padding: .1em .6em; border-radius: 4px; margin-left: .3em; vertical-align: .1em; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: .8em .9em;
  border: 1.5px solid #ecdfca;
  border-radius: 12px;
  font-family: inherit;
  font-size: .98rem;
  background: #fffdf9;
  transition: border-color .15s, box-shadow .15s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(244,162,89,.18);
}
.form-row textarea { resize: vertical; }
.form-note { text-align: center; margin: 1rem 0 0; font-weight: 700; min-height: 1.2em; }
.form-note.ok { color: var(--accent-2dk); }
.form-note.err { color: #d9663f; }
.contact-line-text { color: var(--ink-soft); margin: 0 0 1.5rem; }
.contact-line-note { font-size: .8rem; color: var(--ink-soft); margin: 1rem 0 0; text-align: center; }

/* ===== Footer ===== */
.site-footer { background: #36322c; color: #fff; padding: 3rem 0 1.5rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.footer-tagline { color: rgba(255,255,255,.65); font-size: .88rem; margin: .8rem 0 0; max-width: 24em; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; align-content: flex-start; }
.footer-nav a { color: rgba(255,255,255,.8); text-decoration: none; font-size: .9rem; }
.footer-nav a:hover { color: #fff; }
.footer-copy { text-align: center; color: rgba(255,255,255,.5); font-size: .8rem; margin: 0; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem; }

/* ===== 追従CTA(モバイル) ===== */
.floating-cta {
  display: none;
  position: fixed;
  left: 50%; bottom: 14px; transform: translateX(-50%);
  z-index: 60;
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #fff;
  font-family: var(--font-round);
  font-weight: 700;
  text-decoration: none;
  padding: .9em 1.8em;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(227,137,61,.5);
  width: calc(100% - 28px);
  max-width: 420px;
  text-align: center;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { order: -1; }
  .hero-card { transform: none; max-width: 100%; flex-direction: row; flex-wrap: wrap; }
  .hero-card-row { flex: 1 1 100%; }
  .pillars { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; }
  .price-card.featured { transform: none; }
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .price-special { flex-direction: column; text-align: center; align-items: stretch; }
}

@media (max-width: 720px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }

  .nav {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    background: #fffaf3;
    padding: 1rem 6%;
    gap: 0;
    border-bottom: 1px solid #f0e6d6;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform .28s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .9rem 0; border-bottom: 1px solid #f0e6d6; font-size: 1rem; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .worry-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }

  .floating-cta { display: block; }
  body { padding-bottom: 76px; }
}

@media (max-width: 420px) {
  .steps { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr; }
}

/* アクセシビリティ:動きを減らす設定 */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .free-badge { transform: rotate(-6deg); }
}

/* =========================================================
   v2:端的・視覚重視のコンポーネント
   ========================================================= */
.mark-red {
  color: #e2563d;
  font-weight: 900;
  background: linear-gradient(transparent 58%, #ffd5c8 58%);
  padding: 0 .08em;
}
.section-lead { text-align: center; color: var(--ink-soft); font-weight: 700; margin: -.4rem 0 1.8rem; }

/* Hero punch + free badge */
.hero-punch {
  font-family: var(--font-round);
  font-weight: 900;
  font-size: clamp(1.2rem, 3.8vw, 1.8rem);
  line-height: 1.5;
  margin: .2rem 0 1.5rem;
}
.chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.chips li { background: #fff; border: 1.5px solid #ffd9a6; color: var(--accent-dk); font-weight: 700; font-size: .8rem; padding: .35em .9em; border-radius: 999px; }

.free-badge {
  position: relative;
  width: min(280px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 32%, #ffc078, var(--accent-dk));
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 0 1rem;
  box-shadow: 0 18px 44px rgba(227,137,61,.45);
  border: 6px dashed rgba(255,255,255,.65);
  animation: badge-pop 1.8s ease-in-out infinite;
}
/* 注意を引く:じんわり拍動 + 広がるリング */
@keyframes badge-pop {
  0%, 100% { transform: rotate(-6deg) scale(1); }
  50%      { transform: rotate(-6deg) scale(1.05); }
}
.free-badge::before {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 3px solid rgba(244,162,89,.6);
  animation: badge-ring 1.8s ease-out infinite;
  pointer-events: none;
}
@keyframes badge-ring {
  0%   { transform: scale(1);    opacity: .6; }
  100% { transform: scale(1.3);  opacity: 0; }
}
.free-badge-top { font-weight: 700; font-size: .9rem; opacity: .95; }
.free-badge-main { font-family: var(--font-round); font-weight: 900; font-size: 1.1rem; line-height: 1.3; margin-top: .15rem; }
.free-badge-zero { font-family: var(--font-round); font-weight: 900; font-size: 4.6rem; line-height: .85; margin: .05rem 0; }
.free-badge-zero small { font-size: 1.6rem; }
.free-badge-sub { font-weight: 700; font-size: .9rem; }

/* 3つの理由 */
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.reason-card { background: #fff; border-radius: var(--radius-lg); padding: 1.9rem 1.2rem; text-align: center; box-shadow: var(--shadow); }
.reason-ico { font-size: 2.6rem; line-height: 1; }
.reason-card h3 { font-family: var(--font-round); font-weight: 900; font-size: 1.2rem; margin: .6rem 0 .4rem; }
.reason-card p { margin: 0; color: var(--ink-soft); font-weight: 700; }
.reason-card .hl { color: #e2563d; background: linear-gradient(transparent 58%, #ffd5c8 58%); }

/* 比較テーブル */
.compare-table { max-width: 600px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.compare-row { display: grid; grid-template-columns: 1.05fr 1fr 1fr; align-items: center; border-bottom: 1px solid #f0e9dd; }
.compare-row:last-child { border-bottom: none; }
.compare-row > div { padding: .95rem .5rem; text-align: center; font-weight: 700; }
.c-label { text-align: left !important; padding-left: 1.1rem !important; color: var(--ink-soft); font-size: .88rem; }
.compare-head { background: #36322c; color: #fff; }
.compare-head > div { font-family: var(--font-round); font-weight: 900; font-size: .95rem; }
.compare-head .c-us { background: var(--accent); }
.c-us { background: #fff7ec; }
.compare-row .x { color: #a89f95; }
.compare-row .x::before { content: "✕ "; color: #cf6b53; font-weight: 900; }
.compare-row .o { color: var(--accent-2dk); font-weight: 900; }
.compare-row .o::before { content: "◯ "; }

/* 本質:目覚まし3カット */
.meta3 { display: flex; align-items: stretch; justify-content: center; gap: .6rem; margin: 1.6rem 0; }
.meta3-item { flex: 1; background: #fff; border-radius: var(--radius); padding: 1.3rem .8rem; text-align: center; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: center; }
.meta3-item.bad { border: 2px solid #f0c4b8; }
.meta3-item.good { border: 2px solid var(--accent-2); }
.meta3-emoji { font-size: 2rem; display: block; margin-bottom: .4rem; }
.meta3-item p { margin: 0; font-weight: 700; font-size: .85rem; line-height: 1.45; }
.meta3-arrow { display: flex; align-items: center; color: var(--accent); font-weight: 900; font-size: 1.4rem; }

.essence-mini { text-align: center; color: var(--ink); font-size: 1rem; margin: 1.3rem 0; line-height: 1.8; }

/* ヒーロー注記 */
.hero-note { font-size: .82rem; color: var(--ink-soft); margin: .6rem 0 1.2rem; }

/* ヒーロー:地域キャンペーンへの誘導ヒント(2行) */
.hero-local-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  margin: 0 0 1.2rem;
  padding: .65em 1.1em;
  font-size: .9rem; font-weight: 700;
  line-height: 1.45;
  text-align: center;
  color: var(--accent-dk);
  background: var(--bg-warm);
  border: 1px solid #f0d9b3;
  border-radius: 14px;
  text-decoration: none;
}
.hero-local-hint .arrow { font-size: .84em; font-weight: 700; opacity: .8; }
.hero-local-hint:hover { background: #ffe9cf; }

/* ヒーロー:LINEボタン以降(PCは見出しに左端を合わせる) */
.hero-cta-group { text-align: left; }
.hero-cta-group .hero-actions { justify-content: flex-start; }
.hero-cta-group .chips { justify-content: flex-start; margin-top: 1.6rem; }
.hero-cta-group .campaign-notice-wrap { text-align: left; }

/* スマホ(1カラム時)はヒーロー全体を中央寄せ */
@media (max-width: 860px) {
  .hero-copy { text-align: center; }
  .hero-cta-group { text-align: center; }
  .hero-cta-group .hero-actions { justify-content: center; }
  .hero-cta-group .chips { justify-content: center; }
  .hero-cta-group .campaign-notice-wrap { text-align: center; }
}

/* LINE申し込みカード(問い合わせ) */
.line-cta-card { max-width: 560px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); padding: 2rem 1.6rem; box-shadow: var(--shadow); text-align: center; }
.line-steps { display: flex; align-items: center; justify-content: center; gap: .6rem; margin-bottom: 1.5rem; }
.line-step { display: flex; flex-direction: column; align-items: center; gap: .4rem; flex: 1; }
.ls-no { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--line); color: #fff; font-family: var(--font-round); font-weight: 900; }
.line-step p { margin: 0; font-weight: 700; font-size: .85rem; }
.line-arrow { color: var(--line); font-weight: 900; font-size: 1.2rem; }
@media (max-width: 420px) { .line-step p { font-size: .76rem; } .line-steps { gap: .3rem; } }

/* 対象エリアチェッカー(地域セクション) */
.checker {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.5rem;
  max-width: 460px;
  margin: 1.8rem auto 0;
  box-shadow: var(--shadow);
  text-align: center;
}
.checker-lead { font-family: var(--font-round); font-weight: 900; font-size: 1.08rem; color: var(--accent-dk); margin: 0 0 1.2rem; }
.checker-selects { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 1.2rem; }
.checker-selects select {
  width: 100%;
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  font-family: inherit; font-size: 1.05rem; font-weight: 700;
  color: var(--ink);
  padding: 1em 2.6rem 1em 1.2rem;
  border: 2px solid #f0e0c8;
  border-radius: 14px;
  background-color: #fffdf9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23e3893d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.checker-selects select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(244,162,89,.2); }
.checker-selects select:disabled { opacity: .5; cursor: not-allowed; background-color: #f7f3ec; }
.checker-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #fff;
  padding: 1.05em 1.5em; font-size: 1.1rem;
  box-shadow: 0 10px 24px rgba(227,137,61,.4);
}
.checker-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(227,137,61,.5); }
.checker-result { margin-top: 1.4rem; }
.checker-result[hidden] { display: none; }
.checker-result.show { animation: checker-pop .45s cubic-bezier(.2,.8,.3,1.2); }
.result-emoji { font-size: 2.8rem; line-height: 1; }
.result-title { font-family: var(--font-round); font-weight: 900; font-size: clamp(1.2rem, 4.4vw, 1.5rem); color: var(--accent-2dk); margin: .4rem 0 .35rem; line-height: 1.5; }
.result-sub { color: var(--ink-soft); font-weight: 700; margin: 0 0 1.2rem; line-height: 1.7; }
@keyframes checker-pop { 0% { transform: scale(.85); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* 地域限定特典ボックス(地域専用ページ) */
.perk-box {
  max-width: 480px; margin: 0 auto;
  background: linear-gradient(135deg, #fff7ec, #ffedda);
  border: 2px dashed var(--accent);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  text-align: center;
}
.perk-title { font-family: var(--font-round); font-weight: 900; color: var(--accent-dk); font-size: 1.15rem; margin: 0 0 1rem; }
.perk-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.perk-list li { display: flex; align-items: center; gap: .7rem; justify-content: center; font-weight: 700; font-size: 1.05rem; }
.perk-num { width: 30px; height: 30px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--font-round); font-weight: 900; }
.perk-list strong { color: var(--accent-dk); font-size: 1.18em; }
.perk-strike { color: var(--ink-soft); text-decoration: line-through; font-size: .8em; font-weight: 700; margin-left: .2em; }

/* クーポン券(ticket) */
.coupon-head { text-align: center; font-family: var(--font-round); font-weight: 900; color: var(--accent-dk); font-size: 1.15rem; margin: 0 0 1rem; }
.coupon-head strong { color: #e2563d; font-size: 1.18em; }
.coupons { display: flex; flex-direction: column; gap: .9rem; max-width: 440px; margin: 0 auto; }
.coupon { display: flex; align-items: stretch; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid #f0e0c8; }
.coupon-stub { background: linear-gradient(135deg, var(--accent), var(--accent-dk)); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .2rem; min-width: 76px; padding: 0 .6rem; }
.coupon-stub .c-ico { font-size: 1.5rem; line-height: 1; }
.coupon-stub .c-tag { font-size: .6rem; font-weight: 700; letter-spacing: .08em; }
.coupon-body { flex: 1; padding: .85rem 1rem; text-align: left; border-left: 2px dashed #ead9c0; }
.coupon-off { font-family: var(--font-round); font-weight: 900; color: var(--accent-dk); font-size: 1.6rem; line-height: 1.05; }
.coupon-off .small { font-size: .55em; }
.coupon-name { font-weight: 700; font-size: .92rem; margin: .2rem 0 0; color: var(--ink); }
.coupon-note { font-size: .72rem; color: var(--ink-soft); margin: .3rem 0 0; font-weight: 700; }
.coupon-limited { display: inline-block; background: #ffe1d6; color: #d9542f; font-size: .66rem; font-weight: 900; padding: .15em .6em; border-radius: 999px; margin-bottom: .25rem; }

/* キャンペーン注記(さりげなく・でも気付く) */
.campaign-notice {
  text-align: center;
  font-size: .76rem;
  font-weight: 700;
  color: #a3835f;
  letter-spacing: .02em;
  margin: .7rem auto 0;
  padding: .35em .9em;
  display: inline-block;
  background: rgba(255,255,255,.65);
  border: 1px dashed #e3c79f;
  border-radius: 999px;
}
.campaign-notice-wrap { text-align: center; }

/* ユーザーの声(スワイプ・カルーセル) */
.voices { background: var(--bg-soft); }
.voices .section-title { margin-bottom: .4rem; }
.voices-label { text-align: center; color: var(--accent-dk); font-weight: 700; font-size: .9rem; letter-spacing: .08em; margin: 0 0 1rem; }
.voices-label.second { margin-top: 2.4rem; }
.carousel-wrap { position: relative; max-width: 440px; margin: 0 auto; }
.carousel {
  position: relative;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: .4rem .1rem 1rem;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.voice-card {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: center;
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.voice-head { display: flex; align-items: center; gap: .7rem; }
.voice-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--bg-warm); display: grid; place-items: center; font-size: 1.4rem; flex: none; }
.voice-meta { display: flex; flex-direction: column; line-height: 1.3; }
.voice-name { font-weight: 700; font-size: .92rem; }
.voice-stars { color: #f5a623; font-size: .85rem; letter-spacing: .08em; }
.voice-text { font-size: .92rem; line-height: 1.85; color: var(--ink); margin: 0; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: .7rem; }
.carousel-arrow {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: #fff; border: 1px solid #f0e0c8; box-shadow: var(--shadow-sm);
  color: var(--accent-dk); font-family: var(--font-round); font-size: 1.5rem; line-height: 1;
  cursor: pointer; display: grid; place-items: center;
}
.carousel-arrow:hover { background: var(--bg-warm); }
.carousel-dots { display: flex; justify-content: center; gap: .45rem; }
.carousel-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: #e2cda9; cursor: pointer; padding: 0; transition: width .2s, background .2s; }
.carousel-dots button.active { background: var(--accent); width: 22px; border-radius: 999px; }
.carousel-hint { text-align: center; font-size: .76rem; color: var(--ink-soft); font-weight: 700; margin: .5rem 0 0; }

/* セクション背景ユーティリティ */
.section-soft { background: var(--bg-soft); }

/* 合計おトク額(地域ページ) */
.savings { max-width: 440px; margin: 0 auto 1.3rem; text-align: center; background: linear-gradient(135deg, var(--accent), var(--accent-dk)); color: #fff; border-radius: var(--radius-lg); padding: 1.4rem 1.2rem; box-shadow: var(--shadow); }
.savings .s-label { font-weight: 700; font-size: .9rem; opacity: .95; }
.savings .s-amount { font-family: var(--font-round); font-weight: 900; font-size: clamp(1.8rem, 7vw, 2.4rem); line-height: 1.15; margin: .15rem 0; }
.savings .s-note { font-size: .74rem; opacity: .92; margin: .2rem 0 0; }

/* 仕組みの特徴リスト(地域ページ・別角度の強み) */
.feature-list { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.feature-item { display: flex; gap: 1rem; background: #fff; border-radius: var(--radius); padding: 1.3rem 1.4rem; box-shadow: var(--shadow-sm); align-items: flex-start; text-align: left; }
.feature-ico { font-size: 1.8rem; flex: none; width: 52px; height: 52px; border-radius: 14px; background: var(--bg-warm); display: grid; place-items: center; }
.feature-body h3 { font-family: var(--font-round); font-weight: 900; font-size: 1.06rem; margin: 0 0 .35rem; line-height: 1.45; }
.feature-body p { margin: 0; color: var(--ink-soft); font-size: .9rem; line-height: 1.75; }

/* 地域ヒーロー(トップと差別化:お祝い型・オレンジ全面) */
.area-hero {
  position: relative;
  background:
    radial-gradient(900px 460px at 82% -12%, #ffc078, transparent 60%),
    linear-gradient(160deg, var(--accent), var(--accent-dk));
  color: #fff;
  padding: clamp(2.6rem, 7vw, 4.4rem) 0 4.6rem;
  text-align: center;
  overflow: hidden;
}
.area-hero-inner { position: relative; z-index: 1; }
.area-stamp {
  display: inline-block;
  border: 3px solid rgba(255,255,255,.92);
  color: #fff;
  font-family: var(--font-round); font-weight: 900;
  padding: .32em 1.15em; border-radius: 10px;
  transform: rotate(-5deg);
  letter-spacing: .14em; font-size: 1rem;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.14);
  margin-bottom: 1rem;
}
.area-hero-place { font-weight: 700; font-size: 1.05rem; opacity: .95; margin: 0 0 .5rem; }
.area-hero-title { font-family: var(--font-round); font-weight: 900; font-size: clamp(1.7rem, 5.6vw, 2.6rem); line-height: 1.4; margin: 0 0 .9rem; }
.area-hero-sub { font-size: 1.1rem; margin: 0 0 1.4rem; font-weight: 700; }
.area-hero-sub strong { background: linear-gradient(transparent 58%, rgba(255,255,255,.4) 58%); }
.area-hero-tags { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.7rem; }
.area-hero-tags span { background: rgba(255,255,255,.18); border: 1.5px solid rgba(255,255,255,.55); padding: .5em 1.05em; border-radius: 999px; font-family: var(--font-round); font-weight: 700; font-size: .92rem; }
.area-hero .btn-line { box-shadow: 0 12px 28px rgba(0,0,0,.2); }
.area-hero-note { font-size: .8rem; opacity: .92; margin: .9rem 0 0; }
.area-hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.area-hero-wave svg { width: 100%; height: 56px; display: block; }

@media (max-width: 720px) {
  .reasons { grid-template-columns: 1fr; }
  .reason-card { padding: 1.4rem 1.2rem; }
}
@media (max-width: 560px) {
  .meta3 { flex-direction: column; }
  .meta3-arrow { transform: rotate(90deg); justify-content: center; font-size: 1.2rem; }
  .compare-head > div { font-size: .82rem; }
  .compare-row > div { padding: .8rem .35rem; font-size: .92rem; }
  .c-label { font-size: .8rem; padding-left: .8rem !important; }
}
