/* =========================================================
   suumee LP — clean rebuild (migrated from STUDIO)
   Design tokens extracted from the live site / Figma reference
   ========================================================= */

:root {
  /* colors */
  --c-text: #333333;
  --c-text-strong: #212121;
  --c-red: #ef5350;
  --c-yellow: #ffe456;
  --c-gray: #eeeeee;
  --c-line: #06c755;
  --c-line-press: #05b34c;
  --c-dark: #333333;   /* ヘッダー/フッター/送信ボタン = テキストと同じ黒 */
  --c-white: #ffffff;
  --c-black: #000000;

  /* typography */
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: "Lato", var(--font-jp);
  --font-deco: "Rowdies", var(--font-jp);

  /* layout */
  --content-w: 390px;   /* mobile design canvas width */
  --pad-x: 20px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; cursor: pointer; }

/* ---------- shared layout ---------- */
.container {
  width: 100%;
  max-width: var(--content-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ---------- shared button ---------- */
.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  height: 49px;
  padding-inline: 16px;
  border-radius: 31.5px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 16px;
  color: var(--c-white);
  transition: filter .15s ease, transform .05s ease;
}
.btn:active { transform: translateY(1px); }
.btn--line { background: var(--c-line); }
.btn--line:hover { filter: brightness(0.96); }
.btn__icon { display: flex; flex: 0 0 auto; }
.btn__icon img { display: block; width: 40px; height: 40px; }
.btn__label { flex: 1 1 auto; text-align: center; }
.btn__chevron { display: flex; flex: 0 0 auto; opacity: .95; }
.btn__spacer { flex: 0 0 auto; width: 40px; }

/* 2行ラベル（サブ：10秒で簡単登録 ／ メイン） */
.cta__labels {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.15;
  gap: 1px;
}
.cta__sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  opacity: .95;
}
.cta__main { font-size: 16px; font-weight: 900; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 60px;
  background: var(--c-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header__inner {
  max-width: var(--content-w);
  height: 100%;
  margin-inline: auto;
  padding-inline: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-wordmark {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--c-text-strong);
}
.site-header__logo-img { display: block; height: 30px; width: auto; }
.nav-toggle {
  width: 32px; height: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: none; border: 0; padding: 4px 2px;
}
.nav-toggle span {
  display: block; height: 2.5px; width: 100%;
  background: #fff; border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
/* 開いたら × に変形 */
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8.75px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8.75px) rotate(-45deg); }

/* ドロワーメニュー */
.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--c-dark);
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
}
body.nav-open .site-nav { max-height: 460px; }
.site-nav ul { list-style: none; margin: 0; padding: 4px 0 10px; }
.site-nav__cta { padding: 6px 20px 22px; }
/* .site-nav a のblock/padding/borderを打ち消してボタン本来のflexに戻す */
.site-nav__cta .btn {
  display: flex;
  height: 49px;
  padding: 0 16px;
  border: 0;
  max-width: none;
}
.site-nav__cta .btn:hover { background: var(--c-line); }
.site-nav a {
  display: block;
  padding: 15px 24px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.site-nav a:hover { background: rgba(255, 255, 255, .06); }

/* アンカー遷移時にヘッダーへ潜り込まないよう余白 */
#solutions, #mechanism, #faq, #company { scroll-margin-top: 62px; }

/* =========================================================
   Hero
   ========================================================= */
.hero { padding: 34px 0 40px; background: var(--c-white); }
.hero__card { text-align: left; }

.hero__title {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: .01em;
}
.hero__title-line { display: block; font-size: 24px; line-height: 1.4; }
.hero__title-line--big { margin-top: 6px; }
.hero__title-line--big .lg { font-style: normal; font-size: 32px; line-height: 1.4; }
.hero__title-line--big .sm { font-size: 24px; padding: 0 2px; }

.hero__lead {
  margin-top: 14px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: var(--c-text-strong);
}

.hero__deco {
  margin-top: 26px;
  font-family: var(--font-deco);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-red);
  letter-spacing: .02em;
}

