@charset "UTF-8";
/* ============================================================
   Prime Partners Consulting — LP
   明調（白基調）× 抽象ラインアートヒーロー × #34718B × 1px罫線
   ヘッダーは右上接地のCTAブロック（士業サイトの定石形）。
   図解は lease/tax と同じ「ヘアライン＋lucide線画」の言語で統一。
   ヒーローのアートはCSSアニメ、ミッションは motion.dev の scroll() 駆動。
============================================================ */

/* ---------- JS無効時のフェイルセーフ ---------- */
html:not(.js-anim) .reveal,
html:not(.js-anim) .reveal-img img {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================================
   HEADER — 透過→スクロールで白帯（トップページと同じ仕組み）
   接地CTAブロック・電話番号ブロックの型は style.css（全ページ共通）。
   ヒーローが明調なので、透過時からインク配色に上書きする。
============================================================ */
.consulting-page .pp-header .logo-white { opacity: 0; }
.consulting-page .pp-header .logo-color { opacity: 1; }
.consulting-page .global-nav > ul > li > a { color: var(--ink); }
.consulting-page .menu-toggle span { background: var(--ink); }
.consulting-page .header-tel-num { color: var(--ink); }
.consulting-page .header-tel-num:hover { color: var(--accent); }
.consulting-page .header-tel-note { color: var(--text-sub); }

/* ---------- 見出しの書体：ゴシック（コンサルLPの差別化軸） ---------- */
.consulting-page .sec-title {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.consulting-page .global-menu a { font-family: var(--sans); font-weight: 500; }

/* ---------- 共通部品 ---------- */
.btn-accent {
  background: var(--accent); border-color: var(--accent); color: var(--white);
}
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }

/* ============================================================
   HERO — 100svh × パーティクルネットワーク（tsParticles）
   背景は淡いグラデーションのみ。パーティクルはJS読み込み後に
   canvasが重なる（失敗時・reduced-motion時はグラデのみで成立）。
============================================================ */
.c-hero {
  position: relative;
  display: flex; flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  background:
    radial-gradient(ellipse 60% 50% at 82% 16%, rgba(52, 113, 139, 0.08), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fa 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

/* 背景パーティクル（canvasはtsParticlesが注入） */
.c-hero-visual { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
#hero-particles { width: 100%; height: 100%; }
#hero-particles canvas { display: block; }

.c-hero-inner {
  position: relative; z-index: 1;
  flex: 1 0 auto;
  display: flex; flex-direction: column; justify-content: center;
  width: 100%;
  padding-top: clamp(120px, 16vh, 168px);
  padding-bottom: clamp(48px, 8vh, 88px);
}

.c-hero-label {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--en); font-weight: 500; font-size: clamp(12px, 1.2vw, 14px);
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent);
  margin-bottom: clamp(24px, 3.5vh, 40px);
}
.c-hero-label::before { content: ""; width: 44px; height: 1px; background: var(--accent); }

.c-hero-title {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(27px, 3.3vw, 46px); line-height: 1.75; letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: clamp(22px, 3.2vh, 34px);
}
.c-hero-line { display: block; }

.c-hero-lead {
  font-size: clamp(13.5px, 1.35vw, 16px); line-height: 2.15; letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: clamp(28px, 4vh, 44px);
}

.c-hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 40px; }
.c-hero-tel { display: block; }
.c-hero-tel-num {
  display: block; font-family: var(--en); font-weight: 400;
  font-size: clamp(24px, 2.6vw, 30px); letter-spacing: 0.06em; line-height: 1.2; color: var(--ink);
  transition: color var(--dur) var(--ease);
}
.c-hero-tel:hover .c-hero-tel-num { color: var(--accent); }
.c-hero-tel-note { display: block; margin-top: 4px; font-size: 11.5px; letter-spacing: 0.06em; color: var(--text-sub); }

/* 読み込み時の時差フェード（group-top と同じ言語／JS無効時は静的表示） */
.c-hero-label, .c-hero-line, .c-hero-lead, .c-hero-cta {
  transition: opacity 0.9s ease, transform 0.9s ease;
}
html.js-anim .c-hero-label,
html.js-anim .c-hero-line,
html.js-anim .c-hero-lead,
html.js-anim .c-hero-cta {
  opacity: 0; transform: translateY(16px);
}
body.is-loaded .c-hero-label { opacity: 1; transform: none; transition-delay: 0.2s; }
body.is-loaded .c-hero-line:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.35s; }
body.is-loaded .c-hero-line:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.5s; }
body.is-loaded .c-hero-lead { opacity: 1; transform: none; transition-delay: 0.7s; }
body.is-loaded .c-hero-cta { opacity: 1; transform: none; transition-delay: 0.85s; }

