@charset "UTF-8";

/* ═══════════════════════════════════════════════════════════════════
   運送会社 採用専用LP／YNHT デザインサンプル（実績・信頼型）

   ■ 配色の考え方
     ディープティール（深い青緑）を基調に、白を面で使い、躍動オレンジを
     数字・ルート・矢印にだけ強く効かせる。工業ガンメタや明るい青とは
     別の「動く物流ブランド」の顔をつくる。
     すべての文字色は背景に対してコントラスト比 4.5 以上を確保している。
       ink   #12222a  white  に対して 15.9
       mute  #4c5f66  white  に対して 6.69
       accent-d #bf4300 white に対して 5.23
       accent   #ff6a13 teal(#07333b) に対して 4.74（大きな数字・帯にのみ使用）
       #fff  teal(#07333b) に対して 13.6
       mute-d #a9c4c8 teal(#07333b) に対して 7.39
     ★ 写真の上に本文は直接置かない。ヒーローは写真と濃色パネルを左右に分ける。

   ■ 横スクロール対策
     全幅要素は width:100% + max-width:100% に統一し、100vw を使わない。
     表は .tablebox（overflow-x）で包む。
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --ink: #12222a;
  --teal: #07333b;
  --teal2: #0c414a;
  --teal3: #103a42;
  --paper: #ffffff;
  --paper2: #eef3f2;
  --line: #d7e0df;
  --line-d: #235662;
  --mute: #4c5f66;
  --mute-d: #a9c4c8;
  --accent: #ff6a13;
  --accent-d: #bf4300;
  --w: 1140px;
  --pad: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .01em;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

h1, h2, h3 { line-height: 1.32; letter-spacing: .005em; margin: 0; font-weight: 900; }

b, strong { font-weight: 700; }

/* ═══ 共通の器 ═══ */
.wrap {
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.wrap.narrow { max-width: 860px; }

section { padding: 96px 0; }

.sec-paper  { background: var(--paper); }
.sec-paper2 { background: var(--paper2); }
.sec-dark   { background: var(--teal); color: #fff; }
.sec-dark .lead { color: var(--mute-d); }

/* 見出し前の通し番号。前方向の矢印タグで「進む・運ぶ」を出す */
.snum {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  font-family: "Anton", "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  letter-spacing: .24em;
  color: var(--accent-d);
}
.snum i {
  font-style: normal;
  display: inline-block;
  padding: 4px 18px 3px 11px;
  background: var(--accent-d);
  color: #fff;
  font-size: 15px;
  letter-spacing: .06em;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 0 100%);
}
.snum::after {
  content: "";
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 16px, transparent 16px 26px);
}
/* 濃色の面の上では橙を明るい側へ振る */
.snum.on-dark, .sec-dark .snum { color: var(--accent); }
.snum.on-dark i, .sec-dark .snum i { background: var(--accent); color: var(--teal); }
.snum.on-dark::after, .sec-dark .snum::after {
  background: repeating-linear-gradient(90deg, var(--line-d) 0 16px, transparent 16px 26px);
}

h2 { font-size: clamp(27px, 4.4vw, 44px); margin: 0 0 20px; }

.lead {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--mute);
  margin: 0 0 34px;
  max-width: 62ch;
}

.note {
  margin: 28px 0 0;
  font-size: 13px;
  line-height: 1.85;
  color: var(--mute);
  padding-left: 14px;
  border-left: 3px solid var(--accent-d);
}
.note.on-dark { color: var(--mute-d); border-left-color: var(--accent); }

.ilink { color: var(--accent-d); text-underline-offset: 3px; font-weight: 700; }
.sec-dark .ilink { color: var(--accent); }

/* ルート矢印の区切り線（躍動モチーフ） */
.routeline {
  position: relative;
  height: 2px;
  width: 148px;
  max-width: 60%;
  margin: 0 0 26px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 18px, transparent 18px 28px);
}
.routeline::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 12px solid var(--accent);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

/* 出現アニメーション */
.rise { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .rise { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
  .rise.in { opacity: 1; transform: none; }
}

/* ═══ ヘッダー ═══ */
.bar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px var(--pad);
  background: var(--teal);
  color: #fff;
  border-bottom: 2px solid var(--accent);
}
.bar.on { box-shadow: 0 6px 22px rgba(0, 0, 0, .3); }

