/* ==============================================
   水上工芸株式会社 採用LP
   css/style.css  — STEP3 デザイン完成版
   カラーテーマ：深みのある紺（信頼）× 琥珀オレンジ（活力）
   ============================================== */

/* ──────────────────────────────────────
   0. CSS カスタムプロパティ（デザイントークン）
─────────────────────────────────────── */
:root {
  /* ─ メインカラー ─ */
  --color-primary:   #8c7f75;   /* ウォームグレーブラウン */
  --color-primary-d: #6e6359;   /* より濃いブラウン */
  --color-primary-l: #a89f97;   /* やや明るいグレーブラウン */

  /* ─ アクセントカラー ─ */
  --color-accent:    #51d300;   /* ライムグリーン：成長・活力 */
  --color-accent-d:  #3ea300;   /* 濃いグリーン */
  --color-accent-l:  #7de840;   /* 薄いグリーン（hover用） */

  /* ─ テキスト ─ */
  --color-text:      #1a1a1a;   /* ほぼ黒 */
  --color-text-sub:  #3a3a3a;   /* やや薄い黒 */
  --color-text-inv:  #ffffff;   /* 白（反転） */

  /* ─ 背景 ─ */
  --color-bg:        #ffffff;
  --color-bg-light:  #e8dfd5;   /* ウォームベージュ */
  --color-bg-dark:   #4a3f38;   /* 深いブラウン（フッター等） */

  /* ─ ボーダー ─ */
  --color-border:    #c5bdb5;

  /* ─ タイポグラフィ ─ */
  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-bold:    700;
  --fw-black:   900;

  /* ─ スペーシング ─ */
  --section-py: 80px;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  /* ─ シャドウ ─ */
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.15);

  /* ─ トランジション ─ */
  --transition: .3s ease;
}

/* ──────────────────────────────────────
   1. リセット
─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 72px; /* fixed header offset */
}
body {
  font-family: var(--font-base);
  font-weight: var(--fw-regular);
  line-height: 1.85;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; }

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

/* ──────────────────────────────────────
   3. プレースホルダー（画像枠）/ 実画像共通
─────────────────────────────────────── */
.placeholder-16x9,
.placeholder-4x3 {
  background: #c8c8c8;
  width: 100%;
  display: block;
}
.placeholder-16x9 { aspect-ratio: 16 / 9; }
.placeholder-4x3  { aspect-ratio: 4  / 3; }

/* 実画像に差し替えた際の img タグ共通スタイル */
img.site-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* FV背景画像 */
.fv-bg img.site-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.fv-copy { z-index: 1; }
/* about・closing */
.about-img img.site-img,
.closing-img img.site-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
}
/* work ブロック */
.work-block__img img.site-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* member photo */
.member-photo img.site-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-sm);
}
/* スライダー */
.slide-item img.site-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ──────────────────────────────────────
   4. 背景ユーティリティ
─────────────────────────────────────── */
.bg-light { background: var(--color-bg-light); }

/* ──────────────────────────────────────
   5. HEADER
─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
  max-width: 1200px;
  margin-inline: auto;
}
.site-logo {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--color-text-inv);
  letter-spacing: .04em;
  white-space: nowrap;
}
.header-logo-img {
  display: block;
  height: 38px;
  width: auto;
}

/* ナビ */
.nav-list {
  display: flex;
  gap: 4px;
}
.nav-list a {
  display: block;
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: var(--fw-medium);
  color: #75695f;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-list a:hover {
  background: rgba(209,201,193,.25);
  color: var(--color-primary-d);
}