@media (max-width: 767px) {
  .c-hero-inner { padding-top: 116px; }
  /* SPはパーティクルを薄めて可読性を確保 */
  .c-hero-visual { opacity: 0.6; }
  .c-hero-cta .btn { width: 100%; }
}

/* ============================================================
   MISSION
   通常フローの1セクション。スクロールで一度だけ静かに立ち上がるだけで、
   ピン留め（sticky）やスクロール量の吸収はしない。
   以前は 210vh の中に 100svh をピン留めし、見出しをグレー→インクへ
   ワイプする motion.dev 駆動の演出だったが、中身が1画面ぶんしかないのに
   2画面ぶんスクロールしても画面が動かず、下地のグレー文字が二重に
   見えることがあったため 2026-09-01 に廃止した（成田さん・島本さん指摘）。
============================================================ */
.m-block { position: relative; background: var(--white); border-bottom: 1px solid var(--line); }
.m-sticky {
  display: flex; align-items: center; justify-content: center;
  padding: clamp(88px, 12vw, 150px) 0;
}
.m-content {
  width: 100%; max-width: 1240px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
  text-align: center;
}
.m-label {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  font-family: var(--en); font-weight: 500; font-size: 12px;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent);
  margin-bottom: clamp(20px, 3vh, 30px);
}
.m-label::before, .m-label::after { content: ""; width: 36px; height: 1px; background: var(--accent); }
.m-title {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(30px, 4.8vw, 62px); line-height: 1.5; letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: clamp(22px, 3.5vh, 34px);
}
.m-lead { display: grid; gap: 4px; }
.m-line { font-size: clamp(13px, 1.3vw, 15px); line-height: 2.15; letter-spacing: 0.06em; color: var(--text); }

/* .reveal は is-inview を受け取るためだけに付けている。
   コンテナ自身は動かさず、中の3要素だけを動かす（二重フェードを避ける）。 */
.m-content.reveal { opacity: 1; transform: none; }

/* 出現は他セクションと同じ .reveal（IntersectionObserver）。
   見出し→リード文の順に軽く時間差を付けるだけで、スクロールは一切止めない。 */