.logo { text-decoration: none; display: block; line-height: 1.25; margin-right: auto; }
.logo-ja { display: block; font-weight: 900; font-size: 17px; letter-spacing: .06em; }
.logo-en {
  display: block;
  font-family: "Anton", sans-serif;
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--mute-d);
}

.bar-nav { display: flex; gap: 20px; }
.bar-nav a { font-size: 13px; text-decoration: none; color: var(--mute-d); }
.bar-nav a:hover { color: #fff; }

.bar-cta {
  flex: none;
  padding: 9px 26px 9px 18px;
  background: var(--accent);
  color: var(--teal);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}

/* ═══ サンプル告知 ═══ */
.disclaimer {
  background: var(--teal2);
  color: var(--mute-d);
  padding: 13px var(--pad);
  font-size: 13.5px;
  line-height: 1.8;
  text-align: center;
  border-left: 6px solid var(--accent);
}
.disclaimer strong { color: #fff; }
.disclaimer b { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ═══ ファーストビュー ═══
   左に見出し＋大きな実績数字、右に車列写真。暗幕は使わない。 */
.hero { background: var(--teal); color: #fff; overflow: hidden; }
.hero-inner {
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) var(--pad) clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
.hero-tag {
  display: inline-block;
  margin: 0 0 22px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--teal);
  background: var(--accent);
}
.hero-h {
  font-size: clamp(40px, 7.6vw, 84px);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 22px;
  text-shadow: none;
}
.hero-lede { margin: 0 0 30px; color: var(--mute-d); max-width: 44ch; font-size: clamp(15px, 1.6vw, 17px); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  height: clamp(300px, 44vh, 500px);
  object-fit: cover;
  object-position: center 42%;
}
.hero-media-tag {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--accent);
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 8px 16px 8px 14px;
}

/* ヒーロー下の実績数字バンド（規模・対応力・安全を数字で押す） */
.hero-stats {
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: transparent;
}
.hero-stat {
  background: var(--teal2);
  padding: 22px 20px 20px;
  border-top: 3px solid var(--accent);
  line-height: 1.35;
}
.hero-stat span { display: block; font-size: 12px; letter-spacing: .16em; color: var(--mute-d); }
.hero-stat b {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: .01em;
}
.hero-stat small { display: block; font-size: 12px; color: var(--mute-d); margin-top: 6px; }

/* ═══ ボタン（矢印つき） ═══ */
.btn {
  position: relative;
  display: inline-block;
  padding: 15px 48px 15px 26px;
  background: var(--accent);
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.35;
}
.btn::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 9px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: translateY(-50%);
  transition: transform .2s ease;
}
.btn:hover::after { transform: translate(4px, -50%); }
.btn small { display: block; font-size: 12px; font-weight: 500; }
.btn.ghost { background: transparent; color: #fff; border: 1px solid var(--mute-d); }

/* ═══ 数字 ═══ */
.kpi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 2px solid var(--teal);
}
.kpi-item { background: var(--paper); padding: 24px 20px 22px; position: relative; }
.kpi-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 3px;
  background: var(--accent);
}
.kpi-item b {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 1;
  color: var(--accent-d);
  letter-spacing: .01em;
}
.kpi-item .u { font-size: 15px; font-weight: 700; margin-left: 4px; color: var(--accent-d); }
.kpi-item p { margin: 12px 0 0; font-size: 13.5px; line-height: 1.75; color: var(--mute); }

/* ═══ 写真帯 ═══ */
.strip { width: 100%; max-height: 46vh; overflow: hidden; background: var(--teal); }
.strip img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--teal);
}
.duo.trio { grid-template-columns: repeat(3, 1fr); }
.duo figure { margin: 0; background: var(--teal); }
.duo img { width: 100%; height: 380px; object-fit: cover; object-position: center 40%; }
.duo figcaption {
  padding: 14px 18px 20px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--mute-d);
}

/* ═══ 02 対応エリア（ルート帯） ═══ */
.area {
  background: var(--paper);
  border: 2px solid var(--teal);
  padding: clamp(24px, 3vw, 36px);
  margin: 4px 0 40px;
}
.area-head { margin-bottom: 26px; }
.area-k {
  margin: 0 0 8px;
  font-family: "Anton", sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--accent-d);
}
.area-head h3 { font-size: clamp(20px, 2.6vw, 27px); }

