:root {
  /*
   * 軸：FV「攻め」--green-hit（#b9ebce）は維持。周辺を明るく・彩度は抑えめで信頼感寄りに。
   */
  --green-hit: #b9ebce;
  --green-hit-rgb: 185, 235, 206;
  --green: #22b67f;
  --green-rgb: 34, 182, 127;
  --green-dark: #168f68;
  --green-soft: #f4fbf7;
  --green-mid: #d6f0e4;
  --green-line: #7fd4a8;
  --green-mint-bright: #dff8ea;

  /* 黄みの強いオレンジを抑えたトーン（サービス帯など共通） */
  --orange: #d49a78;
  --orange-soft: #fffaf6;
  --orange-deep: #94654a;

  /* ご依頼の流れステップ2：さらに黄み・彩度を落とした専用色 */
  --flow-warm: #b8a99e;
  --flow-warm-mid: #a8988b;
  --flow-warm-deep: #6e635c;
  --flow-warm-soft: #faf8f6;

  /* 緑と干渉しにくいシアン寄りの補助色 */
  --blue: #138b9e;
  --blue-soft: #f2fafb;
  --blue-ink: #0d6574;
  --blue-rgb: 19, 139, 158;

  --yellow-soft: #fdfbf5;

  --gray-50: #fbfcfa;
  --gray-100: #f0f6f2;
  --gray-700: #4a5a54;
  --gray-900: #15221e;

  --radius: 12px;
  --shadow: 0 10px 26px rgba(18, 40, 30, 0.05);
  --max: 1080px;

  /* フッター：本文との区切り（明るいニュートラルグレー） */
  --footer-bg: #f8f9fa;
  --footer-border: rgba(15, 23, 42, 0.06);
  --footer-muted: #8b9ba8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "BIZ UD Gothic", "Hiragino Sans", "Yu Gothic UI", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: var(--gray-900);
  background: #fff;
}

b,
strong {
  font-weight: 600;
}

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

a {
  color: inherit;
}

.inner {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow:
    0 8px 26px rgba(var(--green-rgb), 0.32),
    0 0 0 1px rgba(var(--green-hit-rgb), 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.section {
  padding: 72px 0;
}

/* H2：セクション見出し（ページ共通・帯下のラインで区切りを明確に） */
h2.section-title {
  position: relative;
  font-size: clamp(1.42rem, 2.9vw, 1.95rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gray-900);
  text-align: center;
  margin: 0 auto 20px;
  padding: 0 16px 26px;
  max-width: min(26em, 96vw);
  line-height: 1.38;
}

h2.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  width: min(76px, 20vw);
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green-hit), var(--green-line) 42%, var(--green));
  box-shadow:
    0 2px 14px rgba(var(--green-rgb), 0.28),
    0 0 18px rgba(var(--green-hit-rgb), 0.35);
}

/* H2 共通：英字キッカー（小さめの緑）＋日本語メイン見出し */
h2.section-title.section-head {
  font-size: inherit;
  margin: 0 auto 12px;
  /* 親の .inner 幅いっぱいに使う（font-size:inherit 時の 26em が極端に狭くなるのを防ぐ） */
  max-width: 100%;
  width: 100%;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  width: 100%;
  padding-bottom: 22px;
}

.section-head-kicker {
  display: block;
  font-size: clamp(0.78rem, 1.2vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-dark);
}