.m-content .m-label,
.m-content .m-title,
.m-content .m-line {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.m-content.is-inview .m-label,
.m-content.is-inview .m-title,
.m-content.is-inview .m-line { opacity: 1; transform: none; }
.m-content.is-inview .m-title { transition-delay: 0.10s; }
.m-content.is-inview .m-line:nth-child(1) { transition-delay: 0.20s; }
.m-content.is-inview .m-line:nth-child(2) { transition-delay: 0.28s; }
.m-content.is-inview .m-line:nth-child(3) { transition-delay: 0.36s; }

/* JS無効時・reduce motion 時は最初から見えている状態にする */
html:not(.js-anim) .m-content .m-label,
html:not(.js-anim) .m-content .m-title,
html:not(.js-anim) .m-content .m-line { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  .m-content .m-label,
  .m-content .m-title,
  .m-content .m-line { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   SERVICE — 番号付きの大型ロー
============================================================ */
.c-svc-list { border-top: 1px solid var(--line-strong); }
.c-svc-row {
  display: grid; grid-template-columns: 232px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 72px);
  padding: clamp(40px, 5.5vw, 72px) clamp(4px, 1vw, 16px);
  border-bottom: 1px solid var(--line-strong);
}
.c-svc-num {
  display: block;
  font-family: var(--en); font-weight: 300;
  font-size: clamp(40px, 4.4vw, 58px); line-height: 1; letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 16px;
}
.c-svc-en {
  display: block;
  font-family: var(--en); font-weight: 500; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-sub);
}
.c-svc-name {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(21px, 2.3vw, 27px); line-height: 1.6; letter-spacing: 0.04em;
  color: var(--ink); margin-bottom: 14px;
}
.c-svc-desc { font-size: 14.5px; line-height: 2.05; color: var(--text); max-width: 780px; margin-bottom: 24px; }
.c-svc-items { display: flex; flex-wrap: wrap; gap: 8px; }
.c-svc-items li {
  padding: 8px 16px; border: 1px solid var(--line-strong);
  font-size: 12.5px; letter-spacing: 0.05em; color: var(--ink); white-space: nowrap;
}
@media (max-width: 900px) {
  .c-svc-row { grid-template-columns: 1fr; gap: 18px; }
  .c-svc-head { display: flex; align-items: baseline; gap: 18px; }
  .c-svc-num { margin-bottom: 0; }
  .c-svc-items li { white-space: normal; }
}

/* ---------- 図解：IPO準備タイムライン（Service 02 内） ---------- */
.c-ipo-fig {
  margin-top: 30px;
  max-width: 820px;
  padding: clamp(20px, 2.6vw, 30px) clamp(18px, 2.4vw, 30px) clamp(18px, 2.2vw, 24px);
  border: 1px solid var(--line);
  background: var(--white);
}
.c-ipo-fig-title {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em; color: var(--text-sub);
  margin-bottom: 24px;
}
.c-ipo-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(56px, 0.5fr);
  gap: 0 14px;
}
.c-ipo-steps::before {
  content: ""; position: absolute; left: 4px; right: 4px; top: 4.5px; height: 1px;
  background: var(--line-strong);
}
.c-ipo-dot {
  position: relative; z-index: 1;
  display: block; width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid var(--accent); background: var(--white);
  margin-bottom: 13px;
}
.c-ipo-dot.is-goal { background: var(--accent); }
.c-ipo-phase { font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; color: var(--ink); margin-bottom: 6px; }
.c-ipo-goal .c-ipo-phase { color: var(--accent); }
.c-ipo-work { font-size: 11.5px; line-height: 1.75; letter-spacing: 0.03em; color: var(--text); }
.c-ipo-range {
  grid-column: 1 / 5;
  margin-top: 20px;
  padding: 9px 14px;
  border: 1px solid rgba(52, 113, 139, 0.45);
  background: rgba(52, 113, 139, 0.05);
  font-size: 11.5px; letter-spacing: 0.05em; color: var(--accent-dark);
  text-align: center;
}
@media (max-width: 767px) {
  .c-ipo-steps { grid-template-columns: 1fr; gap: 0; }
  .c-ipo-steps::before { display: none; }
  .c-ipo-step, .c-ipo-goal {
    position: relative;
    display: grid; grid-template-columns: 9px minmax(0, 1fr);
    gap: 2px 14px;
    padding-bottom: 18px;
  }
  .c-ipo-step::before {
    content: ""; position: absolute; left: 4px; top: 12px; bottom: -3px; width: 1px;
    background: var(--line-strong);
  }
  .c-ipo-dot { margin-bottom: 0; margin-top: 5px; grid-row: 1 / 3; }
  .c-ipo-phase, .c-ipo-work { grid-column: 2; }
  .c-ipo-goal { padding-bottom: 0; }
  .c-ipo-range { grid-column: 1; margin-top: 10px; text-align: left; }
}

/* ============================================================
   REASON — 立ち位置図解＋3つの強み
============================================================ */
/* ---------- 図解：伴走ポジション（貴社 ⇄ PPC ⇄ 外部関係者） ---------- */
.c-pos {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr) minmax(0, 1.16fr) minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: stretch;
  margin-bottom: clamp(48px, 7vw, 84px);
}
.c-pos-node {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: clamp(22px, 2.8vw, 34px) clamp(14px, 1.8vw, 24px);
  border: 1px solid var(--line-strong);
  background: var(--white);
  text-align: center;
}
.c-pos-node.is-main { border-color: var(--accent); }
.c-pos-icon { width: 30px; height: 30px; color: var(--accent); margin-bottom: 14px; }
.c-pos-name { font-size: 15px; font-weight: 600; letter-spacing: 0.06em; line-height: 1.55; color: var(--ink); }
.c-pos-sub { margin-top: 7px; font-size: 11px; letter-spacing: 0.04em; color: var(--text-sub); }
.c-pos-link {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 12px clamp(8px, 1.2vw, 16px);
  text-align: center;
}
.c-pos-link-label { font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 10px; }
.c-pos-arrow { position: relative; display: block; width: 100%; max-width: 150px; height: 1px; background: var(--accent); }
.c-pos-arrow::before, .c-pos-arrow::after {
  content: ""; position: absolute; top: 50%; width: 7px; height: 7px;
}
.c-pos-arrow::before {
  left: 0;
  border-left: 1px solid var(--accent); border-bottom: 1px solid var(--accent);
  transform: translateY(-50%) rotate(45deg);
}
.c-pos-arrow::after {
  right: 0;
  border-right: 1px solid var(--accent); border-top: 1px solid var(--accent);
  transform: translateY(-50%) rotate(45deg);
}
.c-pos-link-desc { margin-top: 10px; font-size: 11px; line-height: 1.75; letter-spacing: 0.03em; color: var(--text); }
@media (max-width: 900px) {
  .c-pos { grid-template-columns: 1fr; }
  .c-pos-link { padding: 16px 8px; }
  .c-pos-link-label { margin-bottom: 8px; }
  .c-pos-arrow { width: 1px; height: 30px; max-width: none; }
  .c-pos-arrow::before {
    top: 0; left: 50%;
    border-left: 1px solid var(--accent); border-top: 1px solid var(--accent); border-bottom: none;
    transform: translateX(-50%) rotate(45deg);
  }
  .c-pos-arrow::after {
    top: auto; bottom: 0; right: auto; left: 50%;
    border-right: 1px solid var(--accent); border-bottom: 1px solid var(--accent); border-top: none;
    transform: translateX(-50%) rotate(45deg);
  }
  .c-pos-link-desc { margin-top: 8px; }
}

