/* ==========================================================================
   BCサービス /reform/ 専用CSS
   テーマ：沖縄の、顔が見える住宅設備コンシェルジュ
   構成：1.トークン 2.リセット 3.共通パーツ 4.ボタン 5.ヘッダー
        6.S1 FV 7.信頼ストリップ 8.S2 共感 9.S3 設備 10.S4 理由
        11.途中CTA 12.S5 窓口 13.S6 比較 14.S7 相談例 15.S8 人物
        16.S9 流れ 17.S10 費用 18.S11 エリア 19.S12 FAQ 20.S13 最終CTA
        21.フッター 22.固定CTA 23.レスポンシブ
   ========================================================================== */

/* --- 1. トークン ---------------------------------------------------------- */
:root {
  /* ベース面 */
  --c-white: #ffffff;
  --c-offwhite: #fbfaf7;
  --c-sky: #eaf6f8;
  --c-sky-deep: #dcedf2;
  --c-sand: #f6f1e8;
  --c-sand-deep: #ece0cc;
  --c-bluegrey: #edf2f6;
  --c-warmgrey: #f2efe9;
  --c-quiet: #f7f8f9;

  /* ブランド色 */
  --c-navy: #123b57;
  --c-navy-deep: #0b2739;
  --c-navy-mid: #1a5074;
  --c-teal: #168a91;
  --c-teal-deep: #0f6b71;
  --c-teal-pale: #d8ecee;
  --c-coral: #e98c70;
  --c-coral-deep: #cf6a4c;
  --c-coral-pale: #fbeee8;
  --c-yellow: #f3c969;

  /* LINE */
  --c-line: #06c755;
  --c-line-dark: #05a848;

  /* 文字 */
  --c-ink: #16303f;
  --c-ink-sub: #4f6674;
  --c-ink-mute: #7a8b96;
  --c-border: #dde5ea;
  --c-border-soft: #e8eef1;

  --f-base:
    "Helvetica Neue",
    Arial,
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Noto Sans JP",
    Meiryo,
    sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-btn: 10px;

  --sh-card: 0 2px 8px rgba(18, 59, 87, 0.06);
  --sh-lift: 0 10px 28px rgba(18, 59, 87, 0.1);
  --sh-panel: 0 18px 44px rgba(11, 39, 57, 0.16);
  --sh-bar: 0 -2px 14px rgba(18, 59, 87, 0.14);

  --w-max: 1140px;
  --w-text: 720px;

  --sp-sec: 60px;
  --gutter: 20px;

  --fs-body: 16px;
  --lh-body: 1.8;
}

/* --- 2. リセット ---------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--c-white);
  color: var(--c-ink);
  font-family: var(--f-base);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
p,
blockquote,
figure,
ul,
ol,
dl {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 2px solid var(--c-teal);
  outline-offset: 3px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ico {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.12em;
}

/* --- 3. 共通パーツ -------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--w-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sec {
  padding-block: var(--sp-sec);
  position: relative;
}

.sec--sand    { background: var(--c-sand); }
.sec--sky     { background: var(--c-sky); }
.sec--bluegrey{ background: var(--c-bluegrey); }
.sec--warmgrey{ background: var(--c-warmgrey); }
.sec--quiet   { background: var(--c-quiet); }

.sec--deep {
  background: var(--c-navy);
  color: var(--c-white);
  overflow: hidden;
}

.sec h2,
.sec-fv h1,
.sec-cta h2 {
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
}

.sec h2 {
  font-size: 22px;
  color: var(--c-navy);
  margin-bottom: 24px;
  letter-spacing: 0.005em;
}

.sec--deep h2 {
  color: var(--c-white);
}

.sec h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.sec p,
.sec li {
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
}

/* 小さな見出しラベル */
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--c-teal-deep);
  margin-bottom: 12px;
}

.sec-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-coral);
}

.sec-eyebrow--onDark {
  color: var(--c-teal-pale);
}

.sec-eyebrow--onDark::before {
  background: var(--c-yellow);
}

.sec-eyebrow--center {
  display: flex;
  justify-content: center;
}

.sec-title-center {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.sec-lead,
.sec-note {
  color: var(--c-ink-sub);
  max-width: var(--w-text);
}

.sec--deep .sec-lead,
.sec--deep .sec-note {
  color: rgba(255, 255, 255, 0.86);
}

.sec-lead { margin-bottom: 28px; }
.sec-note { margin-top: 24px; font-size: 15px; line-height: 1.75; }

.sec-lead--center,
.sec-note--center {
  text-align: center;
  margin-inline: auto;
}

.hours,
.phone-note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-ink-mute);
}

.br-pc,
.br-narrow {
  display: none;
}

/* --- 4. ボタン ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px 20px;
  border-radius: var(--r-btn);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  width: 100%;
  border: 1.5px solid transparent;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn .ico {
  font-size: 1.25em;
  stroke-width: 1.5;
}

/* LINE（主導線） */
.btn--line {
  background: var(--c-line);
  color: var(--c-white);
  box-shadow: 0 2px 6px rgba(4, 138, 60, 0.22);
}

.btn--line:hover {
  background: var(--c-line-dark);
}

.btn--lg {
  min-height: 60px;
  font-size: 18px;
}

/* 電話（補助・ネイビー／ティールのアウトライン） */
.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.55);
  min-height: 50px;
  font-size: 16px;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--c-white);
}

.btn--outline {
  background: var(--c-white);
  color: var(--c-navy);
  border-color: var(--c-navy);
  min-height: 50px;
  font-size: 16px;
}

.btn--outline:hover {
  background: var(--c-sky);
}

/* --- 5. ヘッダー ---------------------------------------------------------- */
.site-header {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border-soft);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding-block: 8px;
}

.site-header__brand {
  min-width: 0;
}

.site-header__name {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: var(--c-navy);
  letter-spacing: 0.01em;
}

.site-header__tagline {
  color: var(--c-teal-deep);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 3px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.site-header__tel {
  flex-shrink: 0;
  text-align: right;
}

.site-header__tel a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-navy);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__tel a .ico {
  color: var(--c-teal);
  font-size: 1.05em;
}

.site-header__tel a:hover {
  color: var(--c-teal-deep);
}

.site-header__tel .hours {
  font-size: 11px;
  margin-top: 1px;
}

.btn--header-line {
  display: none;
}