/* 英字にしないキッカー（強みなど） */
.section-head-kicker--native {
  text-transform: none;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.section-head-text {
  display: block;
  max-width: 100%;
  font-size: clamp(1.42rem, 2.9vw, 1.95rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.38;
  color: var(--gray-900);
  text-wrap: balance;
}

.section-head-text--lg {
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-wrap: balance;
}

/* H3：帯内などのサブ見出し（H2 より一段小さく・左寄せでブロック化） */
h3.section-title,
.band .section-title {
  font-size: clamp(1.05rem, 1.9vw, 1.22rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray-900);
  text-align: left;
  margin: 0 0 18px;
  padding: 0 0 12px;
  border-bottom: 2px solid rgba(15, 23, 42, 0.12);
  line-height: 1.45;
}

.band.green .section-title {
  border-bottom-color: rgba(21, 128, 61, 0.28);
}

.band.yellow .section-title {
  border-bottom-color: rgba(180, 83, 9, 0.28);
}

.band.blue .section-title {
  border-bottom-color: rgba(3, 105, 161, 0.28);
}

.section-merits-intro {
  padding-bottom: 10px;
}

/* メリット3帯の下：ポイント（ダーク＋ミントアクセントの橋渡しバナー） */
.section-merits-point-wrap {
  padding-top: clamp(8px, 2vw, 16px);
  padding-bottom: 0;
}

.merits-point-banner {
  position: relative;
  margin-top: clamp(28px, 4vw, 44px);
  border-radius: 22px;
  overflow: hidden;
  min-height: clamp(168px, 22vw, 220px);
  display: flex;
  align-items: center;
  box-shadow: 0 16px 40px rgba(18, 40, 32, 0.1);
}

.merits-point-banner-media {
  position: absolute;
  inset: -16px;
  background:
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=70")
    center 40% / cover no-repeat;
  filter: blur(10px);
  transform: scale(1.06);
}

.merits-point-banner-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(22, 48, 42, 0.78) 0%,
    rgba(22, 38, 48, 0.72) 42%,
    rgba(28, 36, 40, 0.38) 100%
  );
}

.merits-point-banner-content {
  position: relative;
  z-index: 1;
  max-width: min(28em, 52%);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
}

.merits-point-label {
  margin: 0 0 10px;
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-hit);
}

.merits-point-head {
  margin: 0 0 12px;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #fff;
}

.merits-point-sub {
  margin: 0;
  font-size: clamp(0.92rem, 1.65vw, 1.08rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: var(--green-mint-bright);
}

@media (max-width: 640px) {
  .merits-point-banner-content {
    max-width: 100%;
    padding-right: clamp(20px, 5vw, 32px);
  }

  .merits-point-label {
    letter-spacing: 0.18em;
  }
}

.section-lead {
  text-align: center;
  color: var(--gray-700);
  margin: 0 auto 44px;
  max-width: 640px;
}

/* Hero（ファーストビュー） — .inner と同じ左右対称余白でヘッダー3列の中央揃えがズレない */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #fff;
  /* 背景写真：images/hero-bg.jpg 等を置いたら下の url を差し替え */
  background:
    linear-gradient(
      110deg,
      rgba(22, 56, 50, 0.52) 0%,
      rgba(18, 32, 42, 0.5) 48%,
      rgba(38, 44, 36, 0.36) 100%
    ),
    url("images/hero-bg.jpg") center/cover no-repeat;
}

.hero-top {
  padding: 16px 0 12px;
  position: relative;
  z-index: 2;
}

.hero-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px 20px;
  row-gap: 14px;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.hero-brand-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-brand-svg {
  color: var(--green);
}

.hero-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.9rem;
  font-weight: 400;
}

.hero-menu a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  white-space: nowrap;
}

.hero-menu a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 12px;
}

.btn-nav-cta {
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 400;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  border: none;
  white-space: nowrap;
}

.btn-nav-cta:hover {
  filter: brightness(1.08);
}

@media (max-width: 900px) {
  .hero-nav {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .hero-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-nav-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .hero-menu {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .hero-nav {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
  }

  .hero-menu {
    display: none;
  }

  .hero-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-nav-actions {
    grid-column: 2;
    grid-row: 1;
  }
}

.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 0 24px;
  position: relative;
  z-index: 1;
  min-height: 0;
}

.hero-body > .inner.hero-inner,
.hero .inner.hero-inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  padding-inline: clamp(12px, 2.8vw, 28px);
}

@media (min-width: 960px) {
  .hero-body > .inner.hero-inner,
  .hero .inner.hero-inner {
    padding-inline: clamp(24px, 5.5vw, 56px);
  }
}

/* ヘッダーと同じ .inner 幅のまま左ゾロ（ロゴ位置と揃う） */
.hero-inner {
  max-width: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin: 0 0 22px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.55;
  color: #f8fafc;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-badge-icon {
  display: grid;
  place-items: center;
  color: var(--green-hit);
}

.hero-title {
  font-size: clamp(1.85rem, 4.8vw, 2.85rem);
  line-height: 1.25;
  margin: 0 0 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  max-width: none;
  width: 100%;
}

.hero-hit {
  color: var(--green-hit);
  text-shadow:
    0 0 40px rgba(var(--green-hit-rgb), 0.65),
    0 0 14px rgba(var(--green-rgb), 0.35);
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  margin: 0 0 12px;
  font-weight: 500;
  opacity: 0.98;
  max-width: none;
  width: 100%;
  line-height: 1.55;
}

