/* ============================================================
   石川モータース 採用LP  style.css
   白背景 / ネイビー文字 / ゴールド細アクセント
   スマホファースト・レスポンシブ
   ============================================================ */

/* ---------- 変数 ---------- */
:root {
  /* Color（白ベース×紺メイン×ゴールド細アクセント） */
  --navy:        #1b2a4d;   /* メインカラー・見出し */
  --navy-deep:   #122044;   /* 濃いネイビー（背景） */
  --navy-soft:   #46566f;   /* 補助テキスト */
  --gold:        #b8924a;   /* ゴールド細アクセント */
  --gold-light:  #c9a86a;
  --white:       #ffffff;
  --paper:       #f4f7fb;   /* 区切り用の淡いクールグレー */
  --paper-2:     #e9eef6;   /* もう少し濃い淡色 */
  --line:        #e3e8f0;   /* 罫線 */
  --line-navy:   #d4dbe6;

  /* Typography（見出し・本文ともに太ゴシック） */
  --font-sans: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --font-serif: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;

  /* Layout */
  --container: 1100px;
  --container-narrow: 760px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 14px 40px rgba(28, 43, 70, 0.08);
  --shadow-sm: 0 6px 20px rgba(28, 43, 70, 0.06);

  /* Spacing */
  --section-py: 72px;
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--white);
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: 0.02em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.5; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* ---------- レイアウト共通 ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}
.container.narrow { max-width: var(--container-narrow); }

.section { padding: var(--section-py) 0; }

