:root {
  --form-orange: #f0502f;
  --form-orange-dark: #d94122;
  --form-ink: #1a1a1a;
  --form-muted: #69645f;
  --form-bg: #fff8f4;
  --form-line: #eadfd9;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

.form-anchor-btn {
  background: linear-gradient(105deg, var(--form-orange-dark), #ff6844) !important;
  border-color: #fff !important;
  box-shadow: 0 5px 0 #be351b, 0 10px 20px rgba(205, 56, 27, .24) !important;
  color: #fff !important;
  text-decoration: none;
}

.form-anchor-btn:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 #be351b, 0 6px 12px rgba(205, 56, 27, .22) !important;
}

.form-arrow {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  font-size: 20px;
  line-height: 1;
}

.entry-section {
  padding: 38px 18px 60px;
  background:
    radial-gradient(circle at 50% 0, rgba(240,80,47,.10), transparent 36%),
    var(--form-bg);
}

.entry-shell {
  width: min(100%, 680px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(240,80,47,.22);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(70, 44, 32, .12);
}

.entry-head {
  padding: 20px 20px 18px;
  color: #fff;
  text-align: center;
  background: linear-gradient(110deg, #df4326, #ff6844);
}

.entry-head-kicker {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.entry-title {
  margin: 0;
  font-size: clamp(22px, 5.6vw, 30px);
  line-height: 1.35;
  font-weight: 900;
}

.entry-head-note {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 700;
  opacity: .92;
}

.entry-progress-wrap {
  padding: 18px 20px 0;
}

.entry-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  color: var(--form-muted);
  font-size: 12px;
  font-weight: 700;
}

.entry-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #eee9e6;
}

.entry-progress-bar {
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--form-orange), #ff805f);
  transition: width .25s ease;
}

.entry-form {
  padding: 22px 20px 26px;
}

.form-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step[hidden] {
  display: none !important;
}

.form-step-title {
  margin: 0 0 18px;
  color: var(--form-ink);
  text-align: center;
  font-size: clamp(19px, 5vw, 24px);
  line-height: 1.45;
  font-weight: 900;
}

.form-step-help {
  margin: -8px 0 18px;
  color: var(--form-muted);
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

.choice-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-label {
  position: relative;
  display: block;
  cursor: pointer;
}

.choice-label input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.choice-card {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 2px solid var(--form-line);
  border-radius: 12px;
  color: #393532;
  background: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.choice-label input:checked + .choice-card,
.choice-label:focus-within .choice-card {
  border-color: var(--form-orange);
  color: var(--form-orange-dark);
  background: #fff3ed;
  transform: translateY(-1px);
}

.field-group {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field-label {
  font-size: 13px;
  font-weight: 800;
  color: #3f3a36;
}

.required {
  display: inline-block;
  margin-left: 5px;
  padding: 2px 6px;
  border-radius: 4px;
  color: #fff;
  background: var(--form-orange);
  font-size: 10px;
  vertical-align: 1px;
}

.entry-form input[type="text"],
.entry-form input[type="tel"],
.entry-form input[type="email"],
.entry-form select {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  border: 2px solid var(--form-line);
  border-radius: 10px;
  outline: none;
  color: var(--form-ink);
  background: #fff;
  font: inherit;
  font-size: 16px;
  box-sizing: border-box;
}

.entry-form input:focus,
.entry-form select:focus {
  border-color: var(--form-orange);
  box-shadow: 0 0 0 4px rgba(240,80,47,.10);
}

.quick-area {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.quick-area button {
  padding: 8px 12px;
  border: 1px solid #e5d8d1;
  border-radius: 999px;
  color: #5e5752;
  background: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.form-actions {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  margin-top: 22px;
}

.form-actions--first {
  grid-template-columns: 1fr;
}

.form-back,
.form-next,
.form-submit {
  min-height: 54px;
  border-radius: 12px;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.form-back {
  border: 1px solid #ded6d1;
  color: #655e59;
  background: #fff;
}

.form-next,
.form-submit {
  border: 0;
  color: #fff;
  background: linear-gradient(105deg, var(--form-orange-dark), #ff6844);
  box-shadow: 0 4px 0 #bd351d;
}

.form-next:disabled,
.form-submit:disabled {
  opacity: .45;
  box-shadow: none;
  cursor: not-allowed;
}

.privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 4px;
  color: #625b56;
  font-size: 12px;
  line-height: 1.65;
}

.privacy-row input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--form-orange);
}

.privacy-placeholder {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-error {
  min-height: 1.5em;
  margin: 10px 0 0;
  color: #c1351d;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.form-security-note {
  margin: 14px 0 0;
  color: #8a817b;
  text-align: center;
  font-size: 11px;
}

@media (max-width: 1023px) {
  .fv-sp-text-area {
    padding: 12px 0 16px !important;
  }

  .fv-sp-inner {
    padding: 0 14px !important;
    margin-bottom: 6px !important;
  }

  .fv-sp-tagline {
    margin: 0 0 10px !important;
    padding: 5px 14px 6px !important;
    font-size: 13px !important;
    line-height: 1.28 !important;
  }

  .fv-sp-title {
    margin-bottom: 8px !important;
    font-size: clamp(32px, 9.3vw, 38px) !important;
    line-height: 1.18 !important;
  }

  .fv-sp-title .fv-title-band {
    padding: .08em .14em .11em !important;
    box-shadow: 0 8px 20px rgba(240,80,47,.22) !important;
  }

  .fv-title-service {
    line-height: 1.12;
  }

  .fv-note {
    margin: 0 0 12px !important;
    font-size: 13px;
    font-weight: 800;
  }

  .fv-sp-stats {
    margin: 0 auto 12px !important;
  }

  .fv-sp-stat .n {
    font-size: clamp(25px, 7.8vw, 32px) !important;
  }

  .fv-sp-cta {
    gap: 5px !important;
    padding: 0 16px !important;
  }

  .fv-sp-cta .fv-free-banner {
    margin-bottom: 1px;
  }

  .fv-sp-photo-area {
    gap: 6px !important;
    padding: 0 8px 8px !important;
    background: #f8f8f6;
  }

  .fv-sp-photo--sub {
    width: calc(50% - 3px) !important;
    height: 37vw !important;
    border: 2px solid #fff !important;
    border-radius: 11px !important;
  }

  .entry-section {
    padding: 20px 12px 48px;
  }

  .entry-shell {
    border-radius: 18px;
  }
}

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

  .form-actions {
    grid-template-columns: 78px 1fr;
  }
}

/* 2026-07-29: FVとフォームの視線設計を整理
   ブランドのオレンジ系で統一し、彩度・面積・濃淡で強弱をつける。 */
:root {
  --form-action: #dc684c;
  --form-action-dark: #b94b34;
  --form-accent-soft: #e17a61;
  --form-bg: #faf8f5;
  --form-line: #dedbd6;
}

.form-anchor-btn {
  background: linear-gradient(180deg, #e7795f 0%, var(--form-action) 100%) !important;
  border-color: rgba(255,255,255,.9) !important;
  box-shadow: 0 3px 0 var(--form-action-dark), 0 8px 18px rgba(185,75,52,.18) !important;
}

.form-anchor-btn:active {
  box-shadow: 0 1px 0 var(--form-action-dark), 0 4px 10px rgba(185,75,52,.15) !important;
}

.entry-section {
  padding: 32px 18px 56px;
  background:
    radial-gradient(circle at 50% 0, rgba(217,106,75,.055), transparent 34%),
    var(--form-bg);
}

.entry-shell {
  width: min(100%, 620px);
  border-color: #e2ddd8;
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(55,48,43,.09);
}

.entry-head {
  padding: 17px 20px 15px;
  color: var(--form-ink);
  background: #fff;
  border-top: 5px solid var(--form-accent-soft);
  border-bottom: 1px solid #ece7e2;
}

.entry-head-kicker {
  margin-bottom: 3px;
  color: var(--form-action);
  font-size: 11px;
}

.entry-title {
  font-size: clamp(21px, 5vw, 27px);
  line-height: 1.3;
}

.entry-head-note {
  margin-top: 4px;
  color: var(--form-muted);
  font-size: 11px;
}

.entry-progress-wrap {
  padding: 15px 18px 0;
}

.entry-progress {
  height: 6px;
}

.entry-progress-bar {
  background: linear-gradient(90deg, var(--form-action), #eda08d);
}

.entry-form {
  padding: 18px 18px 23px;
}

.form-step-title {
  margin-bottom: 15px;
  font-size: clamp(18px, 4.6vw, 22px);
}

.choice-grid {
  gap: 8px;
}

.choice-card {
  min-height: 52px;
  padding: 10px 12px;
  border-width: 1px;
  border-radius: 10px;
  font-size: 14px;
}

.choice-label input:checked + .choice-card,
.choice-label:focus-within .choice-card {
  border-color: var(--form-action);
  color: var(--form-action-dark);
  background: #fff3ef;
}

.required {
  background: var(--form-accent-soft);
}

.entry-form input:focus,
.entry-form select:focus {
  border-color: var(--form-action);
  box-shadow: 0 0 0 3px rgba(220,104,76,.10);
}

.form-actions {
  margin-top: 18px;
}

.form-next,
.form-submit {
  background: linear-gradient(180deg, #e7795f 0%, var(--form-action) 100%);
  box-shadow: 0 3px 0 var(--form-action-dark);
}

.privacy-row input {
  accent-color: var(--form-action);
}

@media (max-width: 1023px) {
  .entry-section {
    padding: 16px 10px 42px;
  }

  .entry-shell {
    width: min(100%, 560px);
    border-radius: 15px;
  }

  .entry-head {
    padding: 14px 16px 13px;
    border-top-width: 4px;
  }

  .entry-progress-wrap {
    padding: 13px 15px 0;
  }

  .entry-form {
    padding: 16px 15px 20px;
  }

  .choice-card {
    min-height: 50px;
  }
}

/* ══════════════════════════════════════════════════
   2026-07-29b  FV／登録フォームの視線設計・配色整理
   役割：白＝土台／ブランドオレンジ＝帯・主要ボタン・現在地
        淡いピーチ＝補助背景・未選択／落ち着いたオレンジ＝数字・完了
        濃いグレー＝本文・ラベル／薄いグレー＝罫線
   ※新しい色相（緑・青緑・青）は追加しない
══════════════════════════════════════════════════ */
:root {
  --cc-orange: #F0502F;        /* ブランドオレンジ：帯・主要ボタン・現在地 */
  --cc-orange-deep: #C8421F;   /* 押下・影 */
  --cc-orange-calm: #D2603F;   /* 落ち着いたオレンジ：数字・完了ステップ */
  --cc-peach: #FDF0EA;         /* 淡いピーチ：未選択・補助背景 */
  --cc-peach-on: #FFF3EF;      /* 選択中カード背景 */
  --cc-ink: #1A1A1A;           /* 見出し */
  --cc-ink-soft: #4A4540;      /* 本文・ラベル */
  --cc-line: #E3E0DB;          /* 罫線・未選択枠 */
}

/* ── FV：余白を締めて情報のまとまりを良くする ── */
@media (max-width: 1023px) {
  .fv-sp-text-area { padding: 10px 0 12px !important; }
  .fv-sp-inner { margin-bottom: 4px !important; }

  /* タグライン：詰まりすぎないよう行間と上下padding を確保 */
  .fv-sp-tagline {
    margin: 0 0 9px !important;
    padding: 6px 14px 7px !important;
    line-height: 1.34 !important;
  }

  /* メインコピーのオレンジ帯：上下の余白を足して窮屈さを解消 */
  .fv-sp-title { margin-bottom: 7px !important; }
  .fv-sp-title .fv-title-band {
    padding: .14em .18em .17em !important;
    box-shadow: 0 6px 16px rgba(240,80,47,.18) !important;
  }

  .fv-note {
    margin: 0 0 10px !important;
    color: var(--cc-ink-soft);
    font-weight: 700;
  }

  /* 実績：横3列を維持。数字＝落ち着いたオレンジ／ラベル＝濃いグレー */
  .fv-sp-stats { margin: 0 auto 10px !important; }
  .fv-sp-photo-area { padding: 0 8px 6px !important; }
}

.fv-sp-stat .n { color: var(--cc-orange-calm) !important; }
.fv-sp-stat .l { color: var(--cc-ink-soft) !important; font-weight: 700; }
.fv-sp-stat + .fv-sp-stat { border-left: 1px solid var(--cc-line) !important; }

/* ── フォーム：コンパクトに、白を土台に ── */
.entry-section {
  padding: 22px 16px 48px;
  background: var(--cc-peach);
  background-image: none;
}

.entry-shell {
  width: min(100%, 600px);
  border: 1px solid var(--cc-line);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(55,48,43,.07);
}

/* 見出し：白背景＋細いオレンジ上線。高さは必要最小限 */
.entry-head {
  padding: 14px 18px 12px;
  color: var(--cc-ink);
  background: #fff;
  border-top: 3px solid var(--cc-orange);
  border-bottom: 1px solid var(--cc-line);
}
.entry-head-kicker {
  margin-bottom: 2px;
  color: var(--cc-orange-calm);
  font-size: 10.5px;
  letter-spacing: .06em;
}
.entry-title {
  color: var(--cc-ink);
  font-size: clamp(19px, 4.6vw, 24px);
  line-height: 1.28;
}
.entry-head-note {
  margin-top: 3px;
  color: #6E6862;
  font-size: 10.5px;
  font-weight: 600;
}

/* ── 5ステップ表示（ピル型） ── */
.entry-progress-wrap { padding: 12px 14px 0; }
/* 旧進捗バーは非表示（DOMには残す＝form.js の参照を維持） */
.entry-progress-meta,
.entry-progress { display: none !important; }

.entry-steps {
  display: flex;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.entry-step {
  flex: 1 1 0;
  min-width: 0;
  padding: 7px 2px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--cc-peach);
  color: #6B635D;
  text-align: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease;
}
.entry-step.is-done {
  background: #F8CDBE;
  color: #8F3218;
}
.entry-step.is-current {
  background: var(--cc-orange);
  border-color: var(--cc-orange);
  color: #fff;
}

/* ── 入力エリア ── */
.entry-form { padding: 16px 16px 20px; }
.form-step-title { color: var(--cc-ink); }

/* 選択肢：タップ領域44px以上を確保しつつ高さを抑える */
.choice-card {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--cc-line);
  border-radius: 10px;
  color: var(--cc-ink-soft);
  background: #fff;
  font-size: 14px;
}
.choice-label input:checked + .choice-card,
.choice-label:focus-within .choice-card {
  border-color: var(--cc-orange);
  color: #A83B1C;
  background: var(--cc-peach-on);
  transform: none;
}

.field-label { color: var(--cc-ink-soft); }
.required { background: var(--cc-orange-calm); }

.entry-form input[type="text"],
.entry-form input[type="tel"],
.entry-form input[type="email"],
.entry-form select {
  min-height: 48px;
  border: 1px solid var(--cc-line);
}
.entry-form input:focus,
.entry-form select:focus {
  border-color: var(--cc-orange);
  box-shadow: 0 0 0 3px rgba(240,80,47,.12);
}

/* ── ボタン：ブランドオレンジ・白文字・影は控えめ ── */
.form-back,
.form-next,
.form-submit {
  min-height: 50px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
}
.form-next,
.form-submit {
  border: 0;
  color: #fff;
  background: var(--cc-orange);
  box-shadow: 0 2px 0 var(--cc-orange-deep);
}
.form-next:active,
.form-submit:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 var(--cc-orange-deep);
}
.form-back {
  border: 1px solid var(--cc-line);
  color: var(--cc-ink-soft);
  background: #fff;
}
.form-actions { margin-top: 16px; }

.privacy-row { color: var(--cc-ink-soft); }
.privacy-row input { accent-color: var(--cc-orange); }

/* ヘッダー／本文のフォーム導線ボタン：影を弱める */
.form-anchor-btn {
  background: var(--cc-orange) !important;
  border-color: rgba(255,255,255,.9) !important;
  box-shadow: 0 2px 0 var(--cc-orange-deep), 0 4px 10px rgba(200,66,31,.14) !important;
}
.form-anchor-btn:active {
  box-shadow: 0 1px 0 var(--cc-orange-deep) !important;
}

/* ── SP：左右余白 12〜16px、1ステップが画面内に収まる高さ ── */
@media (max-width: 1023px) {
  .entry-section { padding: 14px 12px 40px; }
  .entry-shell { width: 100%; border-radius: 13px; }
  .entry-head { padding: 12px 14px 11px; }
  .entry-progress-wrap { padding: 11px 12px 0; }
  .entry-steps { gap: 4px; }
  .entry-step { padding: 6px 1px; font-size: 10px; }
  .entry-form { padding: 14px 12px 18px; }
  .choice-card { min-height: 46px; }
}

@media (max-width: 360px) {
  .entry-step { font-size: 9px; padding: 6px 0; }
}

/* 実績「3,000件+」の折り返しを防ぎ、3列の高さを揃える */
.fv-sp-stat { justify-content: flex-start; }
.fv-sp-stat .n {
  white-space: nowrap;
  font-size: clamp(21px, 6.4vw, 28px) !important;
}
.fv-sp-stat .n i { font-size: .40em; }
.fv-sp-stat .l { white-space: nowrap; }

/* ══════════════════════════════════════════════════
   FVタイトル：重要語だけを文字幅ブロックで強調
   （全体を1本の帯で囲む旧デザインを廃止）
   強調＝正直さ／日本一／転職エージェント の3か所のみ
   接続部（で・を目指す）は背景なし・濃いグレー
══════════════════════════════════════════════════ */

/* 単語＋助詞をひとまとまりにして、変な位置で改行させない */
.fv-unit { white-space: nowrap; }

/* 強調ブロック：背景幅は文字幅ぴったり（画面幅には伸ばさない） */
.fv-mk {
  display: inline-block;
  padding: .05em .16em .09em;
  border-radius: 3px;
  background: var(--cc-orange);
  color: #fff;
  -webkit-text-fill-color: #fff;
  line-height: 1.16;
  box-shadow: none;
}
.fv-mk--accent { font-size: 1.06em; letter-spacing: -.05em; }
.fv-mk--service {
  font-size: 1.04em;
  letter-spacing: -.055em;
  white-space: nowrap;
}

/* 接続部：背景なし・濃いグレー */
.fv-sp-title .fv-title-p,
.fv-pc-title .fv-title-p {
  color: #1A1A1A;
  -webkit-text-fill-color: #1A1A1A;
  font-size: .62em;
  font-weight: 700;
  margin: 0 .06em;
}

/* 各帯の間に適度な縦余白（行間で確保） */
.fv-sp-title { line-height: 1.72 !important; }
.fv-pc-title { line-height: 1.66; }

/* アイキャッチ：1行・白背景＋オレンジ枠・オレンジ文字の角丸バッジ */
.fv-sp-tagline,
.fv-pc-tagline {
  white-space: nowrap;
  border-width: 1.5px;
  border-radius: 8px;
  box-shadow: none;
}
@media (max-width: 1023px) {
  .fv-sp-tagline {
    padding: 5px 13px 6px !important;
    font-size: clamp(12.5px, 3.6vw, 14px) !important;
    letter-spacing: .03em;
  }
  /* 帯が2行に渡るため、上下の詰まりを解消 */
  .fv-sp-title { margin-bottom: 10px !important; }
}

/* 狭幅端末（375px / 360px）で1行目が折り返さないよう微調整 */
@media (max-width: 380px) {
  .fv-sp-title { font-size: clamp(29px, 8.6vw, 34px) !important; }
}

/* ============================================================
   FV 数字実績の拡大（2026-07-29c）
   サイズと余白のみで強調。新色・新装飾は追加なし。
   ============================================================ */
@media (max-width: 1023px) {
  /* 実績エリア：上下余白を少し広げつつ、写真との間は空けすぎない */
  .fv-sp-stats {
    max-width: 100% !important;
    padding: 0 6px !important;
    margin: 10px auto 18px !important;
    align-items: stretch !important;
  }
  .fv-sp-stat {
    flex: 1 1 0 !important;      /* 3列の横幅を均等に */
    min-width: 0;
    padding: 0 3px !important;
    justify-content: flex-start !important;
  }
  /* 3項目とも同一font-sizeにしてベースラインを揃える */
  .fv-sp-stat .n {
    font-size: clamp(33px, 9.4vw, 42px) !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    letter-spacing: -.025em !important;
    white-space: nowrap !important;
  }
  .fv-sp-stat .n i {
    font-size: .42em !important;
    margin-left: 1px;
  }
  /* 「3,000件+」だけ字間と単位を詰めて改行を防止（文字サイズは共通） */
  .fv-sp-stat:nth-child(3) .n { letter-spacing: -.05em !important; }
  .fv-sp-stat:nth-child(3) .n i { font-size: .34em !important; letter-spacing: 0; }

  /* ラベル：数字ほど拡大せず 13px、数字との間は7px */
  .fv-sp-stat .l {
    margin-top: 7px !important;
    font-size: 13px !important;
    white-space: nowrap;
  }
}

/* PC / タブレット：同じ比率で約10〜15％拡大 */
@media (min-width: 768px) {
  .stat-num        { min-height: 73px !important; font-size: 62px !important; }
  .stat-num--wide  { font-size: 55px !important; }
  .stat-num .u     { font-size: 19px !important; }
}


/* ============================================================
   FVメインタイトル：フォントファミリー（明朝系）は維持し、
   サイズ差とウェイトのみで視認性を調整（2026-07-29d）
   ============================================================ */
/* 強調語（帯付き）：明朝のまま、背景内で細く見えないよう一段上げる */
.fv-sp-title .fv-mk,
.fv-pc-title .fv-mk {
  font-weight: 800;
  -webkit-font-smoothing: antialiased;
  padding: .07em .18em .11em;
}
/* 接続語：背景なし・約24%小さく・weight 600 */
.fv-sp-title .fv-title-p,
.fv-pc-title .fv-title-p {
  font-size: .80em;
  font-weight: 600;
  margin: 0 .05em;
}
/* 行間・帯同士の間隔 */
.fv-sp-title { line-height: 1.66 !important; }
.fv-pc-title { line-height: 1.62; }

/* 2行構成に戻す：［正直さ］で［日本一］を目指す ／［転職エージェント］ */
@media (max-width: 1023px) {
  .fv-sp-title { font-size: clamp(28px, 8.3vw, 36px) !important; }
  .fv-sp-title .fv-title-p { letter-spacing: -.04em; margin: 0 .03em; }
  .fv-sp-title .fv-mk { padding: .07em .15em .11em; }
}

/* ============================================================
   FV数字実績：色とコントラストのみで視認性を改善（2026-07-29e）
   装飾（月桂樹・メダル・王冠・影・グラデーション）は一切追加しない
   ============================================================ */
@media (max-width: 1023px) {
  /* 数字：LP04本来のブランドオレンジ（--gold = #F0502F） */
  .fv-sp-stat .n,
  .fv-sp-stat .n i {
    color: var(--gold, #F0502F) !important;
    -webkit-text-fill-color: var(--gold, #F0502F) !important;
    opacity: 1 !important;
    background: none !important;
    background-image: none !important;
    text-shadow: none !important;
    filter: none !important;
    font-weight: 700 !important;
  }
  /* ラベル：濃いグレーでコントラストを上げる */
  .fv-sp-stat .l {
    color: #35312F !important;
    -webkit-text-fill-color: #35312F !important;
    font-weight: 700 !important;
    opacity: 1 !important;
  }
  /* 区切り線：数字より目立たせない薄いグレーを維持 */
  .fv-sp-stat + .fv-sp-stat {
    border-left: 1px solid #E3E0DB !important;
  }
}

/* 約束セクション導入文：1行目を小さめの導入、2〜3行目をメインタイトルに（2026-07-29f） */
.prom-header .prom-bridge {
  font-size: clamp(13px, 3.4vw, 15px) !important;
  color: #6B635D !important;
  font-weight: 600 !important;
  margin-bottom: 10px !important;
}
.prom-title { text-wrap: balance; }

/* ============================================================
   PC版レイアウト整理（2026-07-29g）
   SP版には一切影響しないよう、index.html と同じPC条件のみで適用
   ============================================================ */
@media (min-width: 1024px) and (orientation: landscape), (min-width: 1025px) {

  /* ---- 基本幅：左右余白は最低32px、中央寄せ ---- */
  .fv-pc { padding-left: 32px !important; padding-right: 32px !important; }
  .fv-pc-inner { max-width: 620px !important; }

  /* ---- FV：タイトル ---- */
  .fv-pc-title {
    font-size: clamp(46px, 3.3vw, 56px) !important;
    line-height: 1.25 !important;
    letter-spacing: -.035em !important;
    max-width: 620px !important;
    margin-bottom: 24px !important;
  }
  .fv-pc-title .fv-mk {
    padding: .04em .15em .07em !important;
    line-height: 1.05 !important;
    border-radius: 3px;
  }
  /* 接続語：重要語より約22%小さく・背景なし */
  .fv-pc-title .fv-title-p {
    font-size: .78em !important;
    font-weight: 600 !important;
  }
  /* アイキャッチ：16〜20px */
  .fv-pc-tagline {
    font-size: 18px !important;
    padding: 7px 18px !important;
    margin: 0 0 24px !important;
  }
  /* サブコピー：16〜18px／タイトル・実績との間隔を均等に */
  .fv-pc-inner .fv-note {
    font-size: 17px !important;
    line-height: 1.75 !important;
    margin: 0 0 24px !important;
    max-width: 480px;
  }

  /* ---- 数字実績：3列・最大760px・間延び防止 ---- */
  .stats-section { padding-top: 88px !important; padding-bottom: 88px !important; }
  .stats-grid { max-width: 760px !important; }
  .stat-num {
    min-height: 78px !important;
    font-size: 64px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    align-items: baseline !important;
  }
  .stat-num--wide { font-size: 58px !important; }
  .stat-num .u { font-size: 27px !important; margin-left: 5px !important; }
  .stat-num--wide .u { font-size: 25px !important; }
  .stat-lbl { font-size: 16px !important; margin-bottom: 16px !important; }
  .stat-sfx { font-size: 14px !important; margin-top: 14px !important; line-height: 1.7 !important; }
  .stat + .stat::before { top: 16% !important; bottom: 16% !important; }

  /* ---- 登録フォーム：中央・最大720px ---- */
  .entry-section { padding: 72px 32px 88px !important; }
  .entry-shell { width: 100% !important; max-width: 720px !important; margin-left: auto !important; margin-right: auto !important; }
  .entry-head { padding: 18px 26px 16px !important; }
  .entry-title { font-size: 25px !important; }
  .entry-head-kicker { font-size: 12.5px !important; }
  .entry-head-note { font-size: 12.5px !important; }
  .entry-steps { gap: 8px; }
  .entry-step { font-size: 13px !important; padding: 9px 4px !important; }
  .entry-form input[type="text"],
  .entry-form input[type="tel"],
  .entry-form input[type="email"],
  .entry-form select { min-height: 50px !important; font-size: 16px !important; }
  .choice-card { min-height: 52px !important; padding: 12px 14px !important; }
  .form-step { padding: 22px 26px 18px !important; }
  .form-step-title { font-size: 21px !important; }
  .form-actions { justify-content: center !important; }
  .form-next, .form-submit { max-width: 400px !important; }

  /* ---- 約束セクション：前段からの接続 ---- */
  .prom-section { padding-top: 68px !important; }
  .prom-header {
    max-width: 720px !important;
    margin-left: auto !important; margin-right: auto !important;
    margin-bottom: 44px !important;
    text-align: center !important;
  }
  .prom-header .prom-bridge { font-size: 19px !important; margin-bottom: 14px !important; }
  .prom-title { font-size: 40px !important; line-height: 1.35 !important; max-width: 720px; margin: 0 auto; }

  /* ---- 下層セクション：本文幅と行長 ---- */
  .solve-lead, .sup-lead, .sec-lead, .cta-lead {
    font-size: 17px !important;
    line-height: 1.8 !important;
    max-width: 800px;
    margin-left: auto; margin-right: auto;
  }
  .voice-hero-title, .sup-title, .solve-title, .flow-title,
  .faq-section .sec-title, .adv-section .sec-title {
    font-size: clamp(32px, 2.9vw, 40px) !important;
    line-height: 1.45 !important;
  }
  /* カード3列：均等幅・カード間24〜32px */
  .sup-grid, .vfeat-grid, .flow-steps { gap: 28px !important; }
  .sup-grid > *, .vfeat-grid > *, .flow-steps > * { min-width: 0; }
  /* イラストを必要以上に拡大しない */
  .sup-card img, .sup-card svg, .prom-card img, .prom-card svg { max-width: 168px; height: auto; }
}

/* 1024〜1279px：テキスト列を確保してタイトルの改行位置をPC全域で統一 */
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .fv-pc { gap: 40px !important; }
  .fv-pc-photos { max-width: 380px !important; }
  .fv-pc-inner { flex: 1 1 auto !important; max-width: 560px !important; }
  .fv-pc-title { font-size: 45px !important; }
}

/* ============================================================
   PC版FV内 数字実績（2026-07-29h）
   SP版（.fv-sp-stats）には一切影響しない
   ============================================================ */
/* 既定は非表示（SP・タブレット縦ではSP版の実績のみ表示） */
.fv-pc-stats { display: none; }

@media (min-width: 1024px) and (orientation: landscape), (min-width: 1025px) {
  /* FV外の重複する数字実績セクションを非表示 */
  .stats-section { display: none !important; }

  .fv-pc-stats {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 540px;
    margin: 28px 0 0;
    padding: 0;
    box-sizing: border-box;
  }
  .fv-pc-stat {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 4px;
    text-align: center;
  }
  /* 項目間の細い縦線（既存の薄いグレー） */
  .fv-pc-stat + .fv-pc-stat { border-left: 1px solid #E3E0DB; }
  .fv-pc-stat .n {
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--gold, #F0502F);
    -webkit-text-fill-color: var(--gold, #F0502F);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
  }
  .fv-pc-stat .n i { font-style: normal; font-size: .42em; margin-left: 2px; }
  /* 3,000 のみ横幅を考慮して少し小さく（ベースラインは行高で統一） */
  /* 3項目とも同一font-sizeでベースラインを揃え、3,000のみ字間で幅を調整 */
  .fv-pc-stat:nth-child(3) .n { letter-spacing: -.05em; }
  .fv-pc-stat:nth-child(3) .n i { font-size: .34em; }
  .fv-pc-stat .l {
    margin-top: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #35312F;
    letter-spacing: .01em;
    white-space: nowrap;
  }
  /* FVの高さ調整：実績追加分の余白を整理 */
  .fv-pc { min-height: 0 !important; padding-top: 52px !important; padding-bottom: 56px !important; }
.fv-pc-inner .fv-note { margin: 0 0 0 !important; }

/* ============================================================
   SP FV 最終サイズ調整
   Food BizのFVと同等の視認性を確保し、旧コンパクト指定を上書き
   写真サイズには影響させない
   ============================================================ */
@media (max-width: 743px) {
  .fv-sp-text-area {
    min-height: 560px !important;
    justify-content: flex-start !important;
    padding: 105px 0 14px !important;
  }
  .fv-sp-inner {
    padding-inline: 20px !important;
    margin-bottom: 8px !important;
  }
  .fv-sp-tagline {
    margin-bottom: 32px !important;
    padding: 11px 24px 12px !important;
    font-size: clamp(18px, 5vw, 21px) !important;
    line-height: 1.5 !important;
  }
  .fv-sp-title {
    margin-bottom: 28px !important;
    font-size: clamp(40px, 11.3vw, 48px) !important;
    line-height: 1.42 !important;
    -webkit-text-stroke: .5px currentColor;
  }
  .fv-sp-title .fv-mk {
    padding: .03em .14em .07em !important;
    line-height: 1.1 !important;
  }
  .fv-sp-title .fv-mk--service {
    font-size: .94em;
  }
  .fv-note {
    margin-bottom: 14px !important;
    font-size: clamp(16px, 4.7vw, 19px) !important;
  }
  .fv-sp-stats {
    max-width: 380px !important;
    margin: 0 auto 6px !important;
    padding-inline: 10px !important;
  }
  .fv-sp-stat .n {
    font-size: clamp(38px, 10.8vw, 44px) !important;
  }
  .fv-sp-stat {
    flex: .86 1 0 !important;
  }
  .fv-sp-stat:nth-child(3) {
    flex: 1.28 1 0 !important;
  }
  .fv-sp-stat:nth-child(3) .n {
    font-size: clamp(37px, 10.5vw, 43px) !important;
    letter-spacing: -.06em !important;
  }
  .fv-sp-stat:nth-child(3) .n i {
    font-size: .3em !important;
  }
  .fv-sp-stat .l {
    margin-top: 8px !important;
    font-size: 14px !important;
  }
}

/* 狭いSP：長いサービス名と「3,000件+」を必ず画面内へ収める */
@media (max-width: 380px) {
  .fv-sp-tagline {
    padding: 9px 18px 10px !important;
    font-size: 16px !important;
  }
  .fv-sp-title {
    font-size: clamp(35px, 10.6vw, 40px) !important;
    letter-spacing: -.09em !important;
    line-height: 1.42 !important;
  }
  .fv-sp-title .fv-mk--service {
    font-size: .9em !important;
  }
  .fv-note {
    font-size: 14px !important;
  }
  .fv-sp-stats {
    padding-inline: 6px !important;
  }
  .fv-sp-stat .n {
    font-size: clamp(33px, 9.8vw, 36px) !important;
  }
  .fv-sp-stat:nth-child(3) .n {
    font-size: clamp(32px, 9.4vw, 35px) !important;
  }
  .fv-sp-stat .l {
    font-size: 12px !important;
  }
}

}

/* ============================================================
   登録フォーム見出し（2026-07-29i）
   ブランドオレンジのバッジ＋見出しの部分強調。新色は追加しない
   ============================================================ */
.entry-head {
  background: #fff !important;
  text-align: center;
}
/* バッジ：文字幅に合わせたオレンジ背景＋白文字 */
.entry-head-kicker {
  display: inline-block !important;
  width: auto !important;
  max-width: 100%;
  background: var(--gold, #F0502F) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .02em !important;
  line-height: 1.4 !important;
  padding: 4px 12px 5px !important;
  border-radius: 4px !important;
  margin: 0 0 11px !important;
  white-space: nowrap;
  text-shadow: none !important;
  box-shadow: none !important;
}
/* 見出し：「無料相談」だけブランドオレンジ、「はこちらから」は濃いグレー */
.entry-title {
  color: #1A1A1A !important;
  -webkit-text-fill-color: #1A1A1A !important;
  margin: 0 !important;
}
.entry-title .entry-title-em {
  color: var(--gold, #F0502F) !important;
  -webkit-text-fill-color: var(--gold, #F0502F) !important;
}
/* タイトル下〜Step表示の間隔 */
.entry-progress-wrap { margin-top: 18px !important; }

@media (max-width: 1023px) {
  .entry-head { padding: 14px 14px 0 !important; }
  .entry-head-kicker { font-size: 11.5px !important; margin-bottom: 11px !important; }
  .entry-title { font-size: 21px !important; }
  .entry-progress-wrap { margin-top: 18px !important; }
}

@media (min-width: 1024px) and (orientation: landscape), (min-width: 1025px) {
  .entry-head { padding: 20px 26px 0 !important; text-align: center !important; }
  .entry-head-kicker { font-size: 12.5px !important; margin-bottom: 12px !important; }
  .entry-title { font-size: 25px !important; }
  .entry-progress-wrap { margin-top: 20px !important; }
}

/* ============================================================
   登録フォーム見出しエリア：ブランドオレンジのベタ塗りに統合（2026-07-29j）
   ============================================================ */
.entry-head {
  background: var(--gold, #F0502F) !important;
  background-image: none !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  text-align: center !important;
  border-radius: 13px 13px 0 0 !important;
}
/* 個別バッジ背景を削除し、白文字のテキストに戻す */
.entry-head .entry-head-kicker {
  display: block !important;
  width: auto !important;
  background: none !important;
  background-color: transparent !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  font-weight: 700 !important;
  letter-spacing: .02em !important;
}
/* タイトル：全文白・大きく */
.entry-head .entry-title,
.entry-head .entry-title .entry-title-em {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  margin: 0 !important;
}
/* カード側の角丸とベタ塗りを揃える */
.entry-shell { overflow: hidden !important; }

@media (max-width: 1023px) {
  .entry-head { padding: 22px 16px !important; border-radius: 13px 13px 0 0 !important; }
  .entry-head .entry-head-kicker { font-size: 14px !important; margin: 0 0 9px !important; }
  .entry-head .entry-title { font-size: 28px !important; }
  .entry-progress-wrap { margin-top: 16px !important; }
}

@media (min-width: 1024px) and (orientation: landscape), (min-width: 1025px) {
  .entry-head { padding: 26px 26px !important; border-radius: 14px 14px 0 0 !important; }
  .entry-head .entry-head-kicker { font-size: 15px !important; margin: 0 0 9px !important; }
  .entry-head .entry-title { font-size: 32px !important; }
  .entry-progress-wrap { margin-top: 18px !important; }
}

/* ══════════════════════════════════════════════════
   2026-07-29k  CTAボタンの矢印を右向きシェブロンに
   （下向き矢印・丸背景を廃止／文言・遷移先・色は変更なし）
   ══════════════════════════════════════════════════ */
.fv-line-btn.form-anchor-btn { position: relative !important; }

.form-arrow {
  position: absolute !important;
  right: 22px;
  top: 50%;
  width: 11px !important;
  height: 11px !important;
  border: 0 !important;
  border-top: 2.5px solid #fff !important;
  border-right: 2.5px solid #fff !important;
  border-radius: 1px !important;
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  display: block !important;
  font-size: 0 !important;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: 50% 50%;
  pointer-events: none;
}

@media (max-width: 700px) {
  .form-arrow {
    right: 16px;
    width: 9px !important;
    height: 9px !important;
    border-top-width: 2.2px !important;
    border-right-width: 2.2px !important;
  }
}

/* PC：シェブロン分の右余白を確保しつつ、左右同量paddingで文言の中央を維持 */
@media (min-width: 701px) {
  .fv-line-btn.form-anchor-btn {
    padding-left: 58px !important;
    padding-right: 58px !important;
  }
}

/* ══════════════════════════════════════════════════
   2026-07-29l  ご相談の流れ／アドバイザー経歴のコンパクト化
   （コピー・画像・ブランドカラーは維持／新色・新装飾なし）
   ══════════════════════════════════════════════════ */

/* ── 1. ご相談の流れ：1枚のフローカード ── */
.flow-section { padding: clamp(34px, 6vw, 56px) 20px clamp(14px, 3vw, 20px) !important; }
.flow-head { margin-bottom: 18px !important; }
.flow-sub { margin-top: 7px !important; }

.flow-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ECE7E4;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(55,42,35,.055);
  overflow: hidden;
}
.flow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 12px 18px;
  box-sizing: border-box;
}
.flow-row + .flow-row { border-top: 1px solid #ECE7E4; }
.flow-row-no {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold, #F0502F);
  color: #fff;
  font-family: Montserrat, 'Noto Sans JP', sans-serif;
  font-size: 14px; font-weight: 700; line-height: 1;
  letter-spacing: .01em;
}
.flow-row-body { min-width: 0; }
.flow-row-ttl {
  margin: 0;
  font-size: 15.5px; font-weight: 800; line-height: 1.35;
  color: var(--navy, #141414);
}
.flow-row-desc {
  margin: 4px 0 0;
  font-size: 12.5px; line-height: 1.55; color: #5F5F5F;
}
/* フローカード → CTA の間隔 */
.cta-section--flow { padding-top: 26px !important; }

@media (max-width: 380px) {
  .flow-row { gap: 11px; padding: 11px 14px; }
  .flow-row-no { width: 36px; height: 36px; font-size: 13px; }
  .flow-row-ttl { font-size: 14.5px; }
  .flow-row-desc { font-size: 11.5px; }
}

/* PC：1枚のカード内に3列横並び */
@media (min-width: 1024px) and (orientation: landscape), (min-width: 1025px) {
  .flow-section { padding-top: 72px !important; padding-bottom: 20px !important; }
  .flow-head { margin-bottom: 24px !important; }
  .flow-card {
    display: flex;
    align-items: stretch;
    max-width: 940px;
    border-radius: 16px;
  }
  .flow-row {
    flex: 1 1 0;
    min-width: 0;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    gap: 10px;
    min-height: 0;
    padding: 26px 22px 24px;
  }
  .flow-row + .flow-row {
    border-top: 0;
    border-left: 1px solid #ECE7E4;
  }
  .flow-row-no { width: 42px; height: 42px; font-size: 15px; }
  .flow-row-ttl { font-size: 18px; }
  .flow-row-desc { font-size: 13.5px; }
  .cta-section--flow { padding-top: 30px !important; }
}

/* ── 2. アドバイザー：紹介文と横型経歴 ── */
.ca-br { display: none; }
@media (max-width: 1023px) { .ca-br { display: inline; } }

.ca-tl-title { margin-top: 22px !important; }

.ca-career {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 820px;
  margin: 12px 0 0;
  box-sizing: border-box;
}
.ca-career-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 4px 6px;
}
.ca-career-sep {
  flex: 0 0 auto;
  width: 24px;
  margin: 6px 2px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold, #F0502F);
}
.ca-career-sep::before {
  content: "→";
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.ca-career-org {
  margin: 0;
  font-size: 13px; font-weight: 800; line-height: 1.35;
  color: var(--navy, #141414);
  white-space: nowrap;
}
.ca-career-item.is-now .ca-career-org { color: var(--gold, #F0502F); }
.ca-career-role {
  margin: 5px 0 0;
  font-size: 11px; font-weight: 600; line-height: 1.45;
  color: #5F5F5F;
}
.ca-br2 { display: inline; }

@media (max-width: 360px) {
  .ca-career-org { font-size: 12px; }
  .ca-career-role { font-size: 10px; }
  .ca-career-sep { width: 18px; margin: 6px 0; }
  .ca-career-sep::before { font-size: 15px; }
  .ca-career-item { padding: 4px 3px; }
}

@media (min-width: 1024px) and (orientation: landscape), (min-width: 1025px) {
  .adv-section { padding-bottom: 56px !important; }
  .ca-career { max-width: 820px; margin-top: 14px; }
  .ca-career-item { padding: 6px 10px; }
  .ca-career-sep { margin: 8px 8px; }
  .ca-career-org { font-size: 16px; }
  .ca-career-role { font-size: 13px; margin-top: 6px; }
  .ca-br2 { display: none; }
}

/* 2026-07-29l-2  縦方向のさらなる圧縮（30〜40%短縮の達成） */
.flow-section { padding: clamp(26px, 5vw, 44px) 20px 0 !important; }
.flow-head { margin-bottom: 14px !important; }
.flow-row { min-height: 72px; padding: 10px 18px; }
.cta-section--flow { padding-top: 28px !important; }

.adv-section { padding-bottom: 28px !important; }
.ca-tl-title { margin-top: 16px !important; }
.ca-career { margin-top: 8px; }

@media (min-width: 1024px) and (orientation: landscape), (min-width: 1025px) {
  .flow-section { padding-top: 60px !important; padding-bottom: 0 !important; }
  .flow-head { margin-bottom: 22px !important; }
  .flow-row { padding: 20px 22px 18px; gap: 9px; }
  .cta-section--flow { padding-top: 30px !important; padding-bottom: 34px !important; }
  .adv-section { padding-bottom: 44px !important; }
}

/* 2026-07-29l-3  PC：フローセクションの縦圧縮 */
@media (min-width: 1024px) and (orientation: landscape), (min-width: 1025px) {
  .flow-section { padding-top: 44px !important; }
  .flow-head { margin-bottom: 18px !important; }
  .flow-row { padding: 18px 22px 16px; }
  .cta-section--flow { padding-bottom: 26px !important; }
}

/* 2026-07-29l-4  PC：紹介文が短くなったため、テキスト列を写真に対して上下中央に */
@media (min-width: 1024px) and (orientation: landscape), (min-width: 1025px) {
  .ca-grid { align-items: center !important; }
}

/* 2026-07-29m  SP：意味を読ませる補足情報は最低13pxに統一 */
@media (max-width: 600px) {
  .stat-lbl,
  .stat-sfx,
  .vfeat-chart-up-txt,
  .vfeat-bar-job,
  .vfeat-bar-pay,
  .vfeat-note,
  .ca-career-role,
  .flow-row-desc,
  .form-step-help,
  .form-security-note,
  .privacy-row,
  .privacy-placeholder,
  .footer-info-row dt,
  .footer-info-row dd {
    font-size: 13px !important;
  }

  .stat-lbl,
  .stat-sfx {
    line-height: 1.45 !important;
  }

  .ca-career-role,
  .flow-row-desc,
  .vfeat-note,
  .form-step-help,
  .form-security-note {
    line-height: 1.6 !important;
  }
}

/* 2026-07-30  SP FV 最終サイズ（旧コンパクト指定より後で確実に適用） */
@media (max-width: 743px) {
  .fv-sp-text-area {
    min-height: 485px !important;
    justify-content: flex-start !important;
    padding: 30px 0 10px !important;
  }
  .fv-sp-inner {
    padding-inline: 20px !important;
    margin-bottom: 8px !important;
  }
  .fv-sp-tagline {
    margin-bottom: 32px !important;
    padding: 11px 24px 12px !important;
    font-size: clamp(18px, 5vw, 21px) !important;
    line-height: 1.5 !important;
  }
  .fv-sp-title {
    margin-bottom: 28px !important;
    font-size: clamp(40px, 11.3vw, 48px) !important;
    line-height: 1.34 !important;
    -webkit-text-stroke: .5px currentColor;
  }
  .fv-sp-title .fv-mk {
    padding: .03em .14em .07em !important;
    line-height: 1.1 !important;
  }
  .fv-sp-title .fv-mk--service {
    font-size: .94em;
  }
  .fv-note {
    margin-bottom: 14px !important;
    font-size: clamp(16px, 4.7vw, 19px) !important;
  }
  .fv-sp-stats {
    max-width: 380px !important;
    margin: 0 auto 6px !important;
    padding-inline: 10px !important;
  }
  .fv-sp-stat .n {
    font-size: clamp(38px, 10.8vw, 44px) !important;
  }
  .fv-sp-stat {
    flex: .86 1 0 !important;
  }
  .fv-sp-stat:nth-child(3) {
    flex: 1.28 1 0 !important;
  }
  .fv-sp-stat:nth-child(3) .n {
    font-size: clamp(37px, 10.5vw, 43px) !important;
    letter-spacing: -.06em !important;
  }
  .fv-sp-stat:nth-child(3) .n i {
    font-size: .3em !important;
  }
  .fv-sp-stat .l {
    margin-top: 8px !important;
    font-size: 14px !important;
  }
}

/* 2026-07-30  狭いSPの横幅収まりを保証 */
@media (max-width: 380px) {
  .fv-sp-tagline {
    padding: 9px 18px 10px !important;
    font-size: 16px !important;
  }
  .fv-sp-title {
    font-size: clamp(35px, 10.6vw, 40px) !important;
    letter-spacing: -.09em !important;
    line-height: 1.34 !important;
  }
  .fv-sp-title .fv-mk--service {
    font-size: .9em !important;
  }
  .fv-note {
    font-size: 14px !important;
  }
  .fv-sp-stats {
    padding-inline: 6px !important;
  }
  .fv-sp-stat .n {
    font-size: clamp(33px, 9.8vw, 36px) !important;
  }
  .fv-sp-stat:nth-child(3) .n {
    font-size: clamp(32px, 9.4vw, 35px) !important;
  }
  .fv-sp-stat .l {
    font-size: 12px !important;
  }
}

/* 2026-07-31 ご相談の流れ：カード下に余白を確保する最終指定 */
.flow-section {
  padding-bottom: clamp(40px, 8vw, 56px) !important;
}

@media (min-width: 1024px) and (orientation: landscape), (min-width: 1025px) {
  .flow-section {
    padding-bottom: 52px !important;
  }
}

/* ============================================================
   実績数値の差し替え（2026-07-31b）
   「3,000件+／厳選求人」→「87.1%／キャリアチェンジ率」
   ・87.1 と % は同一行・同一ベースライン（96% / 82% と共通）
   ・単位（%）のサイズを1・2列目と揃える
   ・長いラベルがSPで横にはみ出さないよう字間のみで調整
   ・注記は実績エリア下にまとめて小さく表示
   ※FVの高さ・写真・その他構造は変更しない
   ============================================================ */

/* --- FV SP --- */
/* 3列目も1・2列目と同一font-size＝ベースラインを完全に一致させる
   （旧「3,000件+」用に縮小していた指定を打ち消す）
   ※打ち消し対象と同じブレークポイントに限定し、タブレット幅には影響させない */
@media (max-width: 743px) {
  .fv-sp-stat:nth-child(3) .n { font-size: clamp(38px, 10.8vw, 44px) !important; }
}
@media (max-width: 380px) {
  .fv-sp-stat:nth-child(3) .n { font-size: clamp(33px, 9.8vw, 36px) !important; }
}
.fv-sp-stat:nth-child(3) .n { letter-spacing: -.035em !important; }
.fv-sp-stat:nth-child(3) .n i { font-size: .42em !important; letter-spacing: 0; }
.fv-sp-stat:nth-child(3) .l { letter-spacing: -.045em; }
@media (max-width: 380px) {
  .fv-sp-stat .l { font-size: 12px !important; }
  .fv-sp-stat:nth-child(3) .l { letter-spacing: -.06em; }
}
@media (max-width: 340px) {
  .fv-sp-stat .l { font-size: 11px !important; }
}

/* --- FV PC --- */
@media (min-width: 1024px) and (orientation: landscape), (min-width: 1025px) {
  .fv-pc-stat:nth-child(3) .n { letter-spacing: -.035em; }
  .fv-pc-stat:nth-child(3) .n i { font-size: .42em; }
  .fv-pc-stat:nth-child(3) .l { letter-spacing: -.02em; }
}

/* --- 数字で見る実績 --- */
/* 3列目も 96% / 82% と同一サイズ＝ベースラインを完全に揃える */
.stats-grid .stat:nth-child(3) .stat-num { letter-spacing: -.03em; }

/* 注記：実績エリアの下にまとめて小さく */
.stats-note {
  max-width: 900px;
  margin: 18px auto 0;
  padding: 0 4px;
  font-size: 11px;
  line-height: 1.7;
  color: #8A8A8A;
  text-align: center;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .stats-note { font-size: 12px; margin-top: 22px; }
}

/* 実績エリアの注記（FV直下・FVの高さには影響しない位置） */
.fv-stats-note {
  margin: 0;
  position: relative;
  z-index: 1;
  padding: 10px 18px 12px;
  background: #F8F8F6;
  font-size: 10.5px;
  line-height: 1.65;
  color: #8A8A8A;
  text-align: center;
  letter-spacing: 0;
}
@media (min-width: 1024px) and (orientation: landscape), (min-width: 1025px) {
  .fv-stats-note {
    background: #fff;
    padding: 14px 20px 16px;
    font-size: 11.5px;
  }
}

/* ============================================================
   VOICE見出し「転職支援者の声」（2026-07-31c）
   1行の短い見出しに合わせて上下余白のバランスのみ調整。
   フォント・色・中央揃えは既存指定のまま（オレンジ強調は撤去済み）
   ============================================================ */
.voice-hero-title { margin: 8px 0 16px !important; }
@media (min-width: 1024px) and (orientation: landscape), (min-width: 1025px) {
  .voice-hero-title { margin: 10px 0 6px !important; }
  /* 短い1行見出しに対して開きすぎるため、カード群までの間隔を詰める
     （カード自体のデザイン・中身は変更しない） */
  #voice .vfeat-grid { margin-top: 44px !important; }
}

/* ============================================================
   VOICE見出し「転職支援者の声」リデザイン（2026-07-31d）
   ・「転職支援者」＝ブランドオレンジ #F0502F ／「の声」＝ #141414
   ・font-weight:900／中央揃え／SPでも1行表示
   ・見出し下に 48x4px の角丸オレンジライン（中央配置・間隔14px）
   ・カード／写真／本文／グラフには一切触れない
   ============================================================ */
.vfeat-section-title {
  text-align: center !important;
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif !important;
  font-weight: 900 !important;
  color: #141414 !important;
  font-size: clamp(28px, 7.5vw, 34px) !important;
  line-height: 1.4 !important;
  letter-spacing: .01em !important;
  white-space: nowrap !important;
  margin: 8px 0 0 !important;
}
.vfeat-section-title span { color: #F0502F !important; font-weight: 900 !important; }
.vfeat-section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin: 14px auto 0;
  background: #F0502F;
  border-radius: 2px;
}
/* 見出し下の余白（SP 36px）。実際の間隔は .vfeat-grid の margin-top が支配するため
   そちらで指定する（カード自体のデザインは変更なし） */
#voice .vfeat-grid { margin-top: 36px !important; }

@media (min-width: 1024px) and (orientation: landscape), (min-width: 1025px) {
  .vfeat-section-title {
    font-size: clamp(36px, 3vw, 44px) !important;
    margin: 10px 0 0 !important;
  }
  #voice .vfeat-grid { margin-top: 48px !important; }
}

/* ============================================================
   PC版FV：タイトル主役化＋写真を一回り縮小（2026-07-31e）
   ・SP版（.fv-sp / .fv-sp-title / .fv-sp-photo）には一切影響させない
   ・タイトル文言・数値・画像・トリミング・角丸は変更なし
   ============================================================ */

/* ---- 1280px以上：指定値どおり ---- */
@media (min-width: 1280px) {
  .fv-pc { gap: 40px !important; }
  .fv-pc-inner {
    flex: 0 1 680px !important;
    max-width: 680px !important;
    min-width: 0 !important;
  }
  .fv-pc-photos {
    flex: 0 1 540px !important;
    max-width: 540px !important;
    aspect-ratio: 1 / 1 !important;
    min-width: 0 !important;
    height: auto !important;
    width: auto !important;
  }
  .fv-pc-title {
    font-size: clamp(50px, 4vw, 68px) !important;
    line-height: 1.34 !important;
    letter-spacing: -.04em !important;
    max-width: 680px !important;
  }
  /* サービス名は1行維持（既存指定の再確認） */
  .fv-pc-title .fv-mk--service,
  .fv-pc-title .fv-title-service { white-space: nowrap !important; }
}

/* ---- 1024〜1279px：同じ方向性で、はみ出さない範囲に縮小 ---- */
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .fv-pc { gap: 40px !important; }
  .fv-pc-inner { flex: 0 1 600px !important; max-width: 600px !important; min-width: 0 !important; }
  .fv-pc-photos {
    flex: 0 1 440px !important;
    max-width: 440px !important;
    aspect-ratio: 1 / 1 !important;
    min-width: 0 !important;
    height: auto !important;
    width: auto !important;
  }
  .fv-pc-title {
    font-size: clamp(44px, 3.7vw, 50px) !important;
    line-height: 1.34 !important;
    letter-spacing: -.04em !important;
    max-width: 600px !important;
  }
  .fv-pc-title .fv-mk--service,
  .fv-pc-title .fv-title-service { white-space: nowrap !important; }
}

/* ---- 87.1%のラベル「異業種への転職率」：中央揃え／収まらない時のみ2行 ---- */
@media (min-width: 1024px) and (orientation: landscape), (min-width: 1025px) {
  .fv-pc-stat .l { text-align: center !important; }
  .fv-pc-stat:nth-child(3) .l {
    white-space: normal !important;
    text-wrap: balance;
    letter-spacing: -.01em !important;
    line-height: 1.35 !important;
  }
}

/* ============================================================
   アドバイザー紹介：本文のPC／SP出し分け（2026-07-31f）
   ・SP＝短文1段落（現行のまま）／PC＝3段落
   ・同じ本文が同時に2つ表示されないよう完全排他
   ・写真／氏名／肩書き／「これまでの歩み」の構成は変更なし
   ============================================================ */
/* 既定（SP・タブレット）：SP用のみ表示 */
.ca-copy--pc { display: none !important; }
.ca-para--sp { display: block !important; }

/* PC（2カラムで写真が横に並ぶ幅）：PC用のみ表示 */
@media (min-width: 1024px) and (orientation: landscape), (min-width: 1025px) {
  .ca-para--sp { display: none !important; }
  .ca-copy--pc { display: block !important; }

  .ca-copy--pc .ca-para {
    font-size: 16.5px !important;
    line-height: 1.9 !important;
    letter-spacing: .01em !important;
  }
  .ca-copy--pc .ca-para + .ca-para { margin-top: 18px !important; }

  /* 本文と「これまでの歩み」の間隔：28〜32px */
  .ca-tl-title { margin-top: 30px !important; }
}

/* ============================================================
   2026-08-03a  FV数字実績をバッジ画像へ差し替え（横一列）
   ・過去レイヤーの区切り線／文字組み指定を無効化
   ・PC/SPとも3つを横一列、直径を揃える
   ============================================================ */
.fv-pc-stat + .fv-pc-stat,
.fv-sp-stat + .fv-sp-stat { border-left: 0 !important; }
.fv-pc-stat, .fv-sp-stat {
  padding: 0 !important;
  min-width: 0 !important;
  flex: 1 1 0 !important;
  display: block !important;
}
.fv-badge-img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
}

/* SP：横一列（3等分） */
.fv-sp-stats {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  max-width: 348px !important;
  padding: 0 !important;
  margin: 6px auto 24px !important;
  box-sizing: border-box !important;
}
.fv-sp-stat { max-width: 108px !important; }

/* PC：横一列（添付のサイズ感＝コンテンツ幅の約20%） */
@media (min-width: 1024px) and (orientation: landscape), (min-width: 1025px) {
  .fv-pc-stats {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 500px !important;
    margin: 26px 0 0 !important;
    padding: 0 !important;
  }
  .fv-pc-stat { max-width: 156px !important; }
}

/* 旧レイヤーの :nth-child(3) 個別指定（テキスト時代の幅調整）を無効化 */
.fv-sp-stat:nth-child(3),
.fv-pc-stat:nth-child(3) { flex: 1 1 0 !important; }

/* 極小幅（〜339px）でバッジが画面端に接するのを防ぐ */
@media (max-width: 339px) {
  .fv-sp-stats { padding: 0 12px !important; }
}

/* ============================================================
   2026-08-03b  FVバッジをもう一段拡大
   ・SP：108px → 約119px（左右余白10pxは確保）
   ・PC：156px → 176px
   ============================================================ */
.fv-sp-stats {
  max-width: 378px !important;
  padding: 0 10px !important;
  gap: 7px !important;
}
.fv-sp-stat { max-width: 120px !important; }

@media (max-width: 339px) {
  .fv-sp-stats { padding: 0 10px !important; }
}

@media (min-width: 1024px) and (orientation: landscape), (min-width: 1025px) {
  .fv-pc-stats { max-width: 560px !important; gap: 16px !important; }
  .fv-pc-stat { max-width: 176px !important; }
}

/* SPの上限をさらに緩めて直径を確保（左右余白8pxは維持） */
.fv-sp-stats { max-width: 396px !important; padding: 0 8px !important; }
.fv-sp-stat { max-width: 126px !important; }
@media (max-width: 339px) { .fv-sp-stats { padding: 0 10px !important; } }

/* ============================================================
   2026-08-03c  バッジ内の ※1／※2 と、その補足行
   ============================================================ */
.fv-pc-stat, .fv-sp-stat {
  position: relative !important;
  container-type: inline-size;
}
.fv-badge-mark {
  position: absolute;
  top: 45%;
  color: #fff;
  font-family: 'Zen Kaku Gothic New','Noto Sans JP',sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  font-size: max(7px, 5.8cqw);
  pointer-events: none;
}
.fv-badge-mark--1 { right: 9%; }
.fv-badge-mark--2 { right: 8%; }
/* 2026-08-03d  異業種バッジの ※3（数字帯の右端が21.3%なので※1と同じ 9%） */
.fv-badge-mark--3 { right: 9%; }

.fv-badge-note {
  margin: 10px 0 0;
  color: #6B6560;
  font-family: 'Zen Kaku Gothic New','Noto Sans JP',sans-serif;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -.01em;
  font-size: 10px;
  text-align: center;
}
.fv-sp-stats + .fv-badge-note {
  max-width: 396px;
  margin: 10px auto 24px;
  padding: 0 10px;
  box-sizing: border-box;
}
@media (min-width: 1024px) and (orientation: landscape), (min-width: 1025px) {
  .fv-pc-stats + .fv-badge-note {
    max-width: 560px;
    margin: 12px 0 0;
    font-size: 11.5px;
    text-align: left;
  }
}

/* 補足行が続く場合はバッジ列の下余白を詰め、余白は補足行側で持たせる */
.fv-sp-stats { margin-bottom: 4px !important; }
.fv-sp-stats + .fv-badge-note { margin: 8px auto 22px; }

/* ============================================================
   2026-08-03e  ※1〜3 を一段大きく＋外周リングに被らないよう内側へ
   ============================================================ */
.fv-badge-mark {
  top: 43% !important;
  font-size: max(8px, 7cqw) !important;
}
.fv-badge-mark--1 { right: 14% !important; }
.fv-badge-mark--2 { right: 13% !important; }
.fv-badge-mark--3 { right: 14% !important; }