.hero-tag {
  font-size: 0.94rem;
  margin: 0 0 32px;
  opacity: 0.88;
  max-width: none;
  width: 100%;
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.98rem;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  border: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.btn-hero-primary:hover {
  filter: brightness(1.06);
}

.btn-hero-primary .btn-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.98rem;
  color: #fff;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-hero-ghost .btn-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

/* 1fr だと列が画面幅の1/3まで伸び、テキスト幅より広く見える。広い画面では max-content で列幅＝内容に */
.hero-features {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  justify-items: start;
  column-gap: clamp(22px, 3.8vw, 48px);
  row-gap: clamp(14px, 2.2vw, 24px);
  max-width: none;
  width: 100%;
}

@media (min-width: 900px) {
  .hero-features {
    grid-template-columns: repeat(3, max-content);
    justify-content: start;
    column-gap: clamp(26px, 4.2vw, 56px);
  }
}

@media (min-width: 1120px) {
  .hero-feature-text {
    white-space: nowrap;
  }
}

.hero-feature {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-feature-copy {
  flex: 0 1 auto;
  width: fit-content;
  max-width: 100%;
  padding-top: 2px;
}

@media (max-width: 680px) {
  .hero-features {
    grid-template-columns: 1fr;
    justify-items: stretch;
    max-width: none;
    column-gap: 0;
    row-gap: 16px;
  }

  .hero-feature {
    width: auto;
    max-width: none;
  }
}

.hero-ficon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  align-self: flex-start;
}

.hero-feature--cred .hero-ficon {
  background: rgba(var(--blue-rgb), 0.42);
  color: var(--blue-soft);
  border: 1px solid rgba(var(--blue-rgb), 0.35);
}

.hero-feature--human .hero-ficon {
  background: rgba(var(--green-rgb), 0.38);
  color: var(--green-soft);
  border: 1px solid rgba(var(--green-hit-rgb), 0.55);
}

.hero-feature--biz .hero-ficon {
  background: rgba(212, 154, 120, 0.28);
  color: var(--orange-soft);
  border: 1px solid rgba(232, 196, 170, 0.45);
}

.hero-feature-kicker {
  display: block;
  margin-bottom: 4px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.hero-feature--cred .hero-feature-kicker {
  color: #9fd4e4;
}

.hero-feature--human .hero-feature-kicker {
  color: var(--green-hit);
}

.hero-feature--biz .hero-feature-kicker {
  color: #fdba74;
}

.hero-feature-text {
  display: block;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.96);
}

/* Cards grid */
.grid-2 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 720px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 22px 22px 56px;
  box-shadow: var(--shadow);
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 26px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--green-soft);
  border: 2px solid var(--green);
}

.note-banner {
  margin-top: 28px;
  background: var(--green-soft);
  border-radius: var(--radius);
  padding: 18px 22px;
  color: var(--green-dark);
  font-weight: 600;
  text-align: center;
}

/* お悩みセクション（背景：男性ビジネス・顔が切れにくい構図の仮画像。差し替え例 url("images/worries-bg.jpg")） */
#worries.section-worries {
  position: relative;
  isolation: isolate;
  padding: clamp(56px, 7vw, 84px) 0;
  background-color: #dce6df;
  background-image:
    linear-gradient(
      165deg,
      rgba(240, 247, 242, 0.94) 0%,
      rgba(228, 236, 232, 0.88) 42%,
      rgba(248, 250, 249, 0.95) 100%
    ),
    url("images/worries-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

#worries .worries-title.section-head {
  margin-bottom: clamp(10px, 1.6vw, 16px);
  max-width: 100%;
}

#worries .worries-title.section-head .section-head-text {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85), 0 0 18px rgba(248, 250, 252, 0.9);
}

#worries .worries-lead {
  margin-bottom: clamp(28px, 4vw, 44px);
  line-height: 1.78;
  font-size: clamp(0.92rem, 1.4vw, 1rem);
  font-weight: 500;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75), 0 0 12px rgba(248, 250, 252, 0.85);
}

.worries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.4vw, 26px);
}

@media (max-width: 720px) {
  .worries-grid {
    grid-template-columns: 1fr;
    gap: clamp(12px, 3vw, 18px);
  }
}

