/* ========================================
   家づくりコンシェルジュ LP — ないけんぼーいず型
   ======================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---------- 5色パレット ---------- */
:root {
  --c-main: #FFD900;        /* イエロー — メイン・背景・見出し */
  --c-dark: #3D3832;        /* ダークブラウン — テキスト・バッジ */
  --c-white: #FFFFFF;       /* ホワイト — カード・ベース背景 */
  --c-line: #06C755;        /* LINEグリーン — CTAボタンのみ */
  --c-accent: #FF1493;      /* ショッキングピンク — アクセント・強調 */
  /* 派生色 */
  --c-main-10: rgba(255,217,0,0.1);
  --c-main-20: rgba(255,217,0,0.2);
  --c-main-40: rgba(255,217,0,0.4);
  --c-main-60: rgba(255,217,0,0.6);
  --c-dark-10: rgba(61,56,50,0.1);
  --c-dark-20: rgba(61,56,50,0.2);
  --c-dark-50: rgba(61,56,50,0.5);
  --c-dark-70: rgba(61,56,50,0.7);
  --c-accent-10: rgba(255,20,147,0.1);
  --c-accent-20: rgba(255,20,147,0.2);
  --c-cream: #FFFDE7;       /* イエローの超薄（セクション背景用） */
}

/* SVG Icon Utilities */
.ic-check, .ic-li, .ic-cap { vertical-align: -2px; margin-right: 2px; flex-shrink: 0; }

/* Paper Texture - 紙風カード共通 */
.paper,
.worry-card,
.roadmap-step-card,
.about-new-card,
.about-new-profile,
.voice-card,
.compare-table-multi,
.faq-item,
.flow-card,
.km-sheet,
.km-maker,
.km-advice-card,
.karte-card {
  background-color: var(--c-white) !important;
  border: 1px solid var(--c-dark-10) !important;
  box-shadow: 0 2px 8px var(--c-dark-10) !important;
}
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Noto Sans JP', 'Zen Maru Gothic', sans-serif;
  color: var(--c-dark);
  background: #f0f0f0;
  line-height: 1.7;
  overflow-x: hidden;
}
.lp-wrapper {
  max-width: 480px;
  margin: 0 auto;
  background: var(--c-white);
  position: relative;
  overflow: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ---------- 共通パーツ ---------- */
.sec-inner { max-width: 480px; margin: 0 auto; padding: 0 20px; }
.sec { padding: 24px 0; }

/* 画像ベースセクション — 隙間完全排除 */
section.sec-img,
.sec.sec-img {
  padding: 0 !important;
  margin: 24px 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;
  overflow: hidden;
}
/* ロードマップ内の画像同士は隙間なし（同一section内なので自動的にOK） */
/* 連続する画像セクションも等間隔 */
section.sec-img img,
.sec-full-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
  vertical-align: bottom;
}


/* 最終CTA: 画像の上にボタンを重ねる */
.final-cta-wrap { position: relative; }
.final-cta-btn-overlay {
  position: absolute;
  bottom: 22%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 2;
  padding: 0 8%;
}
.final-cta-btn-overlay .cta-btn {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

/* セクション見出し — 吹き出し型 */
.sec-heading-bubble {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 28px;
  position: relative;
  display: inline-block;
  width: 100%;
  color: #333;
}
.sec-heading-bubble::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--c-main);
  border-radius: 2px;
  margin: 10px auto 0;
}

