@charset "UTF-8";

/* ============================================================================
   AutoAd サービスサイト — スタイルシート
   ブランド：ロゴのネイビー #000D3A × ブルー #0052FC。
   アプリ側（autoad/src/app/globals.css）のトークンと数値を揃えているが、
   サイトはアプリより一段コントラストを強く・余白を広く取る（読み物としての設計）。
   ============================================================================ */

/* ---------- 1. トークン ---------- */
:root {
  /* ブランド。ネイビーは logo の #000D3A を基準に段階を作る */
  --navy-900: #050c24;
  --navy-800: #0a1633;
  --navy-700: #16264a; /* アプリの --c-primary と同値 */
  --navy-600: #22366b;
  --blue: #0052fc; /* ロゴのブルー。アクセントはこの一色に絞る */
  --blue-700: #0041ca;
  --blue-050: #eaf0ff;
  --amber: #f5a623; /* 差し色。極小面積でのみ使う */

  /* 地と文字。純白ではなくわずかに青を含ませ、ネイビーと同じ色相に乗せる */
  --paper: #ffffff;
  --canvas: #f5f7fb;
  --canvas-2: #eef2f9;
  --ink: #14203c;
  --ink-2: #3d4a68;
  --muted: #64708c;
  --line: #e0e6f0;
  --line-strong: #c9d2e2;

  /* 角丸と影。アプリと同じ控えめな設計 */
  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;
  --sh-sm: 0 1px 2px rgba(10, 22, 51, 0.06);
  --sh: 0 2px 8px rgba(10, 22, 51, 0.07), 0 1px 2px rgba(10, 22, 51, 0.04);
  --sh-lg: 0 24px 60px rgba(10, 22, 51, 0.16), 0 4px 12px rgba(10, 22, 51, 0.06);

  /* 書体。和文＝Noto Sans JP、英数＝Inter で数字の表情を分ける */
  --ff: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN",
    "Yu Gothic Medium", Meiryo, sans-serif;
  --ff-en: "Inter", var(--ff);

  --gutter: 24px;
  --maxw: 1200px;
}

/* ---------- 2. リセット ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.95; /* 和文は行間を広く取らないと読めない */
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1; /* 和文の詰め。これが無いと約物が間延びして素人っぽくなる */
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
dl,
dd {
  margin: 0;
}
ul,
ol {
  padding: 0;
  list-style: none;
}
button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- 3. レイアウト部品 ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: clamp(72px, 9vw, 128px);
}
.section--canvas {
  background: var(--canvas);
  border-block: 1px solid var(--line);
}
.section--navy {
  background: var(--navy-800);
  color: #fff;
}

/* 見出しの前に置く連番ラベル。罫線＋2桁数字＋英字の編集的な意匠 */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-family: var(--ff-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: attr(data-n);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
}
.eyebrow::after {
  content: "";
  flex: 1;
  max-width: 56px;
  height: 1px;
  background: var(--line-strong);
}
.section--navy .eyebrow {
  color: #7fa3ff;
}
.section--navy .eyebrow::after {
  background: rgba(255, 255, 255, 0.24);
}

/* 大見出し。和文は字間を詰めないと締まらない */
.h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--navy-800);
}
.section--navy .h2 {
  color: #fff;
}
.h3 {
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--navy-800);
}
.lede {
  margin-top: 20px;
  max-width: 46em;
  font-size: 16px;
  color: var(--ink-2);
}
.section--navy .lede {
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- 4. ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: background-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn svg {
  flex: none;
}
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 82, 252, 0.26);
}
.btn--primary:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 82, 252, 0.32);
}
.btn--ghost {
  color: var(--navy-800);
  border: 1px solid var(--line-strong);
  background: #fff;
}
.btn--ghost:hover {
  border-color: var(--navy-700);
  transform: translateY(-1px);
}
.btn--onNavy {
  background: #fff;
  color: var(--navy-800);
}
.btn--onNavy:hover {
  background: var(--blue-050);
  transform: translateY(-1px);
}
.btn--sm {
  padding: 11px 20px;
  font-size: 14px;
}

/* 文中のテキストリンク。下線を控えめに引き、hoverで伸ばす */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 15px;
  color: var(--blue);
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(0, 82, 252, 0.3);
  transition: border-color 0.2s;
}
.tlink:hover {
  border-color: var(--blue);
}

/* ---------- 5. ヘッダー ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(1.6) blur(12px);
  -webkit-backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: var(--sh-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 74px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: none;
}
.logo img {
  width: 34px;
  height: auto;
}
.logo__text {
  font-family: var(--ff-en);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-800);
}
.logo__text span {
  color: var(--blue);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.2s;
}
.nav a:hover {
  color: var(--blue);
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}
/* ★ .header__login は 2026-08-08 の指示でヘッダーから撤去したため、
   対応するスタイルも削除した（フッターのログインリンクは別物で残っている）。 */
.navToggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  color: var(--navy-800);
}

/* ---------- 6. ファーストビュー ----------
   参考5サイト（Hubble／kickflow／tebiki）に共通していたのは、
   「ヒーローに大きく作り込まれたビジュアルが必ずある」こと。
   平らなブラウザ枠を1つ置くだけでは素っ気なく見えるため、ここでは
   ①背景の装飾レイヤー（グラデーション・ドット・ぼかした円）
   ②ノートPCの筐体に載せた製品画面（奥にもう1枚重ねて奥行きを出す）
   ③周囲に浮かせた小カードとバッジ
   ④実績帯
   の4層を積む。 */
.hero {
  position: relative;
  padding-top: clamp(48px, 6vw, 84px);
  padding-bottom: clamp(40px, 5vw, 64px);
  /* 2026-08-08：右のキービジュアルの地色をヒーロー全体へ広げる。
     画像がいちばん濃い右側を中心に青を置き、本文側へ向かって薄め、
     下端は次のセクション（白）へ収まるところまで戻す。
     ★数値の根拠＝支給画像の実測色。左端中央 #d0e5ff／左端下 #2e7fea／
       右端 #0e74fa。画像のふちと地の差が小さいほど境界が消える。 */
  background:
    radial-gradient(118% 128% at 88% 48%, rgba(74, 150, 250, 0.5) 0%, rgba(122, 182, 252, 0.32) 40%, rgba(160, 203, 253, 0.14) 64%, rgba(255, 255, 255, 0) 80%),
    linear-gradient(176deg, #eaf2ff 0%, #dfebfd 52%, #f1f6fe 100%);
  overflow: hidden;
}
/* 下端を次のセクション（白）へ収める。青のまま切れると横一本の線に見える。
   ★背景レイヤーではなく擬似要素にするのは、下端の青いぼかし円（.hero__blob--b）が
     背景より前に描かれるため。背景に白を重ねても、円がその上へ乗って線が残る。 */
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 26%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff 92%);
  pointer-events: none;
}
/* 背景①：ぼかした円。ブランドブルーの気配を面で出す */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.hero__blob--a {
  top: -180px;
  right: -120px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(0, 82, 252, 0.22), transparent 68%);
}
.hero__blob--b {
  bottom: -260px;
  left: -160px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(0, 82, 252, 0.12), transparent 68%);
}
/* 背景②：ドットグリッド。密度を上げる下地 */
.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(22, 38, 74, 0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(120% 90% at 70% 20%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(120% 90% at 70% 20%, #000 0%, transparent 72%);
  opacity: 0.55;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  /* 2026-08-08：右のキービジュアルを支給画像そのものに変えたため右カラムを広げ、
     そのあと見出しを58pxまで上げたぶん左カラムを少し戻した（見出しの1行が
     収まる幅と、画像内の文字が読める幅の折り合い） */
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

/* ラベル。白のピルに影を落として浮かせる */
/* ============================================================================
   ヒーローの4階層（2026-08-08・クライアント指示 0807タブ②）
   ①アイキャッチ＝ラベル（12px・軽い） ②見出し＝900・最大 ③本文＝16px・通常
   ④課題リスト＝14.5px。この順にサイズと重さが必ず下がるように保つこと。
   ============================================================================ */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 82, 252, 0.14);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-2);
}
.hero__badge svg {
  flex: none;
}
.hero__badge b {
  color: var(--blue);
  font-weight: 700;
}

.hero h1 {
  margin-top: 20px;
  /* ★上限は「採用せずにつくる。」（9文字）が左カラムに収まる幅で決めている。
     左カラムを狭めるか文言を伸ばすなら、この上限も見直すこと。 */
  font-size: clamp(31px, 4.35vw, 58px);
  font-weight: 900;
  line-height: 1.34;
  letter-spacing: -0.04em;
  color: var(--navy-800);
}
.hero h1 .phrase {
  display: inline-block;
}
/* 訴求の核だけ色を変える */
.hero h1 .hero__accent {
  color: var(--blue);
}
/* 強調語は面で塗る。参考サイトはどれも見出しに色を入れている */
.hero h1 .thread {
  font-style: normal;
  position: relative;
  color: var(--blue);
  white-space: nowrap;
}
.hero h1 .thread::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.1em;
  height: 0.2em;
  background: linear-gradient(90deg, rgba(0, 82, 252, 0.22), rgba(0, 82, 252, 0.08));
  border-radius: 2px;
  z-index: -1;
}
/* 「すべてAIで回す。」が「す／べて」で泣き別れるのを防ぐ */
.hero__lead .keep {
  white-space: nowrap;
}
.hero__lead {
  margin-top: 22px;
  max-width: 31em;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: #41527a;
}

/* 課題→解決を1行ずつ。kickflow がヒーローでやっている密度の出し方 */
.hero__points {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}
.hero__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--navy-800);
}
.hero__points svg {
  flex: none;
  color: var(--blue);
}
/* Before＝薄く・細く・打ち消し線 */
.hero__points s {
  color: #93a0bb;
  font-weight: 400;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(147, 160, 187, 0.75);
}
/* 矢印。ここだけ青にして Before と After を切り分ける */
.hero__points i {
  font-style: normal;
  margin: 0 9px;
  color: var(--blue);
  font-weight: 700;
}
/* After＝濃く・太く */
.hero__points b {
  font-weight: 700;
  color: var(--navy-800);
}