/* --- 6. S1 ファーストビュー ---------------------------------------------- */
.sec-fv {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(168deg, #143f5d 0%, var(--c-navy) 46%, #0d2f47 100%);
  color: var(--c-white);
  padding-block: 34px 40px;
}

.fv__deco {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.fv__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
}

.fv__glow--teal {
  width: 320px;
  height: 320px;
  top: -110px;
  right: -110px;
  background: rgba(22, 138, 145, 0.5);
}

.fv__glow--sand {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: -100px;
  background: rgba(243, 201, 105, 0.16);
}

.fv__plan {
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: 320px;
  height: 260px;
  color: rgba(255, 255, 255, 0.14);
  opacity: 0.9;
}

.fv__grid {
  display: grid;
  gap: 24px;
}

.fv__kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 100%;
  color: #cdeaee;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.5;
  padding: 7px 13px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.fv__kicker .ico {
  color: var(--c-yellow);
  font-size: 1.15em;
}

.fv__title {
  font-size: clamp(25px, 7.5vw, 32px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.fv__lead {
  font-size: 16px;
  line-height: 1.85;
  color: #e4f1f4;
  margin-bottom: 16px;
}

.fv__fact {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  padding-left: 12px;
  border-left: 2px solid rgba(22, 138, 145, 0.9);
}

/* FV 人物 */
.fv__who {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-lg);
  padding: 16px;
  overflow: hidden;
}

.fv__who-ring,
.fv__who-disc,
.fv__who-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.fv__who-ring {
  width: 150px;
  height: 150px;
  top: -46px;
  right: -46px;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
}

.fv__who-disc {
  width: 96px;
  height: 96px;
  bottom: -52px;
  right: 20px;
  background: rgba(22, 138, 145, 0.34);
}

.fv__who-dot {
  width: 12px;
  height: 12px;
  top: 18px;
  right: 22px;
  background: var(--c-coral);
}

.fv__who-photo {
  position: relative;
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #f3f6f8;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 0 0 8px rgba(22, 138, 145, 0.32);
  overflow: hidden;
}

.fv__who-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1.06);
}

.fv__who-body {
  position: relative;
  min-width: 0;
}

.fv__who-role {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-navy-deep);
  background: var(--c-yellow);
  border-radius: 4px;
  padding: 2px 8px;
  line-height: 1.5;
}

.fv__who-org {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 8px;
  line-height: 1.4;
}

.fv__who-name {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.fv__who-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.fv__who-creds li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.4;
  color: #d8eef0;
  background: rgba(22, 138, 145, 0.3);
  border: 1px solid rgba(216, 236, 238, 0.3);
  border-radius: 999px;
  padding: 4px 9px;
}

.fv__who-creds .ico {
  color: var(--c-teal-pale);
  font-size: 1.15em;
}

/* FV CTA */
.fv__micro {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.fv__micro-strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
}

.fv__tel {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
}

.fv__tel-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 8px;
}

.fv__tel-btn {
  margin-bottom: 8px;
}

.fv__tel .hours,
.fv__tel .phone-note {
  color: rgba(255, 255, 255, 0.62);
}

/* --- 7. 信頼ストリップ ---------------------------------------------------- */
.trust-strip {
  background: var(--c-sky);
  border-bottom: 1px solid var(--c-sky-deep);
  padding-block: 18px;
}

.trust-strip__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.trust-strip__list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  padding: 10px 6px;
}

.trust-strip__list li + li {
  box-shadow: inset 1px 0 0 rgba(18, 59, 87, 0.1);
}

.trust-strip__list li:nth-child(odd) {
  box-shadow: none;
}

.trust-strip__list .ico {
  font-size: 20px;
  color: var(--c-teal);
  stroke-width: 1.5;
  margin-bottom: 2px;
}

.trust-strip__figure {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-navy);
  letter-spacing: 0.01em;
}

.trust-strip__figure small {
  font-size: 0.62em;
  margin-left: 1px;
}

.trust-strip__label {
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-ink-sub);
}

/* --- 8. S2 共感 ---------------------------------------------------------- */
.worry-title {
  font-size: clamp(21px, 6.2vw, 26px);
  line-height: 1.55;
  color: var(--c-navy);
  margin-bottom: 16px;
}

.worry-note {
  margin-top: 0;
  margin-bottom: 26px;
}

.worry-list {
  display: grid;
  gap: 10px;
}

.worry-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--c-white);
  border-radius: var(--r-md);
  border: 1px solid #eae1d2;
  box-shadow: var(--sh-card);
  padding: 14px 16px;
}

.worry-list p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-ink);
  min-width: 0;
}

.worry-tag {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-coral-deep);
  background: var(--c-coral-pale);
  border-radius: 6px;
  padding: 4px 9px;
  margin-top: 1px;
  white-space: nowrap;
}

.worry-tag--alt {
  color: var(--c-navy);
  background: var(--c-sky-deep);
}

.worry-list__last {
  border-color: var(--c-sand-deep);
  background: linear-gradient(180deg, #fffdf8 0%, var(--c-white) 100%);
}

/* --- 9. S3 設備 ---------------------------------------------------------- */
.item-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.item-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-md);
  box-shadow: var(--sh-card);
  padding: 16px 14px 18px;
}

.item-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  margin-bottom: 2px;
}

.item-card__icon .ico {
  font-size: 24px;
  stroke-width: 1.45;
}

.item-card h3 {
  font-size: 16px;
  color: var(--c-navy);
  letter-spacing: 0.01em;
}

.item-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-ink-sub);
}