/* セクション見出し — イエロー背景型 */
.sec-heading-green {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: #333;
  background: var(--c-main);
  padding: 14px 20px;
  border-radius: 12px;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* マーカー */
.marker-yellow {
  background: linear-gradient(transparent 60%, var(--c-main-40) 60%);
  font-weight: 700;
}
.marker-pink {
  background: linear-gradient(transparent 60%, var(--c-accent-20) 60%);
  font-weight: 700;
}
.text-accent { color: var(--c-dark); font-weight: 900; background: linear-gradient(transparent 60%, var(--c-main-40) 60%); }

/* ========================================
   ヘッダー帯
   ======================================== */
.top-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.top-bar-icon { font-size: 1.2rem; }
.top-bar-text { font-size: 0.85rem; font-weight: 700; color: #222; }

/* ハンバーガーボタン */
.hamburger {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #333;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ナビドロワー */
.nav-drawer {
  position: fixed;
  top: 41px;
  right: -260px;
  width: 240px;
  background: #fff;
  box-shadow: -2px 0 12px rgba(0,0,0,0.1);
  z-index: 99;
  padding: 16px 0;
  transition: right 0.3s ease;
  border-radius: 0 0 0 12px;
}
.nav-drawer.open {
  right: 0;
}
.nav-drawer-item {
  display: block;
  padding: 12px 24px;
  font-size: 0.85rem;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}
.nav-drawer-item:last-child {
  border-bottom: none;
}
.nav-drawer-item:hover {
  background: #f8f8f8;
}

/* ナビオーバーレイ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 98;
}
.nav-overlay.open {
  display: block;
}

/* ========================================
   First View
   ======================================== */
.fv {
  background: #fff;
  padding: 0 0 16px;
  text-align: center;
}
.fv-image-area {
  margin: 0;
}
.fv-main-img {
  width: 100%;
  height: auto;
  display: block;
}

/* 3バッジ */
.fv-badge-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  padding: 0 16px;
}
.fv-badge {
  background: var(--c-cream);
  color: var(--c-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1.5px solid var(--c-main);
}

/* ヒーロー */
.fv-hero-area { padding: 0 20px; }

.fv-authority {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 2px solid var(--c-main);
  border-radius: 24px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #333;
}
.fv-authority-icon { font-size: 1rem; }
.fv-authority-num { color: var(--c-dark); font-size: 1.1rem; font-weight: 900; }

.fv-headline {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.5;
  color: #222;
  margin-bottom: 12px;
}
.fv-headline-accent {
  color: var(--c-dark);
  position: relative;
}
.fv-headline-accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 8px;
  background: rgba(255, 217, 0, 0.35);
  border-radius: 4px;
}

.fv-sub-copy {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* アドバイザー画像 */
.fv-advisor-area {
  margin: 20px auto;
  max-width: 360px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.fv-advisor-img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}

/* CTA */
.fv-cta-area {
  padding: 0 20px;
  margin-top: 24px;
}
/* FV内Q1ボックス */
.fv-q1-box {
  background: #fff;
  border-radius: 16px;
  padding: 20px 16px;
  border: 2px solid var(--c-main);
}
.fv-q1-label {
  font-size: 1rem;
  font-weight: 900;
  color: var(--c-dark);
  margin-bottom: 12px;
  text-align: center;
}
.fv-q1-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fv-q1-btn {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--c-cream);
  color: var(--c-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
  transition: background .2s, transform .1s;
  border: 2px solid transparent;
}
.fv-q1-btn:active {
  transform: scale(0.97);
}
.fv-q1-btn.selected {
  background: var(--c-main);
  border-color: var(--c-dark);
}
.fv-q1-note {
  text-align: center;
  font-size: 0.75rem;
  color: #999;
  margin-top: 10px;
}
.fv-cta-micro {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 8px;
}
.fv-cta-time {
  font-size: 0.85rem;
  font-weight: 700;
  color: #888;
  margin-top: 8px;
}
.fv-cta-time-num {
  font-size: 1.6rem;
  color: var(--c-dark);
  font-weight: 900;
}

.fv-deliver-text {
  font-size: 0.85rem;
  color: #666;
  margin-top: 16px;
  padding: 0 20px;
  line-height: 1.7;
}

/* ========================================
   共通CTAボタン
   ======================================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 60px;
  transition: all 0.3s;
  width: 100%;
  max-width: 360px;
}
.cta-line-btn {
  background: linear-gradient(135deg, #06C755 0%, #04A847 100%);
  color: #fff;
  font-size: 1.05rem;
  padding: 16px 24px;
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.35);
  animation: ctaPulse 2.5s ease-in-out infinite;
}
.cta-line-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(6, 199, 85, 0.45);
}
.cta-line-btn-lg {
  font-size: 1.15rem;
  padding: 18px 28px;
}
.cta-arrow {
  font-size: 0.8rem;
  animation: arrowBounce 1.5s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(6, 199, 85, 0.35); }
  50% { box-shadow: 0 4px 28px rgba(6, 199, 85, 0.55); }
}
@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
.cta-primary {
  background: linear-gradient(135deg, #06C755 0%, #04A847 100%);
  color: #fff;
  font-size: 1rem;
  padding: 14px 20px;
}

/* ========================================
   無料診断って何？
   ======================================== */
.sec-what { background: #fff; }
.what-lead {
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.8;
}

/* ネガティブ統計 */
.negative-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.negative-stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-align: center;
  border-top: 4px solid var(--c-main);
}
.negative-stat-circle {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 12px;
}
.negative-stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--c-dark);
  line-height: 1;
  font-family: 'Noto Sans JP', sans-serif;
}
.negative-stat-percent {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--c-dark);
  margin-left: 2px;
}
.negative-stat-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: #333;
  margin-bottom: 10px;
}
.negative-stat-detail {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 8px;
}
.negative-stat-source {
  font-size: 0.7rem;
  color: #aaa;
}