/* CTA。上に小さい一言、下に大きなラベル、右に矢印（参考サイト共通の構造） */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 14px;
  margin-top: 30px;
}
.ctaBig {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 22px 14px 26px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue) 0%, #2b6bff 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 82, 252, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ctaBig:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 82, 252, 0.36);
}
.ctaBig__txt {
  display: grid;
  gap: 2px;
  line-height: 1.3;
}
.ctaBig__txt small {
  font-size: 11.5px;
  font-weight: 500;
  opacity: 0.86;
}
.ctaBig__txt b {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ctaBig__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  flex: none;
  transition: transform 0.2s;
}
.ctaBig:hover .ctaBig__arrow {
  transform: translateX(3px);
}
.ctaSub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line-strong);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-800);
  transition: border-color 0.2s, transform 0.2s;
}
.ctaSub:hover {
  border-color: var(--navy-700);
  transform: translateY(-2px);
}
.hero__note {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- 7-A. 製品画面（クライアント支給の画像をそのまま貼る） ----------
   2026-08-08：「HTMLでの再現ではなく提出したイメージの画像再現を」というご指示。
   画像の四隅は背景と地続きの暗い写真なので、角丸と影で浮かせて板に見せる。 */
.heroShot {
  position: relative;
  padding: 0;
  /* 上下の境界をぼかす。左右は img 側でぼかす（2要素に分けると
     mask-composite を使わずに済み、Safari でも同じ見え方になる） */
  /* 上は画像の右上が濃紺で、地との差が大きいぶん長めにぼかす */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 19%, #000 84%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 19%, #000 84%, transparent 100%);
}
/* 支給画像は横長のキービジュアルで、右カラムの幅（約590px）に収めると
   周囲のカードの文字が読めない。画面の右端まで裁ち落として幅を稼ぐ。
   .hero が overflow:hidden なので横スクロールは出ない。
   ★ヒーローが2カラムでいられる 1001px 以上でだけ効かせる。 */
@media (min-width: 1001px) {
  .heroShot {
    margin-right: calc(var(--gutter) * -1);
  }
}
@media (min-width: 1201px) {
  .heroShot {
    margin-right: calc((var(--maxw) - 100vw) / 2 - var(--gutter));
  }
}
/* 角丸・影で「板」として置くと、左側の本文との間に境界線ができる。
   2026-08-08：境界を消してヒーローの地とつなげたいというご指示により、
   枠を持たせず左右をぼかして地へ溶かす。 */
.heroShot img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 26%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 26%, #000 92%, transparent 100%);
}

/* ---------- 7. 製品画面の作り込み（HTML再現版・現在は非表示） ---------- */
/* ノートPCの筐体に画面を載せ、奥にもう1枚重ね、周囲に小カードを浮かせる */
.rig {
  display: none;
  position: relative;
  padding: 10px 0 34px;
}
/* 2026-08-08：支給ビジュアルの青い発光。製品画面の背後にだけ置き、
   本文側へは広げない（見出しのコントラストを落とさないため） */
.rig__glow {
  position: absolute;
  z-index: 0;
  left: -14%;
  top: -12%;
  width: 128%;
  height: 124%;
  background:
    radial-gradient(closest-side, rgba(0, 82, 252, 0.3), transparent 72%) 52% 46% / 96% 96% no-repeat,
    radial-gradient(closest-side, rgba(0, 132, 255, 0.24), transparent 70%) 16% 76% / 74% 74% no-repeat,
    radial-gradient(closest-side, rgba(61, 130, 255, 0.2), transparent 70%) 88% 22% / 60% 60% no-repeat;
  filter: blur(2px);
  pointer-events: none;
}
/* 中央上の「AI」 */
.rig__ai {
  position: absolute;
  z-index: 4;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(140deg, var(--blue) 0%, #3d82ff 100%);
  color: #fff;
  font-family: var(--ff-en);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 7px rgba(0, 82, 252, 0.1), 0 14px 30px rgba(0, 82, 252, 0.36);
}
/* 周囲に浮かせる工程カード */
.cap {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 6px;
  padding: 11px 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 82, 252, 0.14);
  box-shadow: 0 14px 30px rgba(10, 22, 51, 0.14);
  backdrop-filter: blur(6px);
}
.cap b {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy-800);
  white-space: nowrap;
}
.cap__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(140deg, #eef3ff 0%, #e0eaff 100%);
  color: var(--blue);
}
.cap__list {
  display: grid;
  gap: 3px;
}
.cap__list i {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  font-style: normal;
  color: var(--muted);
}
.cap__list i::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--blue);
  box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 3px var(--blue);
  flex: none;
}
.cap__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 26px;
}
.cap__bars i {
  width: 7px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, var(--blue) 0%, #86b0ff 100%);
}
.cap--lp {
  top: 4%;
  left: -20%;
}
.cap--cr {
  top: -2%;
  right: -12%;
}
.cap--opt {
  bottom: 16%;
  right: -14%;
}
.cap--growth {
  bottom: 10%;
  left: -16%;
}
/* 奥に重ねる2枚目。奥行きを作るためだけの板 */
.rig__back {
  position: absolute;
  top: -20px;
  right: -4%;
  width: 74%;
  height: 70%;
  border-radius: 12px;
  background: linear-gradient(160deg, #ffffff 0%, #e6edfc 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 46px rgba(10, 22, 51, 0.14);
  transform: rotate(3deg);
}
.laptop {
  position: relative;
  z-index: 2;
}
.laptop__lid {
  padding: 10px 10px 0;
  border-radius: 14px 14px 4px 4px;
  background: linear-gradient(160deg, #223055 0%, #101c39 100%);
  box-shadow: 0 30px 60px rgba(10, 22, 51, 0.28), 0 6px 16px rgba(10, 22, 51, 0.14);
}
.laptop__screen {
  border-radius: 7px 7px 0 0;
  overflow: hidden;
  background: #fff;
}
/* ノートPCの台座。両脇をすぼめて厚みを感じさせる */
.laptop__base {
  position: relative;
  height: 15px;
  margin: 0 -5.5%;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, #c3cddf 0%, #93a1ba 62%, #7b8aa6 100%);
  box-shadow: 0 14px 26px rgba(10, 22, 51, 0.22);
}
.laptop__base::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 88px;
  height: 5px;
  margin-left: -44px;
  border-radius: 0 0 6px 6px;
  background: rgba(16, 28, 57, 0.22);
}

/* 浮遊カード。参考サイトはどれも製品画像の周りに何かを浮かせている */
.chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(10, 22, 51, 0.07);
  box-shadow: 0 14px 30px rgba(10, 22, 51, 0.16);
}
.chip__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  flex: none;
}
.chip__ico--blue {
  background: var(--blue-050);
  color: var(--blue);
}
.chip__ico--green {
  background: #e6f7ec;
  color: #16a34a;
}
.chip__ico--amber {
  background: #fef3d9;
  color: #b57708;
}
.chip__txt {
  display: grid;
  gap: 1px;
  line-height: 1.35;
}
.chip__txt small {
  font-size: 10.5px;
  color: var(--muted);
}
.chip__txt b {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-800);
}
.chip__txt b i {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 700;
  color: #16a34a;
  margin-left: 5px;
}
/* 浮遊要素は製品画面の中身を隠さないよう外側へ逃がす。
   画面が読めなくなると「実物を見せる」という目的が損なわれるため。
   ★2026-08-08：ヒーローの浮遊要素は .chip から .cap（工程カード）へ置き換えた。
     .chip のスタイルは他ページで使う可能性があるため残している。 */
@media (prefers-reduced-motion: no-preference) {
  .chip,
  .cap {
    animation: floaty 6s ease-in-out infinite;
  }
  .cap--cr {
    animation-delay: -1.5s;
  }
  .cap--opt {
    animation-delay: -3s;
  }
  .cap--growth {
    animation-delay: -4.5s;
  }
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

/* ヒーロー下の実績帯。数値の代わりに「提供している事実」を並べる */
.proof {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(34px, 4vw, 56px);
  background: rgba(10, 22, 51, 0.08);
  border: 1px solid rgba(10, 22, 51, 0.08);
  border-radius: 14px;
  overflow: hidden;
}
.proof__cell {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(6px);
}
.proof__cell svg {
  flex: none;
  color: var(--blue);
}
.proof__cell span {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--navy-800);
}

/* 対応媒体のロゴマーキー（2026-08-07 クライアント指示）。
   2026-08-08：テキストチップから各社の公式ロゴ画像へ変更した。
   ロゴは各サービス本来の配色のまま使い、色の変更・変形はしない。
   左右をマスクでぼかして「途切れず流れている」印象にする。 */
.mediaMarquee {
  position: relative;
  z-index: 2;
  margin-top: clamp(28px, 3.4vw, 40px);
  overflow: hidden;
  /* ★フェード幅は「%」ではなく「px」で指定すること（2026-08-12 修正）。
     6% だと画面幅1440pxで約74pxとなり、54pxのロゴタイルが丸ごとフェードに入る。
     先頭がGoogleだったため「Googleのロゴだけ薄い」と見えていた（クライアント指摘0808①）。
     40px に固定したうえで、トラック先頭に同じ幅のスペーサー（.mediaMarquee__pad）を
     置き、静止時にロゴがフェード帯へ停まらないようにしている。 */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}
.mediaMarquee__track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: marqueeScroll 32s linear infinite;
}
.mediaMarquee:hover .mediaMarquee__track {
  animation-play-state: paused;
}
/* ロゴを載せる白いタイル。ロゴ自体には枠も影も付けない */
.mediaChip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 22, 51, 0.08);
  box-shadow: 0 2px 8px rgba(10, 22, 51, 0.05);
}
.mediaChip img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
/* マスクのフェード帯（左右40px）に置く見えないスペーサー。
   ★2セットとも同じ位置に入れること。片方だけだと2セットの幅が揃わず、
     translateX(-50%) のループで継ぎ目がずれる。 */
.mediaMarquee__pad {
  flex: none;
  width: 28px; /* 28px + gap 12px = 40px＝フェード幅と一致 */
  height: 1px;
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* トラックはロゴ一式を2セット並べているので、半分ぶん動かすと
       継ぎ目が見えないままループする */
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mediaMarquee__track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
  /* ループ用に複製した2セット目は、静止表示では単なる重複になるため隠す */
  .mediaMarquee__dup,
  .mediaMarquee__pad {
    display: none;
  }
}