.worry-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 10px;
  padding: clamp(14px, 2vw, 18px) clamp(14px, 2.2vw, 20px);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.07);
}

.worry-card-text {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(0.92rem, 1.45vw, 1.02rem);
  font-weight: 500;
  line-height: 1.68;
  color: var(--gray-900);
  text-align: left;
}

.worry-card-mark {
  flex-shrink: 0;
  margin-top: 0.1em;
  font-size: 0.95em;
  font-weight: 500;
  color: var(--green);
  line-height: 1.45;
}

.worry-card-body {
  min-width: 0;
}

/* 次セクションへの「伴走」メッセージ */
.worries-bridge {
  margin-top: clamp(28px, 4vw, 44px);
  text-align: center;
  padding: clamp(22px, 3vw, 32px) clamp(18px, 3vw, 28px) clamp(18px, 2.5vw, 26px);
  border-radius: 12px;
  background: linear-gradient(165deg, var(--gray-50) 0%, var(--gray-100) 48%, #e2ebe7 100%);
  border: 1.5px solid rgba(100, 116, 139, 0.35);
  box-shadow:
    0 14px 36px rgba(31, 164, 118, 0.14),
    0 4px 14px rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
}

.worries-bridge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  border-radius: 12px 0 0 12px;
}

.worries-bridge-kicker {
  margin: 0 0 clamp(8px, 1.4vw, 12px);
  padding: 0 6px;
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: var(--green-dark);
}

.worries-bridge-lead {
  margin: 0 auto;
  max-width: 36em;
  padding: 0 6px;
  font-size: clamp(0.92rem, 1.45vw, 1.02rem);
  font-weight: 500;
  line-height: 1.75;
  color: var(--gray-700);
}

.worries-bridge-hint {
  display: flex;
  justify-content: center;
  margin-top: clamp(10px, 1.8vw, 14px);
  color: var(--green);
  opacity: 0.85;
}

/* サービス内容：3つの支援の柱 */
.services-section {
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--gray-50) 32%, #fff 72%);
}

.services-lead {
  max-width: 38em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(22px, 3vw, 32px);
  color: var(--gray-700);
  font-weight: 500;
}

/* 3柱カード（参照デザイン：画像＋淡色パネル・番号・アイコン・タグ） */
.services-stack {
  margin-top: clamp(8px, 1.5vw, 14px);
}

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  align-items: stretch;
  margin-bottom: clamp(28px, 4vw, 40px);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(22, 48, 38, 0.06);
  box-shadow: 0 14px 40px rgba(18, 40, 32, 0.07);
}

.service-card:last-child {
  margin-bottom: 0;
}

.service-card--reverse {
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
}