/* 問いかけボックス */
.what-question-box {
  background: #333;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}
.what-question-text {
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.7;
}

.what-answer-box {
  background: var(--c-cream);
  border: 2px solid var(--c-main);
  border-radius: 16px;
  padding: 24px 20px;
}
.what-answer-text {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ========================================
   診断でわかること
   ======================================== */
.sec-merit { background: var(--c-cream); }
.merit-sub {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 24px;
}
.merit-cards { display: flex; flex-direction: column; gap: 16px; }
.merit-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 5px solid var(--c-main);
}
.merit-card-icon { font-size: 2rem; margin-bottom: 8px; }
.merit-card-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 8px;
}
.merit-card-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

/* ロードマップ */
.roadmap-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.roadmap-step {
  background: var(--c-white);
  border-radius: 12px;
  padding: 28px 22px 24px;
  width: 100%;
  border: 1px solid var(--c-dark-10);
  box-shadow: 0 2px 8px var(--c-dark-10);
  position: relative;
}
.roadmap-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--c-main);
  border-radius: 12px 12px 0 0;
}

/* STEP 1 — 薄いイエロー */
.roadmap-step-active::before { background: var(--c-main-40); }
.roadmap-step-active .roadmap-step-badge { background: var(--c-main); color: var(--c-dark); }

/* STEP 2 — イエロー */
.roadmap-step--s2::before { background: var(--c-main); }
.roadmap-step--s2 .roadmap-step-badge { background: var(--c-main); color: var(--c-dark); }

/* STEP 3 — イエロー */
.roadmap-step--s3::before { background: var(--c-main); }
.roadmap-step--s3 .roadmap-step-badge { background: var(--c-main); color: var(--c-dark); }

/* GOAL — ピンク */
.roadmap-step-goal::before { background: var(--c-accent); }
.roadmap-step-goal .roadmap-step-badge { background: var(--c-accent); color: var(--c-white); }
.roadmap-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #3D3832;
  color: #FAF6EE;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.1);
}

.roadmap-step-label {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-white);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 2px 10px;
  border-radius: 2px;
  margin-left: 8px;
  animation: pulse-label 2s ease-in-out infinite;
}
@keyframes pulse-label {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.roadmap-step-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: #3D3832;
  margin: 10px 0 8px;
  line-height: 1.5;
}
.roadmap-step-desc {
  font-size: 0.88rem;
  color: var(--c-dark-70);
  line-height: 1.8;
}
.roadmap-connector {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(160,140,110,0.3), rgba(160,140,110,0.1));
  position: relative;
}
.roadmap-connector::before {
  content: '▼';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  color: rgba(160,140,110,0.4);
}
.roadmap-step-active + .roadmap-connector {
  background: linear-gradient(to bottom, rgba(232,147,11,0.4), rgba(232,147,11,0.15));
}
.roadmap-step-active + .roadmap-connector::before {
  color: rgba(232,147,11,0.5);
}