/* カテゴリごとの淡い色差 */
.item-card--t1 { background: linear-gradient(180deg, #f4fafb 0%, #ffffff 62%); }
.item-card--t1 .item-card__icon { background: var(--c-teal-pale); color: var(--c-teal-deep); }
.item-card--t2 { background: linear-gradient(180deg, #f2f8fc 0%, #ffffff 62%); }
.item-card--t2 .item-card__icon { background: #dfeaf4; color: var(--c-navy-mid); }
.item-card--t3 { background: linear-gradient(180deg, #fdf8f1 0%, #ffffff 62%); }
.item-card--t3 .item-card__icon { background: #f4ead7; color: var(--c-navy); }
.item-card--t4 { background: linear-gradient(180deg, #fdf6f3 0%, #ffffff 62%); }
.item-card--t4 .item-card__icon { background: var(--c-coral-pale); color: var(--c-coral-deep); }

/* --- 10. S4 理由 --------------------------------------------------------- */
.reason-list {
  display: grid;
  gap: 14px;
}

.reason {
  position: relative;
  background: var(--c-white);
  border: 1px solid #e0e8ee;
  border-radius: var(--r-md);
  box-shadow: var(--sh-card);
  padding: 20px 18px 22px;
}

.reason__num {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-teal);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.reason h3 {
  color: var(--c-navy);
  margin-bottom: 8px;
}

.reason > p:not(.reason__num):not(.reason__shout) {
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-ink-sub);
}

.reason--hero {
  background: linear-gradient(160deg, #fffaf0 0%, var(--c-sand) 100%);
  border-color: var(--c-sand-deep);
  box-shadow: 0 8px 22px rgba(18, 59, 87, 0.09);
}

.reason--hero .reason__num {
  color: var(--c-coral-deep);
}

.reason__shout {
  font-size: clamp(19px, 5.4vw, 23px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-navy);
  letter-spacing: -0.005em;
  margin-bottom: 12px;
}

.reason--hero h3 {
  font-size: 15px;
  color: var(--c-teal-deep);
  padding-top: 12px;
  border-top: 1px dashed #d9c9a9;
}

/* --- 11. 途中CTA --------------------------------------------------------- */
.mini-cta {
  position: relative;
  background: linear-gradient(150deg, #ffffff 0%, #f3faf6 100%);
  border: 1px solid #cfe9d9;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
  padding: 22px 18px 20px;
  margin-top: 28px;
  text-align: center;
}

.mini-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-line);
  color: var(--c-white);
  margin-bottom: 10px;
}

.mini-cta__icon .ico {
  font-size: 22px;
}

.mini-cta__lead {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
  color: var(--c-navy);
  margin-bottom: 14px;
}

.mini-cta__btn .btn {
  max-width: 340px;
  margin-inline: auto;
  min-height: 52px;
  font-size: 16px;
}

/* --- 12. S5 窓口は、ひとつ。 --------------------------------------------- */
.hub__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hub__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hub__glow--a {
  width: 340px;
  height: 340px;
  top: -140px;
  left: -120px;
  background: rgba(22, 138, 145, 0.42);
}

.hub__glow--b {
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: -110px;
  background: rgba(243, 201, 105, 0.14);
}

.hub__title {
  text-align: center;
  font-size: clamp(28px, 8.4vw, 38px);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.hub__lead {
  font-size: 15px;
  margin-bottom: 30px;
}

.hub {
  display: grid;
  gap: 12px;
  position: relative;
}

.hub__node {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-areas:
    "icon name"
    "icon sub";
  align-items: center;
  column-gap: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-md);
  padding: 15px 16px;
}

.hub__badge {
  position: absolute;
  top: -8px;
  left: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  background: var(--c-navy);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 1px 7px;
}

.hub__badge--bc {
  color: var(--c-navy-deep);
  background: var(--c-yellow);
  border-color: var(--c-yellow);
}

.hub__flag {
  grid-area: flag;
  justify-self: start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--c-navy-deep);
  background: var(--c-yellow);
  border-radius: 4px;
  padding: 2px 9px;
}

.hub__icon {
  grid-area: icon;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #d8eef0;
}

.hub__icon .ico {
  font-size: 24px;
  stroke-width: 1.5;
}

.hub__icon--bc {
  background: var(--c-teal);
  color: var(--c-white);
  box-shadow: 0 0 0 5px rgba(22, 138, 145, 0.26);
}

.hub__name {
  grid-area: name;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-white);
}

.hub__sub {
  grid-area: sub;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.hub__node--bc {
  grid-template-areas:
    "icon flag"
    "icon name"
    "icon sub";
  background: linear-gradient(140deg, rgba(22, 138, 145, 0.34) 0%, rgba(22, 138, 145, 0.14) 100%);
  border-color: rgba(216, 236, 238, 0.42);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hub__node--bc .hub__name {
  font-size: 21px;
}

.hub__node--bc .hub__sub {
  color: #daeef0;
}

/* 縦フローのコネクタ（SP） */
.hub__node:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 38px;
  bottom: -12px;
  width: 2px;
  height: 12px;
  background: rgba(216, 236, 238, 0.42);
}

.hub__message {
  display: block;
  margin-top: 28px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.96) 0%, #f4fbfb 100%);
  border-radius: var(--r-lg);
  padding: 20px 18px;
  text-align: center;
  box-shadow: var(--sh-panel);
}

.hub__message-sub {
  display: block;
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-ink-sub);
  margin-bottom: 8px;
}

.hub__message-main {
  display: block;
  font-size: clamp(18px, 5.2vw, 22px);
  font-weight: 700;
  line-height: 1.55;
  color: var(--c-navy);
}

/* --- 13. S6 比較 --------------------------------------------------------- */
.compare {
  display: grid;
  gap: 10px;
}

.compare__col {
  border-radius: var(--r-lg);
  padding: 20px 18px 22px;
}

.compare__col h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  padding-bottom: 10px;
}

.compare__heads {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.compare__heads li {
  font-size: clamp(18px, 5vw, 21px);
  font-weight: 700;
  line-height: 1.4;
}

.compare__detail li {
  position: relative;
  padding: 7px 0 7px 18px;
  font-size: 14px;
  line-height: 1.65;
}

.compare__detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* 左：面倒（ネガティブにしすぎない） */
.compare__col--before {
  background: var(--c-warmgrey);
  border: 1px solid #e3ded4;
}

.compare__col--before h3 {
  color: var(--c-ink-sub);
  border-bottom: 1px solid #ded8cd;
}

.compare__col--before .compare__heads li {
  color: #8b8375;
}

.compare__col--before .compare__detail li {
  color: var(--c-ink-sub);
}

.compare__col--before .compare__detail li::before {
  background: #c0b8a9;
}

/* 右：楽（明るく整理された印象） */
.compare__col--after {
  background: linear-gradient(160deg, #f2fafa 0%, #ffffff 100%);
  border: 1.5px solid #b6dcdf;
  box-shadow: var(--sh-lift);
}

.compare__col--after h3 {
  color: var(--c-teal-deep);
  border-bottom: 1px solid #cfe7e9;
}

.compare__col--after .compare__heads li {
  color: var(--c-navy);
}

.compare__col--after .compare__detail li {
  color: var(--c-ink);
}

.compare__col--after .compare__detail li::before {
  background: var(--c-teal);
}

.compare__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare__arrow span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-teal-deep);
  background: var(--c-white);
  border: 1px solid #c6e2e4;
  border-radius: 999px;
  padding: 5px 14px;
}

.compare__arrow span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--c-teal);
  border-bottom: 2px solid var(--c-teal);
  transform: rotate(45deg);
  margin-top: -2px;
}

/* --- 14. S7 相談例 ------------------------------------------------------- */
.consult-list {
  display: grid;
  gap: 14px;
}

.consult-pattern {
  background: var(--c-white);
  border: 1px solid #eae1d2;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
  padding: 20px 18px 22px;
  border-top: 3px solid var(--c-teal-pale);
}

.consult-pattern--l1 { border-top-color: #b9dee0; }
.consult-pattern--l2 { border-top-color: var(--c-teal); }
.consult-pattern--l3 { border-top-color: var(--c-navy); }

.consult-level {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-ink-mute);
  margin-bottom: 8px;
}

.consult-level__dots {
  display: inline-flex;
  gap: 4px;
}

.consult-level__dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dfe6ea;
}

.consult-level__dots i.on {
  background: var(--c-teal);
}

.consult-pattern h3 {
  font-size: 18px;
  color: var(--c-navy);
  margin-bottom: 12px;
}

.consult-pattern blockquote {
  position: relative;
  background: var(--c-coral-pale);
  border-radius: 14px 14px 14px 4px;
  padding: 13px 15px;
  margin-bottom: 14px;
}

.consult-pattern blockquote p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #7a4633;
}

.consult-answer {
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-teal-deep);
  padding-left: 12px;
  border-left: 3px solid var(--c-teal);
}