/* ---------- 7-A. 製品画面の中身（アプリ再現） ---------- */
.browser__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: #f1f4f9;
  border-bottom: 1px solid var(--line);
}
.browser__dots {
  display: flex;
  gap: 6px;
}
.browser__dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d5dbe6;
}
.browser__url {
  flex: 1;
  max-width: 240px;
  margin-left: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-family: var(--ff-en);
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}
.browser__body {
  display: flex;
  min-height: 330px;
  background: #f8fafc;
}
.appSide {
  flex: none;
  width: 152px;
  padding: 14px 10px;
  background: #19316b;
  color: #fff;
}
.appSide__brand {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 6px 14px;
  font-family: var(--ff-en);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.appSide__brand i {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--blue);
  flex: none;
}
.appSide__label {
  padding: 14px 6px 6px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #93a3bf;
}
.appSide__item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.82);
}
.appSide__item i {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.28);
  flex: none;
}
.appSide__item.is-on {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 700;
}
.appSide__item.is-on i {
  background: var(--amber);
}
.appMain {
  flex: 1;
  min-width: 0;
  padding: 16px;
}
.appTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.appTop h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-700);
}
.appChip {
  padding: 3px 10px;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: 10px;
  font-weight: 700;
}
.appChip--info {
  background: var(--blue-050);
  color: var(--blue-700);
}
.appWelcome {
  padding: 16px;
  border-radius: 10px;
  background: linear-gradient(120deg, var(--navy-700) 0%, var(--navy-600) 100%);
  color: #fff;
}
.appWelcome b {
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.appWelcome span {
  display: block;
  margin-top: 4px;
  font-size: 10.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
}
.appCards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.appCard {
  padding: 11px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
}
.appCard b {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy-700);
}
.appCard span {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  line-height: 1.65;
  color: var(--muted);
}
.appCard__kpi {
  display: block;
  margin-top: 6px;
  font-family: var(--ff-en);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-800);
}
.appCard__kpi small {
  font-size: 10px;
  font-weight: 600;
  color: #16a34a;
  margin-left: 5px;
}
.appBars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
  margin-top: 10px;
}
.appBars i {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: var(--blue-050);
}
.appBars i.is-hi {
  background: var(--blue);
}

/* ---------- 7-A2. ヒーローの製品画面（2026-08-08・支給ビジュアルの再現） ---------- */
.appBrand {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 18px 12px 20px;
  text-align: center;
}
.appBrand__row {
  display: flex;
  align-items: center;
  gap: 9px;
}
.appBrand__row img {
  width: 26px;
  height: 26px;
}
.appBrand__row b {
  font-family: var(--ff-en);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-800);
}
.appBrand__lead {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-2);
}
/* 折れ線・ドーナツ・媒体チップ */
.appLine {
  display: block;
  width: 100%;
  height: 34px;
  margin-top: 4px;
  color: var(--blue);
}
.appDonut {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.appDonut svg {
  width: 52px;
  height: 52px;
  flex: none;
  transform: rotate(-90deg);
}
.appDonut__seg {
  fill: none;
  stroke-width: 6;
}
.appDonut__legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 6px;
  margin: 0;
}
.appDonut__legend i {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8.5px;
  font-style: normal;
  color: var(--muted);
}
.appDonut__legend em {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex: none;
}
.appCard--wide {
  margin-top: 10px;
}
.appMedia {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 7px;
}
.appMedia i {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--blue-050);
  color: var(--blue-700);
  font-size: 8.5px;
  font-style: normal;
  font-weight: 700;
}

/* ---------- 7-B. 写真の差し込み枠 ----------
   仕組み：土台にプレースホルダ（薄いグラデーション＋ラベル）を敷き、
   写真は ::before に background-image で重ねる。
   - 画像ファイルが無いあいだ … ::before は透明のままなのでプレースホルダが見える
   - 画像ファイルを置いた瞬間 … ::before が全面を覆うのでプレースホルダは隠れる
   つまり `site/assets/img/` にファイルを置くだけで切り替わり、HTMLの書き換えは要らない。
   壊れた画像アイコンも出ない（<img> ではなく背景として読むため）。 */
.ph {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, #eef2f9 0%, #dde6f4 55%, #e8edf7 100%);
  border: 1px solid var(--line);
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.ph__label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted2);
  text-align: center;
  padding: 20px;
}
.ph__label span {
  font-family: var(--ff-en);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.ph__label em {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
}

/* 各スロット。ファイル名はここでだけ指定する */
.ph--issue {
  /* 元写真は3:2。12:5まで切ると手（＝「止まっている」を語る要素）が落ちるので2.1:1に留める */
  aspect-ratio: 2.1 / 1;
  margin-top: 44px;
}
.ph--issue::before {
  background-image: url("../img/issue-desk.jpg");
  /* 上下を切るとき、上の余白ではなく机の面と手が残るよう下寄りで合わせる */
  background-position: center 62%;
}
.ph--consult {
  aspect-ratio: 3 / 2;
}
.ph--consult::before {
  background-image: url("../img/consult.jpg");
}

/* 濃紺セクションの背景に敷く写真。文字が読めなくならないよう必ず幕を重ねる */
.bgPhoto {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}
.bgPhoto--security {
  background-image: url("../img/security-night.jpg");
  /* 元写真が夜景で暗いため、幕を薄くしないと何も見えない。文字は白なので0.5でも可読性は保てる */
  opacity: 0.5;
}
.bgPhoto--cta {
  background-image: url("../img/cta-office.jpg");
  /* こちらは明るい写真。上げすぎると白文字が沈むので低めに抑える */
  opacity: 0.26;
}
/* 幕。写真の有無にかかわらず敷いておく（無いときは無害） */
.bgScrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.bgScrim--security {
  background: linear-gradient(
    100deg,
    rgba(10, 22, 51, 0.88) 0%,
    rgba(10, 22, 51, 0.58) 52%,
    rgba(10, 22, 51, 0.8) 100%
  );
}
.bgScrim--cta {
  background: linear-gradient(
    180deg,
    rgba(5, 12, 36, 0.82) 0%,
    rgba(5, 12, 36, 0.62) 48%,
    rgba(5, 12, 36, 0.88) 100%
  );
}
/* 背景レイヤーより前に本文を出す */
.section--navy .wrap,
.cta__inner {
  position: relative;
  z-index: 2;
}
.section--navy {
  position: relative;
  overflow: hidden;
}

/* 見出しブロックと写真を横に並べる（選ばれる理由セクション） */
.secSplit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

/* ---------- 8. 課題提起 ----------
   参考サイトはどれも「罫線で仕切っただけの箱」を使わない。
   白いカードに色付きのアイコンタイルを載せ、影で浮かせ、hoverで持ち上げる。 */
.issues {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.issue {
  position: relative;
  padding: 30px 26px 28px;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid rgba(10, 22, 51, 0.07);
  box-shadow: 0 3px 14px rgba(10, 22, 51, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.issue:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(10, 22, 51, 0.12);
}
.issue__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 13px;
  background: linear-gradient(140deg, #fff2f1 0%, #ffe4e2 100%);
  color: #d8483c;
}
.issue h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--navy-800);
}
.issue p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.95;
  color: var(--muted);
}
/* 写真は角を丸め、左に一言を重ねる。
   2026-08-08：クライアント支給の新画像に合わせ、暗いスクリム＋白文字から
   「淡い白のスクリム＋濃紺の文字」へ変更した（支給画像と同じ見え方にする）。 */
.issues__photo {
  position: relative;
  margin-top: 28px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 2.2 / 1;
  background: var(--canvas-2) url("../img/issue-desk.jpg") center 56% / cover no-repeat;
  box-shadow: 0 14px 36px rgba(10, 22, 51, 0.14);
}
.issues__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.86) 34%,
    rgba(255, 255, 255, 0.4) 56%,
    rgba(255, 255, 255, 0) 74%
  );
}
.issues__cap {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 4vw, 48px);
  top: 50%;
  transform: translateY(-50%);
  max-width: 15em;
  color: var(--ink);
  font-size: clamp(16px, 2.1vw, 23px);
  font-weight: 800;
  line-height: 1.85;
  letter-spacing: -0.01em;
}
.issues__cap em {
  font-style: normal;
  color: var(--blue);
}
/* 課題から解決への転換。帯にして視線を止める */
/* 強調の <em> を flex アイテムにすると gap ぶんの空白が前後に入り、
   文章が不自然に途切れて見える。ここは1本の文なので通常のテキスト流しにする。 */
.turn {
  margin-top: 34px;
  padding: 26px 30px;
  border-radius: 16px;
  background: linear-gradient(120deg, var(--navy-800) 0%, #1b3268 100%);
  color: #fff;
  text-align: center;
  font-size: clamp(16px, 2.1vw, 21px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 34px rgba(10, 22, 51, 0.2);
}
.turn em {
  font-style: normal;
  color: #8fb4ff;
}

/* ---------- 9. 一気通貫フロー ----------
   工程を「線でつながった図」として描く。番号は順序を持つのでここには置く。 */
.flow {
  position: relative;
  margin-top: 48px;
  padding: 42px 30px 34px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid rgba(10, 22, 51, 0.07);
  box-shadow: 0 10px 34px rgba(10, 22, 51, 0.08);
  overflow: hidden;
}
.flow::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 252, 0.09), transparent 68%);
  pointer-events: none;
}
.flow__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
/* 工程をつなぐ線。2026-08-08：クライアント支給の新デザインに合わせ、
   太い帯から「細い線＋工程のあいだの小さな点」に変えた */
.flow__track::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 29px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(0, 82, 252, 0.16) 0%, rgba(0, 82, 252, 0.42) 50%, rgba(0, 82, 252, 0.16) 100%);
}
.step {
  position: relative;
  z-index: 1;
  padding: 0 8px;
  text-align: center;
}
/* 工程と工程のあいだに置く点 */
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -4px;
  top: 25px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(0, 82, 252, 0.5);
}
.step__node {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 17px;
  background: #fff;
  border: 1px solid rgba(0, 82, 252, 0.1);
  color: var(--blue);
  box-shadow: 0 6px 18px rgba(10, 22, 51, 0.1), 0 1px 3px rgba(10, 22, 51, 0.05);
}
.step--key .step__node {
  background: linear-gradient(140deg, var(--blue) 0%, #2b6bff 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 0 6px rgba(0, 82, 252, 0.1), 0 12px 26px rgba(0, 82, 252, 0.36);
}
/* 番号は「01」〜「07」。支給デザインでは見出しより前に大きめで置かれている */
.step__n {
  display: block;
  margin-top: 14px;
  font-family: var(--ff-en);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #a8b4cc;
}
.step--key .step__n {
  color: var(--blue);
}
.step h3 {
  margin-top: 6px;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--navy-800);
}
.step p {
  margin-top: 6px;
  font-size: 11.5px;
  line-height: 1.8;
  color: var(--muted);
}
/* 吹き出し。尾は上向きにして、真上の「02 LP生成」を指す */
.step__key {
  position: relative;
  display: inline-block;
  margin-top: 12px;
  padding: 5px 13px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--blue) 0%, #2b6bff 100%);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 82, 252, 0.32);
}
.step__key::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -5px;
  width: 11px;
  height: 11px;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
  /* 尾はピルの上辺に付くので、グラデーションの左上側の色に合わせる */
  background: #0f57fd;
}
.flow__note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 22px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px dashed var(--line-strong);
  font-size: 14px;
  color: var(--ink-2);
}
.flow__note b {
  color: var(--navy-800);
}
/* 工程フローの下の帯。2026-08-08：クライアント支給の新デザインに合わせて
   「白い帯＋青い丸チェック＋縦の区切り線」に変更した */