.service-card-media {
  position: relative;
  min-height: 220px;
  background: var(--gray-50);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.service-card-panel {
  padding: clamp(22px, 3.2vw, 36px) clamp(22px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card--green .service-card-panel {
  background: linear-gradient(165deg, var(--green-soft) 0%, #f9fcfa 52%, var(--gray-50) 100%);
}

.service-card--orange .service-card-panel {
  background: linear-gradient(165deg, var(--orange-soft) 0%, #fffbf7 52%, var(--gray-50) 100%);
}

.service-card--blue .service-card-panel {
  background: linear-gradient(165deg, var(--blue-soft) 0%, #f7fbfc 52%, var(--gray-50) 100%);
}

.service-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.service-card-idx {
  font-size: clamp(2.75rem, 7vw, 4.25rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(148, 163, 184, 0.42);
}

.service-card-ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.service-card-ico--green {
  background: var(--green);
}

.service-card-ico--orange {
  background: var(--orange);
}

.service-card-ico--blue {
  background: var(--blue);
}

.service-card-kicker {
  margin: 0 0 6px;
  font-size: clamp(0.82rem, 1.35vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.service-card--green .service-card-kicker {
  color: var(--green-dark);
}

.service-card--orange .service-card-kicker {
  color: var(--orange-deep);
}

.service-card--blue .service-card-kicker {
  color: var(--blue-ink);
}

.service-card-title {
  margin: 0 0 12px;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.35;
}

.service-card-desc {
  margin: 0;
  font-size: clamp(0.88rem, 1.45vw, 0.98rem);
  font-weight: 500;
  line-height: 1.75;
  color: var(--gray-700);
}

.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  list-style: none;
  margin: clamp(18px, 2.5vw, 22px) 0 0;
  padding: 0;
}

.service-card-tags li {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: transparent;
}

.service-card--green .service-card-tags li {
  border: 1.5px solid var(--green);
  color: var(--green-dark);
}

.service-card--orange .service-card-tags li {
  border: 1.5px solid var(--orange);
  color: var(--orange-deep);
}

.service-card--blue .service-card-tags li {
  border: 1.5px solid var(--blue);
  color: var(--blue-ink);
}

@media (max-width: 800px) {
  .service-card,
  .service-card--reverse {
    grid-template-columns: 1fr;
  }

  .service-card--reverse .service-card-media {
    order: -1;
  }

  .service-card-media {
    min-height: 200px;
  }

  .service-card-media img {
    min-height: 200px;
    max-height: 260px;
  }
}

/* ヒアリング → 分析 → 申請 のつながり */
.pillar-flow {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  margin: 0 auto clamp(36px, 4.5vw, 52px);
  max-width: 960px;
  padding: clamp(16px, 2.2vw, 22px) clamp(8px, 1.2vw, 14px);
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

.pillar-flow-step {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  padding: 16px 10px 18px;
  border-radius: 10px;
}

.pillar-flow-step--1 {
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.95), #fff);
  border-top: 3px solid var(--green);
}

.pillar-flow-step--2 {
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.92), #fff);
  border-top: 3px solid var(--orange);
}

.pillar-flow-step--3 {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.95), #fff);
  border-top: 3px solid var(--blue);
}

.pillar-flow-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray-700);
  margin-bottom: 6px;
  opacity: 0.88;
}

.pillar-flow-label {
  display: block;
  font-size: clamp(0.86rem, 1.45vw, 1.02rem);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
  line-height: 1.35;
}

.pillar-flow-caption {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.4;
}

.pillar-flow-connector {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  color: var(--green-dark);
  padding: 0 4px;
  opacity: 0.85;
}

@media (max-width: 720px) {
  .pillar-flow {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 18px 16px;
  }

  .pillar-flow-connector {
    padding: 4px 0;
  }

  .pillar-flow-connector svg {
    transform: rotate(90deg);
  }
}

.pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 6px;
  margin-bottom: 6px;
}

.pill-g {
  background: var(--green-mid);
  color: var(--green-dark);
}

.pill-o {
  background: var(--orange-soft);
  color: var(--orange-deep);
}

.pill-b {
  background: var(--blue-soft);
  color: var(--blue-ink);
}

/* Benefits bands */
.band {
  padding: 48px 0;
  border-radius: 0;
}

.band.green {
  background: linear-gradient(180deg, var(--green-soft), var(--green-mid));
}

.band.yellow {
  background: linear-gradient(180deg, #fffefb, #fdf9f2);
}

.band.blue {
  background: linear-gradient(180deg, #e8f4f4, var(--blue-soft));
}

.subcards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .subcards {
    grid-template-columns: 1fr;
  }
}

.subcard {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.subcard h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
}

.callout {
  margin-top: 24px;
  background: var(--green-dark);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
}

/* 強み：参照レイアウト（オフセット緑枠・資格バッジ・引用） */
#strength.section-strength {
  padding-top: clamp(64px, 8vw, 88px);
  padding-bottom: clamp(64px, 8vw, 88px);
}

#strength .section-strength-lead {
  margin-top: -6px;
  margin-bottom: clamp(28px, 4vw, 40px);
  color: var(--gray-700);
  font-weight: 500;
}

#strength .strength-title-highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
  padding-inline: 0.06em;
}

#strength .strength-title-highlight::after {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: 0.08em;
  height: 0.48em;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    rgba(252, 231, 243, 0.95) 0%,
    rgba(254, 205, 211, 0.88) 45%,
    rgba(252, 231, 243, 0.75) 100%
  );
  z-index: -1;
}

#strength .strength-layout {
  display: grid;
  gap: clamp(20px, 3.2vw, 34px);
  align-items: center;
}

@media (min-width: 880px) {
  #strength .strength-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 1fr);
    gap: clamp(24px, 3.6vw, 40px);
  }
}

#strength .strength-visual {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 360px;
  padding: 2px;
  box-sizing: border-box;
  opacity: 1;
}