/* ハンバーガーボタン（PC非表示） */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 42px;
  height: 42px;
}
.hamburger-btn span {
  display: block;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

/* スマホ：ドロワーナビ */
@media (max-width: 768px) {
  .global-nav {
    display: none;
    position: fixed;
    inset: 68px 0 0 0;
    background: #ffffff;
    z-index: 190;
    overflow-y: auto;
    padding: 24px 0 40px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
  }
  .global-nav.is-open { display: block; }
  .hamburger-btn { display: flex; }
  .nav-list {
    flex-direction: column;
    gap: 0;
  }
  .nav-list a {
    padding: 18px 32px;
    font-size: 1rem;
    border-radius: 0;
    color: #75695f;
    border-bottom: 1px solid var(--color-border);
  }
  .nav-list li:last-child a { border-bottom: none; }
}

/* ──────────────────────────────────────
   6. FV（ファーストビュー）
─────────────────────────────────────── */
.fv-section { position: relative; }

.fv-bg {
  position: relative;
  width: 100%;
  background: #c8c8c8;
  min-height: calc(100vh - 68px); /* ヘッダー高さ分を引いた全画面 */
  overflow: hidden;
}
.fv-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(
    to bottom,
    rgba(30,25,20,.45) 0%,
    rgba(30,25,20,.65) 60%,
    rgba(30,25,20,.80) 100%
  );
  color: var(--color-text-inv);
}
.fv-catch {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: var(--fw-black);
  letter-spacing: .06em;
  line-height: 1.35;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.fv-sub {
  font-size: clamp(.875rem, 1.6vw, 1.1rem);
  font-weight: var(--fw-medium);
  line-height: 1.9;
  margin-bottom: 32px;
  opacity: .9;
}
.fv-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ──────────────────────────────────────
   7. ボタン共通
─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: var(--fw-bold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* 電話ボタン */
.btn-phone {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-phone:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 6px 20px rgba(81,211,0,.45);
}

/* お問い合わせボタン */
.btn-contact {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(81,211,0,.4);
}
.btn-contact:hover {
  background: var(--color-accent-d);
  border-color: var(--color-accent-d);
  box-shadow: 0 8px 24px rgba(62,163,0,.5);
}

/* 送信ボタン */
.btn-submit {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  padding: 18px 56px;
  font-size: 1.05rem;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: var(--fw-bold);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-submit:hover {
  background: var(--color-primary-l);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ──────────────────────────────────────
   8. FV下スライダー（CSS無限ループ）
─────────────────────────────────────── */
.slider-section {
  overflow: hidden;
  background: var(--color-bg-light);
  padding: 32px 0;
}

.slider-track {
  display: flex;
  gap: 20px;
  /* 10枚 + 複製10枚 = 20枚分の幅をアニメーション */
  animation: slider-loop 28s linear infinite;
  will-change: transform;
}

/* JS でcloneする前提でもCSSだけで動くように幅固定 */
.slide-item {
  flex: 0 0 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

@keyframes slider-loop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-300px * 10)); }
}

/* ホバー時一時停止 */
.slider-section:hover .slider-track {
  animation-play-state: paused;
}

/* ──────────────────────────────────────
   9. セクション共通
─────────────────────────────────────── */
.section {
  padding: var(--section-py) 0;
}
.section-title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: var(--fw-black);
  color: #290409;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: .04em;
  position: relative;
  padding-bottom: 20px;
}
.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 12px auto 0;
}
.section-lead {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.95;
  color: var(--color-text-sub);
  font-weight: var(--fw-medium);
}

/* 強調テキスト */
strong {
  font-weight: var(--fw-bold);
  color: var(--color-accent-d);
}

/* ──────────────────────────────────────
   10. こんな方歓迎
─────────────────────────────────────── */
.welcome-section .section-title { margin-bottom: 48px; }
.welcome-list {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.welcome-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 280px;
  max-width: 340px;
  padding: 28px 24px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--color-accent);
  transition: transform var(--transition), box-shadow var(--transition);
}
.welcome-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.welcome-icon {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
}
.welcome-item p {
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1.55;
}