.flow__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 32px;
  padding: 16px 24px;
  border-radius: 16px;
  background: linear-gradient(120deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid rgba(0, 82, 252, 0.14);
  box-shadow: 0 4px 16px rgba(10, 22, 51, 0.05);
}
.flow__seal {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--blue);
}
.flow__seal-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--blue) 0%, #2b6bff 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 82, 252, 0.3);
}
.flow__foot-txt {
  flex: 1 1 320px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-2);
}
.flow__foot-txt b {
  color: var(--navy-800);
}

/* ---------- 10. 選ばれる理由 ----------
   並列なので番号は振らない。カード＋大きめのアイコンタイルで見せる。 */
.whyTop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}
.whyTop__photo {
  border-radius: 18px;
  aspect-ratio: 3 / 2;
  background: var(--canvas-2) url("../img/consult.jpg") center / cover no-repeat;
  box-shadow: 0 14px 36px rgba(10, 22, 51, 0.16);
}
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 46px;
}
.reason {
  position: relative;
  padding: 32px 28px 30px;
  border-radius: 18px;
  background: linear-gradient(170deg, #ffffff 0%, #f7f9ff 100%);
  border: 1px solid rgba(10, 22, 51, 0.07);
  box-shadow: 0 4px 18px rgba(10, 22, 51, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.reason:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10, 22, 51, 0.13);
}
.reason__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 15px;
  background: linear-gradient(140deg, var(--blue) 0%, #2b6bff 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 82, 252, 0.28);
}
.reason h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: -0.015em;
  color: var(--navy-800);
}
.reason p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-2);
}

/* ---------- 11. 機能詳細（左右交互） ---------- */
.features {
  display: grid;
  gap: clamp(56px, 7vw, 92px);
  margin-top: 56px;
}
.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 4.5vw, 64px);
  align-items: center;
}
.feature:nth-child(even) .feature__text {
  order: 2;
}
.feature__no {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: var(--blue-050);
  font-family: var(--ff-en);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue-700);
}
.feature__no i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.feature h3 {
  margin-top: 18px;
  font-size: clamp(21px, 2.7vw, 28px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.025em;
  color: var(--navy-800);
}
.feature p {
  margin-top: 16px;
  font-size: 15px;
  color: var(--ink-2);
}
.feature__points {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.feature__points li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink-2);
}
.feature__points svg {
  flex: none;
  margin-top: 5px;
  color: var(--blue);
}

/* 画面は枠に入れて浮かせる。背後にブルーの気配を敷いて奥行きを出す */
.shot {
  position: relative;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid rgba(10, 22, 51, 0.07);
  box-shadow: 0 20px 48px rgba(10, 22, 51, 0.14);
  overflow: hidden;
}
.shotWrap {
  position: relative;
}
.shotWrap::before {
  content: "";
  position: absolute;
  inset: -26px -18px -18px;
  border-radius: 26px;
  background: radial-gradient(60% 70% at 70% 20%, rgba(0, 82, 252, 0.13), transparent 70%);
  pointer-events: none;
}
.shot__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 17px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fc 100%);
}
.shot__head b {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-700);
}
.shot__body {
  padding: 18px;
  background: #f8fafc;
}

/* ヒアリングフォーム風 */
.fld {
  margin-bottom: 12px;
}
.fld label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 5px;
}
.fld em {
  font-style: normal;
  padding: 1px 6px;
  border-radius: 3px;
  background: #fee2e2;
  color: #b91c1c;
  font-size: 9.5px;
  font-weight: 700;
}
.fld .box {
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 11.5px;
  line-height: 1.75;
  color: var(--ink);
}
.fld .box.is-focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 82, 252, 0.12);
}
.fld .box.is-empty {
  color: var(--muted);
  background: #fbfcfe;
}

/* LPプレビュー風 */
.lpPrev {
  display: grid;
  grid-template-columns: 1fr 118px;
  gap: 12px;
}
.lpPrev__page {
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(10, 22, 51, 0.07);
}
/* 2026-08-08：支給デザインに合わせ、光の曲線を敷いた濃紺のFVにした */
.lpPrev__fv {
  position: relative;
  overflow: hidden;
  padding: 16px 14px;
  background: linear-gradient(125deg, #0b1b3f 0%, var(--navy-700) 60%, #1d3a7d 100%);
  color: #fff;
}
.lpPrev__fv::after {
  content: "";
  position: absolute;
  right: -30%;
  top: -40%;
  width: 110%;
  height: 190%;
  background:
    radial-gradient(closest-side, rgba(0, 132, 255, 0.55), transparent 70%) 62% 42% / 62% 62% no-repeat,
    radial-gradient(closest-side, rgba(0, 82, 252, 0.32), transparent 72%) 30% 80% / 70% 70% no-repeat;
  transform: rotate(-14deg);
  pointer-events: none;
}
.lpPrev__fv > * {
  position: relative;
  z-index: 1;
}
.lpPrev__fv b {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.6;
}
.lpPrev__fv b em {
  font-style: normal;
  font-size: 16px;
  color: #5aa6ff;
}
.lpPrev__fv span {
  display: block;
  margin-top: 5px;
  font-size: 9.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}
/* ★ .lpPrev__fv span より詳細度を上げないと display:block に負ける */
.lpPrev__fv span.lpPrev__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: auto;
  margin-top: 11px;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--blue) 0%, #3d82ff 100%);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 82, 252, 0.4);
}
.lpPrev__fv span.lpPrev__cta::after {
  content: "→";
  font-size: 10px;
}
.lpPrev__rows {
  padding: 12px 14px;
  display: grid;
  gap: 7px;
}
.lpPrev__rows i {
  height: 6px;
  border-radius: 3px;
  background: #e9edf5;
}
.lpPrev__rows i:nth-child(1) {
  width: 62%;
  height: 8px;
  background: #d7deea;
}
.lpPrev__rows i:nth-child(4) {
  width: 78%;
}
.lpPrev__blocks {
  display: grid;
  gap: 6px;
  align-content: start;
}
.lpBlock {
  padding: 8px 10px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 9.5px;
  font-weight: 600;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 6px;
}
/* 2026-08-08：支給デザインに合わせ、棒印から内容の分かるアイコンへ */
.lpBlock i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 5px;
  background: #eef2fa;
  color: #7d8aa6;
  flex: none;
}
.lpBlock i svg {
  width: 11px;
  height: 11px;
}
.lpBlock.is-on {
  position: relative;
  border-color: var(--blue);
  background: linear-gradient(120deg, #f2f6ff 0%, #e9f0ff 100%);
  color: var(--blue-700);
  box-shadow: 0 3px 10px rgba(0, 82, 252, 0.14);
}
/* 選択中を示す左の青いバー（支給デザインの表現） */
.lpBlock.is-on::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 55%;
  border-radius: 2px;
  background: var(--blue);
}
.lpBlock.is-on i {
  background: var(--blue);
  color: #fff;
}

