/* =========================================================================
   Fuku-Biz Renewal Site / service.css
   ─────────────────────────────────────────────────────────────────────
   下層ページ「相談できること」専用スタイル。
   common.css の後に読み込む前提。

   セクション目次:
     01. Page Body & Base
     02. PAGE HERO セクション
     03. ENTRANCE セクション（既存/創業の分岐）
     04. CATEGORIES セクション（6つのカテゴリ）
     05. FLOW NAV セクション
     06. FREE CONSULTATION セクション
   ========================================================================= */


/* =========================================================================
   01. Page Body & Base
   ========================================================================= */
.p-page-service {
  background: #fff;
}


/* =========================================================================
   02. PAGE HERO セクション（コラージュ背景版）
   - 旧 .l-page-hero--with-visual（2カラム＋円形ビジュアル）を廃止し、
     コラージュ背景 + 見出し中央 + 下にリード文の構成に変更。
   - .l-page-hero / __eyebrow / h1 / __lead の基本は common.css 定義を
     このモジュール（--collage）内で上書きする。
   - 背景画像は service.css からの相対パス（../images/service/…）。
   - オーバーレイは全面一定の黒。濃さは --hero-veil の1値で調整。
   ========================================================================= */
.l-page-hero--collage {
  --hero-veil: .62;          /* オーバーレイの黒の濃さ（0〜1）*/
  padding: 0;                /* 共通の余白を打ち消してフル幅ビジュアルに */
  background: #fff;
}

/* メインビジュアル（コラージュ + 一定オーバーレイ）: PC は横長、テキスト中央 */
.l-page-hero--collage .l-page-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 420px;
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, var(--hero-veil)), rgba(0, 0, 0, var(--hero-veil))),
    url(../images/service/hero-collage-pc.webp);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.l-page-hero--collage .l-page-hero__visual .wrap {
  width: 100%;
  padding-top: 56px;
  padding-bottom: 44px;
}

.l-page-hero--collage .l-page-hero__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--rose-200, #f4bcd0);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.l-page-hero--collage h1 {
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.25;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

/* リード文: メインビジュアルの下（白背景） */
.l-page-hero--collage .l-page-hero__body {
  padding-bottom: 48px;
}

.l-page-hero--collage .l-page-hero__lead {
  max-width: 760px;
  margin: 26px auto 0;
  padding: 0 24px;
  color: var(--ink-80);
  font-size: 16px;
  text-align: justify;
}

.l-page-hero--collage .l-page-hero__lead b {
  color: var(--rose-400);
}

/* SP: 背景を 1:1（高さを短縮）、SP用コラージュに差し替え。見出しは下・左寄せ */
@media (max-width: 767px) {
  .l-page-hero--collage .l-page-hero__visual {
    min-height: 0;
    aspect-ratio: 1 / 1;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    background-image:
      linear-gradient(0deg, rgba(0, 0, 0, var(--hero-veil)), rgba(0, 0, 0, var(--hero-veil))),
      url(../images/service/hero-collage-sp.webp);
  }

  .l-page-hero--collage .l-page-hero__visual .wrap {
    padding-top: 32px;
    padding-bottom: 34px;
  }

  .l-page-hero--collage h1 {
    font-size: 30px;
  }

  .l-page-hero--collage .l-page-hero__lead {
    margin-top: 22px;
    font-size: 15px;
  }
}


/* =========================================================================
   03. ENTRANCE セクション（既存/創業の分岐）
   ========================================================================= */
.p-service-entrance {
  padding: 96px 0;
  background: var(--rose-50);
}

.p-service-entrance__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.p-service-entrance-card {
  background: #fff;
  border-radius: 16px;
  padding: 44px 40px;
  border: 2px solid var(--ink-10);
  transition: all 240ms var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
}

.p-service-entrance-card:hover {
  border-color: var(--rose-400);
  transform: translateY(-4px);
  box-shadow: 0 32px 60px -28px rgba(0, 0, 0, 0.18);
}