/* comparison table */
.compare {
  margin-top: 8px;
  border-left: 3px solid var(--c-black);
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 6px 0;
}
.compare__row {
  display: flex;
  align-items: center;
  height: 38px;
  border-radius: 0 30px 30px 0;
  background: var(--c-gray);
  padding-inline: 30px;
  font-size: 16px;
}
.compare__row--hl { background: var(--c-yellow); width: 72%; font-weight: 700; }
.compare__row:not(.compare__row--hl) { height: 34px; }
.compare__row:nth-child(2) { width: 99%; }
.compare__row--short { width: 87%; }
.compare__name { font-family: var(--font-en); }
.compare__row--hl .compare__name {
  font-family: "Inter", var(--font-en);
  font-weight: 700; font-size: 18px;
}
.compare__price { margin-left: auto; font-family: var(--font-en); }
.compare__row--hl .compare__price { font-size: 18px; }

.hero__note {
  margin-top: 22px;
  font-family: var(--font-en);
  font-size: 13px;
  line-height: 1.4;
  color: var(--c-text);
}

.hero__visual {
  margin: 28px auto 0;
  display: flex;
  justify-content: center;
}
.phone-mock {
  width: 66%;
  max-width: 250px;
  border: 6px solid #2b2b2b;
  border-radius: 32px;
  background: #2b2b2b;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
  container-type: inline-size;
}

/* ---- LINE風チャット(HTML/CSS) : cqw でスマホ幅に追従 ---- */
.chat {
  aspect-ratio: 1080 / 1920;
  display: flex;
  flex-direction: column;
  background: #7cbce1;
  color: #333;
  overflow: hidden;
}
.chat__header {
  flex: 0 0 auto;
  height: 19cqw;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5cqw;
}
.chat__logo { width: auto; height: 6.6cqw; }
.chat__ic { display: flex; color: #222; }
.chat__ic svg { width: 6cqw; height: 6cqw; }
.chat__back svg, .chat__menu svg { width: 6.4cqw; height: 6.4cqw; }

.chat__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* トークを縦中央に */
  gap: 5cqw;
  padding: 6cqw 4cqw;
  overflow: hidden;
}
.msg { display: flex; align-items: flex-start; gap: 2.4cqw; }
.msg--out { flex-direction: row-reverse; }
.msg__avatar {
  flex: 0 0 auto;
  width: 11cqw; height: 11cqw;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}