.area-rows { display: grid; gap: 16px; margin-bottom: 22px; }
.area-row {
  display: grid;
  grid-template-columns: minmax(160px, 230px) 1fr 96px;
  gap: 20px;
  align-items: center;
}
.area-row .rn { margin: 0; line-height: 1.4; }
.area-row .rn b { display: block; font-size: 17px; }
.area-row .rn span { font-size: 12.5px; color: var(--mute); }
.area-track {
  position: relative;
  height: 16px;
  background: var(--paper2);
  border: 1px solid var(--line);
}
.area-fill {
  display: block;
  height: 100%;
  width: var(--w);
  background: var(--accent);
  position: relative;
}
.area-fill::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 11px solid var(--accent-d);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.area-row .rd { margin: 0; text-align: right; line-height: 1.2; }
.area-row .rd em {
  font-style: normal;
  font-family: "Anton", sans-serif;
  font-size: 30px;
  color: var(--accent-d);
}
.area-row .rd span { font-size: 14px; font-weight: 700; color: var(--accent-d); }
.area-row .rd small { display: block; font-size: 12px; color: var(--mute); margin-top: 2px; }

.area-notes { margin: 0; padding-top: 18px; border-top: 1px solid var(--line); }

/* ═══ 02 仕様パネル（荷物・車・賃金） ═══ */
.specs { display: grid; grid-template-columns: 1fr; gap: 2px; }
.spec {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  padding: 30px 30px 32px;
}
.spec-head .k {
  margin: 0 0 12px;
  font-family: "Anton", sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--accent-d);
}
.spec-head h3 { font-size: 22px; }

/* ═══ ティックリスト ═══ */
.tick { list-style: none; margin: 0; padding: 0; }
.tick li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--mute);
}
.tick li:last-child { margin-bottom: 0; }
/* 小さな右向き矢羽根 */
.tick li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--accent-d);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.tick li b { color: var(--ink); }
.dcard .tick li, .tick.on-dark li { color: var(--mute-d); }
.dcard .tick li::before, .tick.on-dark li::before { border-left-color: var(--accent); }
.dcard .tick li b, .tick.on-dark li b { color: #fff; }

/* ═══ 06 濃色カード ═══ */
.dcards { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dcards.c2 { grid-template-columns: 1fr 1fr; }
.dcard { background: var(--teal2); padding: 30px 28px 32px; border-top: 3px solid var(--accent); }
.dcard .k {
  margin: 0 0 12px;
  font-family: "Anton", sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--accent);
}
.dcard h3 { font-size: 21px; margin: 0 0 18px; }

/* ═══ 03 1日の流れ ═══ */
.daymeta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin: 0 0 40px; }
.daymeta > div { background: var(--teal); color: #fff; padding: 20px 22px 22px; border-top: 3px solid var(--accent); }
.daymeta span { display: block; font-size: 12px; letter-spacing: .16em; color: var(--accent); }
.daymeta b { display: block; font-size: 26px; line-height: 1.3; margin: 2px 0 8px; font-weight: 900; }
.daymeta small { display: block; font-size: 12.5px; line-height: 1.7; color: var(--mute-d); }

.day { list-style: none; margin: 0; padding: 0; }
.day li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  padding: 0 0 26px 0;
  position: relative;
}
.day li::before {
  content: "";
  position: absolute;
  left: 43px;
  top: 24px;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--line) 0 8px, transparent 8px 16px);
}
.day li:last-child::before { display: none; }
.day .t {
  font-family: "Anton", sans-serif;
  font-size: 20px;
  color: var(--accent-d);
  letter-spacing: .02em;
  padding-top: 2px;
  position: relative;
}
.day .t::after {
  content: "";
  position: absolute;
  right: -25px;
  top: 12px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  transform: rotate(45deg);
}
.day b { display: block; font-size: 17px; }
.day p { margin: 4px 0 0; font-size: 14px; color: var(--mute); }

.day.flow .t { font-size: 22px; }

