/* ===========================================================================
   カーハナコ 出張買取LP — 統合スタイルシート
   元デザインシステム(handoff/design-system/project/)のトークン/コンポーネントを
   素のCSSへ書き起こしたもの。クラス命名は kh-* (カーハナコ) プレフィックスで統一。
   =========================================================================== */

/* ===== Webfonts ===== */
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&display=swap");

/* ===== Tokens ===== */
:root {
  /* --- Hero palette --- */
  --aizome: #3E332E;
  --shu: #EA5887;
  --sakura: #FCDADC;
  --kinari: #FBF8F3;

  /* --- Text & support --- */
  --sumi: #2A2422;
  --nezumi: #6F6862;
  --line-green: #06C755;
  --yamabuki: #E8B84A;

  /* --- Derived / state colors --- */
  --shu-deep: #B8345D;
  --shu-shadow: #D77A80;
  --line-shadow: #04994A;
  --aizome-deep: #2A2422;
  --yamabuki-deep: #4A3300;
  --hairline: #DBCDB4;
  --wood-vein: rgba(120, 80, 40, 0.04);
  --wood-vein-soft: rgba(180, 130, 80, 0.045);
  --white: #FFFFFF;

  /* --- Semantic aliases --- */
  --text-heading: var(--aizome);
  --text-body: var(--sumi);
  --text-muted: var(--nezumi);
  --surface-page: var(--kinari);
  --surface-card: var(--white);
  --surface-soft: var(--sakura);
  --surface-dark: var(--aizome);

  /* --- Fonts --- */
  --font-round: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  --font-body: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;

  /* --- Spacing --- */
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;

  /* --- Radius --- */
  --radius-tag: 6px;
  --radius-img: 8px;
  --radius-card: 12px;
  --radius-pill: 999px;

  /* --- Effects --- */
  --shadow-cta-shu: 0 2px 0 #9C4A50;
  --shadow-cta-line: 0 2px 0 var(--line-shadow);
  --shadow-card: 0 2px 10px rgba(31, 58, 95, 0.08);
  --shadow-card-hover: 0 6px 20px rgba(31, 58, 95, 0.14);

  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;

  --tag-clip: polygon(8% 0, 92% 0, 100% 8%, 100% 100%, 0 100%, 0 8%);
}

/* ===== Base reset ===== */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #e9e0d2;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-round);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}

p { margin: 0; text-wrap: pretty; }
a { color: var(--aizome); }
img { display: block; max-width: 100%; }

ul { margin: 0; padding: 0; list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

/* ===== Layout frame (mobile LP) ===== */
.lp-frame {
  max-width: 430px;
  margin: 0 auto;
  background-color: var(--kinari);
  background-image:
    repeating-linear-gradient(90deg, var(--wood-vein) 0px, var(--wood-vein) 1px, transparent 1px, transparent 7px),
    repeating-linear-gradient(90deg, var(--wood-vein-soft) 0px, var(--wood-vein-soft) 1px, transparent 1px, transparent 23px),
    radial-gradient(ellipse at 20% 30%, rgba(190,150,100,0.04), transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(160,110,70,0.035), transparent 60%);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 40px rgba(58,37,40,0.12);
  overflow-x: hidden;
}

.lp-section { padding: 56px 20px; }
.lp-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--shu-deep);
  letter-spacing: .08em;
  margin: 0 0 10px;
}
.lp-h2 {
  font-family: var(--font-round);
  font-size: 24px;
  font-weight: 700;
  color: var(--aizome);
  line-height: 1.45;
  margin: 0 0 8px;
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }

/* ===== Buttons ===== */
.kh-line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  background: var(--line-green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-cta-line);
  text-decoration: none;
  cursor: pointer;
  min-height: 56px;
  padding: 0 28px;
  font-size: 17px;
  box-sizing: border-box;
  transition: transform var(--dur-fast) var(--ease-soft);
}
.kh-line-btn.is-sm { min-height: 44px; padding: 0 20px; font-size: 15px; }
.kh-line-btn.is-block { width: 100%; }
.kh-line-btn:active { transform: translateY(2px); }

.kh-line-btn .ti { font-size: 1.3em; line-height: 1; }

/* ===== Header ===== */
.kh-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 20;
}
.kh-header__logo { display: block; height: 36px; width: auto; }