/* ──────────────────────────────────────
   11. 私たちについて
─────────────────────────────────────── */
.about-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.about-img {
  width: 100%;
  max-width: 680px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-text {
  max-width: 760px;
  width: 100%;
}
.about-text p {
  margin-bottom: 18px;
  font-weight: var(--fw-regular);
  line-height: 1.95;
  color: var(--color-text);
}
.about-text p:last-child { margin-bottom: 0; }

/* ──────────────────────────────────────
   12. 仕事内容（ジグザグ3ブロック）
─────────────────────────────────────── */
.work-section .section-lead { margin-bottom: 56px; }

.work-block {
  display: flex;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.work-block:last-of-type { margin-bottom: 0; }

/* 偶数（逆順）*/
.work-block--reverse { flex-direction: row-reverse; }

.work-block__img {
  flex: 0 0 46%;
  max-width: 46%;
}
.work-block__text {
  flex: 1;
  padding: 40px 40px 40px 0;
}
.work-block--reverse .work-block__text {
  padding: 40px 0 40px 40px;
}
.work-block__title {
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  color: #1a1a1a;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent);
}
.work-block__text p {
  margin-bottom: 14px;
  line-height: 1.9;
}
.work-block__text p:last-child { margin-bottom: 0; }

/* 現場のリアルな話 */
.work-real {
  margin-top: 56px;
  padding: 28px 32px;
  border-left: 5px solid var(--color-accent);
  background: #ede8e4;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}
.work-real p {
  line-height: 1.9;
  color: var(--color-text-sub);
  font-weight: var(--fw-medium);
}

/* ──────────────────────────────────────
   13. CTA セクション
─────────────────────────────────────── */
.cta-section {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--color-primary-d) 0%, var(--color-primary) 100%);
  /* CTAグラデーション：ブラウン系 */
}
.cta-box {
  text-align: center;
}
.cta-lead {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-inv);
  margin-bottom: 32px;
  letter-spacing: .04em;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ──────────────────────────────────────
   14. 3カード 共通レイアウト
─────────────────────────────────────── */
.cards-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.card {
  flex: 1 1 280px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-step {
  font-size: 2.4rem;
  font-weight: var(--fw-black);
  color: var(--color-accent);
  margin-bottom: 12px;
  line-height: 1;
}
.card-title {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: #1a1a1a;
  margin-bottom: 14px;
  line-height: 1.55;
}
.card p {
  font-size: .9375rem;
  line-height: 1.85;
  color: var(--color-text-sub);
  margin-bottom: 10px;
}
.card p:last-child { margin-bottom: 0; }

/* ──────────────────────────────────────
   14-b. カード内写真枠（onboarding / appeal 共通）
─────────────────────────────────────── */
.card-img {
  margin: -32px -28px 24px; /* カードのpaddingを打ち消して端まで広げる */
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;   /* メンバー写真と同じ比率で統一 */
  background: #c8c8c8;   /* 画像読み込み前のグレー */
}
.card-img img.site-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .45s ease;
}
.card:hover .card-img img.site-img {
  transform: scale(1.05);
}

/* ──────────────────────────────────────
   15. 入社後の流れ
─────────────────────────────────────── */
.onboarding-section .card {
  position: relative;
  overflow: hidden;   /* card-imgのホバー拡大をクリップ */
  padding-top: 32px;  /* card-imgの負margin吸収後の余白 */
}
/* 画像の上に被る ① ② ③ バッジ */
.onboarding-card .card-step {
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.5rem;
  font-weight: var(--fw-black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md) 0 var(--radius-sm) 0;
  z-index: 2;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 0;   /* デフォルトのmargin-bottomをリセット */
}
/* カード左側のアクセントライン */
.onboarding-section .card::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  z-index: 3;
}

/* ──────────────────────────────────────
   16. 会社の魅力
─────────────────────────────────────── */
.appeal-section .card {
  position: relative;
  overflow: hidden;   /* card-imgのホバー拡大をクリップ */
}
/* カード左側のアクセントライン（オレンジ） */
.appeal-section .card::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--color-accent);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  z-index: 3;
}
.appeal-section .card-title {
  font-size: .95rem;
}

/* ──────────────────────────────────────
   17. メンバー紹介
─────────────────────────────────────── */
.member-photo {
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.member-card .card-title {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 14px;
}

/* ──────────────────────────────────────
   18. 1日のスケジュール
─────────────────────────────────────── */
.schedule-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 780px;
  margin: 0 auto;
  overflow: hidden;
}
.schedule-list { padding: 8px 0; }
.schedule-item {
  display: flex;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}