/* ロードマップ ゲート */
.roadmap-gate {
  background: #FAF6EE;
  border-radius: 4px;
  padding: 28px 22px;
  text-align: center;
  width: 100%;
  border: 2px dashed rgba(232,147,11,0.4);
  position: relative;
}
.roadmap-gate::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(232,147,11,0.05), transparent);
  z-index: -1;
}
.roadmap-gate-icon {
  width: 48px;
  height: 48px;
  background: var(--c-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.3rem;
  box-shadow: 0 2px 8px rgba(232,147,11,0.3);
}
.roadmap-gate-title {
  color: #3D3832;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 10px;
}
.roadmap-gate-title strong {
  color: var(--c-dark);
  font-size: 1.1rem;
  display: block;
  margin-top: 4px;
}
.roadmap-gate-desc {
  color: var(--c-dark-50);
  font-size: 0.8rem;
  line-height: 1.7;
}
.roadmap-step-why {
  display: inline-block;
  background: #3D3832;
  color: #FAF6EE;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 2px;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* ロードマップ画像 */
.roadmap-step-img-wrap {
  margin: 14px -22px;
  text-align: center;
  border-top: 1px solid rgba(160,140,110,0.12);
  border-bottom: 1px solid rgba(160,140,110,0.12);
}
.roadmap-step-img {
  width: 100%;
  border-radius: 0;
}

/* 専門家ロール */
.roadmap-step-role {
  background: #3D3832;
  border-radius: 4px;
  padding: 14px 18px;
  margin-bottom: 14px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
}
.roadmap-step-role-label {
  font-size: 0.7rem;
  color: var(--c-main);
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: 0.1em;
}
.roadmap-step-role-title {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}

/* チェックリスト */
.roadmap-step-checks {
  list-style: none;
  padding: 0;
  margin: 14px 0;
}
.roadmap-step-checks li {
  font-size: 0.88rem;
  color: #3D3832;
  line-height: 1.7;
  padding: 8px 0 8px 22px;
  border-bottom: 1px dashed rgba(160,140,110,0.15);
  position: relative;
}
.roadmap-step-checks li svg {
  position: absolute;
  left: 0;
  top: 11px;
}
.roadmap-step-checks li:last-child {
  border-bottom: none;
}

/* 理由ボックス */
.roadmap-step-reason {
  background: rgba(160,140,110,0.06);
  border-radius: 4px;
  padding: 14px 16px;
  margin-top: 14px;
  border-left: 3px solid rgba(232,147,11,0.4);
}
.roadmap-step-reason p {
  font-size: 0.85rem;
  color: var(--c-dark-70);
  line-height: 1.7;
  margin-top: 6px;
}

/* ========================================
   LINE診断プレビュー
   ======================================== */
.sec-preview { background: #fff; }
.preview-lead {
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* カルテプレビュー横スクロール */
.karte-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 16px;
  scrollbar-width: none;
}
.karte-scroll::-webkit-scrollbar { display: none; }

/* 画像カルーセル */
.karte-scroll-img { gap: 12px; padding: 8px 0 16px; }
.karte-card-img {
  flex: 0 0 260px;
  scroll-snap-align: center;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.karte-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.karte-card {
  width: 260px;
  height: 520px;
  scroll-snap-align: center;
  flex-shrink: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}
.karte-card-caption {
  font-size: 0.85rem;
  font-weight: 900;
  color: #333;
  padding: 8px 0 10px;
  text-align: center;
  flex-shrink: 0;
}

/* カルテミニ画面共通 */
.km-screen {
  background: var(--c-white);
  padding: 18px 14px;
  text-align: left;
  flex: 1;
  overflow: hidden;
  position: relative;
}
.km-screen::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  background: linear-gradient(transparent, var(--c-white));
  pointer-events: none;
}
.km-sec-num {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--c-dark-50);
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.km-heading {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--c-dark);
  line-height: 1.5;
  margin-bottom: 14px;
}

/* ① 予算シート */
.km-sheet {
  background: var(--c-white);
  border: 1px solid var(--c-dark-10);
  border-radius: 12px;
  padding: 14px 12px;
  box-shadow: 0 2px 8px var(--c-dark-10);
}
.km-sheet-title { font-size: 0.78rem; font-weight: 900; color: var(--c-dark); margin-bottom: 2px; }
.km-sheet-sub { font-size: 0.6rem; color: var(--c-dark-50); margin-bottom: 10px; }
.km-divider { height: 2px; background: var(--c-dark); margin-bottom: 10px; }
.km-divider-thin { height: 1px; background: var(--c-dark-10); margin: 8px 0; }
.km-label { font-size: 0.68rem; font-weight: 700; color: var(--c-dark); margin-bottom: 2px; }
.km-label--safe { color: var(--c-accent); font-weight: 900; }
.km-row { display: flex; justify-content: space-between; align-items: baseline; }
.km-amount { font-size: 1.2rem; font-weight: 900; color: var(--c-dark); }
.km-amount small { font-size: 0.7rem; }
.km-amount--safe { color: var(--c-accent); }
.km-monthly { font-size: 0.6rem; color: var(--c-dark-50); }
.km-monthly strong { font-size: 0.8rem; color: var(--c-dark); }
.km-safe { color: var(--c-accent) !important; }
.km-highlight {
  background: var(--c-main-10);
  margin: 0 -12px;
  padding: 10px 12px;
}
.km-result {
  background: var(--c-accent-10);
  margin: 10px -12px -14px;
  padding: 12px;
  border-radius: 0 0 12px 12px;
}
.km-result-label { font-size: 0.65rem; font-weight: 600; color: var(--c-accent); }
.km-result-amount { font-size: 0.85rem; font-weight: 700; color: var(--c-accent); }
.km-result-amount span { font-size: 1.6rem; font-weight: 900; }
.km-result-amount small { font-size: 0.75rem; }

/* ② メーカー */
.km-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.km-tag {
  font-size: 0.6rem; padding: 3px 10px;
  border-radius: 20px; background: var(--c-main-10);
  border: 1px solid var(--c-main-20);
  color: var(--c-dark); font-weight: 600;
}
.km-maker {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--c-white);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 8px;
  box-shadow: 0 1px 6px var(--c-dark-10);
  border: 1px solid var(--c-dark-10);
}
.km-maker-rank {
  background: var(--c-main); color: var(--c-dark);
  font-size: 0.65rem; font-weight: 900;
  padding: 4px 8px; border-radius: 8px;
  flex-shrink: 0; margin-top: 2px;
}
.km-maker-info { flex: 1; min-width: 0; }
.km-maker-name { font-size: 0.8rem; font-weight: 700; color: var(--c-dark); margin-bottom: 4px; }
.km-bar-wrap {
  display: flex; align-items: center; gap: 6px; margin-bottom: 4px;
}
.km-bar-wrap span { font-size: 0.6rem; font-weight: 700; color: var(--c-accent); flex-shrink: 0; }
.km-bar {
  height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, var(--c-main), var(--c-accent));
}
.km-maker-price { font-size: 0.6rem; color: var(--c-dark-50); font-weight: 600; margin-bottom: 4px; }
.km-maker-feats { display: flex; gap: 4px; }
.km-maker-feats span {
  font-size: 0.55rem; padding: 2px 6px;
  border-radius: 4px; background: var(--c-main-10);
  color: var(--c-dark); font-weight: 500;
}