/* --- 15. S8 人物 --------------------------------------------------------- */
.about__grid {
  display: grid;
  gap: 20px;
}

.about__card {
  position: relative;
  background: var(--c-white);
  border: 1px solid #d7e7ec;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
  padding: 22px 18px 20px;
  text-align: center;
}

.about__photo {
  width: 132px;
  height: 132px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  background: #f3f6f8;
  box-shadow: 0 0 0 4px var(--c-white), 0 0 0 9px var(--c-teal-pale);
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.06);
}

.about__role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-teal-deep);
}

.about__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-navy);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.about__exp {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-navy-deep);
  background: var(--c-yellow);
  border-radius: 999px;
  padding: 4px 14px;
  margin-top: 12px;
}

.about__certs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.about__certs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-teal-deep);
  background: var(--c-white);
  border: 1px solid var(--c-teal);
  border-radius: 999px;
  padding: 6px 13px;
}

.about__text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--c-ink-sub);
}

.about__text p + p {
  margin-top: 14px;
}

.about__pull {
  font-size: clamp(17px, 4.8vw, 20px) !important;
  font-weight: 700;
  line-height: 1.6 !important;
  color: var(--c-navy) !important;
}

.about__work {
  margin: 0;
}

.about__work img {
  width: 100%;
  border-radius: var(--r-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
}

.about__work figcaption {
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--c-ink-mute);
}

.about__role-flow {
  display: grid;
  gap: 10px;
}

.about__role-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-areas:
    "icon head"
    "icon body";
  column-gap: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d7e7ec;
  border-radius: var(--r-md);
  padding: 14px 16px;
}

.about__role-icon {
  grid-area: icon;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-teal-pale);
  color: var(--c-teal-deep);
}

.about__role-icon .ico {
  font-size: 22px;
  stroke-width: 1.5;
}

.about__role-flow h3 {
  grid-area: head;
  font-size: 15.5px;
  color: var(--c-navy);
}

.about__role-flow p {
  grid-area: body;
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-ink-sub);
  margin-top: 2px;
}

.about__role-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 37px;
  bottom: -10px;
  width: 2px;
  height: 10px;
  background: #bcdbe0;
}

/* --- 16. S9 流れ --------------------------------------------------------- */
.flow-list {
  display: grid;
  gap: 12px;
  counter-reset: flow;
}

.flow-step {
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 16px 18px 18px;
}

.flow-step__num {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-navy-mid);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.flow-step__num span {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--c-ink-mute);
}

.flow-step h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-navy);
  margin-bottom: 8px;
}

.flow-step p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-ink-sub);
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 2px;
  height: 12px;
  background: var(--c-border);
}

.flow-step--first {
  background: linear-gradient(155deg, #f2fbf5 0%, var(--c-white) 72%);
  border-color: #b7e3c6;
  box-shadow: 0 6px 18px rgba(6, 199, 85, 0.1);
}

.flow-step--first .flow-step__num {
  color: var(--c-line-dark);
}

.flow-step__line-ico {
  font-size: 1.2em;
  color: var(--c-line);
}

.flow-step__shout {
  font-size: 15px !important;
  font-weight: 700;
  color: var(--c-navy) !important;
  margin-bottom: 6px;
}

.flow-step--last {
  background: linear-gradient(155deg, #f5fafc 0%, var(--c-white) 72%);
  border-color: #c4dde6;
}

/* --- 17. S10 費用 -------------------------------------------------------- */
.cost-layout {
  display: grid;
  gap: 22px;
}

.cost-title {
  font-size: clamp(20px, 5.6vw, 25px);
  line-height: 1.55;
  margin-bottom: 18px;
}

.cost-lead {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.75;
  color: var(--c-navy);
  margin-bottom: 12px;
}

.cost-copy > p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--c-ink-sub);
}

.cost-flow {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  counter-reset: cf;
}

.cost-flow li {
  counter-increment: cf;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-white);
  border: 1px solid #e3ded4;
  border-radius: 999px;
  padding: 9px 16px 9px 12px;
}

.cost-flow li::before {
  content: counter(cf);
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-navy);
  color: var(--c-white);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cost-flow span {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--c-navy);
}

.cost-panel {
  background: var(--c-white);
  border: 1px solid #e3ded4;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
  padding: 22px 18px;
}

.cost-panel__head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-navy);
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid #ece7dd;
}

.cost-panel__head .ico {
  font-size: 22px;
  color: var(--c-teal);
}

.cost-points li {
  position: relative;
  padding: 11px 0 11px 30px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--c-ink);
}

.cost-points li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 1.05em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--c-teal);
  border-bottom: 2px solid var(--c-teal);
  transform: rotate(-45deg);
}

.cost-close {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  background: var(--c-sand);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
  color: var(--c-navy);
  text-align: center;
}

/* --- 18. S11 エリア ------------------------------------------------------ */
.area-primary {
  margin-bottom: 24px;
}

.area-primary h3,
.area-other h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-teal-deep);
  margin-bottom: 12px;
}

.area-primary ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.area-primary li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(150deg, var(--c-navy) 0%, #17506f 100%);
  color: var(--c-white);
  border-radius: var(--r-md);
  padding: 20px 10px;
  font-size: 21px;
  font-weight: 700;
  box-shadow: var(--sh-lift);
}

.area-primary li .ico {
  font-size: 1.05em;
  color: var(--c-yellow);
}

.area-other ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-other li {
  background: var(--c-white);
  border: 1px solid #cfe2e8;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--c-ink-sub);
}