.p-service-entrance-card--seed:hover {
  border-color: var(--seed-500);
}

.p-service-entrance-card__num {
  position: absolute;
  top: -16px;
  right: 24px;
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 128px;
  color: var(--rose-50);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
}

.p-service-entrance-card--seed .p-service-entrance-card__num {
  color: var(--seed-50);
}

.p-service-entrance-card__row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.p-service-entrance-card__ic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--rose-100);
  color: var(--rose-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.p-service-entrance-card--seed .p-service-entrance-card__ic {
  background: var(--seed-100);
  color: var(--seed-700);
}

.p-service-entrance-card__label {
  font-family: var(--font-num);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--rose-500);
  display: block;
}

.p-service-entrance-card--seed .p-service-entrance-card__label {
  color: var(--seed-500);
}

.p-service-entrance-card h3 {
  font-weight: 900;
  font-size: 28px;
  margin: 0;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.p-service-entrance-card__desc {
  font-size: 17px;
  color: var(--ink-80);
  line-height: 1.95;
  margin: 0;
  position: relative;
  z-index: 1;
}

.p-service-entrance-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.p-service-entrance-card__chips span {
  background: var(--rose-50);
  color: var(--rose-700);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.p-service-entrance-card--seed .p-service-entrance-card__chips span {
  background: var(--seed-50);
  color: var(--seed-700);
}

.p-service-entrance-card__more {
  margin-top: auto;
  padding-top: 16px;
  font-weight: 700;
  font-size: 14px;
  color: var(--rose-500);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.p-service-entrance-card--seed .p-service-entrance-card__more {
  color: var(--seed-600);
}

.p-service-entrance-card__more::after {
  content: "→";
  transition: transform 200ms;
}

.p-service-entrance-card:hover .p-service-entrance-card__more::after {
  transform: translateX(4px);
}


/* =========================================================================
   04. CATEGORIES セクション（6つのカテゴリ）
   ========================================================================= */
.p-service-section-head {
  text-align: center;
  margin-bottom: 56px;
}

.p-service-section-head .eyebrow {
  justify-content: center;
}

.p-service-section-head h2 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.55;
  margin: 14px 0;
  letter-spacing: 0.02em;
}

.p-service-categories {
  padding: 120px 0;
  background: #fff;
}

.p-service-cat-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-service-cat {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  overflow: hidden;
  transition: border-color 200ms, box-shadow 200ms;
}

.p-service-cat__side {
  background: linear-gradient(180deg, var(--rose-50) 0%, #fff 100%);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.p-service-cat--seed .p-service-cat__side {
  background: linear-gradient(180deg, var(--seed-50) 0%, #fff 100%);
}

.p-service-cat__num {
  /* v7: number/CATEGORY label hidden per user request */
  display: none;
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 14px;
  color: var(--rose-500);
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}

.p-service-cat--seed .p-service-cat__num {
  color: var(--seed-500);
}

.p-service-cat__num b {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 84px;
  line-height: 1;
  color: var(--rose-400);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 14px;
}

.p-service-cat--seed .p-service-cat__num b {
  color: var(--seed-500);
}

.p-service-cat__ic {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.18);
  margin-bottom: 16px;
}

/* アイコンSVGに内側余白。box-sizing:border-box のため外形は変えず、
   描画（stroke）だけが 12px 内側に収まって白ボックス内に余白ができる。 */
.p-service-cat__ic svg {
  padding: 12px;
}

.p-service-cat h3 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.55;
  margin: 0 0 6px;
}

.p-service-cat__label-en {
  font-family: var(--font-num);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-60);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.p-service-cat__body {
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-service-cat__field {
  display: grid;
  grid-template-columns: 164px 1fr;
  gap: 24px;
  align-items: start;
}

.p-service-cat__field-label {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--rose-500);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
}

.p-service-cat--seed .p-service-cat__field-label {
  color: var(--seed-500);
}

.p-service-cat__field-label::before {
  content: "";
  width: 14px;
  height: 1.5px;
  background: currentColor;
}

.p-service-cat__field-value {
  font-size: 14px;
  color: var(--ink-100);
  line-height: 1.95;
}

.p-service-cat__leads {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.p-service-cat__leads li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 500;
  color: var(--ink-100);
}

.p-service-cat__leads li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-400);
  flex-shrink: 0;
  transform: translateY(-2px);
}