/* バナー生成風 */
.banners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.banner {
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 3px 10px rgba(10, 22, 51, 0.06);
}
.banner__art {
  position: relative;
  overflow: hidden;
  height: 92px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1.5;
}
/* 支給デザインの「光の曲線」 */
.banner__art::after {
  content: "";
  position: absolute;
  right: -55%;
  bottom: -85%;
  width: 150%;
  height: 190%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.28), transparent 72%);
  pointer-events: none;
}
.banner__art > * {
  position: relative;
  z-index: 1;
}
/* 訴求を示すアイコン */
.banner__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: 21px;
  height: 21px;
  margin-bottom: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.09);
}
.banner__ico svg {
  width: 12px;
  height: 12px;
}
.banner:nth-child(1) .banner__art {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
}
.banner:nth-child(2) .banner__art {
  background: linear-gradient(135deg, #0f4c81, var(--blue));
}
.banner:nth-child(3) .banner__art {
  background: linear-gradient(135deg, #6b3f05, #d89412);
  color: #fff;
}
/* CTAチップ。支給デザインでは塗りではなく白フチの抜き文字 */
.banner__art span {
  display: inline-block;
  margin-top: 7px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #fff;
  font-size: 8px;
  align-self: flex-start;
}
.banner:nth-child(3) .banner__art span {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}
.banner__meta {
  padding: 6px 8px;
  font-size: 9px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
}
.copyRows {
  margin-top: 12px;
  display: grid;
  gap: 6px;
}
.copyRow {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 10.5px;
  color: var(--ink);
}
.copyRow b {
  flex: none;
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--blue-050);
  font-size: 9px;
  font-weight: 700;
  color: var(--blue-700);
}
.copyRow u {
  margin-left: auto;
  text-decoration: none;
  font-family: var(--ff-en);
  font-size: 9px;
  color: #16a34a;
  font-weight: 700;
}
/* 支給デザインの、行頭のアイコンと行末の送り記号 */
.copyRow__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(140deg, #eef3ff 0%, #e3ecff 100%);
  color: var(--blue);
}
.copyRow__ico svg {
  width: 12px;
  height: 12px;
}
.copyRow u::after {
  content: "›";
  margin-left: 8px;
  color: var(--line-strong);
  font-size: 12px;
  font-weight: 700;
}

/* レポート風 */
.rep__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 12px;
}
.rep__kpi {
  position: relative;
  overflow: hidden;
  padding: 11px 12px 13px;
  border-radius: 11px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(10, 22, 51, 0.05);
}
.rep__kpi span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  color: var(--muted);
}
/* 指標のアイコン */
.rep__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 19px;
  height: 19px;
  border-radius: 6px;
  background: linear-gradient(140deg, #eef3ff 0%, #e2ebff 100%);
  color: var(--blue);
}
.rep__ico svg {
  width: 11px;
  height: 11px;
}
/* 背景に薄く敷く推移の折れ線 */
.rep__spark {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62%;
  height: 34px;
  color: rgba(0, 82, 252, 0.24);
  pointer-events: none;
}
.rep__spark.is-down {
  color: rgba(220, 38, 38, 0.22);
}
.rep__kpi b {
  display: block;
  margin-top: 2px;
  font-family: var(--ff-en);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-800);
}
.rep__kpi b small {
  font-family: var(--ff);
  font-size: 10.5px;
  font-weight: 600;
  margin-left: 1px;
}
.rep__kpi u {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  text-decoration: none;
  font-family: var(--ff-en);
  font-size: 9.5px;
  font-weight: 700;
  color: #16a34a;
}
.rep__kpi u small {
  font-family: var(--ff);
  font-size: 8.5px;
  font-weight: 600;
  color: var(--muted);
}
.rep__kpi u.is-down {
  color: #dc2626;
}
.rep__panel {
  padding: 13px 14px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(10, 22, 51, 0.05);
}
.rep__panel h5 {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-700);
  display: flex;
  align-items: center;
  gap: 7px;
}
.rep__panel h5 em {
  font-style: normal;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--blue-050);
  color: var(--blue-700);
  font-size: 9px;
}
/* 提案の電球アイコン */
.rep__bulb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--blue) 0%, #3d82ff 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 82, 252, 0.3);
}
.rep__bulb svg {
  width: 13px;
  height: 13px;
}
.rep__panel p {
  margin: 0;
  font-size: 10.5px;
  line-height: 1.85;
  color: var(--ink-2);
}
.rep__act {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 11px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
}
.rep__act .mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 700;
}
.rep__act .mini svg {
  width: 11px;
  height: 11px;
  flex: none;
}
.rep__act .mini--ok {
  background: linear-gradient(120deg, var(--blue) 0%, #2b6bff 100%);
  color: #fff;
  box-shadow: 0 5px 14px rgba(0, 82, 252, 0.32);
}
.rep__act .mini--no {
  background: #fff;
  border: 1px solid var(--line-strong);
  color: var(--ink-2);
}

/* ---------- 12. 比較表 ----------
   AutoAdの列だけをカードとして持ち上げる（参考サイトの料金表と同じ見せ方）。 */
.compare {
  margin-top: 46px;
  overflow-x: auto;
  padding: 14px 0 6px;
}
.compare table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
}
.compare th,
.compare td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.85;
  border-bottom: 1px solid var(--line);
}
.compare thead th {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  border-bottom: 1px solid var(--line-strong);
}
.compare tbody th {
  width: 190px;
  font-weight: 700;
  color: var(--navy-800);
}
.compare td {
  color: var(--muted);
}
.compare .col-own {
  background: #fff;
  color: var(--navy-800);
  font-weight: 600;
  border-left: 1px solid rgba(0, 82, 252, 0.16);
  border-right: 1px solid rgba(0, 82, 252, 0.16);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.compare thead .col-own {
  background: linear-gradient(140deg, var(--blue) 0%, #2b6bff 100%);
  color: #fff;
  font-size: 15px;
  border-radius: 14px 14px 0 0;
  border-color: transparent;
  text-align: center;
  box-shadow: 0 -6px 24px rgba(0, 82, 252, 0.22);
}
.compare tbody tr:last-child .col-own {
  border-radius: 0 0 14px 14px;
  border-bottom: 1px solid rgba(0, 82, 252, 0.16);
}
.compare tbody tr:last-child th,
.compare tbody tr:last-child td {
  border-bottom: 0;
}
.compare .col-own::before {
  content: "";
}
.cmpMark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: -3px;
  flex: none;
}
.cmpMark--yes {
  background: var(--blue-050);
  color: var(--blue);
}
.cmpMark--no {
  background: #f2f4f8;
  color: #98a3b8;
}

/* ---------- 13. 安全性 ---------- */
.safety {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.safetyCard {
  padding: 32px 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(4px);
  transition: transform 0.25s, background-color 0.25s;
}
.safetyCard:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.11);
}
.safetyCard__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(127, 163, 255, 0.34) 0%, rgba(0, 82, 252, 0.28) 100%);
  border: 1px solid rgba(157, 184, 255, 0.34);
  color: #cfdcff;
  margin-bottom: 20px;
}
.safetyCard h3 {
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: #fff;
}
.safetyCard p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- 14. ご利用の流れ ----------
   順序があるので番号を振り、矢印でつなぐ。 */
.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 50px;
}
.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 22px 26px;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid rgba(10, 22, 51, 0.07);
  box-shadow: 0 3px 14px rgba(10, 22, 51, 0.06);
}
/* カード間の矢印 */
.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 46px;
  right: -11px;
  width: 8px;
  height: 8px;
  border-top: 1.6px solid var(--line-strong);
  border-right: 1.6px solid var(--line-strong);
  transform: rotate(45deg);
  z-index: 2;
}
.step__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--navy-800) 0%, #24407f 100%);
  color: #fff;
  font-family: var(--ff-en);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(10, 22, 51, 0.22);
}
.step-card h3 {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--navy-800);
}
.step-card p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
}
.step__by {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 16px;
}
.step__by span {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: var(--canvas-2);
  color: var(--ink-2);
}
.step__by span.is-us {
  background: var(--blue-050);
  color: var(--blue-700);
}

/* ---------- 15. FAQ ---------- */
/* 見出しを左に固定し、質問リストを右に流す2カラム。
   1カラムのままだと読み幅を抑えるための max-width が右側の余白として残り、
   他セクションと右端が揃わずズレて見える。 */
.faqLayout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.faqLayout__head {
  position: sticky;
  top: 106px;
}
.faqLayout__note {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}
.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 4px;
  /* 回答（.faq__a）を16pxへ上げたので、質問はそれより確実に大きくする */
  font-size: 17.5px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: var(--navy-800);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::before {
  content: "Q";
  flex: none;
  font-family: var(--ff-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  padding-top: 2px;
}
.faq summary::after {
  content: "";
  flex: none;
  width: 11px;
  height: 11px;
  margin-left: auto;
  margin-top: 8px;
  border-right: 1.8px solid var(--muted);
  border-bottom: 1.8px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.25s;
}
.faq details[open] summary::after {
  transform: rotate(-135deg);
}
.faq__a {
  display: flex;
  gap: 16px;
  padding: 0 4px 26px 4px;
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink-2);
}
.faq__a::before {
  content: "A";
  flex: none;
  font-family: var(--ff-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--line-strong);
}

/* ---------- 16. 締めCTA ---------- */
.cta {
  position: relative;
  padding-block: clamp(72px, 9vw, 112px);
  background:
    radial-gradient(700px 340px at 78% 0%, rgba(0, 82, 252, 0.34), transparent 62%),
    var(--navy-900);
  color: #fff;
  overflow: hidden;
}
.cta__arc {
  position: absolute;
  left: -140px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  text-align: center;
}
.cta h2 {
  font-size: clamp(25px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.025em;
}
.cta p {
  margin: 22px auto 0;
  max-width: 40em;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.74);
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}
.cta__note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- 17. フッター ---------- */
.footer {
  padding-block: 56px 32px;
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13.5px;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* マークはネイビー×ブルーの2色。暗い地に置くとネイビー側が沈むので、白のシルエットにする */
.footer .logo img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer .logo__text {
  color: #fff;
}
.footer .logo__text span {
  color: #6f9bff;
}
.footer__about {
  margin-top: 16px;
  max-width: 26em;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
}
.footer h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}
.footer li + li {
  margin-top: 11px;
}
.footer a:hover {
  color: #fff;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.42);
}

/* ---------- 18. スクロール表示 ---------- */
.rise {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.rise.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .rise {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================================
   21. 電話番号（ヘッダー・モバイルメニュー・フッター）
   フリーダイヤルは英数なので Inter を当て、数字の表情を揃える。
   ============================================================================ */
.header__tel {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy-800);
  white-space: nowrap;
}
.header__tel svg {
  color: var(--blue);
  flex: none;
}
.header__tel__num {
  font-family: var(--ff-en);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.header__tel:hover .header__tel__num {
  color: var(--blue);
}

.mnav__tel {
  display: grid !important;
  gap: 2px;
  padding: 16px 0 !important;
}
.mnav__tel small {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}
.mnav__tel b {
  font-family: var(--ff-en);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--blue);
}

.footer__tel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: #fff;
}
.footer__tel svg {
  flex: none;
  opacity: 0.7;
}
.footer__tel__num {
  font-family: var(--ff-en);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.footer__hours {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================================
   22. 数値バッジ（画像版）
   2026-08-17 クライアント支給の内訳画像2点をそのまま掲載。PC＝横並び2列、
   スマホ＝縦並び1列（画像そのものに数値・文字が焼き込まれているため
   HTML側での再現はしない）。
   ============================================================================ */
.statsImgs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(30px, 3.6vw, 48px);
}
.statsImgs img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}

/* ============================================================================
   23. 生成例（実際に生成したバナー）
   機能セクションの締めに置く帯。操作画面の再現（.shot）は架空の顧客
   「タイムノート」で統一しているので、実物のバナーはそこへ混ぜず、
   別の帯として「これは実際の生成物です」と分けて見せる。
   ============================================================================ */
.samples {
  margin-top: clamp(48px, 6vw, 84px);
  padding-top: clamp(36px, 4vw, 52px);
  border-top: 1px solid var(--line);
}
.samples__head h3 {
  font-size: clamp(19px, 2.2vw, 23px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: var(--navy-800);
}
.samples__head p {
  max-width: 46em;
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--ink-2);
}
/* 生成例は横スクロールで見せる（2026-08-08・0807タブ⑥）。
   1枚の幅は「3枚半が見えて、続きがあると分かる」ところに置いている。
   ぴったり割り切れる幅にすると、並びきって横に流れないので注意。 */
.samples__grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(230px, 25vw, 310px);
  gap: 16px;
  margin-top: 26px;
  padding-bottom: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  /* 標準のスクロールバーは隠す。送り位置は .samples__bar で常時見せる */
  scrollbar-width: none;
}
.samples__grid::-webkit-scrollbar {
  display: none;
}
/* LPの生成例は横長（3:2）なので、バナー（正方形）より広い列にする。
   2枚半が見えて続きがあると分かる幅に置いている。 */
.samples__grid--wide {
  grid-auto-columns: clamp(280px, 34vw, 440px);
}
.samples__grid:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}
/* 送り位置のバー（参照LPと同じ見せ方） */
.samples__bar {
  position: relative;
  height: 6px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--canvas-2);
  overflow: hidden;
}
.samples__bar i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 30%;
  border-radius: 999px;
  background: var(--blue);
  transform: translateX(0);
  transition: transform 0.12s linear;
}
.sample {
  margin: 0;
  scroll-snap-align: start;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy-900);
  box-shadow: var(--sh);
}
.sample img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
/* LPは画面をそのまま見せたいので、正方形に切らず上端を揃えて出す。
   下は切れるが、LPは上から読むものなので頭が残っていれば伝わる。 */
.sample--lp {
  background: var(--canvas-2);
}
.sample--lp img {
  aspect-ratio: 3 / 2;
  object-position: top center;
}
.samples__note {
  margin-top: 14px;
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--muted);
}