.c-reason-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 64px) clamp(32px, 4vw, 56px);
}
.c-reason-item { border-top: 1px solid var(--line-strong); padding-top: 26px; }
.c-reason-num {
  display: block; font-family: var(--en); font-weight: 300;
  font-size: clamp(30px, 3vw, 40px); line-height: 1; letter-spacing: 0.12em;
  color: var(--accent); margin-bottom: 18px;
}
.c-reason-title {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(17px, 1.8vw, 20px); line-height: 1.7; letter-spacing: 0.04em;
  color: var(--ink); margin-bottom: 14px;
}
.c-reason-desc { font-size: 13.5px; line-height: 2.05; color: var(--text); }
@media (max-width: 900px) {
  .c-reason-grid { grid-template-columns: 1fr; gap: 30px; }
  .c-reason-title br.pc { display: none; }
}

/* ============================================================
   TOPICS — 新リース会計基準（全幅のダーク帯＋適用時期の図解）
============================================================ */
.c-lease { background: var(--dark); }
.c-lease-box {
  display: grid; grid-template-columns: minmax(0, 32%) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 88px); align-items: center;
  color: var(--white);
}
.c-lease-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--en); font-weight: 500; font-size: 12px;
  letter-spacing: 0.26em; text-transform: uppercase; color: #7fb2c7;
  margin-bottom: 22px;
}
.c-lease-tag::before { content: ""; width: 36px; height: 1px; background: #7fb2c7; }

/* 図解：適用時期のミニタイムライン */
.c-lease-when ol { position: relative; display: grid; gap: 20px; }
.c-lease-when ol::before {
  content: ""; position: absolute; left: 4px; top: 8px; bottom: 8px; width: 1px;
  background: rgba(255, 255, 255, 0.35);
}
.c-lease-when li {
  position: relative;
  display: grid; grid-template-columns: 9px minmax(0, 1fr);
  gap: 1px 14px;
}
.c-lease-dot {
  position: relative; z-index: 1;
  display: block; width: 9px; height: 9px; border-radius: 50%; margin-top: 5px;
  border: 1px solid rgba(255, 255, 255, 0.8); background: var(--dark);
  grid-row: 1 / 3;
}
.c-lease-when li.is-main .c-lease-dot { background: var(--white); border-color: var(--white); }
.c-lease-when-date {
  font-family: var(--en); font-weight: 500; font-size: 15px; letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9); line-height: 1.4;
}
.c-lease-when li.is-main .c-lease-when-date { font-size: 19px; color: var(--white); }
.c-lease-when-t { font-size: 11.5px; letter-spacing: 0.05em; color: rgba(255, 255, 255, 0.65); }
.c-lease-when li.is-main .c-lease-when-t { color: rgba(255, 255, 255, 0.95); font-size: 12.5px; }