.msg__bubble {
  position: relative;
  max-width: 68%;
  background: #fff;
  border-radius: 3.6cqw;
  padding: 3cqw 3.6cqw;
  font-size: 4.4cqw;
  line-height: 1.5;
}
.msg__bubble--green { background: #7ed957; }
/* 吹き出しのしっぽ */
.msg--in .msg__bubble::before,
.msg--out .msg__bubble::before {
  content: "";
  position: absolute;
  top: 3.4cqw;
  border: 2cqw solid transparent;
}
.msg--in .msg__bubble::before { left: -3.2cqw; border-right-color: #fff; }
.msg--out .msg__bubble::before { right: -3.2cqw; border-left-color: #7ed957; }
.msg__url {
  display: block;
  color: #1b56c4;
  text-decoration: underline;
  word-break: break-all;
  font-size: 4cqw;
  margin-bottom: 1.4cqw;
}

.chat__input {
  flex: 0 0 auto;
  height: 19cqw;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 3cqw;
  padding: 0 4cqw;
}
.chat__field {
  flex: 1 1 auto;
  height: 7cqw;
  background: #dbdbdb;
  border-radius: 4cqw;
}
.chat__send { display: flex; color: #3b5bd9; }
.chat__send svg { width: 6.4cqw; height: 6.4cqw; }

.hero .btn { margin-top: 26px; }

/* =========================================================
   Scope (対応範囲)
   ========================================================= */
.scope { background: var(--c-yellow); padding: 43px 0 42px; text-align: center; position: relative; }
.scope .container { max-width: 370px; padding-inline: 12px; }
/* 対応物件：チェックリスト風（CTAと明確に区別する情報要素）*/
.scope__item {
  width: 340px; max-width: 100%;
  margin: 0 auto 14px;
  display: flex; align-items: center; gap: 12px;
  background: var(--c-white);
  border: 1px solid #e6d780;
  border-radius: 14px;
  padding: 16px 20px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 20px;
  color: var(--c-text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  text-align: left;
}
.scope__check {
  flex: 0 0 auto;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--c-line); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 900; line-height: 1;
}
.scope__headline {
  margin-top: 40px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(22px, 7.3vw, 28px);
  line-height: 1.4;
  color: var(--c-text);
  white-space: nowrap;
}
.scope__sub {
  margin-top: 28px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(16px, 5.3vw, 20px);
  line-height: 1.4;
  color: var(--c-text);
  white-space: nowrap;
}
/* 矢印を次セクション(ポータル)の枠線に重ねる */
.scope__arrow {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  margin: 0;
  color: var(--c-red);
  line-height: 0;
  z-index: 3;
}
.scope__arrow svg { display: inline-block; }

/* =========================================================
   Portal logos band
   ========================================================= */
.portals {
  background: var(--c-white);
  padding: 30px 20px 44px;   /* 上余白で矢印とロゴ枠の間に余白を確保 */
}
.portals__list {
  list-style: none;
  margin: 0 auto;
  padding: 34px 20px;
  max-width: 300px;
  border: 2px solid var(--c-black);
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
/* 余白トリム済みロゴを均一サイズ枠に収めて見た目を統一 */
.portals__list li {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portals__list img {
  max-height: 50px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
}

/* =========================================================
   Worries (お悩み)
   ========================================================= */
.worries { background: var(--c-gray); padding: 30px 0 31px; }
.worries__title {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 24px;
  color: var(--c-text);
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-black);
  margin-bottom: 28px;
}
.worries__row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 18px;
}
.worries__row--reverse { flex-direction: row-reverse; }
.worries__person {
  flex: 0 0 34%;
  width: 34%;
  max-width: 130px;
}

/* speech bubble */
.bubble {
  position: relative;
  flex: 1 1 auto;
  background: var(--c-white);
  border: 2px solid #24344d;
  border-radius: 14px;
  padding: 12px 14px;
  text-align: center;
}
.bubble__sub {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 11px;
  line-height: 1.4;
  color: var(--c-text);
}
.bubble__main {
  margin-top: 3px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
  color: var(--c-text);
}
.bubble::before, .bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 9px solid transparent;
}
/* tail pointing right (person on the right) */
.bubble--right-tail::before { right: -18px; border-left-color: #24344d; }
.bubble--right-tail::after  { right: -14px; border-left-color: var(--c-white); }
/* tail pointing left (person on the left) */
.bubble--left-tail::before { left: -18px; border-right-color: #24344d; }
.bubble--left-tail::after  { left: -14px; border-right-color: var(--c-white); }

/* =========================================================
   Solutions (解決策)
   ========================================================= */
.solutions { background: var(--c-yellow); padding: 40px 0 34px; }
.solutions__title {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 24px;
  color: var(--c-text);
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-black);
  width: max-content;
  max-width: 100%;
  margin: 0 auto 30px;
}
.scard {
  border: 1px solid var(--c-black);
  border-radius: 32px;
  padding: 22px 20px 26px;
  margin-bottom: 26px;
  text-align: center;
}
.scard__img { margin: 0 auto 6px; max-width: 185px; }
.scard__title {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 20px;
  color: var(--c-text);
  margin-bottom: 12px;
}
.scard__body {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text);
  text-align: left;
}
.solutions__cta { margin-top: 4px; }
.solutions__cta .btn__label,
.btn .btn__label { font-family: var(--font-en); }

/* =========================================================
   Voices (お客様の声) — 横スクロールカルーセル
   ========================================================= */
.voices { background: #fafafa; padding: 44px 0 48px; }
.voices__title {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 24px;
  color: var(--c-text);
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-black);
  width: max-content; max-width: 100%;
  margin: 0 auto 12px;
}
.voices__hint { text-align: center; font-size: 12px; color: #aaa; margin-bottom: 18px; }
.voices__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 20px 10px;
  scrollbar-width: none;
}
.voices__track::-webkit-scrollbar { display: none; }
.voice-card {
  scroll-snap-align: center;
  flex: 0 0 78%;
  max-width: 300px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  font: inherit;
  text-align: left;
  color: inherit;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.voice-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, .1); }
.voice-card__stars { color: #ffb300; font-size: 18px; letter-spacing: 3px; margin-bottom: 12px; }
.voice-card__stars .off,
.voice-modal__stars .off { color: #e0e0e0; }
.voice-card__text {
  font-size: 14px; line-height: 1.85; color: var(--c-text);
  margin-bottom: 16px; flex: 1 1 auto;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.voice-card__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; }
.voice-card__person { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.voice-card__name { font-size: 13px; font-weight: 700; color: #555; }
.voice-card__meta { font-size: 11px; color: #999; line-height: 1.4; }
.voice-card__more { font-size: 12px; font-weight: 700; color: var(--c-line); white-space: nowrap; }
.voice-card__detail { display: none; }

/* 詳細モーダル */
.voice-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.voice-modal[hidden] { display: none; }
.voice-modal__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .55); }
.voice-modal__dialog {
  position: relative; z-index: 1;
  background: #fff; border-radius: 16px;
  width: 100%; max-width: 340px; max-height: 82vh; overflow-y: auto;
  padding: 30px 22px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
  text-align: left;
}
.voice-modal__close {
  position: absolute; top: 8px; right: 12px;
  width: 32px; height: 32px; background: none; border: 0;
  font-size: 26px; line-height: 1; color: #999; cursor: pointer;
}
.voice-modal__stars { color: #ffb300; font-size: 20px; letter-spacing: 3px; margin-bottom: 16px; }
.voice-modal__body .qa { display: block; margin-bottom: 16px; font-size: 14px; line-height: 1.8; color: var(--c-text); }
.voice-modal__body .qa b { display: block; font-size: 12px; font-weight: 700; color: var(--c-line); margin-bottom: 4px; }
.voice-modal__name { text-align: right; font-weight: 700; color: #555; margin-top: 4px; }
.voice-modal__meta { text-align: right; font-size: 12px; color: #999; margin-top: 2px; }
body.modal-open { overflow: hidden; }

/* =========================================================
   Mechanism (仲介手数料無料のしくみ)
   ========================================================= */
.mechanism { background: var(--c-white); padding: 38px 0 40px; }
.mechanism__title {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 24px;
  color: var(--c-text);
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-black);
  width: max-content; max-width: 100%;
  margin: 0 auto 34px;
}
.mechanism__lead {
  background: #f5f5f5;
  border-radius: 24px;
  padding: 22px 16px;
  color: #424242;
  font-family: var(--font-en);
  font-size: 14px;
  line-height: 1.4;
}
.mechanism__lead p { margin-bottom: 14px; }
.mechanism__lead p:last-child { margin-bottom: 0; }
.mechanism__lead-strong { font-weight: 900; color: var(--c-text); }

/* case boxes */
.mcase { border: 1px solid var(--c-black); margin-top: 40px; overflow: hidden; }
.mcase__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 22px 8px 18px;
}
.mcase__bracket { font-size: 48px; line-height: 1; color: var(--c-text); font-weight: 300; }
.mcase__head-text { display: flex; flex-direction: column; align-items: center; text-align: center; }
.mcase__head-sub { font-family: var(--font-en); font-size: 18px; color: var(--c-text); }
.mcase__head-hl { font-family: var(--font-en); font-weight: 700; font-size: 28px; line-height: 1.4; }
.mcase--free .mcase__head-hl { color: #81d4fa; }
.mcase--fee  .mcase__head-hl { color: #ef9a9a; }

/* flow diagram */
.mflow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 20px 10px 30px;
}
.party { margin: 0; display: flex; flex-direction: column; align-items: center; width: 74px; }
.party img { width: 100%; height: auto; }
.party figcaption {
  margin-top: 4px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 15px;
  color: var(--c-text);
  white-space: nowrap;
}
.party.is-faded { opacity: .35; }

.suumee-node {
  flex: 0 0 auto;
  width: 80px; height: 80px;
  border: 1px solid var(--c-black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "Inter", var(--font-en);
  font-size: 16px;
  color: var(--c-text);
  align-self: flex-start;
  margin-top: 18px;
}

.arrowcell {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  align-self: flex-start;
  margin-top: 40px;
  display: flex; justify-content: center;
}
.arrow { width: 30px; height: 22px; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.arrow--gray { stroke: rgba(34,34,34,.5); }
.arrow--red { stroke: #ff1744; }
.arrow--left { transform: scaleX(-1); }
.coin {
  position: absolute;
  top: -26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 26px;
  background: #ffb300;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 15px; line-height: 1;
}

.mcase__result {
  color: #fff;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 20px;
  text-align: center;
  padding: 15px 10px;
}
.mcase--free .mcase__result { background: #81d4fa; }
.mcase--fee  .mcase__result { background: #ef9a9a; }
.mechanism__note {
  margin-top: 22px;
  font-size: 12px;
  line-height: 1.7;
  color: #666;
}
.mechanism__note strong { color: var(--c-text); }

/* =========================================================
   Area (対応エリア)
   ========================================================= */
.area { background: var(--c-white); padding: 44px 0; text-align: center; }
.area__title {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 24px;
  color: var(--c-text);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-black);
  width: max-content; max-width: 100%;
  margin: 0 auto 22px;
}
.area__lead { font-size: 15px; line-height: 1.7; color: #424242; margin-bottom: 22px; }
.area__lead b { font-weight: 700; color: var(--c-text); box-shadow: inset 0 -8px 0 var(--c-yellow); }
.area__wards {
  list-style: none; margin: 0 auto 18px; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  max-width: 320px;
}
/* 各区：タグ風（ボタンに見えないラベル）*/
.area__wards li {
  background: #fff8e1;
  color: #6b5300;
  border: 1px solid #f0dd8f;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 12px 6px 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.area__wards li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: #e0a800;
  flex: 0 0 auto;
}
.area__note { font-size: 12px; line-height: 1.7; color: #888; }

/* =========================================================
   FAQ (よくある質問)
   ========================================================= */
.faq { background: var(--c-yellow); padding: 40px 0; }
.faq__title {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 24px;
  color: var(--c-text);
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--c-black);
  width: max-content; max-width: 100%;
  margin: 0 auto 30px;
}
.faq__item { border-bottom: 2px solid var(--c-black); margin-bottom: 30px; }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 4px 14px;
  font-weight: 700;
  font-size: 16px;
  color: var(--c-text);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 12px; height: 12px;
  border-right: 2px solid var(--c-text);
  border-bottom: 2px solid var(--c-text);
  transform: rotate(45deg);
  transition: transform .2s ease;
  margin-bottom: 4px;
}
.faq__item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; margin-bottom: 0; }
.faq__answer {
  padding: 0 4px 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #424242;
}
.faq__cta { margin-top: 10px; }

/* =========================================================
   Company (会社概要)
   ========================================================= */
.company { background: var(--c-white); padding: 44px 0; }
.company__title {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 24px;
  color: var(--c-text);
  text-align: center;
  margin-bottom: 28px;
}
.company__list { margin: 0; }
.company__row {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 12px;
  padding: 16px 4px;
  border-bottom: 1px solid #e0e0e0;
}
.company__row dt {
  font-weight: 700;
  font-size: 14px;
  color: var(--c-text);
}
.company__row dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #424242;
}
.company__row dd a { text-decoration: underline; }

/* =========================================================
   Floating CTA (常時表示)
   ========================================================= */
/* SP: 画面下部を全幅で覆う固定バー */
.floating-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 20px calc(18px + env(safe-area-inset-bottom, 0px));
  background: var(--c-line);
  color: #fff;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, .18);
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 17px;
  transition: transform .3s ease, opacity .3s ease;
}
.floating-cta:hover { filter: brightness(.96); }
.floating-cta:active { filter: brightness(.92); }
.floating-cta__icon { display: flex; flex: 0 0 auto; }
.floating-cta__icon img { display: block; width: 46px; height: 46px; }
.floating-cta .cta__main { font-size: 17px; }
.floating-cta__label { flex: 1 1 auto; text-align: center; }
.floating-cta__chevron { display: flex; flex: 0 0 auto; opacity: .95; }
/* 問い合わせセクション表示中は下へスライドして隠す */
.floating-cta.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
/* PC: 中央カラム幅の丸ピンに */
@media (min-width: 480px) {
  .floating-cta {
    left: 50%;
    right: auto;
    bottom: 16px;
    width: var(--content-w);
    transform: translateX(-50%);
    padding: 15px 20px;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
  }
  .floating-cta.is-hidden { transform: translate(-50%, 140%); }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--c-dark); color: #fff; text-align: center; padding: 28px 20px; }
.site-footer__logo-img { display: inline-block; height: 28px; width: auto; }
.site-footer__links { margin-top: 12px; font-size: 12px; }
.site-footer__links a { color: rgba(255, 255, 255, .75); text-decoration: underline; }
.site-footer__copy { margin-top: 8px; font-size: 12px; color: rgba(255, 255, 255, .7); }

/* =========================================================
   Responsive — center the mobile column on larger screens
   ========================================================= */
@media (min-width: 480px) {
  :root { --content-w: 430px; }
}