/* ===== Hero ===== */
.kh-hero {
  padding: 20px 20px 28px;
  background: transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.kh-hero__title {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 26px;
  color: var(--aizome);
  line-height: 1.5;
  margin: 22px 0 10px;
  letter-spacing: .01em;
}
.kh-hero__title .accent { color: var(--shu-deep); }
.kh-hero__lead {
  font-size: 17px;
  color: var(--sumi);
  line-height: 1.8;
  margin: 0 0 8px;
  font-weight: 500;
}
.kh-hero__sub {
  font-size: 13px;
  color: var(--nezumi);
  margin: 0 0 18px;
  line-height: 1.7;
}
.kh-hero__sub strong { color: var(--shu-deep); font-weight: 700; }

.kh-cond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0 auto 22px;
  max-width: 340px;
}
.kh-cond-grid li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--white);
  color: var(--aizome);
  border: 1.5px solid var(--aizome);
  font-size: 12.5px;
  font-weight: 500;
  padding: 7px 4px;
  border-radius: var(--radius-tag);
  line-height: 1.2;
}
.kh-cond-grid li .ti { font-size: 13px; color: var(--shu-deep); }
.kh-cond-grid__note {
  grid-column: span 3;
  font-size: 12px;
  color: var(--shu-deep);
  font-weight: 500;
  margin-top: 2px;
  text-align: center;
}

.kh-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kh-cta-stack__note {
  font-size: 12px;
  color: var(--nezumi);
}

.kh-trust-badges {
  display: inline-flex;
  gap: 6px;
  margin-top: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== Badges ===== */
.kh-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  padding: 8px 14px;
  border-radius: var(--radius-tag);
  white-space: nowrap;
}
.kh-badge--years { background: var(--kinari); color: var(--aizome); border: 1.5px solid var(--aizome); }
.kh-badge--area  { background: var(--kinari); color: var(--aizome); border: 1.5px solid var(--aizome); }