/* --- 19. S12 FAQ -------------------------------------------------------- */
.faq-list {
  max-width: var(--w-text);
  display: grid;
  gap: 8px;
  margin-inline: auto;
}

.faq-list details {
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-md);
  overflow: hidden;
}

.faq-list details[open] {
  border-color: #cfe2e8;
}

.faq-list summary {
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-navy);
  min-height: 52px;
  padding: 15px 44px 15px 16px;
  position: relative;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "Q";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--c-teal-pale);
  color: var(--c-teal-deep);
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  margin-top: 2px;
}

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 22px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--c-teal);
  border-bottom: 2px solid var(--c-teal);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(-135deg);
  top: 25px;
}

.faq-list details p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--c-ink-sub);
  padding: 0 18px 18px 48px;
}

/* --- 20. S13 最終CTA ---------------------------------------------------- */
.sec-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(168deg, #143f5d 0%, var(--c-navy) 48%, #0d2f47 100%);
  color: var(--c-white);
  padding-block: 52px;
}

.cta__deco {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.cta__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}

.cta__glow--teal {
  width: 320px;
  height: 320px;
  top: -120px;
  left: -110px;
  background: rgba(22, 138, 145, 0.45);
}

.cta__glow--sand {
  width: 260px;
  height: 260px;
  bottom: -130px;
  right: -100px;
  background: rgba(243, 201, 105, 0.16);
}

.cta__plan {
  position: absolute;
  left: -50px;
  bottom: -30px;
  width: 300px;
  height: 244px;
  color: rgba(255, 255, 255, 0.12);
  transform: scaleX(-1);
}

.cta-layout {
  display: grid;
  gap: 26px;
}

.sec-cta h2 {
  font-size: clamp(23px, 6.6vw, 30px);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 14px;
}

.cta__lead {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 18px;
}

.cta__points {
  display: grid;
  gap: 8px;
}

.cta__points li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.cta__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(22, 138, 145, 0.9);
}

.cta__points li::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 0.78em;
  width: 8px;
  height: 4.5px;
  border-left: 1.8px solid var(--c-white);
  border-bottom: 1.8px solid var(--c-white);
  transform: rotate(-45deg);
}

.cta__panel {
  background: var(--c-white);
  color: var(--c-ink);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-panel);
  padding: 20px 18px 22px;
}

.cta__who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--c-border-soft);
}

.cta__who-photo {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  background: #f3f6f8;
  box-shadow: 0 0 0 2px var(--c-white), 0 0 0 5px var(--c-teal-pale);
}

.cta__who-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.06);
}

.cta__who-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-teal-deep);
}

.cta__who-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-navy);
  margin-top: 2px;
}

.cta__micro {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--c-teal-deep);
  text-align: center;
  margin-top: 10px;
}

.cta__phone {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border-soft);
}

.cta__phone-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-ink-sub);
  margin-bottom: 8px;
}

.cta__phone .hours,
.cta__phone .phone-note {
  margin-top: 6px;
}

/* --- 21. フッター -------------------------------------------------------- */
.site-footer {
  background: var(--c-navy-deep);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  line-height: 1.7;
  padding-block: 32px;
}