.section-head { text-align: center; margin-bottom: 44px; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin: 0 0 14px;
}
.eyebrow-gold { color: var(--gold-light); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5.4vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.section-desc {
  margin-top: 16px;
  color: var(--navy-soft);
  font-size: 0.98rem;
}

/* リード文ブロック */
.lead-block p { color: var(--navy-soft); }
.lead-block { margin-top: 22px; }
.lead-center { max-width: 680px; margin-left: auto; margin-right: auto; }

.emphasis {
  font-weight: 500;
  color: var(--navy);
}

.sp-br { display: inline; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  padding: 16px 34px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 10px 26px rgba(184, 146, 74, 0.38);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-lg { padding: 18px 46px; font-size: 1.05rem; }
.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-text {
  color: var(--navy-soft);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 10px 4px;
}
.btn-text:hover { color: var(--gold); }

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.site-header { border-bottom: 1px solid var(--line); box-shadow: 0 1px 0 rgba(184,146,74,0.25); }
.brand { display: flex; flex-direction: row; align-items: center; gap: 10px; }
.brand-logo { width: 40px; height: 40px; flex-shrink: 0; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.3; }
.brand-name {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.brand-sub { font-size: 0.66rem; color: var(--navy-soft); letter-spacing: 0.06em; }

/* ヘッダーナビ */
.site-nav {
  display: none;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  margin-right: 26px;
}
.site-nav a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.site-nav a:hover { color: var(--gold); }
.site-nav a:hover::after { width: 100%; }
.header-cta { white-space: nowrap; }

@media (min-width: 880px) {
  .site-nav { display: flex; }
}

/* ============================================================
   1. ファーストビュー
   ============================================================ */
/* ============================================================
   ヒーロー（白背景・紺文字・金アクセント／テキスト左・写真右）
   モバイル＝写真を上に敷き、下にテキスト
   ============================================================ */
.hero {
  position: relative;
  background: var(--white);
  padding: 0 0 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-inner { position: relative; z-index: 2; }
.hero-copy { max-width: 560px; display: flex; flex-direction: column; }

/* 写真（モバイル：上部／PC：右側）＝会話シーン */
.hero-photo-bg {
  order: -1;                 /* スマホ：写真をFVの先頭へ */
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 0 26px;
  background: url("../assets/hero-sp.jpg") 38% 20% / cover no-repeat;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 8vw, 2.6rem);
  font-weight: 900; line-height: 1.34; color: var(--navy);
  letter-spacing: 0.01em; margin: 0 0 18px;
}
.hero-title .hl { color: var(--gold); }
/* SEO用に会社名をH1へ残しつつ、画面上は非表示 */
.hero-h1-label {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
/* 訴求チップ3つ（白背景用） */
.hero-chips {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  list-style: none; padding: 0; margin: 0 0 24px;
}
.hero-chip {
  min-width: 0; box-sizing: border-box;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
  background: var(--paper); border: 1px solid var(--line-navy);
  border-radius: 12px; padding: 12px 4px;
}
.hero-chip-ic {
  width: 36px; height: 36px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex: 0 0 auto;
}
.hero-chip-tx b { display: block; color: var(--navy); font-size: 0.84rem; font-weight: 800; line-height: 1.25; }
.hero-chip-tx span { display: block; color: var(--navy-soft); font-size: 0.64rem; margin-top: 2px; line-height: 1.3; }
.hero-region {
  color: var(--navy); font-weight: 500;
  font-size: 0.98rem; line-height: 1.7;
  margin: 0 0 20px; padding-left: 14px; border-left: 3px solid var(--gold);
}
.hero-emphasis {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 4.4vw, 1.35rem); font-weight: 800;
  color: var(--navy); line-height: 1.6; margin: 0 0 18px;
}
.hero-lead {
  color: var(--navy-soft); font-size: 0.98rem; line-height: 1.9;
  max-width: 34em; margin: 0 0 28px;
}

.hero-actions { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.hero-actions .btn-line { width: 100%; max-width: 360px; padding: 16px 30px; font-size: 1.05rem; }
.hero-welcome {
  margin: 16px 0 0; padding-left: 12px; border-left: 3px solid var(--gold);
  color: var(--navy-soft); font-size: 0.9rem; font-weight: 700;
}

/* ============================================================
   2. 募集ポジション（カード）
   ============================================================ */
.section-positions-intro { background: var(--white); }
.position-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 8px;
}
.position-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border-top: 3px solid var(--gold);
}
.position-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-navy);
}
.card-photo-wrap { position: relative; }
.card-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.img-note {
  position: absolute;
  right: 8px;
  bottom: 8px;
  background: rgba(20, 32, 58, 0.62);
  color: #fff;
  font-size: 0.64rem;
  letter-spacing: 0.02em;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.2;
  pointer-events: none;
}
.card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-no {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.card-title {
  font-size: 1.18rem;
  color: var(--navy);
  margin: 8px 0 12px;
  line-height: 1.5;
}
.card-text { color: var(--navy-soft); font-size: 0.96rem; margin-bottom: 16px; }
.card-link { color: var(--gold); font-weight: 700; font-size: 0.9rem; margin-top: auto; }
.card-link:hover { color: var(--navy); }

/* ============================================================
   セクション内の写真（共通）
   ============================================================ */
.section-photo {
  margin: 36px 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.section-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.section-photo figcaption {
  font-size: 0.85rem;
  color: var(--navy-soft);
  padding: 12px 18px;
  background: var(--white);
  text-align: center;
}
.cap-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.cap-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--navy-soft);
}

/* 撮影予定プレースホルダー枠 */
.photo-placeholder {
  margin: 36px 0 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  border: 2px dashed var(--line-navy);
  background:
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(184,146,74,0.05) 14px, rgba(184,146,74,0.05) 28px),
    var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 20px;
}
.ph-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--gold);
  padding: 5px 14px;
  border-radius: 999px;
}
.ph-text {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 3vw, 1.15rem);
  color: var(--navy-soft);
  line-height: 1.7;
  letter-spacing: 0.04em;
}