/* ③ アドバイス */
.km-stage-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--c-main);
  color: var(--c-dark);
  border-radius: 16px;
  font-size: 0.65rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.km-advice-card {
  background: var(--c-white);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: 0 1px 6px var(--c-dark-10);
  border: 1px solid var(--c-dark-10);
}
.km-caution {
  padding: 12px 14px 10px;
  border-bottom: 1px solid var(--c-dark-10);
}
.km-caution-lbl { font-size: 0.6rem; font-weight: 700; color: var(--c-accent); margin-bottom: 4px; }
.km-caution-txt { font-size: 0.75rem; font-weight: 700; line-height: 1.5; color: var(--c-dark); }
.km-advice-body {
  padding: 10px 14px;
  background: var(--c-white);
}
.km-advice-desc { font-size: 0.65rem; line-height: 1.6; color: var(--c-dark-50); }
.km-advice-safe {
  padding: 10px 14px;
  background: var(--c-main-10);
}
.km-advice-lbl { font-size: 0.6rem; font-weight: 700; color: var(--c-main); margin-bottom: 4px; }
.km-advice-txt { font-size: 0.7rem; line-height: 1.6; color: var(--c-dark); font-weight: 600; }
.preview-block {
  margin-bottom: 28px;
}
.preview-label {
  font-size: 1rem;
  font-weight: 900;
  color: #333;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: var(--c-cream);
  border-radius: 8px;
  display: inline-block;
}
.preview-img-wrap {
  margin: 16px 0;
  text-align: center;
}
.preview-img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.preview-features {
  list-style: none;
  padding: 0;
}
.preview-features li {
  font-size: 0.9rem;
  color: #333;
  padding: 6px 0;
  line-height: 1.6;
}
.preview-desc {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.7;
}
.preview-result-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.preview-result-card {
  background: var(--c-cream);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  border-left: 4px solid var(--c-main);
}
.preview-result-icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.preview-result-card h4 {
  font-size: 1rem;
  font-weight: 900;
  color: #333;
  margin-bottom: 6px;
}
.preview-result-card p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
}
.preview-safety {
  background: var(--c-cream);
  border-radius: 12px;
  padding: 20px;
}
.preview-safety-title {
  font-size: 0.9rem;
  font-weight: 900;
  color: #333;
  text-align: center;
  margin-bottom: 12px;
}
.preview-safety-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.preview-safety-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #555;
}
.preview-safety-icon {
  font-size: 1.1rem;
}

/* ========================================
   中間CTA
   ======================================== */

/* ========================================
   私たちについて (新)
   ======================================== */
.sec-about-new {
  background: var(--c-main);
}
.about-new-pre {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
  background: #fff;
  display: inline-block;
  padding: 4px 16px;
  border-radius: 20px;
  margin: 0 auto 8px;
  display: block;
  width: fit-content;
}
.about-new-hero {
  margin: 12px -16px 0;
  text-align: center;
}
.about-new-team-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 12px;
}
.about-new-mission {
  text-align: center;
  margin: 16px 0;
}
.about-new-mission-catch {
  font-size: 1.1rem;
  font-weight: 900;
  color: #333;
  line-height: 1.6;
  margin-bottom: 16px;
}
.about-new-mission-accent {
  font-size: 1.2rem;
  color: var(--c-dark);
  border-bottom: 3px solid var(--c-main);
  padding-bottom: 2px;
}
.about-new-mission-body {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.9;
}
.about-new-profile {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.about-new-profile-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}
.about-new-profile-info {
  flex: 1;
}
.about-new-profile-title {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 2px;
}
.about-new-profile-name {
  font-size: 1rem;
  font-weight: 900;
  color: #333;
  margin-bottom: 6px;
}
.about-new-profile-stats {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-new-stat {
  font-size: 0.75rem;
  color: #555;
}
.about-new-stat strong {
  color: var(--c-dark);
  font-size: 0.85rem;
}

/* ========================================
   中間CTA (duplicate anchor for ordering)
   ======================================== */
.sec-cta-mid {
  background: var(--c-cream);
  padding: 32px 0;
  text-align: center;
}
.cta-mid-micro {
  font-size: 0.9rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}
.cta-mid-micro-accent { color: var(--c-dark); }
.cta-mid-note {
  font-size: 0.75rem;
  color: #888;
  margin-top: 10px;
}

/* ========================================
   こんな方が利用しています
   ======================================== */
.sec-target { background: #fff; }
.target-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}
.target-tag {
  background: var(--c-cream);
  border: 1.5px solid var(--c-dark-20);
  border-radius: 24px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #444;
}
.target-stat {
  background: var(--c-cream);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}
.target-stat-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
}
.target-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-dark);
}