/* ═══ 写真＋文の帯 ═══ */
.band { display: grid; grid-template-columns: 1fr 1fr; background: var(--teal); color: #fff; }
.band.reverse .band-photo { order: 2; }
.band-photo { min-height: 100%; }
.band-photo img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; object-position: center 45%; }
.band-body { display: flex; align-items: center; padding: 72px 0; }
.band-inner { width: 100%; max-width: 560px; margin: 0 auto; padding: 0 var(--pad); }
.band h2 { font-size: clamp(23px, 3vw, 33px); }
.band .lead { color: var(--mute-d); }

/* ═══ 定義リスト（休み・募集要項） ═══ */
.dl { margin: 0; border-top: 3px solid var(--teal); }
.dl > div {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.dl dt { font-weight: 700; font-size: 15px; }
.dl dd { margin: 0; min-width: 0; font-size: 14.5px; line-height: 1.9; color: var(--mute); }
.dl dd b { color: var(--ink); }
.dl dd small { display: inline-block; font-size: 13px; color: var(--mute); }

.terms dt { position: relative; padding-left: 18px; }
.terms dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--accent);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.mini { margin: 8px 0 10px; padding-left: 1.15em; }
.mini li { font-size: 14px; line-height: 1.8; margin-bottom: 4px; }

/* 固定残業代の注意書き */
.warnbox {
  margin: 18px 0;
  padding: 16px 18px;
  background: #fff3ea;
  border: 2px solid var(--accent-d);
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink);
}
.warnbox b { color: var(--accent-d); }