/* ===== Chat hero (LINE mockup) ===== */
.kh-chat {
  position: relative;
  margin: 4px auto 0;
  max-width: 330px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(58,37,64,0.16);
  border: 3px solid var(--white);
}
.kh-chat__head {
  background: var(--line-green);
  color: var(--white);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.kh-chat__avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  color: var(--aizome);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.kh-chat__name {
  display: flex; flex-direction: column;
  line-height: 1.2; text-align: left;
}
.kh-chat__name span:first-child { font-weight: 500; font-size: 13px; }
.kh-chat__name span:last-child  { font-size: 10px; opacity: .95; }

.kh-chat__body {
  background: #E7ECEF;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.kh-chat__row--user { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.kh-chat__thumbs { display: flex; gap: 5px; }
.kh-chat__thumb {
  position: relative;
  width: 54px; height: 54px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--kinari);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.kh-chat__thumb img { width: 100%; height: 100%; object-fit: cover; }
.kh-chat__thumb span {
  position: absolute; left: 0; right: 0; bottom: 0;
  font-size: 8.5px; color: var(--white);
  background: rgba(58,37,64,0.6);
  text-align: center;
  padding: 1px 0;
  letter-spacing: .02em;
}
.kh-chat__bubble--user {
  background: #85E085;
  color: #08321A;
  padding: 8px 11px;
  border-radius: 14px 14px 4px 14px;
  font-size: 13px;
  max-width: 75%;
  line-height: 1.5;
}
.kh-chat__read {
  font-size: 9px;
  color: #8b9095;
}
.kh-chat__row--bot { display: flex; align-items: flex-end; gap: 6px; }
.kh-chat__bot-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--shu);
  color: var(--white);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.kh-chat__bubble--bot {
  background: var(--white);
  color: var(--sumi);
  padding: 10px 12px;
  border-radius: 14px 14px 14px 4px;
  font-size: 13px;
  max-width: 78%;
  line-height: 1.55;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.kh-chat__bubble--bot strong {
  color: var(--shu-deep);
  font-family: var(--font-round);
  font-size: 15px;
}
.kh-chat__hint {
  background: var(--white);
  padding: 10px 12px;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.kh-chat__hint .ti { font-size: 16px; color: var(--shu-deep); }
.kh-chat__hint span { font-size: 11.5px; color: var(--nezumi); line-height: 1.5; }
.kh-chat__hint strong { color: var(--aizome); }

/* ===== PriceTag row ===== */
.kh-tagrow { padding: 4px 12px 36px; background: transparent; }
.kh-tagrow__scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 16px 8px;
  justify-content: flex-start;
}

.kh-pricetag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
}
.kh-pricetag__string {
  width: 1px; height: 18px;
  background: var(--nezumi);
  opacity: .7;
  margin-bottom: -1px;
}
.kh-pricetag__body {
  position: relative;
  min-width: 190px;
  border-radius: var(--radius-tag);
  clip-path: var(--tag-clip);
  padding: 20px 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.kh-pricetag__hole {
  position: absolute;
  top: 7px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
}
.kh-pricetag__label {
  font-family: var(--font-body);
  font-size: 13px;
  opacity: .85;
  margin-top: 6px;
}
.kh-pricetag__amount {
  font-family: var(--font-round);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.15;
  font-feature-settings: "tnum" 1;
  margin: 4px 0 2px;
}
.kh-pricetag__divider {
  border-top: 0.5px dashed currentColor;
  opacity: .4;
  margin: 12px 0 10px;
}
.kh-pricetag__note {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  opacity: .9;
}

/* result variant */
.kh-pricetag--result .kh-pricetag__body { background: var(--white); color: var(--sumi); border: 1px solid var(--hairline); }
.kh-pricetag--result .kh-pricetag__amount { color: var(--shu-deep); }
.kh-pricetag--result .kh-pricetag__hole { background: var(--hairline); }
.kh-pricetag--result .kh-pricetag__string { background: var(--nezumi); }
/* promise */
.kh-pricetag--promise .kh-pricetag__body { background: var(--shu); color: var(--white); border: none; }
.kh-pricetag--promise .kh-pricetag__amount { color: var(--white); }
.kh-pricetag--promise .kh-pricetag__hole { background: var(--shu-deep); }
.kh-pricetag--promise .kh-pricetag__string { background: var(--shu); }
/* feature */
.kh-pricetag--feature .kh-pricetag__body { background: var(--sakura); color: var(--shu-deep); border: none; }
.kh-pricetag--feature .kh-pricetag__amount { color: var(--shu-deep); }
.kh-pricetag--feature .kh-pricetag__hole { background: var(--shu-deep); }
.kh-pricetag--feature .kh-pricetag__string { background: var(--shu-deep); }

/* ===== Staff message bar ===== */
.kh-staff {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: var(--sakura);
  border-radius: var(--radius-card);
  margin-bottom: 32px;
}
.kh-staff__avatar {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--shu);
  color: var(--white);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.kh-staff__msg {
  font-size: 13.5px;
  color: var(--shu-deep);
  line-height: 1.65;
}

/* ===== Why points ===== */
.kh-why__intro {
  font-size: 15px;
  color: var(--sumi);
  line-height: 1.85;
  margin: 10px 0 26px;
}
.kh-why__intro strong { color: var(--aizome); }

.kh-why__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 12px;
}
.kh-point { position: relative; padding-top: 26px; }
.kh-point__no {
  position: absolute;
  top: 0; left: 14px;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--font-round);
  font-weight: 700;
  line-height: 1;
}
.kh-point__no .kicker {
  font-size: 13px;
  color: var(--shu-deep);
  letter-spacing: .06em;
}
.kh-point__no .num {
  font-size: 46px;
  color: var(--shu);
  letter-spacing: -.02em;
  text-shadow: 0 2px 0 var(--white), 2px 0 0 var(--white), -2px 0 0 var(--white), 0 -2px 0 var(--white);
}
.kh-point__card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid var(--hairline);
  box-shadow: 0 6px 20px rgba(58,37,40,0.06);
  padding: 26px 18px 20px 20px;
}
.kh-point__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.kh-point__icon {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--shu);
  display: flex; align-items: center; justify-content: center;
}
.kh-point__icon .ti { font-size: 23px; color: var(--white); }
.kh-point__title {
  font-family: var(--font-round);
  font-size: 18px;
  font-weight: 700;
  color: var(--aizome);
}
.kh-point__lead {
  font-size: 15px;
  font-weight: 500;
  color: var(--aizome);
  line-height: 1.6;
  margin-bottom: 6px;
}
.kh-point__body {
  font-size: 13.5px;
  color: var(--sumi);
  line-height: 1.8;
}

