/* ==========================================================
   株式会社颯設備工業 採用LP — css/style.css（STEP3 完成版）
   カラーテーマ：ネイビー × スカイブルー × オレンジアクセント
   ========================================================== */

/* ----------------------------------------------------------
   カスタムプロパティ（デザイントークン）
   ---------------------------------------------------------- */
:root {
  /* Brand Colors */
  --color-primary:     #0a2e52;   /* ネイビー：信頼・誠実 */
  --color-primary-mid: #1a5c9a;   /* ミッドブルー */
  --color-primary-lt:  #e8f2fc;   /* 薄ブルー背景 */
  --color-accent:      #f07d00;   /* オレンジ：活気・冒険 */
  --color-accent-dk:   #d06500;   /* ダークオレンジ（ホバー） */
  --color-text:        #1a1a2e;   /* 本文テキスト */
  --color-text-mid:    #4a4a6a;   /* サブテキスト */
  --color-text-inv:    #ffffff;
  --color-bg:          #ffffff;
  --color-bg-sub:      #f4f7fb;   /* セクション背景（偶数） */
  --color-border:      #dde5f0;
  --color-placeholder: #bdc8d8;

  /* Typography */
  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;

  /* Spacing */
  --section-py:  80px;
  --section-py-sm: 52px;

  /* Transition */
  --tr: 0.25s ease;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* ----------------------------------------------------------
   リセット・ベース
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 70px; /* ヘッダー分オフセット */
}

body {
  font-family: var(--font-base);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

strong {
  font-weight: 700;
  color: var(--color-accent);
}

/* ----------------------------------------------------------
   アスペクト比ヘルパー
   ---------------------------------------------------------- */
.ratio-16-9 { position: relative; width: 100%; padding-top: 56.25%; }
.ratio-4-3  { position: relative; width: 100%; padding-top: 75%; }

/* ----------------------------------------------------------
   画像ラッパー共通（img-wrap + ratio-* で比率を固定）
   ---------------------------------------------------------- */
.img-wrap {
  position: relative;
  overflow: hidden;
}

/* cover-img：ラッパー内を完全に覆う */
.cover-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* スライダー画像（固定幅コンテナ内で4:3） */
.slide-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ----------------------------------------------------------
   コンテナ
   ---------------------------------------------------------- */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ----------------------------------------------------------
   セクション共通
   ---------------------------------------------------------- */
.section { padding: var(--section-py) 0; }
.section:nth-of-type(even) { background: var(--color-bg-sub); }

/* セクションタイトル */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 18px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
}

/* ----------------------------------------------------------
   HEADER
   ---------------------------------------------------------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-primary);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  height: 68px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo {
  font-size: 1rem;
  font-weight: 900;
  color: var(--color-text-inv);
  letter-spacing: 0.03em;
  white-space: nowrap;
  line-height: 1.3;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.nav-list a {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--tr), color var(--tr);
  white-space: nowrap;
}
.nav-list a:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}

/* 応募するリンクはオレンジ */
.nav-list li:last-child a {
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  padding: 7px 14px;
}
.nav-list li:last-child a:hover {
  background: var(--color-accent-dk);
}

/* ハンバーガーボタン */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 210;
}
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ハンバーガー ON 状態 */
.hamburger-btn.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.is-active span:nth-child(2) { opacity: 0; }
.hamburger-btn.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------
   FV（ファーストビュー）
   ---------------------------------------------------------- */
#fv { background: var(--color-primary); }

#fv .fv-bg {
  /* 16:9 コンテナ */
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: var(--color-primary);
}

/* FV実写真 */
.fv-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* FVオーバーレイ：写真に重ねて文字を読みやすくする */
.fv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,46,82,.72) 0%,
    rgba(10,46,82,.55) 50%,
    rgba(10,46,82,.45) 100%
  );
  z-index: 1;
}

.fv-copy {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 88%;
  max-width: 860px;
  color: var(--color-text-inv);
  z-index: 2; /* .fv-overlay(z-index:1) より上 */
}