.tablebox { width: 100%; overflow-x: auto; margin: 10px 0 0; }
.paytable { border-collapse: collapse; width: 100%; min-width: 560px; font-size: 14px; }
.paytable caption {
  text-align: left;
  font-size: 12.5px;
  color: var(--mute);
  padding-bottom: 8px;
}
.paytable th, .paytable td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  white-space: nowrap;
}
.paytable thead th { background: var(--teal); color: #fff; font-size: 13px; }
.paytable tbody th { background: var(--paper2); font-weight: 700; }
.paytable tbody td { color: var(--mute); }
.paytable tbody td b { color: var(--ink); }

.scrollhint { margin: 6px 0 0; font-size: 12px; color: var(--mute); }
@media (min-width: 700px) { .scrollhint { display: none; } }

/* ═══ 未経験の入社後ステップ ═══ */
.steps { margin-top: 44px; border-top: 3px solid var(--accent); padding-top: 26px; }
.steps-h { margin: 0 0 20px; font-weight: 700; font-size: 17px; }
.steps ol { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.steps li { background: var(--teal2); padding: 22px 20px 24px; position: relative; }
.steps li::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 42px;
  z-index: 1;
  border-left: 9px solid var(--accent);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.steps li:last-child::after { display: none; }
.steps li span {
  display: inline-block;
  font-family: "Anton", sans-serif;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--teal);
  background: var(--accent);
  padding: 2px 9px;
  margin-bottom: 10px;
}
.steps li b { display: block; font-size: 17px; }
.steps li p { margin: 6px 0 0; font-size: 13.5px; line-height: 1.8; color: var(--mute-d); }

/* ═══ 先輩の声 ═══ */
.voices { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.voices article { background: var(--paper2); border-left: 5px solid var(--accent); padding: 26px 26px 28px; }
.voices .who { margin: 0 0 10px; font-size: 12.5px; letter-spacing: .04em; color: var(--mute); }
.voices h3 { font-size: 19px; margin: 0 0 12px; }
.voices p:last-child { margin: 0; font-size: 14.5px; color: var(--mute); }

/* ═══ FAQ ═══ */
.faq { border-top: 3px solid var(--teal); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 44px 20px 0;
  font-weight: 700;
  font-size: 16px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 30px;
  width: 14px;
  height: 2px;
  background: var(--accent-d);
}
.faq summary::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 24px;
  width: 2px;
  height: 14px;
  background: var(--accent-d);
  transition: transform .2s ease;
}
.faq details[open] summary::before { transform: rotate(90deg); }
.faq .a { padding: 0 0 22px; font-size: 14.5px; color: var(--mute); }

/* ═══ 最終CTA ═══ */
.cta { background: var(--teal); color: #fff; }
.cta .lead { color: var(--mute-d); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-tel {
  display: inline-block;
  margin-top: 30px;
  text-decoration: none;
  border-top: 1px solid var(--line-d);
  padding-top: 20px;
}
.cta-tel span { display: block; font-size: 12.5px; letter-spacing: .1em; color: var(--mute-d); }
.cta-tel b { font-family: "Anton", sans-serif; font-weight: 400; font-size: 34px; letter-spacing: .02em; color: var(--accent); }

/* ═══ フッター ═══ */
footer { background: var(--ink); color: var(--mute-d); padding: 64px 0 120px; font-size: 13.5px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; }
.fname { margin: 0 0 12px; color: #fff; font-weight: 900; font-size: 18px; line-height: 1.4; }
.fname small { display: block; font-family: "Anton", sans-serif; font-weight: 400; font-size: 11px; letter-spacing: .12em; color: var(--mute-d); }
footer address { font-style: normal; line-height: 1.9; }
.fh { margin: 0 0 12px; color: #fff; font-weight: 700; font-size: 14px; }
footer ul { list-style: none; margin: 0; padding: 0; }
footer li { margin-bottom: 7px; }
footer a { color: var(--mute-d); text-decoration: none; }
footer a:hover { color: #fff; text-decoration: underline; }
.foot-btm {
  margin: 44px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-d);
  font-size: 12.5px;
  line-height: 1.9;
}
.foot-btm b { color: #fff; }

/* ═══ スマホ追従バー ═══ */
.applybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  gap: 2px;
  transform: translateY(105%);
  transition: transform .3s ease;
}
.applybar.on { transform: none; }
.applybar a {
  padding: 15px 8px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}
.ab-tel { flex: 0 0 96px; background: var(--teal); color: #fff; }
.ab-main { flex: 1; background: var(--accent); color: var(--teal); }

/* ═══════════════ タブレット ═══════════════ */
@media (max-width: 900px) {
  section { padding: 72px 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media img { height: clamp(240px, 40vh, 360px); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .kpi { grid-template-columns: repeat(2, 1fr); }
  .dcards, .dcards.c2, .voices { grid-template-columns: 1fr; }
  .spec { grid-template-columns: 1fr; gap: 16px; }
  .steps ol { grid-template-columns: repeat(2, 1fr); }
  .steps li::after { display: none; }
  .duo.trio { grid-template-columns: repeat(3, 1fr); }
  .band { grid-template-columns: 1fr; }
  .band.reverse .band-photo { order: 0; }
  .band-photo img { min-height: 300px; max-height: 46vh; }
  .band-body { padding: 56px 0; }
  .band-inner { max-width: var(--w); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .bar-nav { display: none; }
}

/* ═══════════════ スマホ ═══════════════ */
@media (max-width: 640px) {
  :root { --pad: 18px; }
  body { font-size: 15.5px; }
  section { padding: 56px 0; }

  .disclaimer { text-align: left; font-size: 12.5px; }

  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { display: grid; grid-template-columns: auto 1fr; align-items: baseline; column-gap: 14px; row-gap: 0; }
  .hero-stat span { grid-column: 1 / -1; }
  .hero-stat small { margin-top: 0; align-self: center; }
  .hero-actions .btn, .cta-actions .btn { flex: 1 1 100%; text-align: center; }

  .kpi { grid-template-columns: 1fr; }
  .kpi-item b { font-size: 44px; }

  .area-row { grid-template-columns: 1fr auto; gap: 8px 14px; }
  .area-row .rn { grid-column: 1 / -1; }
  .area-row .area-track { grid-column: 1; }
  .area-row .rd { grid-column: 2; }
  .area-row .rd em { font-size: 24px; }

  .daymeta { grid-template-columns: 1fr; }
  .day li { grid-template-columns: 64px 1fr; gap: 14px; }
  .day li::before { left: 27px; }
  .day .t { font-size: 17px; }
  .day .t::after { right: -19px; top: 10px; width: 9px; height: 9px; }

  .duo, .duo.trio { grid-template-columns: 1fr; }
  .duo img { height: 300px; }

  .dl > div { grid-template-columns: minmax(0, 1fr); gap: 8px; padding: 20px 0; }
  .steps ol { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  footer { padding-bottom: 110px; }

  .applybar { display: flex; }
  .bar-cta { padding: 9px 20px 9px 14px; font-size: 13px; }
  .logo-ja { font-size: 16px; }
}