/* ========================================
   私たちについて
   ======================================== */
.sec-about { background: var(--c-cream); }
.about-advisor-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.about-advisor-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-main);
}
.about-advisor-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
.about-advisor-desc {
  font-size: 0.85rem;
  color: #666;
}
.about-message-box {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.about-message {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #444;
}
.about-message:last-child { margin-bottom: 0; }

/* ========================================
   3つの強み
   ======================================== */
.sec-strengths { background: #fff; }
.strength-list { display: flex; flex-direction: column; gap: 20px; }
.strength-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--c-cream);
  border-radius: 16px;
  padding: 20px;
}
.strength-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--c-dark);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 4px;
}
.strength-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}
.strength-body p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
}

/* ========================================
   Before → After
   ======================================== */
.sec-change { background: var(--c-cream); }
.change-compare {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.change-before, .change-after {
  padding: 20px;
  border-radius: 16px;
}
.change-before {
  background: var(--c-cream);
  border: 2px solid var(--c-main);
}
.change-after {
  background: var(--c-cream);
  border: 2px solid var(--c-main);
}
.change-label {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-align: center;
}
.change-label-before { color: var(--c-dark); }
.change-label-after { color: var(--c-dark); }
.change-list {
  list-style: none;
  padding: 0;
}
.change-list li {
  font-size: 0.9rem;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.change-before .change-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--c-dark);
  font-weight: 900;
}
.change-after .change-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-dark);
  font-weight: 900;
}
.change-arrow {
  text-align: center;
  font-size: 1.8rem;
  color: var(--c-dark);
  padding: 8px 0;
}

/* ========================================
   利用の流れ
   ======================================== */
.sec-flow { background: #fff; }
.flow-steps { display: flex; flex-direction: column; align-items: center; gap: 0; }
.flow-step {
  background: var(--c-cream);
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.flow-step-num {
  font-size: 0.75rem;
  font-weight: 900;
  color: #fff;
  background: var(--c-main);
  color: #333;
  padding: 6px 10px;
  border-radius: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}
.flow-step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}
.flow-step-body p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
}
.flow-step-connector {
  font-size: 1.5rem;
  color: var(--c-dark);
  text-align: center;
  padding: 4px 0;
}

/* ========================================
   Instagram埋め込み
   ======================================== */
.sec-instagram { background: #fff; }
.ig-lead {
  text-align: center;
  font-size: 0.85rem;
  color: var(--c-dark-50);
  margin-bottom: 20px;
}
.ig-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 16px;
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
}
.ig-scroll::-webkit-scrollbar { display: none; }
.ig-embed-wrap {
  scroll-snap-align: center;
  flex-shrink: 0;
  width: 280px;
  max-height: 400px;
  overflow: hidden;
  border-radius: 12px;
}

/* ========================================
   他社との違い
   ======================================== */