.c-lease-title {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(19px, 2.8vw, 34px); line-height: 1.6; letter-spacing: 0.05em;
  color: var(--white); margin-bottom: 18px;
}
.c-lease-desc { font-size: 14px; line-height: 2.05; letter-spacing: 0.05em; color: rgba(255, 255, 255, 0.82); margin-bottom: 30px; max-width: 720px; }
.c-lease-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.c-lease-cta .btn { border-color: rgba(255, 255, 255, 0.55); color: var(--white); }
.c-lease-cta .btn:hover { background: var(--white); border-color: var(--white); color: var(--ink); }
.c-lease-cta .btn-accent { border-color: var(--accent); color: var(--white); }
.c-lease-cta .btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }
@media (max-width: 900px) {
  .c-lease-box { grid-template-columns: 1fr; gap: 28px; }
  .c-lease-cta .btn { width: 100%; }
}

/* ============================================================
   CASE — 支援事例
============================================================ */
.c-case-list { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.c-case-item {
  display: grid; grid-template-columns: minmax(0, 34%) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 72px); align-items: start;
  padding: clamp(30px, 4.5vw, 56px);
  background: var(--white); border: 1px solid var(--line);
}
.c-case-head { display: flex; flex-direction: column; }
.c-case-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-bottom: 18px; }
.c-case-num {
  font-family: var(--en); font-weight: 400; font-size: 14px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
}
.c-case-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.c-case-tags li {
  padding: 4px 12px; border: 1px solid var(--line-strong);
  font-size: 10.5px; letter-spacing: 0.08em; color: var(--text-sub); white-space: nowrap;
}
.c-case-title {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(19px, 2vw, 24px); line-height: 1.7; letter-spacing: 0.04em;
  color: var(--ink);
}
.c-case-detail { display: grid; gap: 20px; align-content: start; }
.c-case-block { display: grid; grid-template-columns: 88px minmax(0, 1fr); gap: 14px; border-top: 1px solid var(--line); padding-top: 20px; }
.c-case-block:first-child { border-top: none; padding-top: 0; }
.c-case-block dt {
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.14em; color: var(--accent);
  padding-top: 3px;
}
.c-case-block dd { font-size: 13.5px; line-height: 2; color: var(--text); }
.c-case-note { margin-top: 22px; font-size: 11.5px; letter-spacing: 0.04em; color: var(--text-sub); }
@media (max-width: 900px) {
  .c-case-item { grid-template-columns: 1fr; gap: 22px; }
  .c-case-block { grid-template-columns: 72px minmax(0, 1fr); }
}

/* ============================================================
   FLOW — 接続ステッパー（01〜03に「ここまで無料」ブラケット）
============================================================ */
.flow-fig { --flow-gap: clamp(14px, 1.6vw, 24px); }
.flow-free {
  position: relative;
  width: calc(50% - 0.5 * var(--flow-gap));
  height: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(52, 113, 139, 0.5);
  border-bottom: none;
}
.flow-free span {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -58%);
  padding: 0 12px;
  background: var(--white);
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; color: var(--accent);
  white-space: nowrap;
}
.flow-list {
  position: relative;
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0 var(--flow-gap);
}
.flow-list::before {
  content: ""; position: absolute; left: 4px; right: 4px; top: 4.5px; height: 1px;
  background: var(--line-strong);
}
.flow-dot {
  position: relative; z-index: 1;
  display: block; width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid var(--accent); background: var(--white);
  margin-bottom: 16px;
}
.flow-num {
  display: block; font-family: var(--en); font-weight: 300;
  font-size: 24px; letter-spacing: 0.1em; line-height: 1; color: var(--accent);
  margin-bottom: 12px;
}
.flow-title {
  font-weight: 600; font-size: 14.5px; letter-spacing: 0.04em; line-height: 1.6;
  color: var(--ink); margin-bottom: 8px;
}
.flow-desc { font-size: 12px; line-height: 1.9; color: var(--text-sub); }

@media (max-width: 1099px) {
  .flow-free { display: none; }
  .flow-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 26px; }
  .flow-list::before { display: none; }
  .flow-dot { display: none; }
  .flow-item { border-top: 1px solid var(--line-strong); padding-top: 20px; }
  /* ブラケットの代替：01〜03 に小さな「無料」チップ */
  .flow-item:nth-child(-n+3) .flow-title::after {
    content: "無料";
    display: inline-block; margin-left: 8px; padding: 1px 7px;
    border: 1px solid rgba(52, 113, 139, 0.5);
    font-size: 10px; font-weight: 500; letter-spacing: 0.1em; color: var(--accent);
    vertical-align: 2px;
  }
}
@media (max-width: 767px) {
  .flow-list { grid-template-columns: 1fr; gap: 22px; }
  .flow-item { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 4px 16px; padding-top: 16px; }
  .flow-num { grid-row: 1 / 3; margin-bottom: 0; padding-top: 3px; }
  .flow-title { grid-column: 2; }
  .flow-desc { grid-column: 2; }
}

