@charset "UTF-8";
/* ==========================================================================
   AIリーチ LP  style.css
   ‐ 設計：l-（レイアウト） / c-（共通パーツ） / p-（ページ固有） / u-（汎用）
   ‐ 色・余白はすべて :root の変数で管理しています
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. 変数
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --color-navy-900: #0a2143;
  --color-navy-800: #0f2f5c;
  --color-navy-700: #14243d;
  --color-blue-600: #1f5fb5;
  --color-blue-500: #5f7fa8;
  --color-blue-200: #b8cbe3;
  --color-accent:   #ffcf3f;
  --color-accent-ink: #10294a;
  --color-green:    #1f9d73;
  --color-purple:   #7c6fe0;
  --color-amber:    #d99425;
  --color-red:      #c62a1f;

  /* Text */
  --color-text:      #14243d;
  --color-text-mid:  #31445f;
  --color-text-sub:  #41556f;
  --color-text-weak: #4a5f7d;
  --color-text-mute: #6b7f9b;
  --color-text-on-navy: #dbe7f6;
  --color-text-on-navy-weak: #bcd4ee;

  /* Surface */
  --color-bg:        #ffffff;
  --color-bg-tint:   #eef4fb;
  --color-bg-soft:   #f6f8fb;
  --color-bg-soft2:  #f6f9fd;
  --color-bg-hero:   #fbfcfe;
  --color-border:    #e2e9f2;
  --color-border-lt: #e8edf5;
  --color-border-xlt:#eef1f6;
  --color-border-md: #dde6f1;
  --color-border-in: #d5dfec;

  /* Type */
  --font-base: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --container: 1000px;
  --radius-sm: 10px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-card: 0 16px 40px rgba(15, 47, 92, .08);
  --shadow-btn:  0 3px 0 rgba(15, 47, 92, .5);
  --shadow-btn-dark: 0 4px 0 rgba(0, 0, 0, .2);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: var(--color-blue-600); text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { color: #123a6b; text-decoration: underline; }
strong { font-weight: 700; }
table { width: 100%; border-collapse: collapse; }
summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
:focus-visible { outline: 3px solid var(--color-blue-600); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   3. レイアウト
   -------------------------------------------------------------------------- */
.l-container { width: 100%; max-width: var(--container); margin-inline: auto; padding: 0;}
.l-container--xs { max-width: 820px; }
.l-container--sm { max-width: 900px; }
.l-container--md { max-width: 920px; }
.l-container--lg { max-width: 1040px; }

.l-section { padding: 92px 24px; }
.l-section--white { background: var(--color-bg); }
.l-section--tint  { background: var(--color-bg-tint); }
.l-section--navy  { background: var(--color-navy-800); color: #fff; }

/* --- ヘッダー --- */
.l-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow .25s;
}
.l-header.is-scrolled { box-shadow: 0 6px 20px rgba(15, 47, 92, .07); }
.l-header__inner {
  max-width: 1120px;
  margin-inline: auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.l-header__brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.l-header__logo { height: 34px; width: auto; display: block; }
.l-header__tagline {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-blue-500);
  border-left: 1px solid var(--color-border-in);
  padding-left: 12px;
  white-space: nowrap;
}

/* --- グローバルナビ --- */
.l-nav { display: flex; align-items: center; gap: 28px; margin-inline: 24px; }
.l-nav__link { font-size: 14px; font-weight: 700; color: #20344f; white-space: nowrap; }
.l-nav__link:hover { color: var(--color-blue-600); text-decoration: none; }

/* --- ハンバーガー --- */
.l-burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.l-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-navy-800);
  transition: transform .25s, opacity .2s;
}

/* --- スマートフォン用ドロワー --- */
.l-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: 20px 24px calc(24px + env(safe-area-inset-bottom));
  background: #fff;
  overflow-y: auto;
}
.l-drawer[hidden] { display: none; }
.l-drawer__head { display: flex; align-items: center; justify-content: space-between; }
.l-drawer__head img { height: 30px; width: auto; }
.l-drawer__close {
  width: 44px; height: 44px;
  border: 0;
  background: none;
  font-size: 30px;
  line-height: 1;
  color: var(--color-navy-800);
  cursor: pointer;
}
.l-drawer__nav { margin-top: 36px; display: flex; flex-direction: column; gap: 4px; }
.l-drawer__nav a {
  padding: 16px 4px;
  border-bottom: 1px solid var(--color-border-lt);
  font-size: 18px;
  font-weight: 700;
  color: #20344f;
}
.l-drawer__cta { margin-top: 32px; }