/* 働き方カードごとの写真 */
.role-photo {
  margin: 0 0 26px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.role-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ============================================================
   数字で見る石川モータース
   ============================================================ */
.section-stats {
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(201,168,106,0.12), transparent 55%),
    var(--navy-deep);
  padding: 56px 0 60px;
}
.stats-eyebrow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gold-light);
  margin: 0 0 10px;
}
.stats-title {
  text-align: center;
  font-size: clamp(1.35rem, 4.6vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.03em;
  margin: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 12px;
  margin-top: 34px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 11vw, 3.2rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-unit { font-size: 0.42em; font-weight: 700; margin-left: 3px; }
.stat-num.stat-text { font-size: clamp(1.5rem, 6vw, 2rem); line-height: 1.25; }
.stat-label {
  display: block;
  margin-top: 12px;
  font-size: 0.8rem;
  color: #c8d2e2;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .stat + .stat { border-left: 1px solid rgba(255,255,255,0.12); }
}

/* ============================================================
   3. 暮らしまで見る整備
   ============================================================ */
.section-philosophy { background: var(--paper); }
.philosophy-body { color: var(--navy-soft); font-size: 1.02rem; }
.philosophy-body .emphasis { color: var(--navy); font-size: 1.08rem; }
.quote-list {
  margin: 26px auto;
  display: grid;
  gap: 12px;
  max-width: 32em;
}
.quote-list li {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--navy);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   4. 3つの働き方（詳細）
   ============================================================ */
.section-roles { background: var(--white); }
.role {
  border-top: 1px solid var(--line);
  padding-top: 44px;
  margin-top: 44px;
}
.role:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.role-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 26px;
}
.role-no {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.role-title { font-size: 1.4rem; color: var(--navy); margin-bottom: 6px; }
.role-catch { color: var(--gold); font-weight: 600; font-size: 1rem; margin: 0; }
.role-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.role-text { color: var(--navy-soft); }
.role-text .role-closing { color: var(--navy); font-weight: 500; }
.role-side { display: grid; gap: 16px; }

.mini-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 22px;
}
.mini-title {
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.04em;
}
.mini-card-quote { background: var(--navy-deep); color: #e7ecf5; border: none; }
.mini-card-quote p { font-size: 0.95rem; line-height: 1.95; margin: 0; }

/* リスト類 */
.check-list li, .dot-list li, .cross-list li {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 9px;
  font-size: 0.95rem;
  color: var(--navy);
}
.check-list li:last-child, .dot-list li:last-child, .cross-list li:last-child { margin-bottom: 0; }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
}
.dot-list li::before {
  content: "";
  position: absolute; left: 0.2em; top: 0.75em;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.cross-list li::before {
  content: "−";
  position: absolute; left: 0.1em; top: 0;
  color: var(--navy-soft);
  font-weight: 700;
}
.dot-list.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 18px;
}
.dot-list.two-col li { margin-bottom: 0; }

/* ============================================================
   5. タイムライン
   ============================================================ */
.section-timeline { background: var(--paper); }
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 8px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 90px;
  top: 6px; bottom: 6px;
  width: 2px;
  background: var(--line);
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  padding-bottom: 28px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-time {
  text-align: right;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--navy);
  padding-top: 2px;
  white-space: nowrap;
}
.timeline-body {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.timeline-body::before { /* ドット */
  content: "";
  position: absolute;
  left: -27px; top: 22px;
  width: 13px; height: 13px;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 50%;
  z-index: 1;
}
.timeline-title { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.timeline-body p { font-size: 0.93rem; color: var(--navy-soft); margin: 0; }

/* ============================================================
   6. STEP
   ============================================================ */
.section-steps { background: var(--white); }
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: step;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
}
.step-no {
  display: inline-block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--navy);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.step-title { font-size: 1.12rem; color: var(--navy); margin-bottom: 10px; }
.step p { color: var(--navy-soft); font-size: 0.95rem; margin: 0; }

.steps-note {
  margin-top: 30px;
  background: var(--navy-deep);
  color: #e7ecf5;
  border-radius: var(--radius);
  padding: 34px 30px;
  text-align: center;
}
.steps-note-title {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.steps-note p { color: #c8d2e2; font-size: 0.96rem; max-width: 40em; margin: 0 auto 1em; }

/* ============================================================
   7. 働き方
   ============================================================ */
.section-style { background: var(--paper); }
.style-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.style-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.style-card-title {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.style-card p { color: var(--navy-soft); font-size: 0.97rem; }
.style-card .dot-list { margin: 16px 0; }

/* ============================================================
   8. インタビュー / 動画プレースホルダー
   ============================================================ */
.section-interview { background: var(--white); }
.interview-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}
.interview-card .video-embed {
  border-radius: 0;
  box-shadow: none;
}
.interview-text { padding: 24px 26px 26px; }
.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--navy-deep), #243a5e);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
}
.video-placeholder::after { /* 斜めの光沢 */
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 50% 30%, rgba(201,168,106,0.16), transparent 70%);
}
.play-icon {
  position: relative;
  z-index: 1;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.6);
}
.play-icon::before {
  content: "";
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--white);
}
.video-label {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.85);
  font-size: 0.84rem;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.video-wide { margin: 26px 0; }