@media (min-width: 880px) {
  #strength .strength-visual {
    order: 2;
    justify-self: end;
    align-self: start;
    margin-top: 6px;
    margin-right: 0;
    max-width: 420px;
  }
}

/* 前面：白カード＋シャドウ */
#strength .strength-photo-panel {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

/* 写真枠：比率固定でレイアウト崩れを防ぐ */
#strength .strength-photo-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 260px;
  margin-inline: auto;
  background: #e2e8f0;
}

#strength .strength-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(243, 247, 245, 0.28) 0%, rgba(236, 243, 239, 0.1) 55%);
  pointer-events: none;
}

#strength .strength-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  filter: saturate(82%) brightness(0.96) contrast(0.96);
}

#strength .strength-copy {
  min-width: 0;
  max-width: 760px;
  padding-top: clamp(18px, 2.8vw, 30px);
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 880px) {
  #strength .strength-copy {
    order: 1;
    margin: 0;
  }
}

#strength .strength-tagline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 0 0 16px;
  font-size: clamp(0.86rem, 1.35vw, 0.95rem);
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}

#strength .strength-tagline-ico {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(31, 164, 118, 0.12);
  color: var(--green);
  border: 1px solid rgba(31, 164, 118, 0.28);
}

#strength .strength-lead2 {
  margin: 0 0 14px;
  font-size: clamp(1.05rem, 1.9vw, 1.22rem);
  font-weight: 700;
  line-height: 1.55;
  color: var(--gray-900);
}

#strength .strength-em {
  color: var(--green);
  font-weight: 700;
}

#strength .strength-body {
  margin: 0 0 22px;
  font-size: clamp(0.92rem, 1.45vw, 1.02rem);
  font-weight: 500;
  line-height: 1.78;
  color: var(--gray-700);
}

#strength .strength-quote {
  margin: 0;
  max-width: 44rem;
  padding: clamp(18px, 2.5vw, 22px) clamp(18px, 2.5vw, 24px) clamp(18px, 2.5vw, 22px) clamp(20px, 2.8vw, 26px);
  border-radius: 12px;
  border: none;
  border-top: 4px solid var(--green);
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.95), #f8fafc);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

#strength .strength-quote p {
  margin: 0 0 12px;
  font-size: clamp(0.9rem, 1.4vw, 0.98rem);
  font-weight: 500;
  line-height: 1.85;
  color: var(--gray-900);
}

#strength .strength-quote cite {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  font-style: normal;
  color: var(--green-dark);
  letter-spacing: 0.04em;
  text-align: left;
}

#strength .strength-points {
  margin-top: clamp(20px, 3vw, 28px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 18px);
}

@media (max-width: 980px) {
  #strength .strength-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  #strength .strength-points {
    grid-template-columns: 1fr;
  }
}

#strength .strength-point-card {
  border-radius: 12px;
  padding: clamp(14px, 1.8vw, 18px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

#strength .strength-point-card--green {
  background: linear-gradient(180deg, #edf6f1 0%, #f7fbf9 100%);
}

#strength .strength-point-card--orange {
  background: linear-gradient(180deg, #f8f4e8 0%, #fcfaf4 100%);
}

#strength .strength-point-card--blue {
  background: linear-gradient(180deg, #eaf0f8 0%, #f5f8fc 100%);
}

#strength .strength-point-card--green2 {
  background: linear-gradient(180deg, #edf4ef 0%, #f7fbf8 100%);
}

#strength .strength-point-ico {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  color: #fff;
}

#strength .strength-point-card--green .strength-point-ico {
  background: var(--green);
}

#strength .strength-point-card--orange .strength-point-ico {
  background: var(--orange);
}

#strength .strength-point-card--blue .strength-point-ico {
  background: var(--blue);
}

#strength .strength-point-card--green2 .strength-point-ico {
  background: var(--green-dark);
}

#strength .strength-point-title {
  margin: 0 0 8px;
  font-size: clamp(0.94rem, 1.25vw, 1rem);
  line-height: 1.45;
  font-weight: 700;
  color: var(--gray-900);
}

#strength .strength-point-desc {
  margin: 0;
  font-size: clamp(0.78rem, 1.05vw, 0.84rem);
  line-height: 1.72;
  color: var(--gray-700);
}

/* ご依頼の流れ：中央軸＋左右交互カード */
#flow.section-flow {
  background: var(--gray-50);
}