.sec-compare { background: var(--c-cream); }
.compare-pre {
  text-align: center;
  font-size: 0.85rem;
  color: var(--c-dark-50);
  margin-bottom: 8px;
}
.compare-em {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--c-dark);
}
.compare-table-wrap { overflow-x: auto; margin: 0 -8px; }
.compare-table-multi {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  font-size: 0.75rem;
  table-layout: fixed;
}
.compare-table-multi th, .compare-table-multi td {
  padding: 10px 4px;
  text-align: center;
  border-bottom: 1px dashed var(--c-dark-20);
  vertical-align: middle;
}
.compare-table-multi thead th {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--c-dark-50);
  padding: 12px 4px;
  background: var(--c-cream);
}
.compare-table-multi colgroup .col-label { width: 28%; }
.compare-table-multi colgroup .col-us { width: 18%; }
.compare-table-multi colgroup .col-other { width: 18%; }
.compare-us-col {
  background: var(--c-dark) !important;
  color: #fff !important;
  font-weight: 900 !important;
  font-size: 0.72rem !important;
  border-radius: 8px 8px 0 0;
}
.compare-us-cell {
  background: rgba(74,80,67,0.06);
}
.compare-label {
  font-weight: 700;
  text-align: left !important;
  color: #333;
  background: var(--c-cream);
  font-size: 0.72rem;
  line-height: 1.4;
  padding-left: 10px !important;
}
.c-best { color: var(--c-dark); font-size: 1.2rem; font-weight: 900; }
.c-ok { color: #555; font-size: 1rem; }
.c-mid { color: #aaa; font-size: 1rem; }
.c-bad { color: #ccc; font-size: 1rem; }
.c-none {
  font-size: 0.65rem;
  font-weight: 900;
  color: var(--c-white);
  background: var(--c-accent);
  padding: 3px 8px;
  border-radius: 4px;
}
.c-dash { color: #ccc; font-size: 0.9rem; }
.compare-footer {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #3D3832;
  margin-top: 24px;
  line-height: 1.8;
}
.compare-footer-em {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--c-accent);
  background: linear-gradient(transparent 60%, var(--c-accent-20) 60%);
  padding: 0 2px;
}

/* 実績ボックス */
.about-new-stats-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.about-new-stat-box {
  flex: 1;
  background: var(--c-white);
  border: 2px solid var(--c-main);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
}
.about-new-stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 4px;
}
.about-new-stat-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--c-dark);
  line-height: 1.2;
}
.about-new-stat-num small {
  font-size: 0.65rem;
  font-weight: 700;
}

/* スタッフカード */
.staff-card {
  background: var(--c-white);
  border: 1px solid var(--c-dark-10);
  border-radius: 16px;
  padding: 20px 18px;
  margin-top: 20px;
  box-shadow: 0 2px 12px var(--c-dark-10);
}
.staff-card-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.staff-card-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-main);
  flex-shrink: 0;
}
.staff-card-header-info {
  flex: 1;
  min-width: 0;
}
.staff-card-role {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--c-dark-50);
  margin-bottom: 2px;
}
.staff-card-name {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--c-dark);
  line-height: 1.3;
  margin-bottom: 4px;
}
.staff-card-name small {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--c-dark-50);
}
.staff-card-catch {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-dark);
}
.staff-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.staff-badge {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--c-dark);
  background: var(--c-main-20);
  padding: 4px 10px;
  border-radius: 4px;
  line-height: 1.4;
}
.staff-badge--pink {
  background: rgba(255,20,147,0.1);
  color: #FF1493;
}
.staff-card-bio {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--c-dark);
}
.staff-card-bio strong {
  color: var(--c-dark);
  font-weight: 900;
}

/* ========================================
   利用者の声 (横スクロール・円アイコンカード)
   ======================================== */
.sec-voice-new { background: #fff; }
.voice-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 16px;
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
}
.voice-scroll::-webkit-scrollbar { display: none; }
.voice-card {
  min-width: 260px;
  max-width: 280px;
  scroll-snap-align: start;
  flex-shrink: 0;
  background: var(--c-cream);
  border-radius: 14px;
  padding: 20px 18px;
}
.voice-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.voice-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-main);
  flex-shrink: 0;
}
.voice-card-attr {
  font-size: 0.72rem;
  color: #888;
  font-weight: 600;
  line-height: 1.4;
}
.voice-card-text {
  font-size: 0.82rem;
  color: #444;
  line-height: 1.8;
  font-family: 'Zen Maru Gothic', serif;
}
.voice-card-text strong {
  color: var(--c-dark);
}

/* ========================================
   FAQ
   ======================================== */
.sec-faq { background: var(--c-cream); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
}
.faq-item summary::before {
  content: 'Q.';
  color: var(--c-dark);
  font-weight: 900;
  margin-right: 6px;
}
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--c-dark);
  font-weight: 300;
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer {
  padding: 0 20px 16px;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
}

/* ========================================
   最終CTA
   ======================================== */
.sec-bottom-cta {
  background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-cream) 100%);
  padding: 48px 0;
  text-align: center;
}
.bottom-cta-advisor {
  margin: 0 -16px 12px;
}
.bottom-cta-advisor-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 12px;
}
.bottom-cta-title {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.6;
  color: #222;
  margin-bottom: 12px;
}
.bottom-cta-sub {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.7;
}
.bottom-cta-note {
  font-size: 0.75rem;
  color: #888;
  margin-top: 12px;
}

/* ========================================
   信頼帯
   ======================================== */
.sec-trust-bar {
  background: #333;
  padding: 32px 0;
}
.trust-numbers-bar {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px;
}
.trust-bar-item { text-align: center; flex: 1; }
.trust-bar-num {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
}
.trust-bar-unit {
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
}
.trust-bar-item p {
  font-size: 0.7rem;
  color: #ccc;
  margin-top: 2px;
}
.trust-bar-note { font-size: 0.6rem; }