/* ============================================================================
   24. 3つの関わり方（学ぶ／自分で回す／任せる）
   真ん中の「ツール」が本サイトの主役なので、そこだけ濃紺で持ち上げる。
   ============================================================================ */
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  margin-top: clamp(36px, 4vw, 52px);
}
.plan {
  position: relative;
  padding: 30px 28px 32px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh);
}
.plan--main {
  background: linear-gradient(150deg, var(--navy-800) 0%, #1b3268 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--sh-lg);
}
.plan__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--blue-050);
  color: var(--blue);
}
.plan--main .plan__ico {
  background: rgba(255, 255, 255, 0.12);
  color: #9fbcff;
}
.plan__tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
}
.plan--main .plan__tag {
  color: #9fbcff;
}
.plan h3 {
  margin-top: 2px;
  font-size: clamp(21px, 2.4vw, 25px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--navy-800);
}
.plan--main h3 {
  color: #fff;
}
.plan__lead {
  margin-top: 10px;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--navy-700);
}
.plan--main .plan__lead {
  color: #cddcff;
}
.plan p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-2);
}
.plan--main p {
  color: rgba(255, 255, 255, 0.8);
}
.plan__points {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.plan--main .plan__points {
  border-top-color: rgba(255, 255, 255, 0.18);
}
.plan__points li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-2);
}
.plan--main .plan__points li {
  color: rgba(255, 255, 255, 0.86);
}
.plan__points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}
.plan--main .plan__points li::before {
  border-color: #9fbcff;
}

/* ============================================================================
   25. 問い合わせフォーム（締めCTA内）
   濃紺の上に白いカードを置く。入力欄は角丸を抑えて業務的に見せる。
   ============================================================================ */
.cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: clamp(34px, 4vw, 48px);
  text-align: left;
}
.formCard {
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}
.cform {
  display: grid;
  gap: 16px;
}
.cform__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cform__kind {
  margin: 0;
  padding: 0;
  border: 0;
}
.cform__kind legend {
  padding: 0;
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-800);
}
.cform__picks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.pick {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.pick input {
  accent-color: var(--blue);
  margin: 0;
}
.pick:hover {
  border-color: var(--blue);
}
.pick:has(input:checked) {
  border-color: var(--blue);
  background: var(--blue-050);
  color: var(--navy-800);
}

.cf {
  display: grid;
  gap: 7px;
}
.cf__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-800);
}
.cf__label em {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 3px;
  background: #ffe9e9;
  color: #c0392b;
  font-style: normal;
  font-size: 10.5px;
  font-weight: 700;
  vertical-align: 1px;
}
.cf input,
.cf textarea,
.cf select {
  width: 100%;
  padding: 13px 14px;
  font-family: inherit;
  font-size: 15px; /* 16px 未満だと iOS が入力時にページを拡大するため、これ以上下げない */
  line-height: 1.7;
  color: var(--ink);
  background: #fbfcfe;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.cf textarea {
  resize: vertical;
  min-height: 96px;
}
.cf input::placeholder,
.cf textarea::placeholder {
  color: #a6b0c6;
}
.cf input:focus,
.cf textarea:focus,
.cf select:focus {
  outline: 0;
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 82, 252, 0.14);
}
/* select は矢印を自前で描く（OS標準のままだと浮くため） */
.cf__sel {
  position: relative;
  display: block;
}
.cf__sel select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
.cf__sel svg {
  position: absolute;
  top: 50%;
  right: 14px;
  margin-top: -8px;
  color: var(--muted);
  pointer-events: none;
}
/* 送信を押して初めて赤く出す。入力途中で赤くすると急かされている感じになる */
.cform.is-checked :invalid {
  border-color: #d9534f;
  background: #fff7f7;
}

.agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-2);
  cursor: pointer;
}
.agree input {
  margin-top: 5px;
  width: 17px;
  height: 17px;
  accent-color: var(--blue);
  flex: none;
}
.agree a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.agree em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: #c0392b;
}
.cform.is-checked .agree:has(:invalid) {
  color: #c0392b;
}

.cform__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 24px;
  border-radius: var(--r);
  background: var(--blue);
  color: #fff;
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(0, 82, 252, 0.3);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.cform__submit:hover {
  background: var(--blue-700);
  box-shadow: 0 16px 34px rgba(0, 82, 252, 0.36);
  transform: translateY(-1px);
}
/* ★`.cta p`（白文字・上マージン22px）が当たってしまう位置にあるので、
   セレクタを一段強くして打ち消す。これが無いと白地に白文字で
   注記が消え、そのぶんが送信ボタン下の無駄な余白に見える。 */
.cta .cform__note {
  margin: 0;
  max-width: none;
  font-size: 12.5px;
  line-height: 1.8;
  text-align: center;
  color: var(--muted);
}
.cform__result {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border-radius: var(--r);
  font-size: 13.5px;
  line-height: 1.85;
}
/* ★これが無いと、送信前でも空の箱がボタンの下に残り、無駄な余白になる。
   `display: grid` はブラウザ既定の `[hidden] { display: none }` より
   強いので、hidden 側を明示的に打ち消す必要がある。 */
.cform__result[hidden] {
  display: none;
}
.cform__result.is-pending {
  background: #fff8e6;
  border: 1px solid #f0d79a;
  color: #7a5600;
}
.cform__result.is-ok {
  background: #eefaf0;
  border: 1px solid #a9dfb4;
  color: #1e6b31;
}
.cform__result.is-error {
  background: #fdf0ef;
  border: 1px solid #ecb3ae;
  color: #a3271e;
}
.cform__result b {
  font-size: 14.5px;
}
.cform__result a {
  font-weight: 700;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* 右カラム：電話と、相談のハードルを下げる箇条書き */
.ctaAside {
  display: grid;
  gap: 18px;
}
.ctaAside__box {
  display: grid;
  gap: 3px;
  padding: 24px 26px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.ctaAside__cap {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.66);
}
.ctaAside__tel {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
  color: #fff;
}
.ctaAside__tel svg {
  flex: none;
  opacity: 0.72;
}
.ctaAside__tel span {
  font-family: var(--ff-en);
  font-size: clamp(26px, 3.2vw, 32px);
  font-weight: 800;
  letter-spacing: 0.005em;
}
.ctaAside__hours {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.58);
}
.ctaAside__list {
  display: grid;
  gap: 11px;
  padding: 0 4px;
}
.ctaAside__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}
.ctaAside__list svg {
  flex: none;
  margin-top: 5px;
  color: #7fe0a5;
}
.ctaAside__list b {
  color: #fff;
}

/* ============================================================================
   26. 下層ページ（会社概要・プライバシーポリシー）
   読み物なので、トップの装飾は持ち込まず罫線と余白だけで組む。
   ============================================================================ */
.subHero {
  padding-block: clamp(40px, 5vw, 68px) clamp(28px, 3.4vw, 44px);
  background: linear-gradient(178deg, #f7f9fe 0%, #eef3fd 100%);
  border-bottom: 1px solid var(--line);
}
.crumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  font-size: 12.5px;
  color: var(--muted);
}
.crumb a:hover {
  color: var(--blue);
}
.subHero .eyebrow {
  margin-bottom: 14px;
}
.subHero__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.03em;
  color: var(--navy-800);
}
/* ★2026-08-08：会社概要・よくあるご質問・採用の3ページは「本文が細めのグレーで
   小さく見える」というご指摘（0807タブ⑧）を受けて、本文を一段階上げている。
   下げ戻すときは3ページまとめて戻すこと（1ページだけ違う大きさにしない）。 */
.subHero__lead {
  max-width: 42em;
  margin-top: 16px;
  font-size: 16.5px;
  line-height: 1.95;
  color: var(--ink-2);
}

.doc {
  max-width: 860px;
}
.doc p {
  font-size: 16px;
  line-height: 2.05;
  color: var(--ink-2);
}
.doc p + p {
  margin-top: 14px;
}
/* 節の頭に置く一文（採用ページの「AIを武器に、〜」）。本文より一段強く出す */
.doc .doc__lead {
  font-size: clamp(17px, 2vw, 19px);
  font-weight: 700;
  line-height: 1.85;
  color: var(--navy-800);
}
/* 節見出しの左に細いブルーの罫線を立てる（0807タブ⑧「ブルーを足す案」） */
.docH2 {
  margin-top: 52px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  padding-left: 15px;
  border-left: 3px solid var(--blue);
  border-bottom: 1px solid var(--line);
  font-size: clamp(18px, 2.2vw, 21px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--navy-800);
}
.doc > .docH2:first-child {
  margin-top: 0;
}
.docList {
  counter-reset: doc;
  display: grid;
  gap: 9px;
  margin-top: 12px;
}
.docList li {
  position: relative;
  counter-increment: doc;
  padding-left: 34px;
  font-size: 16px;
  line-height: 2.05;
  color: var(--ink-2);
}
.docList li::before {
  content: "(" counter(doc) ")";
  position: absolute;
  left: 0;
  font-family: var(--ff-en);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}
/* 番号ではなく点で並べる版。特商法ページのように、原稿が
   「・」の箇条書きになっている箇所で使う（(1)(2)… を打ち消す）。 */