.p-service-cat--seed .p-service-cat__leads li::before {
  background: var(--seed-500);
}

.p-service-cat__ava-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.p-service-cat__ava-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.p-service-cat__ava-group small {
  display: flex;
  flex-shrink: 0;
  font-size: 12px;
  color: var(--ink-60);
  margin-right: 4px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.p-service-cat__ava {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  margin-left: -10px;
  font-size: 0;
  overflow: hidden;
  position: relative;
}

.p-service-cat__ava:first-of-type {
  margin-left: 0;
}

/* v10: display face photo inside the colored circle */
.p-service-cat__ava img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-service-cat__ava--a1 { background: linear-gradient(135deg, #d4baa8, #7E5949); }
.p-service-cat__ava--a2 { background: linear-gradient(135deg, #c9d4b8, #495E37); }
.p-service-cat__ava--a3 { background: linear-gradient(135deg, #c9b8d4, #5F4979); }
.p-service-cat__ava--a4 { background: linear-gradient(135deg, #d4cdb8, #7B6B37); }
.p-service-cat__ava--s1 { background: linear-gradient(135deg, #e8c0b0, #a06a55); }
.p-service-cat__ava--s2 { background: linear-gradient(135deg, #b8c9d4, #4a6275); }
.p-service-cat__ava--s3 { background: linear-gradient(135deg, #cfd4b8, #6e8348); }
.p-service-cat__ava--s4 { background: linear-gradient(135deg, #d4c0b8, #886049); }
.p-service-cat__ava--s5 { background: linear-gradient(135deg, #b8d4cf, #4a7873); }

.p-service-cat__ava-name {
  font-size: 12px;
  color: var(--ink-80);
}

.p-service-cat__related {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-80);
}

/* v9: plain text (no link, no button) — span elements only */
.p-service-cat__related a,
.p-service-cat__related span {
  display: inline;
  background: none;
  padding: 0;
  border: none;
  border-radius: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-80);
  text-decoration: none;
  white-space: normal;
}

.p-service-cat__related a::after,
.p-service-cat__related span::after {
  content: none;
}

/* Slash separator between adjacent spans (for bank list etc.) */
.p-service-cat__related span + span::before {
  content: " ／ ";
  color: var(--ink-40);
}

.p-service-cat__footer {
  padding-top: 24px;
  border-top: 1px dashed var(--ink-20);
  display: flex;
  justify-content: center;
}

/* カテゴリ内CTA（詳しく見る）を大きく・目立たせる。
   .pill は inline-flex でラベル幅ぶんになるため、min-width と中身の中央寄せを指定。
   rose / seed 両方に効かせ、6カード間でボタン幅を統一する。 */
.p-service-cat__footer .pill {
  min-width: 200px;
  justify-content: center;
}


/* =========================================================================
   05. FLOW NAV セクション
   ========================================================================= */
.p-service-flow {
  padding-top: 96px;
  background: #fff;
  border-top: 1px solid var(--ink-10);
}

.p-service-flow__card {
  background: #fff;
  border-radius: 16px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  border: 1px solid var(--ink-10);
}

.p-service-flow__card h2 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.55;
  margin: 12px 0 18px;
}

.p-service-flow__text {
  color: var(--ink-80);
  line-height: 2;
  text-align: justify;
  margin: 0 0 28px;
  white-space: pre-line;
}

.p-service-flow__text b {
  color: var(--ink-100);
}

.p-service-flow__illustration {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  justify-self: center;
}

.p-service-flow__step {
  background: var(--rose-50);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  position: relative;
  width: 100%;
}

.p-service-flow__step-num {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 14px;
  color: var(--rose-500);
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.p-service-flow__step-num b {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  display: block;
  color: var(--ink-100);
}

.p-service-flow__step-label {
  font-size: 14px;
  color: var(--ink-80);
  font-weight: 700;
  line-height: 1.5;
}

.p-service-flow__step:nth-child(odd) {
  background: var(--cream-100);
}


/* =========================================================================
   06. FREE CONSULTATION セクション
   ========================================================================= */
.p-service-free {
  padding: 120px 0;
  background: #fff;
}

.p-service-free__card {
  background: linear-gradient(135deg, var(--rose-400) 0%, var(--rose-500) 100%);
  border-radius: 24px;
  padding: 64px 48px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.p-service-free__card::before,
.p-service-free__card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.p-service-free__card::before {
  width: 320px;
  height: 320px;
  top: -100px;
  right: -100px;
}

.p-service-free__card::after {
  width: 240px;
  height: 240px;
  bottom: -80px;
  left: -60px;
}

.p-service-free__card .eyebrow {
  color: rgba(255, 255, 255, 0.85);
  justify-content: center;
  position: relative;
  z-index: 1;
}

.p-service-free__card .eyebrow::before {
  background: rgba(255, 255, 255, 0.6);
}

.p-service-free__card h2 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.5;
  margin: 14px 0 16px;
  position: relative;
  z-index: 1;
}

/* タイトル下の写真（PC・タブレットは横並び／スマホは1枚） */
.p-service-free__photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 28px auto 0;
  position: relative;
  z-index: 1;
}

.p-service-free__photo {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.35);
}

.p-service-free__photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.p-service-free__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 24px;
  margin: 32px auto 24px;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.p-service-free__stat-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.p-service-free__stat-item:last-child {
  border-right: 0;
}

.p-service-free__stat-n {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: #fff;
}

.p-service-free__stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 8px;
}

.p-service-free__card p {
  line-height: 2;
  margin: 0;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}


/* =========================================================================
   RESPONSIVE MEDIA QUERIES
   =========================================================================
   Tablet: 640px ～ 1024px
   SP: ～ 640px
   ========================================================================= */

/* ─────────────────────────────────────────────────────────────────────
   TABLET (max-width: 1024px)
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Entrance Grid */
  .p-service-entrance__grid {
    grid-template-columns: 1fr;
  }

  /* Service Categories - Side to 1 column */
  .p-service-cat {
    grid-template-columns: 1fr;
  }

  .p-service-cat__side {
    padding: 32px 28px;
    gap: 20px;
  }

  .p-service-cat__body {
    padding: 32px 28px;
  }

  .p-service-cat h3 {
    font-size: 20px;
  }

  .p-service-cat__num b {
    font-size: 64px;
  }

  .p-service-cat__ic {
    width: 60px;
    height: 60px;
    font-size: 32px;
  }

  .p-service-cat__field {
    grid-template-columns: 100px 1fr;
    gap: 16px;
  }

  .p-service-cat__leads {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* Flow Card */
  .p-service-flow__card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 40px;
  }

  .p-service-flow__card h2 {
    font-size: 28px;
  }

  .p-service-flow__illustration {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  /* Section Head */
  .p-service-section-head h2 {
    font-size: 32px;
  }

  /* Free Card */
  .p-service-free__card {
    padding: 48px 32px;
  }

  .p-service-free__card h2 {
    font-size: 36px;
  }

  .p-service-free__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 20px;
  }

  .p-service-free__stat-n {
    font-size: 28px;
  }

  .p-service-free__stat-label {
    font-size: 11px;
  }
}


/* ─────────────────────────────────────────────────────────────────────
   SMARTPHONE (max-width: 640px)
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Entrance */
  .p-service-entrance {
    padding: 64px 0;
  }

  .p-service-entrance-card {
    padding: 32px 24px;
    gap: 12px;
  }

  .p-service-entrance-card__num {
    font-size: 96px;
    top: -8px;
    right: 16px;
  }

  .p-service-entrance-card__ic {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .p-service-entrance-card h3 {
    font-size: 22px;
  }

  .p-service-entrance-card__desc {
    font-size: 17px;
    line-height: 1.8;
  }

  /* Service Categories */
  .p-service-categories {
    padding: 80px 0;
  }

  .p-service-cat {
    border-radius: 14px;
  }

  .p-service-cat__side {
    padding: 24px 20px 0;
    gap: 16px;
  }

  .p-service-cat__body {
    padding: 24px 20px;
    gap: 32px;
  }

  .p-service-cat h3 {
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
  }

  .p-service-cat__num b {
    font-size: 48px;
    margin-bottom: 10px;
  }

  .p-service-cat__ic {
    width: 52px;
    height: 52px;
    font-size: 28px;
    margin-bottom: 16px;
    border-radius: 14px;
  }

  .p-service-cat__label-en {
    font-size: 10px;
    margin-bottom: 0;
  }

  .p-service-cat__field {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .p-service-cat__field-label {
    font-size: 13px;
    padding-top: 0;
  }

  .p-service-cat__field-value {
    font-size: 13px;
    line-height: 1.8;
  }

  .p-service-cat__leads {
    grid-template-columns: 1fr;
    gap: 6px 12px;
  }

  .p-service-cat__ava {
    width: 28px;
    height: 28px;
    margin-left: -8px;
  }

  .p-service-cat__ava:first-of-type {
    margin-left: 0;
  }

  .p-service-cat__ava-group small {
    font-size: 12px;
  }

  .p-service-cat__ava-name {
    font-size: 12px;
  }

  .p-service-cat__related {
    flex-wrap: wrap;
  }

  .p-service-cat__related a,
  .p-service-cat__related span {
    font-size: 12px;
  }

  .p-service-cat__related a {
    font-size: 11px;
    padding: 6px 12px;
  }

  /* Service Section Head */
  .p-service-section-head {
    margin-bottom: 40px;
  }

  .p-service-section-head h2 {
    font-size: 22px;
    margin: 10px 0;
  }

  /* Flow */
  .p-service-flow {
    padding-top: 64px;
  }

  .p-service-flow__card {
    border-radius: 12px;
    padding: 40px 24px;
    gap: 24px;
  }

  /* SP: FLOW NAV の eyebrow・見出しを中央揃え */
  .p-service-flow .eyebrow {
    display: flex;
    justify-content: center;
  }

  .p-service-flow__card h2 {
    font-size: 22px;
    margin: 8px 0 12px;
    text-align: center;
  }

  /* SP: FLOW NAV のボタンを中央揃え（inline-flexをブロック化してauto marginで中央寄せ） */
  .p-service-flow__card .pill.outline {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .p-service-flow__text {
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 20px;
  }

  .p-service-flow__illustration {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 100%;
  }

  .p-service-flow__step {
    padding: 16px 12px;
    border-radius: 10px;
  }

  .p-service-flow__step-num {
    font-size: 12px;
  }

  .p-service-flow__step-num b {
    font-size: 24px;
  }

  .p-service-flow__step-label {
    font-size: 11px;
  }

  /* Free Section */
  .p-service-free {
    padding: 80px 0;
  }

  .p-service-free__card {
    border-radius: 20px;
    padding: 40px 24px;
  }

  .p-service-free__card h2 {
    font-size: 22px;
    line-height: 1.4;
    margin: 10px 0 16px;
  }

  .p-service-free__photos {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 20px;
  }

  .p-service-free__photo--sp-hide {
    display: none;
  }

  .p-service-free__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 16px;
    margin: 20px auto 16px;
  }

  .p-service-free__stat-item {
    padding: 0 12px;
  }

  .p-service-free__stat-n {
    font-size: 18px;
  }

  .p-service-free__stat-label {
    font-size: 10px;
    margin-top: 6px;
  }

  .p-service-free__card p {
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
  }

  .p-service-free__card::before {
    width: 240px;
    height: 240px;
    top: -80px;
    right: -80px;
  }

  .p-service-free__card::after {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: -40px;
  }
}