.kh-promise-bar {
  margin-top: 30px;
  padding: 16px;
  background: var(--aizome);
  color: var(--white);
  border-radius: var(--radius-card);
  display: flex;
  gap: 12px;
  align-items: center;
}
.kh-promise-bar .ti {
  font-size: 26px;
  color: var(--shu);
  flex: 0 0 auto;
}
.kh-promise-bar div { font-size: 14px; line-height: 1.7; }
.kh-promise-bar strong { color: var(--shu); font-weight: 700; }

/* ===== ForYou (chat-like Q&A) ===== */
.kh-foryou__list {
  display: flex;
  flex-direction: column;
  margin-top: 26px;
}
.kh-foryou__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 0;
  border-top: 1px dashed var(--hairline);
}
.kh-foryou__item:first-child {
  padding: 0 0 22px;
  border-top: none;
}
.kh-foryou__q {
  display: flex;
  justify-content: flex-end;
}
.kh-foryou__q span {
  background: var(--sakura);
  color: var(--shu-deep);
  padding: 12px 14px;
  border-radius: 16px 16px 4px 16px;
  font-size: 14.5px;
  max-width: 82%;
  line-height: 1.6;
  font-weight: 500;
}
.kh-foryou__a {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.kh-foryou__a-avatar {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--shu);
  color: var(--white);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.kh-foryou__a-bubble {
  background: var(--kinari);
  border: 1px solid var(--hairline);
  color: var(--sumi);
  padding: 12px 14px;
  border-radius: 16px 16px 16px 4px;
  font-size: 14px;
  max-width: 82%;
  line-height: 1.7;
}
.kh-foryou__outro {
  font-size: 13.5px;
  color: var(--shu-deep);
  font-weight: 500;
  line-height: 1.75;
  margin-top: 26px;
  text-align: center;
}

/* ===== Results carousel ===== */
.kh-results__scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 20px 4px 8px;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}
.kh-result-card {
  width: 260px;
  background: var(--surface-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--hairline);
  flex: 0 0 auto;
}
.kh-result-card__img {
  position: relative;
  height: 140px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex; align-items: center; justify-content: center;
}
.kh-result-card__badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--aizome);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: var(--radius-tag);
}
.kh-result-card__body { padding: 16px 20px 18px; }
.kh-result-card__name {
  font-size: 16px;
  font-weight: 500;
  color: var(--sumi);
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.kh-result-card__amount {
  margin-top: 6px;
  font-family: var(--font-round);
  font-weight: 500;
  font-size: 26px;
  color: var(--shu-deep);
  line-height: 1.1;
  font-feature-settings: "tnum" 1;
}
.kh-result-card__specs {
  margin-top: 8px;
  font-size: 12px;
  color: var(--nezumi);
  line-height: 1.6;
}
.kh-results__note {
  font-size: 12px;
  color: var(--nezumi);
  margin-top: 14px;
  line-height: 1.7;
}

/* ===== Four free ===== */
.kh-fourfree__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}
.kh-fourfree__item {
  position: relative;
  background: var(--white);
  padding: 18px 14px;
  border-radius: var(--radius-card);
  border: 1px solid var(--hairline);
  text-align: center;
}
.kh-fourfree__free {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--shu-deep);
  color: var(--white);
  font-family: var(--font-round);
  font-weight: 500;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
}
.kh-fourfree__icon {
  display: inline-flex;
  margin-bottom: 10px;
  margin-top: 4px;
}
.kh-fourfree__icon .ti { font-size: 30px; color: var(--aizome); }
.kh-fourfree__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--aizome);
  margin-bottom: 6px;
}
.kh-fourfree__desc {
  font-size: 12.5px;
  color: var(--nezumi);
  line-height: 1.65;
  white-space: pre-line;
}

/* ===== Flow ===== */
.kh-flow__list {
  display: flex;
  flex-direction: column;
  margin-top: 22px;
}
.kh-flow__row { display: flex; gap: 14px; }
.kh-flow__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kh-flow__num {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--aizome);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 18px;
}
.kh-flow__line {
  width: 2px;
  flex: 1;
  background: var(--hairline);
  margin: 4px 0;
}
.kh-flow__body {
  padding-bottom: 22px;
  flex: 1;
  min-width: 0;
}
.kh-flow__title {
  font-size: 17px;
  font-weight: 500;
  color: var(--aizome);
  margin-bottom: 4px;
}
.kh-flow__desc {
  font-size: 14px;
  color: var(--sumi);
  line-height: 1.75;
}
.kh-flow__photo {
  margin-top: 10px;
  border-radius: var(--radius-img);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 10;
  background: var(--kinari);
}
.kh-flow__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.kh-flow__cta { margin-top: 8px; }