.fv-copy h1 {
  font-size: clamp(1.6rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
  letter-spacing: 0.02em;
}

.fv-sub {
  font-size: clamp(0.82rem, 1.5vw, 1.05rem);
  font-weight: 400;
  line-height: 1.9;
  margin-bottom: 32px;
  color: rgba(255,255,255,.88);
}

/* ----------------------------------------------------------
   CTAボタン共通
   ---------------------------------------------------------- */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-base);
  cursor: pointer;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr);
  min-width: 200px;
  text-align: center;
  border: none;
}
.btn:hover { transform: translateY(-3px); }

.btn-tel {
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.btn-tel:hover { box-shadow: 0 8px 28px rgba(0,0,0,.28); background: #f0f8ff; }

.btn-contact {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(240,125,0,.35);
}
.btn-contact:hover { background: var(--color-accent-dk); box-shadow: 0 8px 28px rgba(240,125,0,.45); }

.btn-submit {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(240,125,0,.35);
  padding: 18px 64px;
  font-size: 1.05rem;
  border-radius: 50px;
}
.btn-submit:hover { background: var(--color-accent-dk); box-shadow: 0 8px 28px rgba(240,125,0,.45); transform: translateY(-2px); }

/* ----------------------------------------------------------
   CTA帯
   ---------------------------------------------------------- */
.cta-band {
  background: var(--color-primary);
  padding: 60px 0;
  text-align: center;
}
.cta-lead {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 28px;
}

/* ----------------------------------------------------------
   FV下スライダー（CSS @keyframes 無限ループ）
   ---------------------------------------------------------- */
#fv-slider {
  background: var(--color-primary);
  padding: 0 0 40px;
  overflow: hidden;
}

/* スライダービューポート：はみ出し非表示 */
.slider-viewport {
  overflow: hidden;
  width: 100%;
}

/* スライドカード幅（レスポンシブ変数） */
:root { --slide-w: 280px; --slide-gap: 16px; }

/* トラック：10枚 × 2セット = 20枚分の幅を確保 */
.slider-track {
  display: flex;
  gap: var(--slide-gap);
  width: calc((var(--slide-w) + var(--slide-gap)) * 20);
  animation: slide-loop 36s linear infinite;
  will-change: transform;
}

/* ループキーフレーム：10枚分だけ左にずらしてリセット */
@keyframes slide-loop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc((var(--slide-w) + var(--slide-gap)) * -10)); }
}

.slide-item {
  flex: 0 0 var(--slide-w);
  width: var(--slide-w);
  /* 4:3 比率：幅 280px → 高さ 210px */
  height: calc(var(--slide-w) * 0.75);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
  position: relative; /* slide-img の absolute 基準 */
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   会社について
   ---------------------------------------------------------- */
#about { background: var(--color-bg); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-photo { border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 8px 32px rgba(10,46,82,.12); }

.about-text p {
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--color-text-mid);
}
.about-text p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------
   こんな人歓迎
   ---------------------------------------------------------- */
#welcome { background: var(--color-bg-sub); }

.welcome-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.welcome-item {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 40px 28px 36px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(10,46,82,.08);
  transition: transform var(--tr), box-shadow var(--tr);
  border-top: 4px solid var(--color-accent);
}
.welcome-item:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(10,46,82,.14); }

.welcome-icon {
  display: block;
  font-size: 2.8rem;
  margin-bottom: 16px;
  line-height: 1;
}

.welcome-item p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
}

/* ----------------------------------------------------------
   仕事内容（ジグザグ）
   ---------------------------------------------------------- */
#jobs { background: var(--color-bg); }

.job-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--color-border);
}
.job-block:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

/* 偶数：写真右 */
.job-block--even .job-photo { order: 2; }
.job-block--even .job-text  { order: 1; }

.job-photo { border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 8px 32px rgba(10,46,82,.1); }