.docList--bullet li::before {
  content: "";
  top: 0.9em;
  left: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.infoTable {
  width: 100%;
  margin-top: 8px;
  border-collapse: collapse;
  border-top: 1px solid var(--line);
}
.infoTable th,
.infoTable td {
  padding: 18px 4px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.95;
}
/* ★項目名はロゴブルー（2026-08-08・クライアント指示 0807タブ⑧「ブルーを足す案」）。
   8/8時点では濃紺に統一していたが、クライアント指示ドキュメントを優先する方針に
   なったため青へ変更した。PC・スマホで色を変えないこと（以前それでズレていた）。 */
.infoTable th {
  width: 190px;
  font-weight: 700;
  color: var(--blue);
}
.infoTable td {
  color: var(--ink-2);
}

/* ============================================================================
   26-B. 会社概要：アクセスマップ・経営理念・代表メッセージ（2026-08-07 追加）
   ============================================================================ */
.accessMap {
  margin-top: 8px;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.accessMap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.accessMap__addr {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--muted);
}

/* Mission / Vision / Value（2026-08-08 修正）
   ★以前は3列グリッドで、Mission・Visionが1〜2列目、Valueだけ全幅（`1 / -1`）
     という組みだった。3列目が空くうえ、内容量の違う3つが横並びになるため
     「並びがおかしい」状態になっていた。カードをやめ、**上から順に読ませる
     テキスト**へ変更した（坪谷さん指示）。見出しは本文より確実に大きくする。 */
.mvv {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}
.mvv__cell {
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line);
}
.mvv__label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--ff-en);
  /* ★節見出し「私たちについて」（.docH2＝21px）より大きくしないこと。
     大きくすると、節の中の項目のほうが節そのものより目立ち、階層が逆転する。
     本文（15.5px）とははっきり差を付ける。 */
  font-size: clamp(17px, 2vw, 19.5px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: var(--blue);
}
.mvv__cell p {
  font-size: 16.5px;
  line-height: 1.95;
  color: var(--ink-2);
}
.mvv__values {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mvv__values li {
  font-size: 16.5px;
  line-height: 1.95;
}
.mvv__values b {
  display: block;
  margin-bottom: 3px;
  /* ★Valueの見出し（.mvv__label）と同じ大きさにしないこと。
     狭い幅でラベルが縮むと差が消え、どちらが見出しか分からなくなる。 */
  font-size: clamp(16.5px, 1.7vw, 17.5px);
  color: var(--navy-800);
}
.mvv__values span {
  color: var(--ink-2);
}

/* 採用ページの募集職種カード。TOPの .plan と共有しているため、
   ここだけ本文を一段階上げる（0807タブ⑧・TOPは従来のまま） */
/* 2026-08-12：採用ページの募集職種は .plan から専用の .job へ作り替えたため、
   ここにあった .page-careers .plan* の上書き（本文を15.5pxへ）は不要になり削除した。
   文字サイズは .job 側で直接15px以上にしてある（0807タブ⑧のご指摘への対応）。
   body の page-careers クラスは、今後この採用ページだけを狙うときのために残している。 */

.message__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: 40px;
  margin-top: 8px;
}
.message__photo {
  position: sticky;
  top: 100px;
}
.ph--daihyo {
  aspect-ratio: 1 / 1;
}
.ph--daihyo::before {
  background-image: url("../img/daihyo.jpg");
}
.message__cap {
  margin-top: 14px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-800);
  text-align: center;
}
.message__text p + p {
  margin-top: 16px;
}
@media (max-width: 820px) {
  /* ★.mvv は1カラムの積み上げになったので、列数の打ち消しは不要になった */
  .message__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  /* ★1カラムに落ちたときの写真。220pxだと本文の幅に対して小さく見えるため、
     画面幅に追従させて大きく出す（2026-08-08 指示）。上限は本文幅より
     やや狭くして、写真だけが浮かないようにする。 */
  .message__photo {
    position: static;
    width: min(78%, 340px);
    max-width: none;
    margin: 0 auto;
  }
  .message__cap {
    font-size: 15px;
  }
}

.linkline {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
/* 濃紺セクション（.cta）の中で使うとき用。地の白文字と同系色にする */
.linkline--onInk {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.55);
}
.doc__date {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13.5px !important;
  color: var(--muted) !important;
}
/* 社内向けの注記。公開前に削除する前提なので、あえて派手にしてある */
.doc__notice {
  margin-bottom: 40px;
  padding: 16px 20px;
  border-radius: var(--r);
  background: #fff4cc;
  border: 1px solid #e8cd7d;
  font-size: 13.5px !important;
  line-height: 1.85;
  color: #7a5600 !important;
}
.cta--slim {
  padding-block: clamp(56px, 6vw, 84px);
}

/* ---------- 19. レスポンシブ ---------- */
@media (max-width: 1000px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }
  .hero__lede {
    max-width: none;
  }
  .feature,
  .feature:nth-child(even) .feature__text {
    grid-template-columns: minmax(0, 1fr);
    order: 0;
  }
  /* ============================================================
     工程フローを縦並びに組み替える（7列のままだと1マス40px台になる）。
     ★HTMLのクラスは `.step`。`.flow__step` というクラスは存在しない
       ので、そちらに書いても何も起きない（実際そうなっていた）。
     ============================================================ */
  /* ============================================================
     03「ほかと違うところ」の上段。
     PCは「左＝見出し＋リード文／右＝写真」の2カラムだが、狭い幅のままだと
     写真が右の細い列に押し込まれて極端に小さくなる。1カラムに落としたうえで、
     見出し → 写真 → リード文 の順に並べ替える（2026-08-08 坪谷さん指示）。
     ★HTMLは「テキストをまとめた div」と「写真」の2要素なので、そのままでは
       写真を見出しとリード文のあいだに割り込ませられない。内側の div に
       display:contents を当てて透過させ、見出し・リード文をグリッド項目に
       昇格させてから order で並べ替えている（HTMLの構造は変えない＝PCは現状のまま）。
     ============================================================ */
  .whyTop {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .whyTop > div:first-child {
    display: contents;
  }
  .whyTop .eyebrow {
    order: 1;
  }
  .whyTop .h2 {
    order: 2;
  }
  .whyTop__photo {
    order: 3;
    margin-top: 22px;
  }
  .whyTop .lede {
    order: 4;
  }

  .flow {
    padding: 30px 22px 26px;
  }
  /* 縦積みになると縦の区切り線が宙に浮くので、線を上へ回す */
  .flow__foot-txt {
    flex-basis: 100%;
    padding-left: 0;
    padding-top: 13px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .flow__track {
    grid-template-columns: minmax(0, 1fr);
  }
  /* 横一直線につないでいた帯を、縦の線に引き直す */
  .flow__track::before {
    left: 29px;
    right: auto;
    top: 30px;
    bottom: 30px;
    width: 1.5px;
    height: auto;
    background: linear-gradient(180deg, rgba(0, 82, 252, 0.16) 0%, rgba(0, 82, 252, 0.42) 50%, rgba(0, 82, 252, 0.16) 100%);
  }
  /* 横並びのときに工程のあいだへ置いていた点は、縦並びでは行の右端に
     取り残されるだけなので消す（線は上の縦線が担う） */
  .step:not(:last-child)::before {
    display: none;
  }
  .step {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    column-gap: 16px;
    padding: 0 0 26px;
    text-align: left;
    /* アイコンが全行にまたがるぶん、行が引き伸ばされて行間が空く。
       上詰めにして、余った高さは下にまとめる */
    align-content: start;
  }
  .step:last-child {
    padding-bottom: 0;
  }
  .step__node {
    grid-column: 1;
    /* ★`1 / -1` は使えない。行は暗黙グリッドなので `-1` が
       「明示グリッドの終端」＝1行目に潰れ、STEPラベルの行だけが
       アイコンの高さ（54px）に押し広げられて不自然な隙間になる。 */
    grid-row: 1 / span 4;
    align-self: start;
  }
  .step__n,
  .step h3,
  .step p,
  .step__key {
    grid-column: 2;
  }
  .step__n {
    margin-top: 4px;
  }
  .step h3 {
    font-size: 15.5px;
  }
  .step p {
    font-size: 13px;
  }
  .step__key {
    justify-self: start;
  }
  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faqLayout {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
  .faqLayout__head {
    position: static;
  }
  .faqLayout__head h2 br {
    display: none;
  }
  .secSplit {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
  .ph--issue {
    aspect-ratio: 16 / 9;
  }
  /* --- 数値バッジ（画像版）。PCは横並び、スマホ幅では縦並びにする --- */
  .statsImgs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1000px) {
  .plans {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .plan--main {
    order: -1; /* 主役のツールを先頭に。スマホでは真ん中が埋もれる */
  }
}

@media (max-width: 900px) {
  .cta__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
  /* 電話の受け口は、フォームより先に見せたほうが親切 */
  .ctaAside {
    order: -1;
  }
  .ctaAside__list {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    display: grid;
  }
}

@media (max-width: 820px) {
  .nav,
  .header__tel {
    display: none;
  }
  .navToggle {
    display: flex;
  }
  .header__cta .btn {
    display: none;
  }
  .reason {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
  .reason__no {
    font-size: 34px;
  }
  .browser__body {
    min-height: 0;
  }
  .appSide {
    display: none;
  }
  .appCards {
    grid-template-columns: minmax(0, 1fr);
  }
  .lpPrev {
    grid-template-columns: minmax(0, 1fr);
  }
  .lpPrev__blocks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /* 浮遊カードは製品画面の外へ出る位置に置いてある。1カラムになると
     画面外へはみ出して切れるので、内側へ寄せた2枚だけ残す。 */
  .chip--cv,
  .chip--check {
    display: none;
  }
  .chip--media {
    top: -10px;
    right: 0;
  }
  /* 1カラムでは製品画面の外側に余白がない。重ねると中身を隠してしまうので、
     画面の外へ半分だけ出せる右上の1枚だけ残す。 */
  .cap--lp,
  .cap--growth,
  .cap--opt {
    display: none;
  }
  .cap--cr {
    top: -16px;
    right: -6px;
  }
  .rig__ai {
    top: -22px;
    left: 22px;
    transform: none;
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  .infoTable th {
    width: 150px;
  }
}

/* ============================================================================
   スマホ（〜560px）
   ここでの狙いは「縦の長さを詰める」こと。
   ページを縮小表示（initial-scale を 1 未満にする）すると文字が読めなくなり、
   OS の文字サイズ設定も効かなくなるため、縮尺ではなく余白・行間・段組みで
   詰める。1画面に入る情報量を増やすほうが、結果的に短く感じられる。
   ============================================================================ */
@media (max-width: 560px) {
  :root {
    --gutter: 18px;
  }
  body {
    font-size: 15px;
    line-height: 1.85; /* 1.95 のままだと本文が間延びして縦に伸びる */
  }

  /* --- セクションの上下余白。ここが縦長の最大の原因 --- */
  .section {
    padding-block: 54px;
  }
  .hero {
    padding-top: 34px;
    padding-bottom: 34px;
  }
  .h2 {
    line-height: 1.45;
  }
  .lede {
    margin-top: 14px;
  }

  /* 操作画面の中の細かい行は、横幅が足りないと語の途中で折り返して読みにくい。
     サイズ表記と訴求は縦に分け、文字数は折り返さない */
  .banner__meta {
    flex-direction: column;
    gap: 2px;
  }
  .copyRow u {
    white-space: nowrap;
  }

  /* 01課題の写真。横幅が狭いと文字がノートPCへ重なって読みづらくなるので、
     少し縦長にして写真を右へ寄せ、文字の下だけ白を強めに敷く */
  .issues__photo {
    aspect-ratio: 1.62 / 1;
    background-position: 74% 56%;
  }
  .issues__photo::after {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.92) 46%,
      rgba(255, 255, 255, 0.6) 72%,
      rgba(255, 255, 255, 0.16) 100%
    );
  }

  /* --- ヘッダーを詰める。mnav の開始位置も合わせる ---
     2026-08-07 クライアント指示：スマホのメニューバーが小さく見づらいとの
     指摘を受け、高さ・ロゴ・ハンバーガーアイコンをやや大きくした
     （62px→68pxなど。詰めすぎない範囲で視認性を優先） */
  .header__inner {
    height: 68px;
    gap: 12px;
  }
  .logo img {
    width: 32px;
  }
  .logo__text {
    font-size: 20px;
  }
  .navToggle {
    width: 48px;
    height: 48px;
  }
  .navToggle svg {
    width: 25px;
    height: 25px;
  }
  /* ★ .mnav の基本定義（display/inset/文字サイズ）はこのメディアクエリより
     後ろ（本体側）にあり、同じ詳細度だと後勝ちでここが打ち消される。
     `.header .mnav` まで詳細度を上げて確実に効かせる。 */
  .header .mnav {
    inset: 68px 0 0;
  }
  .header .mnav a {
    font-size: 17.5px;
    padding: 18px 0;
  }

  /* --- FV --- */
  .hero h1 {
    margin-top: 18px;
  }
  .hero__lead {
    margin-top: 14px;
  }
  .hero__points {
    margin-top: 18px;
    gap: 7px;
  }
  .hero__points li {
    font-size: 13.5px;
  }
  .hero__actions .btn,
  .hero__actions .ctaBig,
  .hero__actions .ctaSub {
    width: 100%;
    justify-content: center;
  }
  .rig {
    padding-bottom: 18px;
  }

  /* --- 実績帯。4列のままだと1マス80px程度になって読めない --- */
  .proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .proof__cell {
    padding: 14px 15px;
    gap: 9px;
  }
  .proof__cell span {
    font-size: 12.5px;
  }

  /* --- カード類の内側余白。4枚×30pxで120px縦に効いていた --- */
  .issues {
    margin-top: 28px;
    gap: 12px;
  }
  .issue {
    padding: 22px 20px 20px;
  }
  .reasons {
    margin-top: 28px;
    gap: 12px;
  }
  .reason {
    padding: 22px 20px 20px;
  }
  .safety {
    margin-top: 28px;
    gap: 12px;
  }
  .safetyCard {
    padding: 22px 20px;
  }
  .turn {
    margin-top: 22px;
    padding: 18px 20px;
  }

  /* --- ご利用の流れ。5列のまま放置されていて1マス70px弱になっていた --- */
  .steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-top: 28px;
  }
  .step-card {
    padding: 18px 20px;
  }
  .step-card:not(:last-child)::after {
    display: none; /* 横並び前提の矢印。縦積みでは位置が合わない */
  }

  /* --- 機能。4本ぶんの区切りが最も縦を食う --- */
  .features {
    margin-top: 30px;
    gap: 44px;
  }
  .plans {
    margin-top: 26px;
  }
  .plan {
    padding: 24px 20px 26px;
  }
  .plan__points {
    margin-top: 16px;
    padding-top: 14px;
  }

  /* --- 比較表。横スクロールなので、スクロールできることを明示する --- */
  .compare {
    margin-top: 28px;
  }
  .compare table {
    min-width: 620px;
  }
  .compare th,
  .compare td {
    padding: 14px 14px;
  }
  /* 右へスクロールしても、いま何の項目を見ているか分かるように
     行見出しだけ左に貼り付ける。地の色を敷かないと裏の文字が透ける。 */
  .compare tbody th {
    position: sticky;
    left: 0;
    z-index: 1;
    width: 116px;
    background: var(--canvas);
    font-size: 13px;
  }
  .compare thead th:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background: var(--canvas);
  }

  .rep__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .banners {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }
  /* 生成例は文字が小さいので、スマホでは1枚を大きく見せて横に流す */
  .samples {
    margin-top: 34px;
    padding-top: 28px;
  }
  .samples__grid {
    grid-auto-columns: 74%;
    gap: 12px;
    margin-top: 20px;
    scroll-snap-type: x mandatory;
    /* 見切れを画面端まで出して、横に続いていることを分からせる */
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
  }

  /* --- 問い合わせフォーム --- */
  .cform__row {
    grid-template-columns: minmax(0, 1fr);
  }
  .formCard {
    padding: 22px 18px 26px;
  }
  .ctaAside__box {
    padding: 18px 20px;
  }

  /* --- 下層ページ --- */
  .subHero {
    padding-block: 26px 24px;
  }
  .docH2 {
    margin-top: 36px;
  }
  /* 定義表は 150px の見出し列を確保できないので、上下に積む */
  .infoTable th,
  .infoTable td {
    display: block;
    width: auto;
    padding: 0;
    border-bottom: 0;
  }
  /* ★色はPCと同じロゴブルー（.infoTable th で一括指定）。ここで上書きしないこと。 */
  .infoTable th {
    padding-top: 16px;
    font-size: 14px;
  }
  .infoTable td {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
  }

  /* --- フッター。1列だと極端に縦へ伸びるので、リンク群は2列に --- */
  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }
  .footer__top > div:first-child {
    grid-column: 1 / -1;
  }
}

/* ============================================================================
   27. スマホ用の固定CTA
   PCではヘッダーにCTAが常駐しているので出さない。
   ============================================================================ */
.stickyCta {
  display: none;
}
@media (max-width: 820px) {
  .stickyCta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: flex;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: saturate(1.6) blur(12px);
    -webkit-backdrop-filter: saturate(1.6) blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 22px rgba(10, 22, 51, 0.1);
    transform: translateY(110%);
    visibility: hidden;
    transition: transform 0.28s ease, visibility 0.28s;
  }
  .stickyCta.is-on {
    transform: translateY(0);
    visibility: visible;
  }
  .stickyCta__tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex: 0 0 38%;
    padding: 14px 10px;
    border: 1px solid var(--line-strong);
    border-radius: var(--r);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy-800);
  }
  .stickyCta__tel svg {
    color: var(--blue);
    flex: none;
  }
  .stickyCta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 14px 10px;
    border-radius: var(--r);
    background: var(--blue);
    color: #fff;
    font-size: 15.5px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 82, 252, 0.3);
  }
  /* バーがフッターの最終行に重ならないよう、下に逃げ場を作る */
  .footer__bottom {
    padding-bottom: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .stickyCta {
    transition: none;
  }
}