/* ============================================================
   FAQ（監査LPと同じ設計言語）
============================================================ */
.faq-wrapper { max-width: 980px; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom-color: var(--line-strong); }
.faq-q {
  position: relative; display: flex; align-items: baseline; gap: 18px;
  padding: 22px 56px 22px clamp(4px, 1vw, 16px);
  font-size: 15px; font-weight: 500; letter-spacing: 0.05em; color: var(--ink);
  cursor: pointer; list-style: none;
  transition: color var(--dur) var(--ease);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--accent); }
.faq-q-mark, .faq-a-mark {
  flex-shrink: 0; font-family: var(--en); font-weight: 500; font-size: 15px;
  letter-spacing: 0.05em; color: var(--accent);
}
.faq-icon {
  position: absolute; right: clamp(8px, 1.5vw, 20px); top: 50%;
  width: 12px; height: 12px; transform: translateY(-50%);
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 100%; height: 1px; background: var(--text-sub);
  transition: transform var(--dur) var(--ease);
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: rotate(0deg); }
.faq-a {
  display: flex; align-items: baseline; gap: 18px;
  padding: 0 clamp(24px, 4vw, 56px) 26px clamp(4px, 1vw, 16px);
}
.faq-a p { font-size: 14px; line-height: 2; color: var(--text); }
.faq-a-mark { color: var(--text-sub); }

/* ============================================================
   MEMBER — 共同代表
============================================================ */
.c-member-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 88px);
}
.c-member-photo { max-width: 400px; margin-bottom: 26px; }
.c-member-photo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.c-member-role { font-size: 12px; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 8px; }
.c-member-name {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(22px, 2.2vw, 26px); letter-spacing: 0.08em; color: var(--ink);
  margin-bottom: 16px;
}
.c-member-bio { font-size: 13.5px; line-height: 2.05; color: var(--text); margin-bottom: 20px; }
.c-member-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.c-member-tags li {
  padding: 5px 14px; border: 1px solid var(--line-strong);
  font-size: 11px; letter-spacing: 0.08em; color: var(--ink); white-space: nowrap;
}
.c-member-meta { font-size: 11.5px; letter-spacing: 0.05em; color: var(--text-sub); }
@media (max-width: 767px) {
  .c-member-grid { grid-template-columns: 1fr; gap: 56px; }
  .c-member-photo { max-width: 320px; }
}

/* ============================================================
   OFFICE — 静かな画像帯
============================================================ */
.c-office { position: relative; border-top: 1px solid var(--line); }
.c-office-media { height: clamp(240px, 34vw, 420px); overflow: hidden; }
.c-office-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.c-office-cap {
  position: absolute; left: clamp(24px, 5vw, 60px); bottom: 20px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 11px; letter-spacing: 0.14em; color: var(--ink);
}

/* ============================================================
   COMPANY / CTA
============================================================ */
.company-wrapper { max-width: 980px; }

.c-cta-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px; max-width: 880px; margin: 0 auto;
}
.c-cta-box {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white); text-align: center;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.c-cta-box:hover { background: var(--white); border-color: var(--white); color: var(--accent-dark); }
.c-cta-tel {
  font-family: var(--en); font-weight: 400;
  font-size: clamp(26px, 3vw, 34px); letter-spacing: 0.05em; line-height: 1.2;
}
.c-cta-box .contact-box-title { font-size: clamp(17px, 2vw, 21px); }
@media (max-width: 767px) {
  .c-cta-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   スマホ追従CTA
============================================================ */
.sp-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; grid-template-columns: 1fr 1fr;
  transform: translateY(102%);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.06);
}
.sp-cta.is-visible { transform: translateY(0); }
.sp-cta a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  padding: 12px 8px 14px; text-align: center;
}
.sp-cta-tel { background: var(--ink); color: var(--white); }
.sp-cta-mail { background: var(--accent); color: var(--white); }
.sp-cta-main { font-size: 14px; font-weight: 500; letter-spacing: 0.1em; }
.sp-cta-sub { font-size: 10px; letter-spacing: 0.06em; opacity: 0.75; }
@media (max-width: 767px) {
  .sp-cta { display: grid; }
  .pp-footer { padding-bottom: 96px; }
}