/* ========================================
   スティッキーCTA
   ======================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
  padding: 0 8px;
  text-align: center;
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.sticky-cta.visible { transform: translateY(0); }

/* 画像CTAボタン */
.cta-img-link {
  display: block;
  cursor: pointer;
  max-width: 420px;
  margin: 0 auto;
}
.cta-img-btn {
  width: 100%;
  height: auto;
  display: block;
}
.cta-img-btn-sticky {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ========================================
   フッター
   ======================================== */
.footer {
  background: var(--c-main);
  color: #333;
  text-align: center;
  padding: 40px 16px 100px;
}
.footer-inner {
  max-width: 480px;
  margin: 0 auto;
}
.footer-sns-label {
  font-size: 0.8rem;
  font-weight: 700;
  background: #fff;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.footer-sns-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-sns-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 12px;
  transition: transform 0.2s;
}
.footer-sns-icons a:hover {
  transform: scale(1.1);
}
.footer-service-name {
  font-size: 1.1rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 8px;
}
.footer-copyright {
  font-size: 0.7rem;
  color: #555;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 16px;
}
.footer-links a {
  font-size: 0.75rem;
  color: #333;
  text-decoration: underline;
  font-weight: 600;
}
.footer-note {
  font-size: 0.65rem;
  color: #777;
}

/* ========================================
   ヒアリングオーバーレイ（既存維持）
   ======================================== */
.hearing-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  justify-content: center;
  align-items: flex-end;
}
.hearing-overlay.active { display: flex; }
.hearing-container {
  background: #fff;
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.hearing-header {
  padding: 16px 20px 8px;
  position: sticky;
  top: 0;
  background: #fff;
  border-radius: 20px 20px 0 0;
  z-index: 10;
}
.hearing-close {
  background: none;
  font-size: 1.5rem;
  color: #aaa;
  float: right;
}
.hearing-progress {
  height: 6px;
  background: #eee;
  border-radius: 3px;
  margin-top: 8px;
  overflow: hidden;
}
.hearing-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #06C755, #04A847);
  border-radius: 3px;
  transition: width 0.4s;
  width: 0%;
}
.hearing-step-label {
  text-align: center;
  font-size: 0.75rem;
  color: #999;
  margin-top: 6px;
}
.hearing-step { display: none; }
.hearing-step.active { display: block; }
.hearing-body {
  padding: 24px 20px 40px;
}
.hearing-body h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
}

/* 年収入力 */
.income-input-area {
  text-align: center;
}
.income-input-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.income-input {
  width: 140px;
  padding: 14px 16px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  border: 2px solid #ddd;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s;
  -moz-appearance: textfield;
}
.income-input::-webkit-inner-spin-button,
.income-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.income-input:focus {
  border-color: var(--c-main);
}
.income-unit {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
}
.income-skip-btn {
  margin-top: 12px;
  font-size: 0.8rem !important;
  color: #999 !important;
  background: transparent !important;
  border: 1px solid #ddd !important;
}
.hearing-next-btn { width: 100%; max-width: 320px; margin: 0 auto; display: block; }
.hearing-next-btn:disabled { opacity: 0.4; pointer-events: none; }

/* 質問の選択肢 */
.options { display: flex; flex-direction: column; gap: 10px; }
.option-btn {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
  transition: all 0.2s;
}
.option-btn:hover { border-color: var(--c-dark); }
.option-btn.selected {
  border-color: var(--c-dark);
  background: var(--c-cream);
  color: var(--c-dark);
  font-weight: 700;
}
.option-skip { color: #999; border-style: dashed; }
.option-undecided { border-style: dashed; color: #888; text-align: center; }
.q-sub { font-size: 0.8rem; color: #999; text-align: center; margin-bottom: 16px; }

/* セレクト */
.select-group { margin-bottom: 14px; }
.select-label { font-size: 0.8rem; color: #666; margin-bottom: 6px; display: block; }
.select-input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 0.92rem;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
}

/* 結果・ローディング */
.loading-body { text-align: center; padding-top: 60px; }
.spinner {
  width: 44px; height: 44px;
  border: 4px solid #eee;
  border-top: 4px solid var(--c-main);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.result-body { text-align: center; }
.result-icon { font-size: 3rem; margin-bottom: 12px; }
.result-desc { font-size: 0.9rem; color: #666; margin-bottom: 24px; line-height: 1.7; }
.cta-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #06C755;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
}
.line-icon, .line-icon-sm { flex-shrink: 0; }
.result-note { font-size: 0.75rem; color: #999; margin-top: 12px; }

/* ========================================
   スクロールアニメーション
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