.site-footer__name {
  color: var(--c-white);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.site-footer p + p {
  margin-top: 4px;
}

.site-footer .hours {
  color: rgba(255, 255, 255, 0.6);
}

.site-footer a {
  color: #b6e2e5;
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer__privacy {
  margin-top: 16px;
}

/* --- 22. 固定CTA -------------------------------------------------------- */
.fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: flex;
  min-height: calc(64px + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: var(--c-white);
  box-shadow: var(--sh-bar);
}

.fixed-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 64px;
  text-decoration: none;
  font-weight: 700;
}

.fixed-cta a:first-child {
  flex: 0 0 30%;
  color: var(--c-navy);
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  font-size: 15px;
}

.fixed-cta a:first-child .ico {
  color: var(--c-teal);
  font-size: 1.2em;
}

.fixed-cta a:last-child {
  flex: 1 1 70%;
  background: var(--c-line);
  color: var(--c-white);
  font-size: 16.5px;
}

.fixed-cta a:last-child .ico {
  font-size: 1.3em;
}

body.is-fixed-cta {
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

/* ==========================================================================
   23. レスポンシブ
   ========================================================================== */

/* --- 400px以下：H1の追い込み改行 ---------------------------------------- */
/* H1「何社にも / 相談しなくていい。」の追い込み改行。
   SP（狭い）と2カラムFV（900px以上／左カラムが有限幅）で有効にする。 */
@media (max-width: 479px), (min-width: 900px) {
  .br-narrow {
    display: contents;
  }
}

@media (max-width: 359px) {
  :root {
    --gutter: 16px;
  }

  .fv__title {
    font-size: 24px;
  }

  .site-header__tagline {
    display: none;
  }

  .fv__who {
    gap: 12px;
    padding: 14px 12px;
  }

  .fv__who-photo {
    flex-basis: 70px;
    width: 70px;
    height: 70px;
  }

  .fv__who-name {
    font-size: 19px;
  }

  .item-card {
    padding: 13px 11px 15px;
  }

  .item-card__icon {
    width: 36px;
    height: 36px;
  }

  .item-card__icon .ico {
    font-size: 21px;
  }

  .item-card h3 {
    font-size: 15px;
  }

  .item-card p {
    font-size: 12px;
  }

  .trust-strip__figure {
    font-size: 17px;
  }

  .area-primary li {
    font-size: 18px;
    padding: 16px 8px;
  }

  .hub__node {
    grid-template-columns: 40px 1fr;
    column-gap: 12px;
  }

  .hub__icon {
    width: 40px;
    height: 40px;
  }

  .hub__node:not(:last-child)::after {
    left: 35px;
  }
}

/* --- 480px以上：SP大 ---------------------------------------------------- */
@media (min-width: 480px) {
  .worry-list {
    grid-template-columns: 1fr 1fr;
  }

  .worry-list__last {
    grid-column: span 2;
  }

  .btn {
    max-width: 400px;
  }

  .fv__cta .btn,
  .fv__tel-btn .btn,
  .cta__btn .btn,
  .cta__phone .btn {
    max-width: 400px;
  }
}

/* --- 600px以上 ---------------------------------------------------------- */
@media (min-width: 600px) {
  .about__role-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .about__role-flow li {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "head"
      "body";
    row-gap: 8px;
    padding: 18px 16px 20px;
  }

  .about__role-icon {
    align-self: start;
  }

  .about__role-flow li:not(:last-child)::after {
    left: auto;
    right: -9px;
    bottom: auto;
    top: 40px;
    width: 8px;
    height: 2px;
  }
}

/* --- 768px以上：タブレット --------------------------------------------- */
@media (min-width: 768px) {
  :root {
    --gutter: 28px;
    --sp-sec: 80px;
    --fs-body: 17px;
  }

  body {
    font-size: 17px;
  }

  .sec h2 {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .sec h3 {
    font-size: 19px;
  }

  .sec-eyebrow {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .sec-lead,
  .sec-note {
    font-size: 16px;
  }

  .br-pc {
    display: inline;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .site-header__name {
    font-size: 18px;
  }

  .site-header__tagline {
    font-size: 13px;
  }

  .site-header__tel a {
    font-size: 18px;
  }

  .site-header__tel .hours {
    font-size: 12px;
  }

  .btn--header-line {
    display: inline-flex;
    width: auto;
    min-height: 44px;
    padding: 9px 18px;
    font-size: 14px;
    border-radius: 999px;
  }

  .btn--header-line .ico {
    font-size: 1.2em;
  }

  /* FV */
  .sec-fv {
    padding-block: 48px 56px;
  }

  .fv__grid {
    row-gap: 26px;
  }

  .fv__title {
    font-size: 40px;
    margin-bottom: 18px;
  }

  .fv__lead {
    font-size: 17px;
  }

  .fv__kicker {
    font-size: 13px;
  }

  /* タブレット縦：FVは1カラム、人物カードは横組みで大きく */
  .fv__who {
    gap: 24px;
    padding: 22px 24px;
  }

  .fv__who-photo {
    flex-basis: 128px;
    width: 128px;
    height: 128px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.92), 0 0 0 10px rgba(22, 138, 145, 0.34);
  }

  .fv__who-name {
    font-size: 27px;
  }

  .fv__who-creds li {
    font-size: 12.5px;
    padding: 6px 12px;
  }

  .fv__who-ring {
    width: 200px;
    height: 200px;
    top: -70px;
    right: -70px;
  }

  .fv__plan {
    width: 400px;
    height: 325px;
    right: -60px;
    bottom: -40px;
  }

  .fv__glow--teal {
    width: 460px;
    height: 460px;
  }

  /* 信頼ストリップ */
  .trust-strip {
    padding-block: 22px;
  }

  .trust-strip__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .trust-strip__list li + li {
    box-shadow: inset 1px 0 0 rgba(18, 59, 87, 0.1);
  }

  .trust-strip__list .ico {
    font-size: 24px;
  }

  .trust-strip__figure {
    font-size: 24px;
  }

  .trust-strip__label {
    font-size: 12.5px;
  }

  /* S2 */
  .worry-title {
    font-size: 30px;
  }

  .worry-list {
    gap: 12px;
  }

  .worry-list li {
    padding: 16px 18px;
  }

  .worry-list p {
    font-size: 16px;
  }

  /* S3：768〜1023pxは2列＋横組みカード（8枚が4行で揃う） */
  .item-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .item-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-areas:
      "icon head"
      "icon body";
    align-content: center;
    column-gap: 18px;
    row-gap: 4px;
    padding: 20px 22px;
  }

  .item-card__icon {
    grid-area: icon;
    align-self: center;
    width: 54px;
    height: 54px;
    border-radius: 15px;
    margin-bottom: 0;
  }

  .item-card__icon .ico {
    font-size: 30px;
  }

  .item-card h3 {
    grid-area: head;
    font-size: 19px;
  }

  .item-card p {
    grid-area: body;
    font-size: 14px;
  }

  /* S4 */
  .reason-list {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .reason {
    padding: 26px 24px 28px;
    border-radius: var(--r-lg);
  }

  .reason__num {
    font-size: 34px;
  }

  .reason--hero {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    column-gap: 32px;
    align-items: center;
    padding: 30px 30px 32px;
  }

  .reason--hero .reason__num {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 8px;
  }

  .reason--hero .reason__shout {
    grid-column: 1;
    grid-row: 2;
    font-size: 27px;
    margin-bottom: 0;
  }

  .reason--hero h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    border-top: 0;
    padding-top: 0;
    font-size: 17px;
    margin-bottom: 10px;
  }

  .reason--hero > p:last-child {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }

  /* 途中CTA */
  .mini-cta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 20px;
    text-align: left;
    padding: 22px 26px;
    margin-top: 36px;
  }

  .mini-cta__icon {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
  }

  .mini-cta__icon .ico {
    font-size: 26px;
  }

  .mini-cta__lead {
    font-size: 17px;
    margin-bottom: 0;
  }

  .mini-cta__btn {
    margin: 0;
  }

  .mini-cta__btn .btn {
    width: 260px;
    max-width: none;
  }

  /* S5 */
  .hub__title {
    font-size: 44px;
  }

  .hub__lead {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .hub {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 26px;
  }

  .hub__node {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "name"
      "sub";
    justify-items: center;
    align-content: start;
    text-align: center;
    row-gap: 10px;
    padding: 26px 16px 24px;
    border-radius: var(--r-lg);
  }

  .hub__badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .hub__node:not(:last-child)::after {
    left: auto;
    right: -19px;
    bottom: auto;
    top: 50px;
    width: 12px;
    height: 12px;
    background: none;
    border-right: 2px solid rgba(216, 236, 238, 0.6);
    border-bottom: 2px solid rgba(216, 236, 238, 0.6);
    transform: rotate(-45deg);
  }

  .hub__node--bc {
    grid-template-areas:
      "icon"
      "flag"
      "name"
      "sub";
    padding: 30px 22px 28px;
  }

  .hub__flag {
    justify-self: center;
    margin-bottom: -2px;
  }

  .hub__node--bc .hub__icon {
    width: 64px;
    height: 64px;
  }

  .hub__node--bc .hub__icon .ico {
    font-size: 32px;
  }

  .hub__node--bc .hub__name {
    font-size: 26px;
  }

  .hub__message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
    padding: 26px 30px;
    border-radius: var(--r-xl);
  }

  .hub__message-sub {
    margin-bottom: 0;
    font-size: 14px;
  }

  .hub__message-main {
    font-size: 27px;
  }

  /* S6 */
  .compare {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
  }

  .compare__col {
    padding: 28px 26px 30px;
  }

  .compare__col h3 {
    font-size: 16px;
  }

  .compare__heads li {
    font-size: 23px;
  }

  .compare__detail li {
    font-size: 15px;
  }

  .compare__arrow {
    padding-inline: 12px;
  }

  .compare__arrow span {
    flex-direction: column;
    gap: 6px;
    padding: 12px 10px;
    border-radius: 999px;
    writing-mode: vertical-rl;
    letter-spacing: 0.2em;
  }

  .compare__arrow span::after {
    writing-mode: horizontal-tb;
    margin: 2px 0 0;
    transform: rotate(-45deg);
  }

  /* S7 */
  .consult-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
  }

  .consult-pattern {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px 22px 26px;
  }

  .consult-pattern blockquote {
    flex: 1;
  }

  /* S8 */
  .about__grid {
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.6fr);
    grid-template-areas:
      "card text"
      "work text"
      "flow flow";
    column-gap: 32px;
    row-gap: 24px;
    align-items: start;
  }

  .about__card { grid-area: card; }
  .about__text { grid-area: text; }
  .about__work { grid-area: work; }
  .about__role-flow { grid-area: flow; }

  .about__text p {
    font-size: 16px;
  }

  .about__work img {
    aspect-ratio: 4 / 3;
  }

  /* S9：3×2 */
  .flow-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 20px;
  }

  .flow-step {
    display: flex;
    flex-direction: column;
    padding: 22px 22px 24px;
    border-radius: var(--r-lg);
  }

  .flow-step__num {
    font-size: 26px;
  }

  .flow-step__num span {
    font-size: 11px;
  }

  .flow-step:not(:last-child)::after {
    left: auto;
    right: -11px;
    bottom: auto;
    top: 34px;
    width: 10px;
    height: 2px;
  }

  .flow-step:nth-child(3)::after {
    content: none;
  }

  .flow-step p {
    font-size: 15px;
  }

  /* S10 */
  .cost-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    column-gap: 40px;
    align-items: start;
  }

  .cost-title {
    font-size: 28px;
  }

  .cost-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .cost-flow li {
    flex-direction: column;
    gap: 8px;
    border-radius: var(--r-md);
    padding: 16px 12px;
    text-align: center;
  }

  .cost-flow span {
    font-size: 14px;
  }

  .cost-panel {
    padding: 28px 26px;
  }

  /* S11 */
  .area-primary li {
    font-size: 30px;
    padding: 32px 14px;
  }

  .area-primary h3,
  .area-other h3 {
    font-size: 15px;
  }

  /* FAQ */
  .faq-list {
    gap: 10px;
  }

  .faq-list summary {
    font-size: 17px;
    padding: 18px 48px 18px 20px;
    min-height: 58px;
  }

  .faq-list details p {
    font-size: 16px;
    padding: 0 22px 20px 54px;
  }

  /* S13 */
  .sec-cta {
    padding-block: 76px;
  }

  .cta-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    column-gap: 40px;
    align-items: start;
  }

  .sec-cta h2 {
    font-size: 34px;
  }

  .cta__lead {
    font-size: 16px;
  }

  .cta__panel {
    padding: 26px 26px 28px;
  }

  .cta__plan {
    width: 380px;
    height: 310px;
  }

  .fixed-cta {
    display: none;
  }

  body.is-fixed-cta {
    padding-bottom: 0;
  }
}