/* --- フッター --- */
.l-footer { background: var(--color-navy-900); color: #9db4d1; padding: 44px 24px; }
.l-footer__inner {
  max-width: 1120px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.l-footer__logo { background: #fff; border-radius: 8px; padding: 8px 12px; display: flex; }
.l-footer__logo img { height: 26px; width: auto; display: block; }
.l-footer__copy { font-size: 13px; }

/* --------------------------------------------------------------------------
   4. 共通パーツ
   -------------------------------------------------------------------------- */

/* --- 見出し --- */
/* 見出しの上に置く短いバー */
.c-bar {
  display: block;
  width: 44px;
  height: 4px;
  border-radius: 2px;
  background: var(--color-blue-600);
}
.c-bar--accent { background: var(--color-accent); }
.c-bar + .c-heading { margin-top: 16px; }

/* 旧デザインのラベル（英字の見出し）。使う場合のために残しています */
.c-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--color-blue-500);
}
.c-eyebrow--light { color: #8fb3dd; }

.c-heading {
  margin-top: 12px;
  font-size: 34px;
  line-height: 1.55;
  font-weight: 900;
  color: var(--color-navy-800);
  text-wrap: balance;
}
.c-heading--sm { font-size: 32px; }
.c-heading--light { color: #fff; }
.c-heading--center { text-align: center; }
.c-eyebrow + .c-heading { margin-top: 12px; }
.l-container > .c-heading:first-child { margin-top: 0; }

.c-subheading {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy-800);
}
.c-subheading--light { color: #fff; font-size: 21px; margin-top: 48px; }
.c-subheading--gap { margin-top: 52px; }

.c-lead {
  margin-top: 26px;
  font-size: 17px;
  line-height: 2.05;
  color: var(--color-text-mid);
}
.c-lead strong { color: var(--color-navy-800); }

.c-num {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-blue-200);
}
.c-num--lg { font-size: 26px; }

.c-prose { margin-top: 26px; display: flex; flex-direction: column; gap: 20px; font-size: 17px; line-height: 2.05; color: var(--color-text-mid); }
.c-prose strong { color: var(--color-navy-800); }
.c-prose--light { color: var(--color-text-on-navy); gap: 18px; }
.c-prose--light strong { color: #fff; }
.c-prose--left { text-align: left; }

.c-note { margin-top: 16px; font-size: 14px; line-height: 1.9; color: var(--color-text-weak); }
.c-note strong { color: var(--color-navy-800); }

.c-callout {
  margin-top: 32px;
  padding: 22px 26px;
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid var(--color-blue-600);
  font-size: 17px;
  line-height: 2.05;
  color: var(--color-text-mid);
}
.c-callout strong { color: var(--color-navy-800); }
.c-callout--accent {
  margin-top: 24px;
  background: rgba(255, 207, 63, .14);
  border-left-color: var(--color-accent);
  border-radius: 6px;
  font-size: 16px;
  line-height: 2;
  color: #fff;
}
.c-callout--accent strong { color: #fff; }

.c-panel {
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--color-bg-tint);
  border-radius: 12px;
  font-size: 16px;
  line-height: 2.05;
  color: #20344f;
}
.c-panel strong { color: var(--color-navy-800); }

.c-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .12);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.c-tag--sub { margin-top: 12px; padding: 6px 12px; background: rgba(255, 255, 255, .1); font-size: 12px; }

/* --- ボタン --- */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, filter .15s;
}
.c-btn:hover { text-decoration: none; filter: brightness(1.06); }
.c-btn:active { transform: translateY(2px); }

.c-btn--primary { background: var(--color-blue-600); color: #fff; box-shadow: var(--shadow-btn); }
.c-btn--primary:hover { color: #fff; }
.c-btn--accent { background: var(--color-accent); color: var(--color-accent-ink); box-shadow: var(--shadow-btn-dark); }
.c-btn--accent:hover { color: var(--color-accent-ink); }
.c-btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, .4); }
.c-btn--ghost:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.c-btn--outline { background: #fff; color: var(--color-blue-600); border: 1px solid var(--color-blue-200); }

.c-btn--sm  { height: 44px; padding: 0 22px; font-size: 14px; box-shadow: 0 2px 0 rgba(15, 47, 92, .5); }
.c-btn--lg  { margin-top: 26px; height: 60px; padding: 0 34px; font-size: 16px; }
.c-btn--xl  { height: 68px; padding: 0 40px; font-size: 18px; box-shadow: 0 4px 0 rgba(0, 0, 0, .25); }
.c-btn--wide { min-width: 340px; }
.c-btn--block { display: flex; width: 100%; }
.c-btn--center { margin-inline: auto; display: flex; width: fit-content; }
.c-btn--submit { width: 100%; max-width: 420px; }

/* --- 比較テーブル --- */
.c-table { margin-top: 18px; border-radius: var(--radius); overflow: hidden; background: #fff; color: var(--color-text); }
.c-table--price,
.c-table--action { border: 1px solid var(--color-border-md); }

.c-table th,
.c-table td { padding: 16px 18px; text-align: left; vertical-align: top; font-size: 15px; line-height: 1.7; }
.c-table thead th { font-size: 14px; font-weight: 700; }
.c-table tbody tr { border-top: 1px solid #e8eef6; }
.c-table tbody th { font-weight: 500; color: #20344f; }
.c-table tbody td { color: var(--color-text-weak); }
.c-table__th--strong { background: var(--color-navy-800); color: #fff; }
.c-table__td--strong { font-weight: 700; color: var(--color-navy-800); background: var(--color-bg-soft2); }

/* 無料診断 vs 有料 */
.c-table--free thead th { background: var(--color-bg-tint); color: var(--color-navy-800); }
.c-table__th--empty { font-size: 0 !important; color: transparent; }
.c-table--free thead th.c-table__th--strong { background: var(--color-navy-800); color: #fff; }
.c-table--free th:first-child { width: 30%; }
.c-table--free td + td { border-left: 1px solid #e8eef6; }

/* 月額コンサル比較 */
.c-table--price thead th { background: var(--color-bg-soft); color: var(--color-text-weak); }
.c-table--price thead th.c-table__th--strong { background: var(--color-navy-800); color: #fff; }
.c-table--price tbody th { font-weight: 700; color: var(--color-navy-800); width: 26%; }

/* 施策一覧 */
.c-table--action thead th { background: var(--color-navy-800); color: #fff; }
.c-table--action tbody th { width: 25%; background: var(--color-bg-soft2); font-weight: 700; line-height: 1.7; color: var(--color-navy-800); }
.c-table--action tbody td { padding: 18px; line-height: 1.85; color: var(--color-text-mid); }
.c-table--action tbody td + td { color: var(--color-text-sub); border-left: 1px solid #e8eef6; }

/* --- フォーム部品 --- */
.c-field { display: flex; flex-direction: column; gap: 8px; font-size: 14px; font-weight: 700; color: var(--color-navy-800); }
.c-field__label { display: block; }
.c-field__required { color: var(--color-red); }
.c-field__optional { font-weight: 500; color: var(--color-text-mute); }
.c-field__input {
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--color-border-in);
  border-radius: var(--radius-sm);
  background: #fafcfe;
  font-size: 15px;
  font-family: inherit;
  color: var(--color-text);
  transition: border-color .2s, box-shadow .2s;
		width: 100%;
}
.c-field__input:focus {
  outline: none;
  border-color: var(--color-blue-600);
  box-shadow: 0 0 0 3px rgba(31, 95, 181, .14);
}
.c-field__input--textarea { height: auto; padding: 14px 16px; line-height: 1.8; resize: vertical; }
.c-field__input.is-error { border-color: var(--color-red); background: #fff7f6; }
.c-field__error { font-size: 13px; font-weight: 500; color: var(--color-red); }

/* --- 追従CTA（SPのみ） --- */
.c-fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--color-border);
  transform: translateY(110%);
  transition: transform .3s;
}
.c-fixed-cta.is-visible { transform: translateY(0); }
body.is-menu-open { overflow: hidden; }
body.is-menu-open .c-fixed-cta { transform: translateY(110%); }

/* --- 汎用 --- */
.u-accent { color: var(--color-accent); }
.u-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   5. ファーストビュー
   -------------------------------------------------------------------------- */
.p-hero { position: relative; background: var(--color-bg-hero); overflow: hidden; }
.p-hero__glow {
  position: absolute;
  top: -120px; right: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 95, 181, .07), transparent 70%);
  pointer-events: none;
}
.p-hero__grid {
  position: relative;
  max-width: 1240px;
  margin-inline: auto;
  padding: 64px 24px 56px;
  display: grid;
  grid-template-columns: 1.3fr 1fr .9fr;
  gap: 28px;
  align-items: start;
}
.p-hero__title { font-size: 72px; line-height: 1.25; font-weight: 900; color: var(--color-navy-800); text-wrap: balance; }
.p-hero__title-accent { color: var(--color-blue-600); }

.p-hero__points { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.p-hero__point {
  background: #fff;
  border: 1px solid #e5eaf1;
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
}
.p-hero__point-icon {
  width: 44px; height: 44px;
  margin-inline: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-hero__point-icon--blue  { background: #e8f0fc; }
.p-hero__point-icon--green { background: #e5f6f0; }
.p-hero__point-icon--amber { background: #fdf1de; }
.p-hero__point-title { display: block; margin-top: 10px; font-size: 14px; font-weight: 700; color: var(--color-navy-800); }
.p-hero__point-note  { display: block; margin-top: 2px; font-size: 11px; color: var(--color-text-mute); }

/* ダッシュボード風カード */
.p-dash {
  background: #fff;
  border: 1px solid var(--color-border-lt);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.p-dash__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.p-dash__cell { border: 1px solid var(--color-border-xlt); border-radius: 12px; padding: 16px; }
.p-dash__cell--center { text-align: center; }
.p-dash__cell--wide { margin-top: 14px; padding: 16px 18px; }
.p-dash__label { font-size: 11px; font-weight: 700; color: var(--color-text-mute); }
.p-dash__label--nowrap { white-space: nowrap; }
.p-dash__gauge {
  margin: 10px auto 0;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: conic-gradient(var(--color-blue-600) 0 var(--gauge, 70%), var(--color-border-lt) var(--gauge, 70%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-dash__gauge-inner {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-dash__gauge-num { font-size: 20px; font-weight: 900; color: var(--color-navy-800); line-height: 1; }
.p-dash__gauge-unit { font-size: 9px; color: #9aabc2; }
.p-dash__status { margin-top: 6px; font-size: 14px; font-weight: 700; color: var(--color-green); }
.p-dash__spark { margin-top: 8px; display: block; }
.p-dash__bars { margin-top: 12px; display: flex; flex-direction: column; gap: 10px; }
.p-dash__bar { display: flex; align-items: center; gap: 10px; }
.p-dash__bar-name { flex: none; width: 64px; font-size: 12px; font-weight: 700; color: #20344f; }
.p-dash__bar-track { flex: 1; height: 8px; border-radius: var(--radius-pill); background: var(--color-border-xlt); overflow: hidden; }
.p-dash__bar-fill { display: block; height: 100%; }
.p-dash__bar-fill--green  { background: var(--color-green); }
.p-dash__bar-fill--purple { background: var(--color-purple); }
.p-dash__bar-val { flex: none; font-size: 12px; font-weight: 700; color: var(--color-navy-800); }
.p-dash__foot { margin-top: 14px; }
.p-dash__chips { margin-top: 8px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.p-dash__chip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border: 1px solid #e5eaf1;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #20344f;
}

/* 価格カード */
.p-hero__price {
  background: var(--color-navy-800);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: 0 16px 40px rgba(15, 47, 92, .18);
}
.p-hero__price-value { margin-top: 14px; font-size: 34px; font-weight: 900; line-height: 1.1; white-space: nowrap; }
.p-hero__price-tax { font-size: 13px; color: #a9c3e6; }
.p-hero__price-list { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--color-text-on-navy); }
.p-hero__price-list li { display: flex; gap: 8px; align-items: flex-start; }
.p-hero__check { flex: none; color: var(--color-accent); }
.p-hero__price-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.p-hero__price-cta .c-btn--accent { height: 52px; font-size: 15px; box-shadow: none; }
.p-hero__price-cta .c-btn--ghost  { height: 44px; font-size: 13px; }

/* 帯 */
.p-hero__strip { position: relative; border-top: 1px solid var(--color-border-lt); background: var(--color-bg-soft2); }
.p-hero__strip-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.p-hero__strip-item { display: flex; gap: 12px; align-items: center; font-size: 15px; font-weight: 700; color: #20344f; }
.p-hero__strip-icon {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--color-blue-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

/* --------------------------------------------------------------------------
   6. 課題提起 / なぜ今か / ブリッジ
   -------------------------------------------------------------------------- */
.p-issue__list { margin-top: 30px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 12px; }
.p-issue__item {
  padding: 20px 22px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.p-issue__dash { flex: none; color: var(--color-blue-600); font-family: var(--font-mono); font-size: 14px; margin-top: 3px; }
.p-issue__item p { font-size: 16px; line-height: 1.85; font-weight: 500; color: #20344f; }
.p-issue__closing { margin-top: 30px; text-align: center; font-size: 19px; font-weight: 700; color: var(--color-navy-800); }

.p-why__cards { margin-top: 30px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.p-why__card { background: #fff; border: 1px solid var(--color-border-md); border-radius: var(--radius); padding: 28px 26px; }
.p-why__card-title { margin-top: 8px; font-size: 19px; font-weight: 700; line-height: 1.6; color: var(--color-navy-800); }
.p-why__card-body { margin-top: 12px; font-size: 15px; line-height: 2; color: var(--color-text-mid); }

.p-bridge__lead { margin-top: 24px; text-align: center; font-size: 17px; line-height: 2.05; color: var(--color-text-mid); }
.p-bridge__lead strong { color: var(--color-navy-800); }
.p-bridge__closing { margin-top: 32px; text-align: center; font-size: 17px; line-height: 2.05; color: var(--color-text-mid); }
.p-bridge__list { margin-top: 36px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; }
.p-bridge__item {
  padding: 22px;
  text-align: center;
  border: 1px solid var(--color-border);
  background: var(--color-bg-soft);
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 700;
  color: #20344f;
}

/* --- お客様はAIで調べている --- */
.p-search .c-prose { margin-top: 26px; }
.p-search__point { font-weight: 700; color: var(--color-accent) !important; }

/* --------------------------------------------------------------------------
   7. 無料適正診断
   -------------------------------------------------------------------------- */
.p-check__flow { margin-top: 18px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.p-check__step {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.p-check__step-no { font-family: var(--font-mono); font-size: 13px; letter-spacing: .1em; color: var(--color-accent); font-weight: 500; }
.p-check__step-body { margin-top: 14px; font-size: 16px; line-height: 1.85; font-weight: 500; }
.p-check__step-time { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, .16); font-size: 14px; color: var(--color-text-on-navy-weak); }

.p-check__findings { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.p-check__finding {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
  background: rgba(255, 255, 255, .05);
  border-radius: 12px;
  padding: 20px 22px;
}
.p-check__finding-no {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-accent-ink);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-check__finding p { font-size: 16px; line-height: 1.9; color: #eaf1fa; }
.p-check__finding strong { color: #fff; }

.p-check__promises { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.p-check__promises li { display: flex; gap: 12px; align-items: flex-start; }
.p-check__check { flex: none; color: var(--color-accent); font-size: 16px; margin-top: 2px; }
.p-check__promises p { font-size: 16px; line-height: 1.95; color: #eaf1fa; }

.p-check__cta { margin-top: 40px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.p-check__cta-note { font-size: 14px; color: var(--color-text-on-navy-weak); }

/* --------------------------------------------------------------------------
   8. 料金
   -------------------------------------------------------------------------- */
.p-price__box {
  margin-top: 32px;
  background: var(--color-bg-tint);
  border: 2px solid var(--color-navy-800);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  text-align: center;
}
.p-price__amount { display: flex; align-items: baseline; justify-content: center; gap: 6px; flex-wrap: wrap; color: var(--color-navy-800); }
.p-price__num  { font-size: 64px; font-weight: 900; line-height: 1.1; }
.p-price__yen  { font-size: 28px; font-weight: 900; }
.p-price__plan { font-size: 20px; font-weight: 700; margin-left: 8px; }
.p-price__badge {
  margin-top: 20px;
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: var(--color-navy-800);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.p-price__cols { margin-top: 44px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.p-price__included,
.p-price__excluded { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.p-price__included li { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; background: var(--color-bg-soft); border-radius: var(--radius-sm); }
.p-price__excluded li { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); }
.p-price__included p { font-size: 15px; line-height: 1.85; color: #20344f; }
.p-price__excluded p { font-size: 15px; line-height: 1.85; color: var(--color-text-sub); }
.p-price__check { flex: none; color: var(--color-blue-600); font-weight: 700; margin-top: 1px; }
.p-price__dash  { flex: none; color: #8a99ad; font-weight: 700; margin-top: 1px; }
.p-price__caution { margin-top: 20px; font-size: 15px; font-weight: 700; color: var(--color-navy-800); }

/* --------------------------------------------------------------------------
   9. サービス内容
   -------------------------------------------------------------------------- */
.p-service__lead { margin-top: 16px; font-size: 17px; font-weight: 700; color: var(--color-text-mid); }
.p-service__summary { margin-top: 26px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 16px; }
.p-service__summary-card { background: #fff; border-radius: var(--radius); padding: 28px 30px; border-top: 4px solid var(--color-blue-600); }
.p-service__summary-no { font-size: 15px; font-weight: 700; color: var(--color-blue-600); }
.p-service__summary-text { margin-top: 12px; font-size: 17px; line-height: 1.9; font-weight: 700; color: var(--color-navy-800); }

.p-service__block { margin-top: 28px; padding: 36px 34px; background: #fff; border-radius: 18px; }
.p-service__block:first-of-type { margin-top: 56px; }
.p-service__block-title { font-size: 24px; font-weight: 900; line-height: 1.5; color: var(--color-navy-800); }
.p-service__block-lead { margin-top: 18px; font-size: 16px; line-height: 2.05; color: var(--color-text-mid); }
.p-service__block-lead strong { color: var(--color-navy-800); }

.p-service__measures { margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.p-measure { border: 1px solid var(--color-border-md); border-radius: var(--radius); padding: 26px 28px; }
.p-measure__head { display: flex; gap: 12px; align-items: baseline; flex-wrap: wrap; }
.p-measure__no {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: var(--color-blue-600);
  border-radius: 6px;
  padding: 4px 10px;
}
.p-measure__title { font-size: 19px; font-weight: 700; color: var(--color-navy-800); }
.p-measure__body { margin-top: 14px; font-size: 15px; line-height: 2; color: var(--color-text-mid); }
.p-measure__list { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.p-measure__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.85; color: var(--color-text-sub); }
.p-measure__bullet { flex: none; color: var(--color-blue-600); }
.p-measure__note {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--color-bg-tint);
  border-radius: var(--radius-sm);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500;
  color: #20344f;
}

.p-service__extra { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.p-service__extra-title { font-size: 19px; font-weight: 700; color: var(--color-navy-800); }
.p-service__extra-body { margin-top: 12px; font-size: 15px; line-height: 2; color: var(--color-text-mid); }
.p-service__extra-body strong { color: var(--color-navy-800); }
.p-service__example {
  margin-top: 14px;
  padding: 18px 22px;
  background: var(--color-bg-soft);
  border-left: 3px solid var(--color-blue-200);
  font-size: 15px;
  line-height: 1.95;
  color: var(--color-text-sub);
}

.p-service__action-title { margin-top: 34px; font-size: 20px; font-weight: 700; color: var(--color-navy-800); }
.p-service__action-title--gap { margin-top: 44px; }
.p-service__action-lead { margin-top: 14px; font-size: 15px; line-height: 2; color: var(--color-text-mid); }
.p-service__action-lead strong { color: var(--color-navy-800); }

.p-service__prepare { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.p-service__prepare li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-sm);
  font-size: 15px;
  line-height: 1.8;
  color: #20344f;
}
.p-service__check { flex: none; color: var(--color-blue-600); font-weight: 700; }

/* --------------------------------------------------------------------------
   10. 特徴 / おすすめ企業 / FAQ
   -------------------------------------------------------------------------- */
.p-features__grid { margin-top: 36px; display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 20px; }
.p-features__card { background: var(--color-bg-soft); border-radius: 16px; padding: 32px 30px; }
.p-features__title { margin-top: 10px; font-size: 21px; font-weight: 700; line-height: 1.6; color: var(--color-navy-800); }
.p-features__body { margin-top: 14px; font-size: 15px; line-height: 2; color: var(--color-text-mid); }
.p-features__example { margin-top: 14px; padding: 16px 20px; background: #fff; border-radius: var(--radius-sm); font-size: 14px; line-height: 1.9; color: var(--color-text-sub); }

.p-recommend__list { margin-top: 28px; display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 10px; }
.p-recommend__item { display: flex; gap: 14px; align-items: flex-start; background: #fff; border-radius: var(--radius-sm); padding: 18px 20px; }
.p-recommend__box { flex: none; width: 22px; height: 22px; margin-top: 1px; border: 2px solid var(--color-blue-600); border-radius: 4px; }
.p-recommend__item p { font-size: 16px; line-height: 1.8; color: #20344f; }

.p-faq__list { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }
.p-faq__item { background: #fff; border-radius: 12px; }
.p-faq__q {
  padding: 22px 26px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-navy-800);
}
.p-faq__q:hover { color: var(--color-blue-600); }
.p-faq__mark { flex: none; color: var(--color-blue-600); font-family: var(--font-mono); }
.p-faq__a { padding: 0 26px 26px 62px; font-size: 16px; line-height: 2.05; color: var(--color-text-sub); }

/* --------------------------------------------------------------------------
   11. フォーム / クロージング
   -------------------------------------------------------------------------- */
.p-form { background: linear-gradient(160deg, #0e2a52 0%, #16406f 55%, #1d548d 100%); color: #fff; }
.p-form__title { text-align: center; font-size: 32px; font-weight: 900; line-height: 1.5; }
.p-form__card { margin-top: 36px; background: #fff; color: var(--color-text); border-radius: var(--radius-lg); padding: 40px 38px; }
.p-form__body { display: flex; flex-direction: column; gap: 20px; }
.p-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.p-form__submit { margin-top: 10px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.p-form__note { font-size: 13px; line-height: 1.9; text-align: center; color: var(--color-text-mute); }
.p-form__message { font-size: 15px; font-weight: 700; text-align: center; }
.p-form__message--ok { color: var(--color-green); }

.p-closing__lead { margin-top: 28px; font-size: 17px; line-height: 2.05; color: var(--color-text-mid); text-align: center; }
.p-closing__list { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.p-closing__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 22px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-sm);
  font-size: 16px;
  line-height: 1.8;
  color: #20344f;
}
.p-closing__bullet { flex: none; color: var(--color-blue-600); }
.p-closing__cta { margin-top: 36px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.p-closing__sub { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* --------------------------------------------------------------------------
   11-b. 会社概要
   -------------------------------------------------------------------------- */
.p-company__list { margin-top: 32px; border-top: 1px solid var(--color-border); }
.p-company__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.p-company__row dt { font-size: 14px; font-weight: 700; color: var(--color-blue-500); }
.p-company__row dd { margin: 0; font-size: 15px; line-height: 1.8; color: #20344f; }
.p-company__group { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.p-company__group img { height: 32px; width: auto; }

/* --------------------------------------------------------------------------
   12. レスポンシブ
   -------------------------------------------------------------------------- */
@media (min-width: 1201px) {
  .p-hero__title { font-size: 50px; }
}

@media (max-width: 1200px) {
  .p-hero__grid { grid-template-columns: 1fr; }
  .p-hero__price { max-width: 520px; }
  .p-dash { max-width: 520px; }
}

@media (max-width: 1024px) {
  .l-nav { display: none; }
  .l-burger { display: flex; }
  .l-header__cta { display: none; }
  .l-header__tagline { display: none; }
}

@media (max-width: 900px) {
  .l-section { padding: 72px 20px; }
  .p-company__row { grid-template-columns: 1fr; gap: 6px; }
  .c-heading { font-size: 28px; }
  .c-heading--sm { font-size: 26px; }
  .p-service__block { padding: 28px 22px; }
  .p-form__card { padding: 28px 22px; }
  .p-form__title { font-size: 26px; }
  .p-price__box { padding: 32px 20px; }
  .p-price__num { font-size: 48px; }
  .p-price__yen { font-size: 22px; }
  .p-features__grid { grid-template-columns: 1fr; }

  /* テーブル → カード表示 */
  .c-table table,
  .c-table thead,
  .c-table tbody,
  .c-table tr,
  .c-table th,
  .c-table td { display: block; width: auto; }
  .c-table thead { display: none; }
  .c-table tbody tr { border-top: 1px solid #e8eef6; padding: 4px 0 12px; }
  .c-table tbody tr:first-child { border-top: 0; }
  .c-table tbody th { width: auto !important; background: var(--color-bg-tint); color: var(--color-navy-800); font-weight: 700; }
  .c-table td + td,
  .c-table--free td + td,
  .c-table--action tbody td + td { border-left: 0; }
  .c-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-mute);
  }
  .c-table--free tbody td:nth-of-type(1)::before { content: "無料適正診断"; }
  .c-table--free tbody td:nth-of-type(2)::before { content: "本パッケージ"; }
  .c-table--price tbody td:nth-of-type(1)::before { content: "一般的な月額コンサル"; }
  .c-table--price tbody td:nth-of-type(2)::before { content: "AIリーチ"; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 76px; }
  .l-header__inner { height: 64px; padding: 0 16px; }
  .l-header__tagline { display: none; }
  .l-section { padding: 60px 16px; }

  .p-hero__grid { padding: 40px 16px 40px; gap: 20px; }
  .p-hero__title { font-size: 40px; }
  .p-hero__points { grid-template-columns: 1fr; }
  .p-hero__point { display: flex; align-items: center; gap: 12px; text-align: left; padding: 14px 16px; }
  .p-hero__point-icon { margin: 0; }
  .p-hero__point-title { margin-top: 0; }
  .p-hero__strip-inner { padding: 20px 16px; gap: 12px; }

  .c-heading { font-size: 24px; }
  .c-heading--sm { font-size: 23px; }
  .c-lead, .c-prose { font-size: 16px; line-height: 1.95; }
  .c-btn { white-space: normal; }
  .c-btn--lg, .c-btn--xl { height: auto; min-height: 60px; padding: 14px 22px; font-size: 16px; }
  .c-btn--wide { min-width: 0; width: 100%; }
  .c-btn--center, .c-btn--submit { width: 100%; }
  .c-btn--outline { width: 100%; }

  .p-bridge__lead br { display: none; }
  .p-issue__list,
  .p-bridge__list,
  .p-recommend__list,
  .p-price__cols,
  .p-service__summary,
  .p-why__cards,
  .p-check__flow { grid-template-columns: 1fr; }

  .p-service__block { padding: 24px 18px; }
  .p-service__block-title { font-size: 20px; }
  .p-form__row { grid-template-columns: 1fr; gap: 16px; }
  .p-faq__q { padding: 18px 18px; font-size: 16px; }
  .p-faq__a { padding: 0 18px 20px 18px; font-size: 15px; }
  .p-check__cta { align-items: stretch; }
  .p-check__cta .c-btn { width: 100%; }
  .p-check__cta-note { text-align: center; }
  .l-footer__inner { justify-content: center; text-align: center; }

  /* 追従CTAぶんの余白 */
  body.has-fixed-cta { padding-bottom: 76px; }
}

/* --------------------------------------------------------------------------
   13. 印刷
   -------------------------------------------------------------------------- */
@media print {
  .l-header, .c-fixed-cta, .p-form__submit { display: none !important; }
  body { color: #000; }
  .l-section { padding: 24px 0; }
  .p-faq__item[open] .p-faq__a { display: block; }
}