.schedule-item:last-child { border-bottom: none; }
.schedule-item:hover { background: #ede8e4; }

.schedule-time {
  flex: 0 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: .875rem;
  color: var(--color-text-inv);
  background: var(--color-primary);
  padding: 18px 12px;
  letter-spacing: .03em;
  white-space: nowrap;
}
/* 偶数行は accent */
.schedule-item:nth-child(even) .schedule-time {
  background: var(--color-primary-l);
}
.schedule-desc {
  flex: 1;
  padding: 18px 24px;
  line-height: 1.75;
  font-weight: var(--fw-medium);
  color: var(--color-text);
}

/* ──────────────────────────────────────
   19. おわりに
─────────────────────────────────────── */
.closing-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 780px;
  margin: 0 auto;
  align-items: center;
}
.closing-img {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.closing-text p {
  margin-bottom: 18px;
  line-height: 1.95;
}
.closing-text p:last-child { margin-bottom: 0; }

/* ──────────────────────────────────────
   20. 応募フォーム
─────────────────────────────────────── */
.contact-section {
  background: var(--color-bg-light);
}
.form-error-msg {
  max-width: 660px;
  margin: 0 auto 24px;
  padding: 16px 20px;
  background: #fff0f0;
  border: 1px solid #e88;
  border-left: 4px solid #c0392b;
  border-radius: var(--radius-sm);
  color: #c0392b;
  font-weight: var(--fw-bold);
  font-size: .9375rem;
  line-height: 1.7;
}
.contact-form {
  max-width: 660px;
  margin: 0 auto;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 48px 48px 56px;
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 28px; }
.form-label {
  display: block;
  font-weight: var(--fw-bold);
  font-size: .9375rem;
  margin-bottom: 8px;
  color: var(--color-primary);
}
.required {
  font-size: .72rem;
  color: #c0392b;
  background: #fdecea;
  border: 1px solid #e88;
  border-radius: 3px;
  padding: 2px 7px;
  margin-left: 8px;
  vertical-align: middle;
}
.optional {
  font-size: .72rem;
  color: #555;
  background: #f0f0f0;
  border: 1px solid #bbb;
  border-radius: 3px;
  padding: 2px 7px;
  margin-left: 8px;
  vertical-align: middle;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  font-weight: var(--fw-regular);
  line-height: 1.6;
  background: #fff;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(140,127,117,.18);
}
.form-textarea { resize: vertical; }
.form-note {
  font-size: .8rem;
  color: var(--color-text-sub);
  margin-top: 6px;
}
.form-submit {
  text-align: center;
  margin-top: 40px;
}

/* ──────────────────────────────────────
   21. 募集要項
─────────────────────────────────────── */
.requirements-section { background: var(--color-bg); }
.requirements-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.requirements-table { width: 100%; }
.req-row {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}
.req-row:last-child { border-bottom: none; }
.req-row:hover { background: #ede8e4; }
.req-label {
  flex: 0 0 160px;
  font-weight: var(--fw-bold);
  font-size: .875rem;
  color: var(--color-text-inv);
  background: var(--color-primary);
  padding: 20px 20px;
  display: flex;
  align-items: flex-start;
  align-self: stretch;
}
.req-value {
  flex: 1;
  font-size: .9375rem;
  line-height: 1.8;
  padding: 20px 24px;
  color: var(--color-text);
}
.req-value p { margin-bottom: 6px; }
.req-value p:last-child { margin-bottom: 0; }
.req-list {
  list-style: disc;
  padding-left: 20px;
}
.req-list li { margin-bottom: 4px; }

/* ──────────────────────────────────────
   22. FOOTER
─────────────────────────────────────── */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,.75);
  padding: 48px 0 32px;
  text-align: center;
}
.footer-company {
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: .05em;
}
.footer-address {
  font-size: .875rem;
  margin-bottom: 6px;
  line-height: 1.7;
}
.footer-tel {
  font-size: .875rem;
  margin-bottom: 24px;
}
.footer-tel a {
  color: var(--color-accent-l);
  font-weight: var(--fw-bold);
  transition: opacity var(--transition);
}
.footer-tel a:hover { opacity: .75; }
.footer-copy {
  font-size: .75rem;
  color: rgba(255,255,255,.38);
}

/* ──────────────────────────────────────
   23. スクロールアニメーション（JS連携）
─────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  /* セクション余白 */
  :root { --section-py: 56px; }

  /* FVテキスト */
  .fv-sub br { display: none; }
  .fv-cta { gap: 12px; }
  .btn { padding: 13px 24px; font-size: .9rem; }

  /* スライダー */
  .slide-item { flex: 0 0 220px; }
  @keyframes slider-loop {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-240px * 10)); }
  }

  /* 仕事内容：写真→テキスト順 */
  .work-block,
  .work-block--reverse {
    flex-direction: column;
    gap: 0;
    border-radius: var(--radius-md);
  }
  .work-block__img {
    flex: none;
    max-width: 100%;
    width: 100%;
    order: -1;
  }
  .work-block__text {
    order: 1;
    padding: 28px 24px !important;
  }

  /* カード：縦積み */
  .cards-row { flex-direction: column; gap: 20px; }
  .card { flex: none; width: 100%; }

  /* 募集要項：縦積み */
  .req-row { flex-direction: column; }
  .req-label {
    flex: none;
    width: 100%;
    align-self: auto;
    padding: 12px 20px;
  }
  .req-value { padding: 16px 20px; }

  /* スケジュール */
  .schedule-time {
    flex: 0 0 80px;
    font-size: .8rem;
    padding: 16px 8px;
  }
  .schedule-desc { padding: 16px 16px; }

  /* フォーム */
  .contact-form {
    padding: 32px 24px 40px;
    border-radius: var(--radius-md);
  }

  /* about */
  .about-img { max-width: 100%; }
}

@media (max-width: 480px) {
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; justify-content: center; }
}