.job-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.4;
}
.job-text p {
  font-size: 0.97rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--color-text-mid);
  margin-bottom: 14px;
}
.job-text p:last-child { margin-bottom: 0; }

/* 番号バッジ */
.job-block { counter-increment: job-cnt; position: relative; }
.job-text::before {
  content: "0" counter(job-cnt);
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-primary-lt);
  line-height: 1;
  margin-bottom: 8px;
}
#jobs .container { counter-reset: job-cnt; }

/* ----------------------------------------------------------
   カード共通（入社後の流れ・会社の魅力・メンバー紹介）
   ---------------------------------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10,46,82,.08);
  transition: transform var(--tr), box-shadow var(--tr);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(10,46,82,.15); }

.card-step {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.card-photo { border-radius: 0; overflow: hidden; }

.card-body {
  padding: 24px 22px;
  flex: 1;
}

.card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.45;
}

.card-body p {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-mid);
  margin-bottom: 10px;
}
.card-body p:last-child { margin-bottom: 0; }

/* 入社後の流れ：背景色オーバーライド */
#flow { background: var(--color-bg-sub); }
#flow .card { background: var(--color-bg); }

/* 会社の魅力 */
#merit { background: var(--color-bg); }

/* メンバー紹介 */
#member { background: var(--color-bg-sub); }
#member .card { background: var(--color-bg); }
.member-card .card-body h3 { color: var(--color-primary-mid); }
.member-card .card-body p {
  font-size: 0.88rem;
  line-height: 1.85;
  font-style: normal;
  position: relative;
  padding-left: 1.2em;
}
.member-card .card-body p::before { content: ""; position: absolute; left: 0; }

/* ----------------------------------------------------------
   1日の流れ（タイムライン 1枚カード）
   ---------------------------------------------------------- */
#daily { background: var(--color-bg); }

.timeline-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 32px rgba(10,46,82,.1);
  padding: 48px 56px;
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
}

.timeline-list { list-style: none; }

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 18px 0;
  position: relative;
}
.timeline-item::after {
  content: "";
  position: absolute;
  bottom: 0; left: 62px;
  width: calc(100% - 62px);
  height: 1px;
  background: var(--color-border);
}
.timeline-item:last-child::after { display: none; }

.timeline-time {
  flex: 0 0 56px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
  padding-top: 2px;
}

/* タイムライン縦線 */
.timeline-item::before {
  content: "";
  position: absolute;
  left: 52px;
  top: 28px;
  bottom: -18px;
  width: 2px;
  background: var(--color-border);
}
.timeline-item:last-child::before { display: none; }

/* ドット */
.timeline-time::after {
  display: none; /* JSなしでシンプルに */
}

.timeline-text {
  font-size: 0.97rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text);
}

/* ----------------------------------------------------------
   おわりに
   ---------------------------------------------------------- */
#closing { background: var(--color-bg-sub); }

.closing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.closing-photo { border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 8px 32px rgba(10,46,82,.12); }

.closing-text p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--color-text-mid);
  margin-bottom: 18px;
}
.closing-text p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------
   募集要項（白カード・2カラム・薄グレー1px区切り線）
   ---------------------------------------------------------- */
#requirements { background: var(--color-bg); }

.requirements-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10,46,82,.06);
}

.req-table { width: 100%; }

.req-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid #eef1f7;
}
.req-row:last-child { border-bottom: none; }

.req-label {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 0.9rem;
  background: #f5f8fd;
  border-right: 1px solid #eef1f7;
  color: var(--color-primary);
  vertical-align: top;
  align-self: start;
}

.req-detail {
  padding: 20px 24px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-mid);
  line-height: 1.75;
}
.req-detail p { margin-bottom: 6px; }
.req-detail p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------
   応募フォーム
   ---------------------------------------------------------- */
#contact { background: var(--color-primary); }
#contact .section-title { color: #fff; }
#contact .section-title::after { background: var(--color-accent); }