#flow .section-flow-lead {
  margin-bottom: clamp(28px, 4vw, 40px);
}

#flow .flow-board {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 12px 0 8px;
}

#flow .flow-spine {
  position: absolute;
  left: 50%;
  top: 32px;
  bottom: 32px;
  width: 2px;
  transform: translateX(-50%);
  background: #dfe8e4;
  border-radius: 2px;
  z-index: 0;
}

#flow .flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

#flow .flow-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr);
  gap: clamp(14px, 2.8vw, 28px);
  align-items: flex-start;
  margin-bottom: clamp(28px, 4vw, 44px);
}

#flow .flow-step:last-child {
  margin-bottom: 0;
}

#flow .flow-step--left .flow-node {
  grid-column: 2;
  grid-row: 1;
}

#flow .flow-step--left .flow-panel {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

#flow .flow-step--right .flow-node {
  grid-column: 2;
  grid-row: 1;
}

#flow .flow-step--right .flow-panel {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

#flow .flow-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.14);
  justify-self: center;
  margin-top: 8px;
}

#flow .flow-node-num {
  line-height: 1;
}

#flow .flow-step--green .flow-node {
  background: var(--green);
}

#flow .flow-step--orange .flow-node {
  background: linear-gradient(165deg, var(--flow-warm), var(--flow-warm-mid));
  box-shadow: 0 6px 16px rgba(90, 78, 70, 0.12);
}

#flow .flow-step--blue .flow-node {
  background: var(--blue);
}

#flow .flow-step--green2 .flow-node {
  background: var(--green-dark);
}

#flow .flow-panel {
  width: 100%;
  max-width: min(380px, 100%);
  padding: 20px 22px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(22, 48, 38, 0.05);
  box-shadow: 0 12px 30px rgba(18, 40, 32, 0.06);
}

#flow .flow-step--orange .flow-panel {
  background: linear-gradient(180deg, #fff 0%, var(--flow-warm-soft) 100%);
  border-color: rgba(120, 104, 96, 0.08);
}

#flow .flow-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

#flow .flow-step--right .flow-panel-head {
  flex-direction: row-reverse;
  justify-content: flex-start;
}

#flow .flow-ico {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

#flow .flow-step--green .flow-ico {
  background: var(--green);
  color: #fff;
}

#flow .flow-step--orange .flow-ico {
  background: linear-gradient(165deg, var(--flow-warm), var(--flow-warm-mid));
  color: #fff;
}

#flow .flow-step--blue .flow-ico {
  background: var(--blue);
  color: #fff;
}

#flow .flow-step--green2 .flow-ico {
  background: var(--green-dark);
  color: #fff;
}

#flow .flow-step-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

#flow .flow-step--green .flow-step-label {
  color: var(--green-dark);
}

#flow .flow-step--orange .flow-step-label {
  color: var(--flow-warm-deep);
}

#flow .flow-step--blue .flow-step-label {
  color: var(--blue-ink);
}

#flow .flow-step--green2 .flow-step-label {
  color: var(--green-dark);
}

#flow .flow-panel-title {
  margin: 0 0 10px;
  font-size: clamp(1.02rem, 1.85vw, 1.14rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--gray-900);
}

#flow .flow-step--right .flow-panel-title {
  text-align: right;
}

#flow .flow-panel-body {
  margin: 0;
  font-size: clamp(0.88rem, 1.4vw, 0.96rem);
  font-weight: 500;
  line-height: 1.78;
  color: var(--gray-700);
}

#flow .flow-step--right .flow-panel-body {
  text-align: right;
}

#flow .flow-panel-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 16px 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: #94a3b8;
}

#flow .flow-step--right .flow-panel-meta {
  justify-content: flex-end;
}

#flow .flow-meta-ico {
  flex-shrink: 0;
  opacity: 0.9;
}

@media (max-width: 720px) {
  #flow .flow-spine {
    left: 26px;
    transform: none;
    top: 28px;
    bottom: 28px;
  }

  #flow .flow-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px 16px;
  }

  #flow .flow-step--left .flow-node,
  #flow .flow-step--right .flow-node {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    margin-top: 4px;
  }

  #flow .flow-step--left .flow-panel,
  #flow .flow-step--right .flow-panel {
    grid-column: 2;
    grid-row: 1;
    justify-self: stretch;
    max-width: none;
  }

  #flow .flow-step--right .flow-panel-head {
    flex-direction: row;
  }

  #flow .flow-step--right .flow-panel-title,
  #flow .flow-step--right .flow-panel-body {
    text-align: left;
  }

  #flow .flow-step--right .flow-panel-meta {
    justify-content: flex-start;
  }
}