/* 比較表がスクロールできることの合図。触れる前に気づけるようにする */
@media (max-width: 780px) {
  .compare {
    position: relative;
  }
  .compare::after {
    content: "→ 横にスクロールできます";
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: var(--muted);
  }
}

/* モバイル用の開閉メニュー */
.mnav {
  display: none;
  position: fixed;
  inset: 74px 0 0;
  z-index: 45;
  padding: 24px var(--gutter) 40px;
  background: #fff;
  border-top: 1px solid var(--line);
  overflow-y: auto;
}
.mnav.is-open {
  display: block;
}
.mnav a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-800);
}
/* ★`.mnav a`（display:block・左寄せ・下線・上下パディング16px・文字色は濃紺）が
   `.btn` の指定に勝ってしまい、ボタンの文字が左端に寄る・下線が残る・
   青地に濃紺の文字で読みにくい、という3点が同時に起きていた。
   メニュー内のボタンだけ、それらを明示的に打ち消す（2026-08-08 修正）。
   ★文字色は `.btn--primary` に書いてあっても効かない（`.mnav a` のほうが
     詳細度で勝つ）ので、ここで指定する必要がある。 */
.mnav .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 26px;
  padding: 15px 20px;
  border-bottom: 0;
  text-align: center;
}
.mnav .btn--primary {
  color: #fff;
}

/* ---------- 20. 締めCTAのボタン（FVと同じ構造・濃紺地の上なので白に反転） ---------- */
.cta__actions {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
/* 2026-08-17 クライアント指示「CTAボタン：一番最後のボタンが地味なので、
   色と大きさ変更」（0817タブ）。白ベタは濃紺背景に馴染んで目立たなかったため、
   差し色（--amber）へ変更し、ひと回り大きくした。 */
.ctaBig--onInk {
  padding: 18px 28px 18px 32px;
  background: linear-gradient(135deg, #ffc65c 0%, var(--amber) 100%);
  color: var(--navy-900);
  box-shadow: 0 16px 40px rgba(245, 166, 35, 0.42);
}
.ctaBig--onInk:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 50px rgba(245, 166, 35, 0.5);
}
.ctaBig--onInk .ctaBig__txt small {
  opacity: 0.72;
}
.ctaBig--onInk .ctaBig__txt b {
  font-size: 19px;
}
.ctaBig--onInk .ctaBig__arrow {
  width: 36px;
  height: 36px;
  background: rgba(10, 22, 51, 0.14);
  color: var(--navy-900);
}
/* 「AI広告運用ツール」を語中で折らない */
.hero__badge b {
  white-space: nowrap;
}

/* ============================================================
   採用ページの募集職種（2026-08-12・クライアント0808指示⑤で3→6職種へ）
   .plan（3カラムの短いカード）では6職種ぶんの「仕事内容・歓迎する経験・
   魅力」が入りきらないため、専用の2カラムカードを用意した。
   ★本文は15px以上を保つこと。0807指示で「本文が細く小さい」と
     指摘を受けている箇所なので、詰めたくなっても下げない。
   ============================================================ */
.jobsGroup {
  margin-top: clamp(34px, 4vw, 50px);
}
.jobsGroup__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy-800);
}
.jobsGroup__title::before {
  content: "";
  flex: none;
  width: 4px;
  height: 20px;
  border-radius: 2px;
  background: var(--blue);
}
.jobs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  margin-top: 20px;
}
.job {
  padding: 28px 26px 30px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh);
}
.job__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.job__no {
  font-family: var(--ff-en);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--blue);
}
.job__tag {
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--blue-050);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue);
}
.job h3 {
  margin-top: 10px;
  font-size: clamp(19px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: var(--navy-800);
}
.job__lead {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-2);
}
.job__block {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.job__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy-700);
}
.job__list {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}
.job__list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-2);
}
.job__list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.85em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.55;
}
.job__charm {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--r);
  background: var(--blue-050);
  font-size: 15px;
  line-height: 1.9;
  color: var(--navy-700);
}
.job__charm b {
  color: var(--blue);
}

/* 大切にしていること（3項目） */
.values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.value {
  padding: 22px 22px 24px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
}
.value b {
  display: block;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy-800);
}
.value span {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-2);
}

/* 選考フロー */
.hireFlow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-top: 18px;
}
.hireFlow li {
  padding: 11px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-700);
}
.hireFlow__arrow {
  flex: none;
  color: var(--blue);
}

@media (max-width: 900px) {
  .jobs {
    grid-template-columns: minmax(0, 1fr);
  }
  .values {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* 問い合わせフォームのhoneypot（botだけが埋める隠し欄）。
   display:none はスクリーンリーダーによっては読み上げられてしまうことがあるため、
   視覚的に画面外へ飛ばす方式にする（2026-08-21・design.md 2-2参照）。 */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