.form-lead {
  text-align: center;
  color: rgba(255,255,255,.8);
  font-size: 0.95rem;
  margin-bottom: 40px;
  font-weight: 400;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-group { margin-bottom: 28px; }

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,.9);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-base);
  font-weight: 400;
  background: rgba(255,255,255,.1);
  color: #fff;
  outline: none;
  transition: border-color var(--tr), background var(--tr);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,.4); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--color-accent);
  background: rgba(255,255,255,.18);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-hint {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
}

.req-badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
.opt-badge {
  display: inline-block;
  background: rgba(255,255,255,.3);
  color: rgba(255,255,255,.8);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

.form-submit { text-align: center; margin-top: 12px; }

/* ----------------------------------------------------------
   フェードイン（スクロール連動）
   ---------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------
   レスポンシブ（768px以下）
   ---------------------------------------------------------- */
@media (max-width: 768px) {

  :root {
    --section-py: var(--section-py-sm);
    --slide-w: 200px;
    --slide-gap: 12px;
  }

  /* ヘッダー */
  #global-nav {
    display: none;
    position: fixed;
    top: 68px; left: 0;
    width: 100%;
    background: var(--color-primary);
    z-index: 190;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    padding: 16px 0 24px;
  }
  #global-nav.is-open { display: block; }

  .nav-list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .nav-list a {
    display: block;
    padding: 14px 24px;
    font-size: 0.95rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-list li:last-child a {
    margin: 12px 20px 0;
    border-radius: 50px;
    border-bottom: none;
    text-align: center;
  }

  .hamburger-btn { display: flex; }

  /* FV：モバイルはコンテンツ量に合わせて高さを自動伸長 */
  #fv .fv-bg {
    padding-top: 0;
    min-height: 80svh;
    height: auto;
  }
  .fv-copy {
    position: relative;
    top: auto; left: auto;
    transform: none;
    width: 92%;
    margin: 0 auto;
    padding: 80px 0 36px;
  }
  .fv-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .fv-copy h1 { font-size: clamp(1.25rem, 5.5vw, 1.7rem); margin-bottom: 14px; }
  .fv-sub { font-size: 0.8rem; line-height: 1.75; margin-bottom: 24px; }

  /* CTAボタン */
  .btn { min-width: 150px; font-size: 0.9rem; padding: 14px 22px; }

  /* 2カラム → 1カラム */
  .about-inner,
  .closing-inner { grid-template-columns: 1fr; gap: 28px; }

  /* こんな人歓迎：1カラム */
  .welcome-list { grid-template-columns: 1fr; gap: 16px; }

  /* 仕事内容：スマホは必ず写真→テキスト順 */
  .job-block {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
    padding-bottom: 48px;
  }
  .job-block .job-photo { order: 1 !important; }
  .job-block .job-text  { order: 2 !important; }
  .job-text::before { font-size: 2.5rem; }

  /* カード：1カラム */
  .cards-grid { grid-template-columns: 1fr; gap: 20px; }

  /* タイムライン */
  .timeline-card { padding: 28px 20px; }
  .timeline-item { gap: 16px; }
  .timeline-item::before { left: 44px; }
  .timeline-item::after { left: 52px; width: calc(100% - 52px); }
  .timeline-time { flex: 0 0 46px; font-size: 0.9rem; }
  .timeline-text { font-size: 0.9rem; }

  /* 募集要項 */
  .req-row { grid-template-columns: 1fr; }
  .req-label { border-right: none; border-bottom: 1px solid #eef1f7; padding: 14px 16px; }
  .req-detail { padding: 14px 16px; }

  /* セクションタイトル */
  .section-title { font-size: 1.4rem; margin-bottom: 32px; }

  /* フォーム */
  .form-input, .form-textarea { padding: 12px 14px; }
}

/* ----------------------------------------------------------
   スライダー：アニメーション停止（アクセシビリティ）
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .slider-track { animation: none; }
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; transition: none; }
}