/* YouTube埋め込み（16:9・レスポンシブ） */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: var(--shadow-sm);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* クリックで再生（サムネ → iframe差し替え） */
.video-facade { cursor: pointer; }
.video-facade .video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-facade .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(18, 30, 58, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.9);
  transition: background 0.2s ease, transform 0.2s ease;
}
.video-facade .video-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
}
.video-facade:hover .video-play,
.video-facade:focus-visible .video-play {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.06);
}
.video-facade:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.interview-meta {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.interview-quote {
  font-family: var(--font-serif);
  font-size: 1.04rem;
  color: var(--navy);
  line-height: 1.95;
  margin: 0;
}

/* ============================================================
   9. 大切にしていること
   ============================================================ */
.section-values { background: var(--paper); }
.values-body { color: var(--navy-soft); }
.values-body .emphasis { color: var(--navy); font-size: 1.06rem; }
.value-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}
.value-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px 14px 44px;
  position: relative;
  color: var(--navy);
  font-weight: 500;
  font-size: 1rem;
}
.value-list li::before {
  content: "";
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============================================================
   10. 歓迎 / 合わない（2カラム）
   ============================================================ */
.section-fit { background: var(--white); }
.fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.fit-card {
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--line);
}
.fit-welcome { background: var(--paper); border-top: 3px solid var(--gold); }
.fit-unfit { background: var(--white); border-top: 3px solid var(--line-navy); }
.fit-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.fit-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}
.fit-mark-x { background: var(--navy-soft); }
.fit-lead { color: var(--navy-soft); font-size: 0.94rem; margin-bottom: 16px; }
.fit-note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--navy-soft);
  font-size: 0.9rem;
}

/* ============================================================
   12. 社長メッセージ
   ============================================================ */
.section-message { background: var(--paper); }
.message-lead { text-align: center; margin-bottom: 8px; }
.message-pull {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 4.4vw, 1.5rem);
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.message-lead p:last-child { color: var(--navy-soft); font-size: 0.95rem; }
.message-body {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  color: var(--navy-soft);
}
.message-heading {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.6;
}
.message-body .emphasis { color: var(--navy); font-size: 1.04rem; }
.message-sign {
  margin-top: 22px;
  text-align: right;
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 600;
}

/* ============================================================
   13. 最終CTA
   ============================================================ */