/* ===== Area ===== */
.kh-area { background: var(--aizome); color: var(--white); }
.kh-area .lp-eyebrow { color: var(--sakura); }
.kh-area .lp-h2 { color: var(--white); }
.kh-area__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}
.kh-area__card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-card);
  padding: 16px;
}
.kh-area__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.kh-area__head .ti { font-size: 20px; }
.kh-area__card--main .kh-area__head { color: var(--shu); }
.kh-area__card--main .kh-area__head .ti { color: var(--shu); }
.kh-area__card--sub .kh-area__head { color: var(--sakura); }
.kh-area__card--sub .kh-area__head .ti { color: var(--sakura); }
.kh-area__name {
  font-family: var(--font-round);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.kh-area__cities {
  font-size: 12px;
  color: var(--sakura);
  line-height: 1.7;
}
.kh-area__foot {
  font-size: 12.5px;
  color: var(--sakura);
  margin-top: 16px;
  line-height: 1.7;
}

/* ===== FAQ ===== */
.kh-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}
.kh-faq__item {
  background: var(--kinari);
  border-radius: var(--radius-card);
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.kh-faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--aizome);
  line-height: 1.5;
}
.kh-faq__q-body {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.kh-faq__q-body .marker {
  font-family: var(--font-round);
  color: var(--shu-deep);
  flex: 0 0 auto;
}
.kh-faq__icon {
  font-size: 18px;
  color: var(--nezumi);
  flex: 0 0 auto;
  transition: transform var(--dur-base) var(--ease-soft);
}
.kh-faq__item[aria-expanded="true"] .kh-faq__icon {
  transform: rotate(180deg);
}
.kh-faq__a {
  padding: 0 16px 18px;
  display: none;
  gap: 10px;
}
.kh-faq__a .marker {
  font-family: var(--font-round);
  color: var(--aizome);
  flex: 0 0 auto;
}
.kh-faq__a-text {
  font-size: 14px;
  color: var(--sumi);
  line-height: 1.75;
}
.kh-faq__item[aria-expanded="true"] .kh-faq__a {
  display: flex;
}

/* ===== Final CTA ===== */
.kh-final-cta {
  background: var(--sakura);
  text-align: center;
  padding: 44px 20px;
}
.kh-final-cta .lp-h2 { font-size: 22px; }
.kh-final-cta__lead {
  font-size: 14px;
  color: var(--sumi);
  line-height: 1.75;
  margin: 12px 0 22px;
}
.kh-final-cta__note {
  display: block;
  font-size: 12px;
  color: var(--nezumi);
  margin-top: 10px;
}

/* ===== Footer ===== */
.kh-footer {
  background: var(--aizome);
  color: var(--sakura);
  padding: 32px 20px 36px;
}
.kh-footer__logo {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: .02em;
}
.kh-footer__dl {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 10px;
  margin: 0;
  font-size: 12.5px;
  line-height: 1.7;
}
.kh-footer__dl dt { color: var(--sakura); opacity: .7; }
.kh-footer__dl dd { margin: 0; color: var(--white); }
.kh-footer__dl dd.is-mono { font-family: var(--font-round); }
.kh-footer__copy {
  font-size: 11px;
  color: var(--sakura);
  opacity: .6;
  margin-top: 20px;
  text-align: center;
}

/* ===== Sticky CTA (画面下部に常時固定) ===== */
.kh-sticky {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 30;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(251,248,243,0.94);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--hairline);
}

/* 固定バーの高さぶん、最下部(フッター)が隠れないよう余白を確保 */
.kh-footer {
  padding-bottom: calc(96px + env(safe-area-inset-bottom));
}

/* ===== Visually hidden (accessibility) ===== */
.kh-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Responsive — tablet/desktop fallback ===== */
@media (min-width: 600px) {
  .lp-frame {
    border-radius: 0;
  }
}