/* Form */
.contact {
  background: var(--gray-50);
  border-top: 1px solid #e2e8f0;
}

.form-grid {
  display: grid;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}

label span {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

/* Form Mailer カスタムHTML */
.fm-form {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.fm-note {
  margin: 0 0 20px;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.fm-field {
  margin-bottom: 22px;
}

.fm-label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.fm-name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.fm-sublabel {
  font-weight: 600;
  font-size: 0.88rem;
}

.fm-name-row input[type="text"] {
  flex: 1 1 140px;
  min-width: 120px;
}

.fm-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.fm-field-check .fm-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
}

.fm-field-check .fm-check input {
  width: auto;
}

.fm-radio-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.fm-field-radio .fm-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
}

.fm-field-radio .fm-radio input {
  width: auto;
}

.fm-hint {
  margin: 0 0 8px;
  font-size: 0.88rem;
  color: var(--gray-700);
}

.fm-actions {
  margin-top: 8px;
  margin-bottom: 16px;
}

.fm-submit {
  font: inherit;
}

#powered {
  font-size: 0.78rem;
  color: var(--gray-700);
}

/* Footer：参照レイアウト（3カラム＋下段バー） */
.site-footer {
  background: var(--footer-bg);
  color: var(--gray-700);
  border-top: 1px solid var(--footer-border);
  padding: clamp(44px, 5.5vw, 56px) 0 clamp(20px, 3vw, 28px);
  font-size: 0.92rem;
}

.site-footer-main {
  display: grid;
  gap: clamp(28px, 4vw, 40px);
  align-items: start;
}

@media (min-width: 880px) {
  .site-footer-main {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) minmax(0, 1.1fr);
    gap: clamp(28px, 4vw, 48px);
  }
}

.site-footer-heading {
  margin: 0 0 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--footer-muted);
}

.site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
  color: var(--gray-900);
}

.site-footer-brand-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--green);
}

.site-footer-brand-text {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-footer-brand:hover .site-footer-brand-text {
  color: var(--green-dark);
}

.site-footer-tagline {
  margin: 0;
  max-width: 22em;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--gray-700);
}

.site-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer-list a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.55;
}

.site-footer-list a:hover {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer-kv {
  margin: 0 0 10px;
  line-height: 1.65;
  color: var(--gray-700);
}

.site-footer-kv:last-child {
  margin-bottom: 0;
}

.site-footer-k {
  font-weight: 600;
  color: var(--gray-900);
}

.site-footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  margin-top: clamp(32px, 4.5vw, 40px);
  padding-top: clamp(18px, 2.5vw, 22px);
  border-top: 1px solid var(--footer-border);
}

.site-footer-bar-copy {
  margin: 0;
  font-size: 0.78rem;
  color: var(--footer-muted);
}

.site-footer-bar-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}

.site-footer-bar-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--footer-muted);
  text-decoration: none;
}

.site-footer-bar-nav a:hover {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 560px) {
  .site-footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

.site-footer-copy--solo {
  margin: 0;
  padding: clamp(20px, 3vw, 28px) 0;
  border-top: none;
  text-align: center;
  font-size: 0.8rem;
  color: var(--footer-muted);
}

/* サブページ（プライバシーポリシー等） */
.subpage-header {
  background: var(--footer-bg);
  border-bottom: 1px solid var(--footer-border);
}

.subpage-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.subpage-back {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: none;
}

.subpage-back:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.subpage-main {
  padding: clamp(40px, 5vw, 56px) 0 clamp(48px, 6vw, 72px);
  background: #fff;
}

.subpage-inner {
  max-width: 40rem;
}

.subpage-title {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.6vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gray-900);
}

.subpage-lead {
  margin: 0 0 clamp(28px, 4vw, 36px);
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--gray-700);
}

.subpage-article {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.subpage-block {
  margin-bottom: clamp(22px, 3vw, 28px);
}

.subpage-block:last-child {
  margin-bottom: 0;
}

.subpage-block h2 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
}

.subpage-block p {
  margin: 0;
}