.section-contact {
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(201,168,106,0.14), transparent 55%),
    var(--navy-deep);
  padding: 88px 0;
}
.contact-box { text-align: center; }
.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 6vw, 2.3rem);
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  line-height: 1.5;
}
.contact-text {
  color: #c8d2e2;
  max-width: 34em;
  margin: 0 auto 32px;
  font-size: 1rem;
}
.section-contact .btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 12px 30px rgba(184,146,74,0.4);
}
.section-contact .btn-primary:hover { background: var(--gold-light); }
.contact-tel {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.contact-tel-label {
  color: #c8d2e2;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.contact-tel-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 7vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.contact-tel-num:hover { color: var(--gold-light); }
.contact-tel-note { color: #8a98ad; font-size: 0.82rem; margin-top: 6px; }
.contact-note { color: #8a98ad; font-size: 0.82rem; margin-top: 18px; }
.contact-sub { color: #c8d2e2; font-size: 0.9rem; line-height: 1.75; margin: 14px 0 0; }

/* LINEボタン画像＋QR */
.contact-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.line-img-link {
  display: inline-block;
  width: 100%;
  max-width: 360px;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.line-img-link img { width: 100%; height: auto; display: block; }
.line-img-link:hover { transform: translateY(-2px); filter: brightness(1.05); }
.contact-qr {
  margin: 0;
  background: var(--white);
  padding: 12px 12px 8px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.contact-qr img { width: 140px; height: 140px; display: block; }
.contact-qr figcaption {
  margin-top: 6px;
  font-size: 0.72rem;
  color: var(--navy-soft);
  line-height: 1.4;
}

@media (min-width: 600px) {
  .contact-line { flex-direction: row; justify-content: center; align-items: center; gap: 28px; }
  .line-img-link { max-width: 340px; }
}

/* ============================================================
   会社概要 + 地図
   ============================================================ */
.section-company { background: var(--white); }
.company-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}
.company-table {
  margin: 0;
  border-top: 1px solid var(--line);
}
.company-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}
.company-row dt {
  margin: 0;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}
.company-row dd {
  margin: 0;
  color: var(--navy-soft);
  font-size: 0.97rem;
}
.link-tel {
  color: var(--navy);
  font-weight: 700;
  border-bottom: 1px solid var(--gold);
}
.link-tel:hover { color: var(--gold); }
.map-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
}
.map-link:hover { color: var(--navy); }
.company-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.company-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-tel { color: #d8e0ec; border-bottom: 1px solid rgba(255,255,255,0.3); }
.footer-tel:hover { color: var(--white); }
.footer-end { display: flex; flex-direction: column; gap: 4px; }
.footer-updated { font-size: 0.74rem; color: #8a98ad; margin: 0; }
.footer-note-img { font-size: 0.72rem; color: #8a98ad; margin: 0 0 2px; }

/* ============================================================
   募集要項
   ============================================================ */
.section-requirements { background: var(--white); }
.req-intro {
  color: var(--navy-soft);
  margin-bottom: 28px;
  text-align: center;
  max-width: 40em;
  margin-left: auto;
  margin-right: auto;
}
.req-table {
  margin: 0;
  border-top: 2px solid var(--navy);
}
.req-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}
.req-row dt {
  margin: 0;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
  position: relative;
  padding-left: 14px;
}
.req-row dt::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.req-row dd {
  margin: 0;
  color: var(--navy-soft);
  font-size: 0.96rem;
  line-height: 1.85;
}
.req-note { font-size: 0.85rem; color: var(--navy-soft); opacity: 0.9; }

/* ============================================================
   FAQ
   ============================================================ */
.section-faq { background: var(--paper); }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 52px 20px 22px;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 700;
  margin-right: 10px;
}
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 22px; top: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-body {
  padding: 0 22px 22px;
  color: var(--navy-soft);
  font-size: 0.95rem;
}
.faq-body p { margin: 0; }

/* ============================================================
   指名検索 促進文
   ============================================================ */
.contact-search {
  margin-top: 30px;
  color: #c8d2e2;
  font-size: 0.92rem;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.85;
}
.contact-search strong { color: var(--gold-light); font-weight: 700; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: #b9c3d4;
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-logo {
  width: 34px; height: 34px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-meta { font-size: 0.8rem; margin: 0; }
.footer-copy { font-size: 0.76rem; color: #8a98ad; margin: 0; }

/* ============================================================
   スマホ固定CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 16px; right: 16px;
  bottom: 14px;
  z-index: 60;
  display: none;            /* JSで表示制御 */
  align-items: center;
  justify-content: center;
  background: #06C755;       /* LINEグリーン */
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(6,199,85,0.4);
  text-align: center;
  transform: translateY(120%);
  transition: transform 0.3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }

/* LINEボタン（緑） */
.btn-line {
  background: #06C755;
  color: #fff;
  box-shadow: 0 10px 26px rgba(6,199,85,0.38);
}
.btn-line:hover { background: #05b34c; transform: translateY(-2px); }
.btn-line-icon,
.sticky-line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #06C755;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 2px 6px;
  border-radius: 5px;
  margin-right: 9px;
}

/* ============================================================
   スクロール表示アニメ（控えめ）
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .sticky-cta { transition: none; }
}

/* ============================================================
   レスポンシブ（タブレット〜PC）
   ============================================================ */
@media (min-width: 600px) {
  .position-cards { grid-template-columns: repeat(3, 1fr); }
  .fit-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  :root { --section-py: 100px; }
  body { font-size: 17px; }
  .container { padding: 0 32px; }

  /* PC：テキスト左・写真右（会話シーン）。写真の左端を白へなじませる */
  .hero { padding: 0; min-height: 560px; display: flex; flex-direction: row; align-items: center; }
  .hero-copy { max-width: 560px; padding: 84px 0; }
  .hero-photo-bg {
    order: 0;
    position: absolute; top: 0; right: 0; bottom: 0; left: auto;
    width: 54%; height: 100%;
    margin: 0; aspect-ratio: auto;
    background-position: 32% 26%;   /* 社長の顔を左フェードから外して見せる */
  }
  /* 左端を白へなじませる（社長の顔にかからないよう細めに） */
  .hero-photo-bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to right, var(--white) 0%, rgba(255,255,255,0) 8%);
    pointer-events: none;
  }
  .hero-actions { flex-direction: row; align-items: center; gap: 14px 22px; }
  .hero-actions .btn-line { width: auto; max-width: none; }
  .sp-br { display: none; }

  .role-grid { grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: start; }
  .style-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps-note { grid-column: 1 / -1; }
  .company-grid { grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
  .req-row { grid-template-columns: 180px 1fr; gap: 24px; align-items: start; }
  .req-row dt { padding-top: 0; }

  .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }

  /* PCでは固定CTA非表示 */
  .sticky-cta { display: none !important; }
}

@media (min-width: 980px) {
  .hero-title { font-size: 2.5rem; }
}

/* スマホのみ：固定CTAを使う */
@media (max-width: 767px) {
  .header-cta { display: none; }   /* 固定CTAと重複するため */
  .sticky-cta { display: flex; }
  body { padding-bottom: 4px; }

  /* スマホ：中央寄せの本文を左寄せに統一 */
  .section-desc,
  .lead-block,
  .req-intro,
  .steps-note,
  .steps-note p,
  .contact-text { text-align: left; }
  .lead-center,
  .req-intro,
  .contact-text,
  .steps-note p { margin-left: 0; margin-right: 0; }
  .steps-note { padding-left: 22px; padding-right: 22px; }

  /* 長い見出しを1行に収める（固定サイズで確実に） */
  #fit-title { font-size: 1.15rem; letter-spacing: 0; }
  .contact-title { font-size: 1.45rem; letter-spacing: 0; }
}

/* ===== ヒーロー内バッジ（要点3つ／2026-08-03 追加） ===== */
.hero-badges {
  order: 4;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.hero-badge {
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line-navy);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
}
.hero-badge b {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 2px;
}
.hero-badge span {
  display: block;
  color: var(--navy-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}
@media (min-width: 720px) {
  .hero-badges { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