/* --- 900px以上：FVを2カラム（人物を主役に） ---------------------------- */
@media (min-width: 900px) {
  .fv__grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    grid-template-areas:
      "text who"
      "act  who"
      "tel  who";
    column-gap: 44px;
    row-gap: 22px;
    align-items: start;
  }

  .fv__text { grid-area: text; }
  .fv__who  { grid-area: who; align-self: center; }
  .fv__act  { grid-area: act; }
  .fv__tel  { grid-area: tel; }

  /* 2カラム時のH1は「左カラム幅に必ず収まる」サイズに抑える */
  .fv__title {
    font-size: 42px;
  }

  /* 人物カードを縦組みに */
  .fv__who {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    padding: 30px 24px 32px;
  }

  .fv__who-photo {
    flex-basis: 168px;
    width: 168px;
    height: 168px;
  }

  .fv__who-creds {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 7px;
  }

  .fv__who-creds li {
    justify-content: flex-start;
  }
}

/* --- 1024px以上：PC ----------------------------------------------------- */
@media (min-width: 1024px) {
  :root {
    --gutter: 32px;
    --sp-sec: 96px;
  }

  .sec h2 {
    font-size: 34px;
    line-height: 1.42;
    margin-bottom: 32px;
  }

  .sec h3 {
    font-size: 20px;
  }

  .sec-lead,
  .sec-note {
    font-size: 17px;
  }

  .site-header__inner {
    min-height: 74px;
    padding-block: 10px;
  }

  .site-header__name {
    font-size: 20px;
  }

  .btn--header-line {
    min-height: 46px;
    padding: 10px 22px;
    font-size: 15px;
  }

  /* FV */
  .sec-fv {
    padding-block: 60px 68px;
  }

  .fv__grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
    column-gap: 56px;
    row-gap: 26px;
  }

  .fv__title {
    font-size: 48px;
    line-height: 1.36;
    margin-bottom: 22px;
  }

  .fv__lead {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 20px;
  }

  .fv__fact {
    font-size: 14.5px;
  }

  .fv__kicker {
    font-size: 14px;
    padding: 8px 16px;
    margin-bottom: 22px;
  }

  .fv__who {
    padding: 34px 28px 32px;
    border-radius: var(--r-xl);
  }

  .fv__who-photo {
    flex-basis: 200px;
    width: 200px;
    height: 200px;
  }

  .fv__who-name {
    font-size: 30px;
  }

  .fv__who-org {
    font-size: 13.5px;
  }

  .fv__who-creds li {
    font-size: 13.5px;
    padding: 8px 14px;
  }

  .fv__micro-strong {
    font-size: 16px;
  }

  .fv__plan {
    width: 520px;
    height: 423px;
    right: -80px;
    bottom: -60px;
  }

  .fv__glow--teal {
    width: 560px;
    height: 560px;
    top: -180px;
    right: -160px;
  }

  .fv__glow--sand {
    width: 380px;
    height: 380px;
  }

  /* 信頼ストリップ */
  .trust-strip__list li {
    padding: 12px 10px;
  }

  .trust-strip__figure {
    font-size: 28px;
  }

  .trust-strip__label {
    font-size: 13.5px;
  }

  .trust-strip__list .ico {
    font-size: 26px;
  }

  /* S2 */
  .worry-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    column-gap: 48px;
    align-items: end;
    margin-bottom: 34px;
  }

  .worry-head .sec-eyebrow {
    grid-column: 1;
    grid-row: 1;
  }

  .worry-title {
    grid-column: 1;
    grid-row: 2;
    font-size: 38px;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .worry-note {
    grid-column: 2;
    grid-row: 2;
    max-width: none;
    margin-bottom: 6px;
  }

  .worry-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .worry-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 20px 22px;
    border-radius: var(--r-lg);
  }

  .worry-list__last {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
  }

  .worry-list__last p {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-navy);
  }

  .worry-tag {
    font-size: 12.5px;
    margin-top: 0;
  }

  /* S3：1024px以上は4列（縦組みカードに戻す） */
  .item-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .item-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "icon"
      "head"
      "body";
    align-content: start;
    row-gap: 9px;
    padding: 26px 22px 28px;
    border-radius: var(--r-lg);
    min-height: 200px;
  }

  .item-card__icon {
    align-self: start;
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .item-card__icon .ico {
    font-size: 31px;
  }

  .item-card h3 {
    font-size: 21px;
  }

  .item-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  /* S4 */
  .reason-list {
    gap: 22px;
  }

  .reason {
    padding: 30px 28px 32px;
  }

  .reason__num {
    font-size: 38px;
  }

  .reason > p:not(.reason__num):not(.reason__shout) {
    font-size: 16px;
  }

  .reason--hero {
    padding: 36px 36px 38px;
    column-gap: 40px;
  }

  .reason--hero .reason__shout {
    font-size: 33px;
  }

  .reason--hero h3 {
    font-size: 18px;
  }

  .mini-cta__lead {
    font-size: 18px;
  }

  /* S5 */
  .hub__title {
    font-size: 52px;
  }

  .hub__lead {
    font-size: 17px;
  }

  .hub {
    gap: 30px;
  }

  .hub__node {
    padding: 30px 20px 28px;
  }

  .hub__node:not(:last-child)::after {
    right: -21px;
    top: 56px;
  }

  .hub__name {
    font-size: 19px;
  }

  .hub__sub {
    font-size: 13.5px;
  }

  .hub__node--bc .hub__name {
    font-size: 30px;
  }

  .hub__node--bc .hub__icon {
    width: 74px;
    height: 74px;
  }

  .hub__node--bc .hub__icon .ico {
    font-size: 38px;
  }

  .hub__message {
    padding: 30px 36px;
  }

  .hub__message-main {
    font-size: 32px;
  }

  .hub__message-sub {
    font-size: 15px;
  }

  /* S6 */
  .compare {
    max-width: 1060px;
    margin-inline: auto;
  }

  .compare__col {
    padding: 34px 32px 36px;
  }

  .compare__heads li {
    font-size: 26px;
  }

  .compare__detail li {
    font-size: 16px;
    padding-block: 8px;
  }

  /* S7 */
  .consult-list {
    gap: 22px;
  }

  .consult-pattern {
    padding: 28px 26px 30px;
  }

  .consult-pattern h3 {
    font-size: 21px;
  }

  .consult-pattern blockquote p {
    font-size: 15.5px;
  }

  .consult-answer {
    font-size: 15px;
  }

  /* S8：1024px以上は「人物カード｜読みもの｜作業写真」の3カラム */
  .about__grid {
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.3fr) minmax(190px, 0.62fr);
    grid-template-areas:
      "card text work"
      "flow flow flow";
    column-gap: 32px;
    row-gap: 30px;
    align-items: stretch;
  }

  .about__work {
    display: flex;
    flex-direction: column;
    align-self: stretch;
  }

  .about__work img {
    flex: 1 1 auto;
    height: auto;
    min-height: 300px;
    aspect-ratio: auto;
    object-position: center 30%;
    border-radius: var(--r-lg);
  }

  .about__card {
    align-self: start;
    padding: 30px 24px 28px;
    border-radius: var(--r-xl);
  }

  .about__photo {
    width: 168px;
    height: 168px;
  }

  .about__name {
    font-size: 28px;
  }

  .about__pull {
    font-size: 24px !important;
  }

  .about__text p {
    font-size: 17px;
  }

  .about__role-flow {
    gap: 20px;
  }

  .about__role-flow li {
    padding: 24px 22px 26px;
    border-radius: var(--r-lg);
  }

  .about__role-flow h3 {
    font-size: 18px;
  }

  .about__role-flow p {
    font-size: 14.5px;
  }

  .about__role-icon {
    width: 52px;
    height: 52px;
  }

  .about__role-icon .ico {
    font-size: 26px;
  }

  .about__role-flow li:not(:last-child)::after {
    right: -12px;
    top: 46px;
    width: 12px;
  }

  /* S9 */
  .flow-list {
    gap: 22px 24px;
  }

  .flow-step {
    padding: 26px 24px 28px;
  }

  .flow-step__num {
    font-size: 30px;
  }

  .flow-step h3 {
    font-size: 19px;
  }

  .flow-step p {
    font-size: 15.5px;
  }

  .flow-step:not(:last-child)::after {
    right: -13px;
    top: 40px;
    width: 12px;
  }

  /* S10 */
  .cost-layout {
    column-gap: 52px;
  }

  .cost-title {
    font-size: 33px;
  }

  .cost-copy > p {
    font-size: 16px;
  }

  .cost-lead {
    font-size: 17px;
  }

  .cost-panel {
    padding: 32px 30px;
  }

  .cost-points li {
    font-size: 16px;
    padding: 13px 0 13px 32px;
  }

  .cost-close {
    font-size: 17px;
    padding: 16px 18px;
  }

  /* S11 */
  .area-primary li {
    font-size: 32px;
    padding: 32px 16px;
    border-radius: var(--r-lg);
  }

  /* FAQ */
  .faq-list {
    max-width: 880px;
  }

  .faq-list summary {
    font-size: 18px;
  }

  /* S13 */
  .sec-cta {
    padding-block: 96px;
  }

  .cta-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    column-gap: 56px;
    max-width: 1100px;
  }

  .sec-cta h2 {
    font-size: 40px;
  }

  .cta__lead {
    font-size: 17px;
  }

  .cta__points li {
    font-size: 15.5px;
  }

  .cta__panel {
    padding: 32px 30px 34px;
    border-radius: var(--r-xl);
  }

  .cta__who-photo {
    flex-basis: 66px;
    width: 66px;
    height: 66px;
  }

  .cta__who-name {
    font-size: 17px;
  }

  .cta__plan {
    width: 470px;
    height: 382px;
    left: -80px;
    bottom: -60px;
  }

  .site-footer {
    padding-block: 40px;
  }
}

/* --- 1200px以上 --------------------------------------------------------- */
@media (min-width: 1200px) {
  .fv__title {
    font-size: 56px;
  }

  .fv__grid {
    column-gap: 64px;
  }

  .worry-title {
    font-size: 42px;
  }

  .hub__title {
    font-size: 58px;
  }
}

/* --- モーション抑制 ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}
