/* ==========================================================================
   せとうちタクシー 採用サイト - メインスタイルシート v2
   ========================================================================== */

:root {
  --navy: #0b2545;
  --navy-deep: #060e1a;
  --orange: #ff6b1a;
  --orange-soft: #ff8a47;
  --orange-glow: rgba(255, 107, 26, 0.15);
  --sky: #13a3c4;
  --cream: #faf7f2;
  --white: #ffffff;
  --ink: #1a2433;
  --gray: #6b7280;
  --gray-light: #e5e2dd;
  --line: rgba(11, 37, 69, 0.08);
  --line-green: #06c755;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow: 0 4px 24px rgba(11, 37, 69, 0.06);
  --shadow-md: 0 8px 32px rgba(11, 37, 69, 0.1);
  --shadow-hover: 0 20px 48px rgba(11, 37, 69, 0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: "LINE Seed JP", "M PLUS 1", sans-serif;
  --font-display: "M PLUS 1", "Inter", sans-serif;
  --max-width: 1120px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all var(--transition); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
ul, ol { list-style: none; }

.disp { font-family: var(--font-display); }
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--orange); font-weight: 700; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- セクション共通 ---------- */
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-en {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--orange);
  margin-bottom: 12px;
  padding: 4px 16px;
  border: 1px solid var(--orange);
  border-radius: var(--radius-pill);
}
.sec-ja {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 5vw, 42px);
  color: var(--navy);
  line-height: 1.3;
}
.sec-sub { font-size: 15px; color: var(--gray); margin-top: 14px; line-height: 1.7; }
.sec-sub--light { color: rgba(255,255,255,0.65); }
.section-more { text-align: center; margin-top: 48px; }

/* ---------- ボタン ---------- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--orange), #e85d10);
  color: var(--white); font-weight: 900; font-size: 16px;
  padding: 16px 36px; border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(255,107,26,0.35);
  transition: all var(--transition); border: none; cursor: pointer;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15));
  pointer-events: none;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(255,107,26,0.45); }
.btn-primary--lg { font-size: 18px; padding: 20px 44px; letter-spacing: 0.05em; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--orange); font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: var(--radius-pill);
  border: 2px solid var(--orange); transition: all var(--transition); cursor: pointer;
}
.btn-secondary:hover { background: var(--orange); color: var(--white); }

.btn-line {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--line-green); color: var(--white); font-weight: 700; font-size: 16px;
  padding: 16px 28px; border-radius: var(--radius-pill);
  transition: all var(--transition); border: none; cursor: pointer;
  box-shadow: 0 8px 24px rgba(6,199,85,0.3);
}
.btn-line:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(6,199,85,0.4); }
.btn-line--lg { font-size: 17px; padding: 20px 36px; }

.btn-tel {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  font-family: var(--font-display); font-weight: 900; font-size: 20px;
  padding: 14px 28px; border-radius: var(--radius-pill); transition: all var(--transition);
}
.btn-tel:hover { transform: translateY(-2px); }

.btn-tel-hero {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.85); font-family: var(--font-display);
  font-weight: 900; font-size: 16px; padding: 16px 24px;
  border: 2px solid rgba(255,255,255,0.25); border-radius: var(--radius-pill);
  transition: all var(--transition); backdrop-filter: blur(4px);
}
.btn-tel-hero:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.08); }

/* ==========================================================================
   ヘッダー
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  background: rgba(250,247,242,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11,37,69,0.06);
  transition: all var(--transition);
}
.site-header.is-scrolled { box-shadow: 0 4px 24px rgba(11,37,69,0.08); }

.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo__img { height: 30px; width: auto; }
.site-logo__text {
  font-family: var(--font-display); font-weight: 900; font-size: 14px;
  color: var(--orange); letter-spacing: 0.08em;
  padding: 3px 10px; border: 1.5px solid var(--orange); border-radius: var(--radius-pill);
}

.menu-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; z-index: 110;
}
.menu-toggle__bar {
  display: block; width: 24px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: all var(--transition);
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
  background: var(--cream); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  transition: right var(--transition); z-index: 105;
}
.site-nav.is-open { right: 0; }
.nav-list { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.nav-list li a {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  color: var(--navy); transition: color var(--transition);
  position: relative;
}
.nav-list li a::after {
  content: ""; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--orange); transform: scaleX(0);
  transition: transform var(--transition); transform-origin: center;
}
.nav-list li a:hover { color: var(--orange); }
.nav-list li a:hover::after { transform: scaleX(1); }

.hd-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--orange), #e85d10);
  color: var(--white); font-weight: 700; font-size: 13px;
  padding: 10px 22px; border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(255,107,26,0.3); transition: all var(--transition);
}
.hd-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,26,0.4); }

/* ==========================================================================
   ヒーロー
   ========================================================================== */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; padding: 110px 24px 70px;
  background-color: var(--navy); background-size: cover; background-position: center;
  color: var(--white); overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(11,37,69,0.85) 0%, rgba(11,37,69,0.6) 50%, rgba(11,37,69,0.8) 100%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none; z-index: 1;
}
.hero-inner { max-width: var(--max-width); margin: 0 auto; width: 100%; position: relative; z-index: 2; }

.hero-badge {
  display: inline-block; background: rgba(255,107,26,0.9);
  color: var(--white); font-weight: 900; font-size: 12px; letter-spacing: 0.1em;
  padding: 8px 20px; border-radius: var(--radius-pill); margin-bottom: 16px;
  animation: fadeUp 0.6s 0s both;
}
/* 入社祝い金バッジ */
.hero-badge--bonus {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: var(--navy-deep);
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 10px 24px;
  animation: fadeUp 0.6s 0s both, bonusPulse 2s 1s infinite;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}
@keyframes bonusPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(255, 215, 0, 0.7), 0 0 60px rgba(255, 215, 0, 0.2); }
}

.hero-tag {
  display: inline-block; font-weight: 700; font-size: 13px; letter-spacing: 0.08em;
  color: var(--orange-soft); border: 1px solid rgba(255,138,71,0.4);
  padding: 6px 18px; border-radius: var(--radius-pill); margin-bottom: 28px;
  animation: fadeUp 0.6s 0.1s both;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(34px, 8vw, 86px); line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero-line { font-style: normal; display: block; }
.hero-line--1 { animation: fadeUp 0.6s 0.2s both; }
.hero-line--2 { animation: fadeUp 0.6s 0.35s both; }
.hero-hl { color: var(--orange-soft); position: relative; }

.hero-lead {
  font-size: clamp(14px, 2.2vw, 17px); max-width: 540px;
  color: rgba(255,255,255,0.8); margin-bottom: 40px; animation: fadeUp 0.6s 0.5s both;
  line-height: 1.9;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; animation: fadeUp 0.6s 0.65s both; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 56px; animation: fadeUp 0.6s 0.8s both;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat { text-align: center; }
.hero-stat__num {
  font-family: "Inter", var(--font-display); font-weight: 900;
  font-size: clamp(26px, 4.5vw, 44px); color: var(--orange-soft);
  display: block; line-height: 1;
}
.hero-stat__num small { font-size: 0.4em; }
.hero-stat__arrow { font-size: 0.55em; }
.hero-stat__label { font-size: 11px; color: rgba(255,255,255,0.6); display: block; margin-top: 6px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 実績バー */
.achievement-bar { background: var(--white); border-bottom: 1px solid var(--line); }
.achievement-bar__inner { display: flex; flex-wrap: wrap; justify-content: center; }
.achievement-bar__item {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 28px; font-size: 13px; font-weight: 600;
  color: var(--navy); border-right: 1px solid var(--line);
  transition: background var(--transition);
}
.achievement-bar__item:last-child { border-right: none; }
.achievement-bar__item:hover { background: var(--orange-glow); }
.achievement-bar__icon { font-size: 18px; }

/* ==========================================================================
   不安解消
   ========================================================================== */
.section-worry { padding: 100px 0; background: var(--white); }
.worry-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }

.worry-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 28px; background: var(--cream);
  position: relative; overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  border-top: 3px solid transparent;
}
.worry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-top-color: var(--orange); }
.worry-card__img { text-align: center; margin-bottom: 20px; }
.worry-card__img img { height: 72px; width: 72px; object-fit: contain; margin: 0 auto; border-radius: 14px; }

.worry-card__q {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--gray); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.worry-card__q::before {
  content: "Q"; font-weight: 900; color: var(--white); background: var(--sky);
  font-size: 13px; width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.worry-card__a {
  font-family: var(--font-display); font-weight: 900;
  font-size: 17px; color: var(--navy); line-height: 1.6;
}
.worry-card__num {
  position: absolute; right: 14px; bottom: -14px;
  font-weight: 900; font-size: 80px; color: rgba(255,107,26,0.05);
  line-height: 1; pointer-events: none;
}

.worry-photo {
  margin-top: 56px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.worry-photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* ==========================================================================
   数字で見るせとうちタクシー
   ========================================================================== */
.section-numbers {
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.section-numbers::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(11,37,69,0.88);
  pointer-events: none;
}
.section-numbers::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 80%, var(--orange-glow), transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(19,163,196,0.08), transparent 50%);
  pointer-events: none;
}
.section-numbers .sec-en { border-color: rgba(255,138,71,0.5); }
.section-numbers .sec-ja { color: var(--white); }
.section-numbers > .wrap { position: relative; z-index: 2; }

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.number-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.number-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}


.number-card__value {
  margin-bottom: 10px;
  line-height: 1;
}
.number-card__num {
  font-family: "Inter", var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 52px);
  color: var(--orange-soft);
}
.number-card__unit {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--orange-soft);
  margin-left: 2px;
}
.number-card__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 4px;
}
.number-card__sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   充実の研修制度
   ========================================================================== */
.section-training {
  padding: 100px 0;
  background: var(--cream);
}

.training-timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.training-timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--orange), var(--sky));
  border-radius: 2px;
}

.training-timeline__item {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}
.training-timeline__item:last-child { margin-bottom: 0; }

.training-timeline__marker {
  flex-shrink: 0;
  width: 56px;
  display: flex;
  justify-content: center;
}
.training-timeline__step {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange), #e85d10);
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(255,107,26,0.3);
}

.training-timeline__content {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: all var(--transition);
}
.training-timeline__content:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.training-timeline__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.training-timeline__period {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-glow);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
}

.training-timeline__content p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}
.training-timeline__content strong {
  color: var(--navy);
}
.training-timeline__photo {
  margin-top: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.training-timeline__photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.training-photo {
  max-width: 720px;
  margin: 40px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.training-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.training-note {
  text-align: center;
  margin-top: 36px;
  font-size: 13px;
  color: var(--gray);
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   代表メッセージ
   ========================================================================== */
.section-message {
  padding: 100px 0;
  background: var(--white);
}

.message-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.message-content .sec-en {
  margin-bottom: 16px;
}

.message-title {
  font-weight: 900;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 20px;
}
.message-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.message-body p {
  font-size: 15px;
  color: var(--ink);
  line-height: 2;
  margin-bottom: 18px;
}

.message-sign {
  margin-top: 28px;
}
.message-sign__company {
  display: block;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 4px;
}
.message-sign__position {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--navy);
}

.message-photo {
  border-radius: var(--radius);
  overflow: hidden;
}
.message-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ==========================================================================
   高松で働く魅力
   ========================================================================== */
.section-area {
  padding: 100px 0;
  background: var(--cream);
}

.area-photo {
  margin-bottom: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.area-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all var(--transition);
  overflow: hidden;
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.area-card--has-img { padding: 0; text-align: left; }
.area-card__img { height: 120px; overflow: hidden; }
.area-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.area-card:hover .area-card__img img { transform: scale(1.05); }
.area-card__content { padding: 18px 20px; }

.area-card__icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.area-card__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 8px;
}

.area-card__desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

/* ==========================================================================
   募集職種一覧
   ========================================================================== */
.section-jobs {
  padding: 100px 0;
  background: var(--white);
}

.jobs-hero-photo {
  margin-bottom: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.jobs-hero-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.job-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.job-card--popular { border: 2px solid var(--orange); }

.job-card__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--navy); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 4px 14px;
  border-radius: var(--radius-pill);
}
.job-card__badge--hot {
  background: linear-gradient(135deg, var(--orange), #e85d10);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,26,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255,107,26,0); }
}

.job-card__photo {
  height: 140px;
  overflow: hidden;
}
.job-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
}

.job-card__body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.job-card__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.job-card__type {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--sky);
  background: rgba(19,163,196,0.08);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  align-self: flex-start;
}

.job-card__info {
  margin-bottom: 14px;
}
.job-card__info-row {
  display: flex;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.job-card__info-row:last-child { border-bottom: none; }
.job-card__info-row dt {
  font-weight: 700;
  color: var(--navy);
  min-width: 36px;
  flex-shrink: 0;
}
.job-card__info-row dd {
  color: var(--gray);
}

.job-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.job-card__feat {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-glow);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.job-card__btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--orange), #e85d10);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  margin-top: auto;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(255,107,26,0.25);
}
.job-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,26,0.35);
}

/* ==========================================================================
   トップページFAQ
   ========================================================================== */
.section-faq {
  padding: 100px 0;
  background: var(--white);
}
.faq-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.faq-list--top {
  max-width: 800px;
  margin: 0 auto;
  flex: 1;
}
.faq-side-images {
  display: none;
}
.faq-side-images__img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* ==========================================================================
   写真バナー（セクション間ビジュアル帯）
   ========================================================================== */
.photo-banner {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,37,69,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-banner__text {
  color: var(--white);
  font-weight: 900;
  font-size: clamp(22px, 4vw, 36px);
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0 24px;
}

/* 人物が写るバナーは顔が切れないよう上寄り表示 */
.photo-banner--people { background-position: center 28%; }

@media (max-width: 639px) {
  .photo-banner { height: 200px; background-attachment: scroll; }
  .photo-banner--people { height: 230px; }
}

/* ==========================================================================
   選ばれる理由
   ========================================================================== */
.section-reasons { padding: 100px 0; background: var(--navy); color: var(--white); position: relative; }
.section-reasons::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, var(--white), transparent); pointer-events: none; opacity: 0.03;
}
.section-reasons .sec-en { border-color: rgba(255,138,71,0.5); }
.section-reasons .sec-ja { color: var(--white); }

.reasons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.reason-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 28px 18px; text-align: center;
  transition: all var(--transition); position: relative; overflow: hidden;
  background-size: cover; background-position: center;
  z-index: 1;
}
.reason-card::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(11,37,69,0.82);
  transition: background var(--transition);
  z-index: -1;
}
.reason-card::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transition: transform var(--transition);
  z-index: 1;
}
.reason-card:hover { transform: translateY(-4px); }
.reason-card:hover::before { background: rgba(11,37,69,0.7); }
.reason-card:hover::after { transform: scaleX(1); }
.reason-card__title { font-family: var(--font-display); font-weight: 900; font-size: 16px; display: block; margin-bottom: 8px; position: relative; }
.reason-card__desc { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.6; position: relative; }

/* ==========================================================================
   収入モデル
   ========================================================================== */
.section-salary { padding: 100px 0; background: var(--cream); }
.salary-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }

.salary-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; border: 1px solid var(--line);
  position: relative; transition: all var(--transition);
  display: flex; flex-direction: column; justify-content: center;
  text-align: center;
}
.salary-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.salary-card--feature { border: 2px solid var(--orange); box-shadow: var(--shadow-md); }
.salary-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), #e85d10);
  color: var(--white); font-weight: 700; font-size: 12px;
  padding: 6px 20px; border-radius: var(--radius-pill); white-space: nowrap;
}
.salary-card__who { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--gray); margin-bottom: 12px; }
.salary-card__who small { display: block; font-size: 12px; margin-top: 2px; }
.salary-card__pay { font-family: var(--font-display); font-weight: 900; color: var(--navy); line-height: 1.1; margin-bottom: 10px; }
.salary-card__pay strong { font-family: "Inter", var(--font-display); font-size: 52px; color: var(--orange); }
.salary-card__pay small { font-size: 17px; }
.salary-card__note { font-size: 13px; color: var(--gray); line-height: 1.6; }
.salary-photo {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.salary-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.salary-annual { background: var(--navy); border-radius: var(--radius); padding: 36px 28px; margin-top: 40px; text-align: center; }
.salary-annual__label { font-weight: 700; font-size: 14px; color: var(--orange-soft); margin-bottom: 20px; letter-spacing: 0.1em; }
.salary-annual__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.salary-annual__item { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 20px 28px; flex: 1; min-width: 140px; }
.salary-annual__item--top { border-color: var(--orange); background: rgba(255,107,26,0.1); }
.salary-annual__stage { display: block; font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.salary-annual__amount { font-family: "Inter", var(--font-display); font-weight: 900; font-size: 36px; color: var(--orange-soft); }
.salary-annual__amount small { font-size: 14px; }
.salary-foot { text-align: center; margin-top: 28px; font-size: 13px; color: var(--gray); }

/* ==========================================================================
   ドライバーフォトギャラリー
   ========================================================================== */
.photo-gallery {
  overflow: hidden;
  background: var(--navy);
  padding: 24px 0;
}
.photo-gallery__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: galleryScroll 30s linear infinite;
}
.photo-gallery__item {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter var(--transition);
}
.photo-gallery__item:hover img {
  filter: grayscale(0%);
}

@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-160px * 8 - 12px * 8)); }
}

@media (prefers-reduced-motion: reduce) {
  .photo-gallery__track { animation: none; overflow-x: auto; }
}

@media (min-width: 640px) {
  .photo-gallery__item { width: 200px; height: 200px; }
  @keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 8 - 12px * 8)); }
  }
}

/* ==========================================================================
   先輩の声
   ========================================================================== */
.section-voice { padding: 100px 0; background: var(--white); }
.voice-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }

.voice-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--cream);
  transition: all var(--transition); text-decoration: none; color: inherit;
  box-shadow: var(--shadow);
}
.voice-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.voice-card__photo {
  height: 200px; background: linear-gradient(135deg, var(--sky), var(--navy));
  display: flex; align-items: flex-end; padding: 18px;
  color: var(--white); position: relative; overflow: hidden;
}
.voice-card__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.voice-card__photo::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  pointer-events: none;
}

.voice-card__meta { position: relative; z-index: 2; }
.voice-card__meta strong { font-family: var(--font-display); font-weight: 900; font-size: 17px; display: block; }
.voice-card__meta span { font-size: 12px; opacity: 0.85; }

.voice-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.voice-card__tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: var(--orange); background: var(--orange-glow);
  padding: 4px 14px; border-radius: var(--radius-pill); margin-bottom: 12px;
  align-self: flex-start;
}
.voice-card__title { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 10px; line-height: 1.5; }
.voice-card__excerpt { font-size: 14px; color: var(--gray); line-height: 1.7; margin-top: auto; }

/* ==========================================================================
   応募の流れ
   ========================================================================== */
.section-flow { padding: 100px 0; background: var(--navy-deep); color: var(--white); position: relative; background-size: cover; background-position: center; }
.section-flow::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(6,14,26,0.88);
  pointer-events: none;
}
.section-flow > .wrap { position: relative; z-index: 2; }
.section-flow .sec-en { border-color: rgba(255,138,71,0.5); }
.section-flow .sec-ja { color: var(--white); }

.flow-steps { display: grid; grid-template-columns: 1fr; gap: 16px; counter-reset: flow-step; }
.flow-step {
  background: rgba(255,255,255,0.04); border-radius: var(--radius);
  padding: 28px 22px; position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}
.flow-step:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }

.flow-step__img { text-align: center; margin-bottom: 14px; }
.flow-step__img img { height: 52px; width: auto; margin: 0 auto; filter: brightness(0) invert(1); opacity: 0.8; }

.flow-step::before {
  counter-increment: flow-step; content: "STEP 0" counter(flow-step);
  font-family: var(--font-display); font-weight: 900; font-size: 12px;
  letter-spacing: 0.1em; color: var(--orange-soft);
  display: block; margin-bottom: 12px;
}
.flow-step__title { font-family: var(--font-display); font-weight: 700; font-size: 17px; display: block; margin-bottom: 8px; }
.flow-step__desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ==========================================================================
   最終CTA
   ========================================================================== */
.section-cta {
  padding: 110px 0; text-align: center; color: var(--white); position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, #0f3060 50%, var(--navy-deep) 100%);
  background-size: cover; background-position: center;
  overflow: hidden;
}
.section-cta::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(11,37,69,0.92) 0%, rgba(15,48,96,0.88) 50%, rgba(6,14,26,0.92) 100%);
  pointer-events: none;
}
.section-cta::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, var(--orange-glow), transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(19,163,196,0.1), transparent 50%);
  pointer-events: none;
}
.section-cta > .wrap { position: relative; z-index: 2; }

/* CTA 入社祝い金バナー */
.section-cta__bonus {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: var(--navy-deep);
  font-weight: 900;
  font-size: 18px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(255, 215, 0, 0.4);
  animation: bonusPulse 2s infinite;
}
.section-cta__bonus-icon {
  font-size: 24px;
}
.section-cta__bonus strong {
  font-size: 22px;
}

.section-cta__eyecatch {
  font-size: 13px; font-weight: 900; letter-spacing: 0.4em;
  color: var(--orange-soft); margin-bottom: 16px;
}
.section-cta__heading {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(30px, 6vw, 52px); line-height: 1.25; margin-bottom: 20px;
}
.section-cta__lead {
  color: rgba(255,255,255,0.75); margin-bottom: 40px; font-size: 15px; line-height: 1.9;
}
.section-cta__buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.section-cta__tel-block {
  margin-top: 44px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.section-cta__tel-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.section-cta__tel-num {
  font-family: "Inter", var(--font-display);
  font-weight: 900; font-size: clamp(30px, 5vw, 40px);
  color: var(--orange-soft); letter-spacing: 0.05em; display: block;
}
.section-cta__tel-hours { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 6px; }

/* ==========================================================================
   フッター
   ========================================================================== */
.site-footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.55);
  padding: 60px 24px 40px; text-align: center; font-size: 13px;
  border-top: 3px solid var(--orange);
}
.footer-logo { font-family: var(--font-display); font-weight: 900; color: var(--white); font-size: 20px; margin-bottom: 14px; letter-spacing: 0.06em; }
.footer-address { margin-bottom: 18px; font-size: 14px; }
.footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px; margin-bottom: 24px; }
.footer-contact p { margin-bottom: 0; }
.footer-contact a { color: var(--orange-soft); font-weight: 700; font-size: 15px; }
.footer-contact a:hover { opacity: 0.7; }
.footer-links { margin: 24px 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-links a { color: var(--orange-soft); }
.footer-links a:hover { opacity: 0.7; }
.footer-sep { margin: 0 12px; opacity: 0.25; }
.footer-copy { opacity: 0.35; margin-top: 20px; font-size: 12px; }

/* ==========================================================================
   スマホ固定CTA
   ========================================================================== */
.floating-cta { display: none; }

/* ==========================================================================
   ページヘッダー（下層共通）
   ========================================================================== */
.page-header {
  background: var(--navy); color: var(--white);
  padding: 130px 0 56px; text-align: center; position: relative;
  background-size: cover; background-position: center;
}
.page-header::before { content: ""; position: absolute; inset: 0; background: rgba(11,37,69,0.82); pointer-events: none; }
.page-header > .wrap { position: relative; z-index: 2; }
.page-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(28px, 5vw, 44px); letter-spacing: 0.02em; }

/* ==========================================================================
   汎用ページ・エントリーコンテンツ
   ========================================================================== */
.page-content { padding: 70px 0; }
.entry-content { line-height: 2; }
.entry-content h2 { font-family: var(--font-display); font-weight: 900; font-size: 24px; color: var(--navy); margin: 44px 0 16px; padding-bottom: 10px; border-bottom: 3px solid var(--orange); }
.entry-content h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--navy); margin: 36px 0 12px; }
.entry-content p { margin-bottom: 18px; }
.entry-content ul, .entry-content ol { margin: 18px 0; padding-left: 24px; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 8px; }

/* ==========================================================================
   募集要項
   ========================================================================== */
.requirements-section { padding: 70px 0; }
.requirements-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.requirements-table th, .requirements-table td { padding: 20px 24px; text-align: left; border-bottom: 1px solid var(--line); font-size: 15px; }
.requirements-table th { background: var(--navy); color: var(--white); font-weight: 700; width: 150px; font-size: 14px; vertical-align: top; }
.requirements-table td { background: var(--white); line-height: 1.8; }
.requirements-table tr:last-child th, .requirements-table tr:last-child td { border-bottom: none; }

.requirements-faq { padding: 70px 0 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; transition: box-shadow var(--transition); }
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item__q { padding: 20px 52px 20px 24px; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--navy); cursor: pointer; position: relative; list-style: none; }
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 20px; font-weight: 400; color: var(--orange); transition: transform var(--transition); }
.faq-item[open] .faq-item__q::after { content: "\2212"; }
.faq-item__a { padding: 0 24px 20px; font-size: 14px; color: var(--gray); line-height: 1.8; }

/* ==========================================================================
   働く環境
   ========================================================================== */
.about-section { padding: 70px 0; }
.about-section:nth-child(odd) { background: var(--white); }
.about-day__note { text-align: center; font-size: 13px; color: var(--gray); margin-bottom: 36px; }

/* 車両ラインナップ */
.section-cars { padding: 100px 0; background: var(--white); }
.cars-hero { max-width: 1000px; margin: 0 auto 40px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.cars-hero img { width: 100%; height: auto; display: block; }
.cars-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1000px; margin: 0 auto; }
.car-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.car-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.car-card__photo { position: relative; height: 160px; overflow: hidden; }
.car-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.car-card:hover .car-card__photo img { transform: scale(1.05); }
.car-card__cap { position: absolute; top: 12px; right: 12px; background: var(--navy); color: var(--white); font-weight: 700; font-size: 12px; padding: 4px 14px; border-radius: var(--radius-pill); }
.car-card__body { padding: 20px 22px; flex: 1; }
.car-card__name { font-family: var(--font-display); font-weight: 900; font-size: 16px; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.car-card__desc { font-size: 13px; color: var(--gray); line-height: 1.8; }
.cars-note { text-align: center; font-size: 13px; color: var(--gray); margin-top: 32px; }

/* 動画セクション（テレビCM） */
.section-video { padding: 100px 0; background: var(--white); }
.video-frame { position: relative; width: 100%; max-width: 900px; margin: 0 auto; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: var(--navy-deep); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* 職種別・1日の流れ（トップページ用・背景と余白を明示） */
.section-one-day { padding: 100px 0; background: var(--cream); }
.section-one-day .day-timeline { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 28px; box-shadow: var(--shadow); }

/* 職種別・1日の流れ タブ */
.day-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px; }
.day-tab {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  padding: 12px 30px; border-radius: var(--radius-pill);
  border: 2px solid var(--line); background: var(--white); color: var(--gray);
  cursor: pointer; transition: all var(--transition);
}
.day-tab:hover { border-color: var(--orange); color: var(--orange); }
.day-tab.is-active { background: var(--orange); border-color: var(--orange); color: var(--white); box-shadow: 0 6px 18px rgba(255,107,26,0.3); }
.day-panel { display: none; }
.day-panel.is-active { display: block; animation: fadeUp 0.4s both; }

@media (max-width: 639px) {
  .day-tabs { gap: 6px; }
  .day-tab { flex: 1; min-width: 0; padding: 12px 6px; font-size: 14px; }
}

.day-timeline { max-width: 700px; margin: 0 auto; }
.day-timeline__item { display: flex; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.day-timeline__item:last-child { border-bottom: none; }
.day-timeline__time { font-weight: 900; font-size: 18px; color: var(--orange); min-width: 56px; flex-shrink: 0; }
.day-timeline__content strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.day-timeline__content p { font-size: 14px; color: var(--gray); }

.workstyle-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.workstyle-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all var(--transition); }
.workstyle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.workstyle-card__tag { display: inline-block; font-size: 12px; font-weight: 700; color: var(--sky); background: rgba(19,163,196,0.08); padding: 4px 14px; border-radius: var(--radius-pill); margin-bottom: 14px; }
.workstyle-card__title { font-size: 22px; color: var(--navy); margin-bottom: 10px; display: block; }
.workstyle-card__desc { font-size: 14px; color: var(--gray); line-height: 1.7; }

.training-steps { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 700px; margin: 0 auto; }
.training-step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: box-shadow var(--transition); }
.training-step:hover { box-shadow: var(--shadow); }
.training-step__num { font-weight: 900; font-size: 28px; color: var(--orange); display: block; margin-bottom: 8px; }
.training-step strong { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--navy); display: block; margin-bottom: 8px; }
.training-step p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ==========================================================================
   先輩の声 アーカイブ
   ========================================================================== */
.voice-archive-section { padding: 70px 0; }
.voice-filter { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 40px; }
.voice-filter__btn { font-size: 14px; font-weight: 700; padding: 10px 22px; border-radius: var(--radius-pill); border: 1px solid var(--line); background: var(--white); color: var(--gray); transition: all var(--transition); }
.voice-filter__btn:hover, .voice-filter__btn.is-active { background: var(--orange); color: var(--white); border-color: var(--orange); }

.pagination { margin-top: 48px; text-align: center; }
.pagination .page-numbers { display: inline-flex; gap: 4px; flex-wrap: wrap; justify-content: center; }
.pagination .page-numbers li { list-style: none; }
.pagination .page-numbers a, .pagination .page-numbers span { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 10px; font-weight: 700; font-size: 14px; border: 1px solid var(--line); transition: all var(--transition); }
.pagination .page-numbers a:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.pagination .page-numbers .current { background: var(--orange); color: var(--white); border-color: var(--orange); }
.no-posts { text-align: center; padding: 48px 0; color: var(--gray); }

/* ==========================================================================
   先輩の声 詳細
   ========================================================================== */
.voice-single__breadcrumb { font-size: 13px; margin-bottom: 14px; color: rgba(255,255,255,0.55); }
.voice-single__breadcrumb a { color: var(--orange-soft); }
.voice-single { padding: 70px 0; }
.voice-single__header { display: flex; flex-direction: column; gap: 28px; margin-bottom: 44px; }
.voice-single__photo { border-radius: var(--radius); overflow: hidden; max-height: 400px; }
.voice-single__photo img { width: 100%; height: 100%; object-fit: cover; }
.voice-single__meta { display: flex; flex-wrap: wrap; gap: 8px 28px; margin-top: 14px; }
.voice-single__meta dt { font-weight: 700; font-size: 13px; color: var(--gray); }
.voice-single__meta dd { font-size: 15px; color: var(--navy); font-weight: 700; }
.voice-related { padding: 70px 0; background: var(--cream); }
.voice-related__heading { text-align: center; font-weight: 900; font-size: 24px; color: var(--navy); margin-bottom: 40px; }

/* ==========================================================================
   応募フォーム
   ========================================================================== */
.apply-section { padding: 70px 0; }
.apply-intro { max-width: 700px; margin: 0 auto 40px; text-align: center; font-size: 15px; color: var(--gray); line-height: 1.9; }

/* 最短版フォーム（まず名前・電話だけ） */
.apply-quick { max-width: 720px; margin: 0 auto 56px; background: linear-gradient(135deg, #fff, #fff7f0); border: 2px solid var(--orange); border-radius: var(--radius); padding: 40px 36px; box-shadow: var(--shadow-md); }
.apply-quick__head { text-align: center; margin-bottom: 28px; }
.apply-quick__badge { display: inline-block; background: var(--orange); color: var(--white); font-weight: 900; font-size: 13px; letter-spacing: 0.08em; padding: 6px 18px; border-radius: var(--radius-pill); margin-bottom: 14px; }
.apply-quick__title { font-size: clamp(20px, 4vw, 28px); color: var(--navy); line-height: 1.4; margin-bottom: 10px; }
.apply-quick__lead { font-size: 14px; color: var(--gray); line-height: 1.8; }
.apply-quick__row { margin-bottom: 16px; }
.apply-quick__form input[type="text"], .apply-quick__form input[type="tel"] {
  width: 100%; padding: 16px 18px; border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm); font-size: 16px; font-family: var(--font-body);
  background: var(--white); transition: all var(--transition);
}
.apply-quick__form input:focus { border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-glow); outline: none; }
.apply-quick__submit { width: 100%; margin-top: 8px; }
.apply-quick__note { font-size: 12px; color: var(--gray); margin-top: 14px; line-height: 1.7; }
.apply-quick__more { text-align: center; margin-top: 22px; }
.apply-quick__more a { color: var(--orange); font-weight: 700; font-size: 14px; text-decoration: underline; }

.apply-form { max-width: 720px; margin: 0 auto 70px; background: var(--white); border-radius: var(--radius); padding: 44px 36px; box-shadow: var(--shadow-md); scroll-margin-top: 90px; }
.apply-form__heading { font-size: clamp(20px, 4vw, 26px); color: var(--navy); margin-bottom: 28px; text-align: center; }

/* CF7 カスタムクラス */
.cf7-field { margin-bottom: 28px; }
.cf7-field label { display: block; font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 8px; }
.cf7-required { color: var(--orange); font-size: 11px; font-weight: 700; margin-left: 4px; background: var(--orange-glow); padding: 2px 8px; border-radius: 4px; }
.cf7-field .wpcf7-form-control-wrap { display: block; }
.cf7-field input[type="text"], .cf7-field input[type="email"], .cf7-field input[type="tel"],
.cf7-field select, .cf7-field textarea {
  width: 100%; padding: 14px 18px; border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm); font-size: 16px; font-family: var(--font-body);
  background: var(--cream); transition: all var(--transition);
}
.cf7-field input:focus, .cf7-field select:focus, .cf7-field textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-glow); outline: none;
}
.cf7-field textarea { min-height: 130px; resize: vertical; }
.cf7-field .wpcf7-radio, .cf7-field .wpcf7-checkbox { display: flex; flex-wrap: wrap; gap: 10px; }
.cf7-field .wpcf7-list-item { margin: 0; }
.cf7-field .wpcf7-list-item label {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500; font-size: 15px; cursor: pointer;
  padding: 10px 18px; border: 2px solid var(--gray-light); border-radius: var(--radius-sm);
  transition: all var(--transition); margin-bottom: 0;
}
.cf7-field .wpcf7-list-item label:hover { border-color: var(--orange); }
.cf7-field .wpcf7-list-item input[type="radio"], .cf7-field .wpcf7-list-item input[type="checkbox"] { accent-color: var(--orange); }
.cf7-field input[type="file"] {
  width: 100%; padding: 18px; border: 2px dashed var(--gray-light);
  border-radius: var(--radius-sm); background: var(--cream);
  font-size: 14px; cursor: pointer; transition: border-color var(--transition);
}
.cf7-field input[type="file"]:hover { border-color: var(--orange); }
.cf7-file-note { font-size: 12px; color: var(--gray); margin-top: 8px; }
/* 年齢グリッド */
.cf7-age-grid {
  background: var(--cream);
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.cf7-age-grid .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cf7-age-grid .wpcf7-list-item {
  margin: 0;
}
.cf7-age-grid .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 18px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: all var(--transition);
  margin-bottom: 0;
}
.cf7-age-grid .wpcf7-list-item label:hover {
  border-color: var(--orange);
  background: var(--orange-glow);
}
.cf7-age-grid .wpcf7-list-item input[type="radio"] {
  display: none;
}
.cf7-age-grid .wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* ボーダー付きセクションラベル */
.cf7-label--border {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--navy);
  padding-left: 14px;
  border-left: 4px solid var(--orange);
  margin-bottom: 20px;
  display: block;
}

/* 任意バッジ */
.cf7-optional {
  color: var(--gray);
  font-size: 11px;
  font-weight: 700;
  margin-left: 4px;
  background: rgba(107,114,128,0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

/* 面接希望日グリッド */
.cf7-interview-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cf7-interview-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 639px) {
  .cf7-interview-row { grid-template-columns: 1fr; }
}
.cf7-interview-col label {
  font-size: 13px;
  margin-bottom: 6px;
}
.cf7-interview-col .wpcf7-form-control-wrap {
  display: block;
}
.cf7-interview-col input[type="date"],
.cf7-interview-col select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: var(--font-body);
  background: var(--cream);
  transition: all var(--transition);
}
.cf7-interview-col input[type="date"]:focus,
.cf7-interview-col select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-glow);
  outline: none;
}

.cf7-consent { background: rgba(11,37,69,0.02); padding: 18px 22px; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.cf7-consent .wpcf7-acceptance label { font-weight: 500; font-size: 14px; }
.cf7-consent a { color: var(--orange); text-decoration: underline; font-weight: 700; }
.cf7-submit { margin-top: 36px; text-align: center; }
.cf7-submit input[type="submit"] {
  display: inline-block; width: 100%; max-width: 380px;
  background: linear-gradient(135deg, var(--orange), #e85d10);
  color: var(--white); font-weight: 900; font-size: 18px;
  padding: 20px 36px; border: none; border-radius: var(--radius-pill); cursor: pointer;
  box-shadow: 0 10px 28px rgba(255,107,26,0.35);
  transition: all var(--transition); letter-spacing: 0.06em;
}
.cf7-submit input[type="submit"]:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255,107,26,0.45); }
.cf7-field .wpcf7-not-valid { border-color: #d32f2f; }
.cf7-field .wpcf7-not-valid-tip { color: #d32f2f; font-size: 12px; margin-top: 4px; }
.wpcf7 form.sent .wpcf7-response-output { background: rgba(6,199,85,0.08); border-color: var(--line-green); color: #1a7a3a; border-radius: var(--radius-sm); padding: 18px; }
.wpcf7-spinner { margin: 12px auto 0; }

/* CF7 legacy */
.apply-form .wpcf7-form p { margin-bottom: 20px; }
.apply-form .wpcf7-response-output { border-radius: var(--radius-sm); padding: 16px; margin-top: 20px; font-size: 14px; }

.apply-other { max-width: 700px; margin: 0 auto; }
.apply-other__heading { text-align: center; font-weight: 900; font-size: 22px; color: var(--navy); margin-bottom: 32px; }
.apply-other__methods { display: grid; grid-template-columns: 1fr; gap: 20px; }
.apply-other__method { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: box-shadow var(--transition); }
.apply-other__method:hover { box-shadow: var(--shadow); }
.apply-other__method strong { font-family: var(--font-display); font-size: 18px; color: var(--navy); display: block; margin-bottom: 10px; }
.apply-other__method p { font-size: 14px; color: var(--gray); margin-bottom: 18px; }

/* ==========================================================================
   404
   ========================================================================== */
.error-404-section { padding: 100px 0; text-align: center; }
.error-404-section p { font-size: 16px; color: var(--gray); margin-bottom: 36px; }
.error-404-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ==========================================================================
   レスポンシブ: タブレット (640px~)
   ========================================================================== */
@media (min-width: 640px) {
  .wrap { padding: 0 36px; }
  .worry-grid { grid-template-columns: repeat(3, 1fr); }
  .salary-grid { grid-template-columns: repeat(3, 1fr); }
  .voice-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .workstyle-grid { grid-template-columns: repeat(3, 1fr); }
  .training-steps { grid-template-columns: repeat(2, 1fr); }
  .apply-other__methods { grid-template-columns: repeat(2, 1fr); }
  .requirements-table th { width: 170px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .numbers-grid { grid-template-columns: repeat(4, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
  .cars-grid { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-grid { grid-template-columns: repeat(3, 1fr); }
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-cta__inner { flex-direction: row; justify-content: center; }
}

/* ==========================================================================
   レスポンシブ: デスクトップ (960px~)
   ========================================================================== */
@media (min-width: 960px) {
  .menu-toggle { display: none; }
  .site-nav { position: static; width: auto; height: auto; background: transparent; flex-direction: row; align-items: center; gap: 8px; }
  .nav-list { flex-direction: row; gap: 28px; }
  .nav-list li a { font-size: 14px; }
  .reasons-grid { grid-template-columns: repeat(5, 1fr); }
  .voice-grid { grid-template-columns: repeat(3, 1fr); }
  .flow-steps { grid-template-columns: repeat(4, 1fr); }
  .voice-single__header { flex-direction: row; }
  .voice-single__photo { width: 320px; flex-shrink: 0; }
  .message-inner { flex-direction: row; align-items: center; }
  .message-photo { width: 360px; flex-shrink: 0; }
  .jobs-grid { grid-template-columns: repeat(3, 1fr); }
  .cars-grid { grid-template-columns: repeat(4, 1fr); }
  .faq-layout { flex-direction: row; gap: 48px; }
  .faq-list--top { max-width: none; }
  .faq-side-images { display: flex; flex-direction: column; gap: 20px; width: 280px; flex-shrink: 0; }
  .faq-side-images__img { height: 240px; }
  .persona-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   スマホ (max-width: 639px)
   ========================================================================== */
@media (max-width: 639px) {
  /* ---- 基本：本文と余白の最適化 ---- */
  body { font-size: 15.5px; line-height: 1.85; padding-bottom: 60px; }
  .wrap { padding: 0 18px; }

  /* ---- 固定CTAバー（タップしやすく） ---- */
  .site-header { padding: 12px 18px; }
  .site-header .hd-cta { display: none; }
  .floating-cta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  }
  .floating-cta a { flex: 1; text-align: center; padding: 16px 0; font-weight: 900; font-size: 15px; color: var(--white); min-height: 56px; display: flex; align-items: center; justify-content: center; gap: 6px; }
  .floating-cta__apply { background: linear-gradient(135deg, var(--orange), #e85d10); }
  .floating-cta__line { background: var(--line-green); }

  /* ---- セクション共通：縦の詰めすぎを解消 ---- */
  .section-worry, .section-numbers, .section-training, .section-message,
  .section-area, .section-jobs, .section-faq, .section-reasons,
  .section-salary, .section-voice, .section-flow, .section-compare,
  .section-lifestyle, .section-persona, .section-one-day, .section-video { padding: 60px 0; }
  .section-cta { padding: 72px 0; }
  .sec-head { margin-bottom: 32px; }
  .sec-sub { font-size: 14px; margin-top: 12px; }
  .section-more { margin-top: 36px; }

  /* ---- ヒーロー ---- */
  .hero { padding: 96px 18px 64px; }
  .hero h1 { margin-bottom: 20px; }
  .hero-lead { margin-bottom: 32px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 14px 16px; margin-top: 40px; padding-top: 28px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta .btn-primary, .hero-cta .btn-primary--lg, .hero-cta .btn-line, .hero-cta .btn-tel-hero {
    width: 100%; text-align: center; justify-content: center; min-height: 56px;
  }

  /* ---- 実績バー（縦積み） ---- */
  .achievement-bar__inner { flex-direction: column; }
  .achievement-bar__item { border-right: none; border-bottom: 1px solid var(--line); justify-content: center; padding: 12px 16px; }
  .achievement-bar__item:last-child { border-bottom: none; }

  /* ---- 各カードの内側余白を圧縮 ---- */
  .worry-card { padding: 28px 22px; }
  .number-card { padding: 22px 14px; }
  .reason-card { padding: 24px 16px; }
  .salary-card { padding: 30px 22px; }
  .salary-card__pay strong { font-size: 44px; }
  .salary-annual { padding: 28px 20px; }
  .salary-annual__item { padding: 16px 20px; }
  .flow-step { padding: 24px 20px; }
  .voice-card__body { padding: 18px; }
  .job-card__body { padding: 18px; }
  .area-card__content { padding: 16px 18px; }
  .lifestyle-card__title { padding: 16px 18px 6px; }
  .lifestyle-card__desc { padding: 0 18px 18px; }
  .persona-card__body { padding: 18px; }
  .workstyle-card { padding: 26px 20px; }
  .training-step { padding: 24px 20px; }

  /* ---- 研修タイムライン（余白を詰める） ---- */
  .training-timeline::before { left: 22px; }
  .training-timeline__item { gap: 16px; margin-bottom: 28px; }
  .training-timeline__marker { width: 44px; }
  .training-timeline__step { width: 44px; height: 44px; font-size: 15px; }
  .training-timeline__content { padding: 22px 20px; }

  /* ---- 代表メッセージ ---- */
  .message-inner { gap: 28px; }
  .message-title { margin-bottom: 20px; padding-bottom: 16px; }
  .message-body p { font-size: 14.5px; line-height: 1.9; margin-bottom: 16px; }

  /* ---- 数字で見るカード（2列維持しつつ調整） ---- */
  .numbers-grid { gap: 14px; }

  /* ---- 写真の高さをスマホ向けに ---- */
  .worry-photo img { height: 200px; }
  .area-photo img { height: 200px; }
  .jobs-hero-photo img { height: 180px; }
  .salary-photo img { height: 170px; }

  /* ---- 最終CTA（ボタン全幅） ---- */
  .section-cta__heading { margin-bottom: 16px; }
  .section-cta__lead { margin-bottom: 32px; }
  .section-cta__buttons { flex-direction: column; align-items: stretch; gap: 12px; }
  .section-cta__buttons .btn-primary, .section-cta__buttons .btn-primary--lg,
  .section-cta__buttons .btn-line, .section-cta__buttons .btn-line--lg {
    width: 100%; justify-content: center; min-height: 58px;
  }
  .section-cta__bonus { font-size: 15px; padding: 12px 22px; }
  .section-cta__bonus strong { font-size: 18px; }

  /* ---- 中間CTA（ボタン全幅） ---- */
  .mini-cta { padding: 32px 0; }
  .mini-cta__buttons { flex-direction: column; align-items: stretch; width: 100%; }
  .mini-cta__buttons .btn-primary, .mini-cta__buttons .btn-line { width: 100%; justify-content: center; min-height: 54px; }

  /* ---- 募集要項テーブル（縦積み） ---- */
  .requirements-table, .requirements-table tbody, .requirements-table tr, .requirements-table th, .requirements-table td { display: block; width: 100%; }
  .requirements-table th { padding: 14px 18px 6px; }
  .requirements-table td { padding: 6px 18px 16px; }

  /* ---- 応募フォーム ---- */
  .apply-section { padding: 56px 0; }
  .apply-form { padding: 26px 18px; }
  .apply-intro { margin-bottom: 32px; font-size: 14.5px; }
  .cf7-field { margin-bottom: 22px; }
  .cf7-submit input[type="submit"] { font-size: 17px; padding: 18px 28px; }

  /* ---- 下層ページ共通 ---- */
  .page-header { padding: 110px 0 44px; }
  .page-content, .about-section, .requirements-section, .voice-archive-section, .voice-single { padding: 56px 0; }
  .entry-content h2 { font-size: 21px; margin: 36px 0 14px; }
  .entry-content h3 { font-size: 18px; margin: 28px 0 10px; }

  /* ---- 先輩の声 一覧フィルタ（横スクロール回避） ---- */
  .voice-filter { gap: 6px; }
  .voice-filter__btn { font-size: 13px; padding: 8px 16px; }
}

/* ---- 極小端末 (max-width: 380px) ---- */
@media (max-width: 380px) {
  .wrap { padding: 0 14px; }
  .salary-card__pay strong { font-size: 38px; }
  .hero-stat__num { font-size: 24px; }
  .floating-cta a { font-size: 14px; }
}

/* ==========================================================================
   他業種比較
   ========================================================================== */
.section-compare { padding: 100px 0; background: var(--white); }
.compare-table-wrap { overflow-x: auto; margin-bottom: 40px; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 500px; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
.compare-table thead th { font-weight: 900; font-size: 13px; letter-spacing: 0.05em; }
.compare-table__label { font-weight: 700; color: var(--navy); width: 100px; background: var(--cream); }
.compare-table__other { color: var(--gray); background: var(--cream); }
.compare-table__ours { background: rgba(255,107,26,0.04); }
.compare-table__ours strong { color: var(--orange); font-size: 15px; }
.compare-table__ours small { color: var(--gray); font-size: 12px; }
.compare-table thead .compare-table__other { background: var(--gray); color: var(--white); text-align: center; }
.compare-table thead .compare-table__ours { background: var(--orange); color: var(--white); text-align: center; font-size: 14px; }
.compare-cta { text-align: center; }
.compare-cta__text { font-family: var(--font-display); font-weight: 900; font-size: 18px; color: var(--navy); margin-bottom: 20px; }

/* ==========================================================================
   ライフスタイル
   ========================================================================== */
.section-lifestyle { padding: 100px 0; background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.section-lifestyle .sec-en { border-color: rgba(255,138,71,0.5); }
.section-lifestyle .sec-ja { color: var(--white); }

.lifestyle-calendar { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 28px; max-width: 500px; margin: 0 auto 48px; }
.lifestyle-calendar__head { text-align: center; font-weight: 700; font-size: 14px; color: var(--orange-soft); margin-bottom: 16px; }
.lifestyle-calendar__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; text-align: center; }
.cal-header { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5); padding: 4px 0; }
.cal-day { font-size: 13px; font-weight: 600; padding: 8px 4px; border-radius: 6px; }
.cal-day--work { background: rgba(255,107,26,0.2); color: var(--orange-soft); }
.cal-day--off { background: rgba(19,163,196,0.15); color: var(--sky); }
.lifestyle-calendar__legend { display: flex; justify-content: center; gap: 24px; margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.6); }
.cal-legend { display: flex; align-items: center; gap: 6px; }
.cal-dot { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
.cal-dot--work { background: rgba(255,107,26,0.4); }
.cal-dot--off { background: rgba(19,163,196,0.3); }

.lifestyle-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.lifestyle-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); }
.lifestyle-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.lifestyle-card__icon { height: 160px; overflow: hidden; }
.lifestyle-card__icon img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle-card__title { font-family: var(--font-display); font-weight: 900; font-size: 16px; padding: 18px 20px 6px; }
.lifestyle-card__desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; padding: 0 20px 20px; }
.lifestyle-note { text-align: center; margin-top: 28px; font-size: 12px; color: rgba(255,255,255,0.4); }

/* ==========================================================================
   プライバシーポリシー
   ========================================================================== */
.section-privacy { padding: 60px 0 80px; }
.privacy-content h2 { font-family: var(--font-display); font-weight: 900; font-size: 18px; color: var(--navy); border-left: 4px solid var(--orange); padding-left: 12px; margin: 36px 0 12px; }
.privacy-content h2:first-child { margin-top: 0; }
.privacy-content p { font-size: 15px; line-height: 1.9; color: var(--gray); margin-bottom: 12px; }
.privacy-content ul { padding-left: 1.5em; margin-bottom: 16px; }
.privacy-content li { font-size: 15px; line-height: 1.9; color: var(--gray); margin-bottom: 4px; }
.privacy-contact { background: var(--bg); border-radius: var(--radius-sm); padding: 20px 24px; margin-top: 8px; }
.privacy-contact p { margin-bottom: 0; }

/* ==========================================================================
   CF7 フォームスタイル
   ========================================================================== */
.cf7-form { max-width: 640px; margin: 0 auto; }
.cf7-form__section { font-family: var(--font-display); font-weight: 900; font-size: 17px; color: var(--navy); border-bottom: 2px solid var(--orange); padding-bottom: 8px; margin: 32px 0 20px; }
.cf7-form__section:first-child { margin-top: 0; }
.cf7-form__field { margin-bottom: 20px; }
.cf7-form__field label { display: block; font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.cf7-required { background: var(--orange); color: var(--white); font-size: 11px; font-weight: 700; padding: 2px 6px; border-radius: 3px; margin-left: 6px; }
.cf7-form__field input[type="text"],
.cf7-form__field input[type="email"],
.cf7-form__field input[type="tel"],
.cf7-form__field select,
.cf7-form__field textarea { width: 100%; padding: 12px 14px; border: 2px solid #ddd; border-radius: var(--radius-sm); font-size: 15px; transition: border-color var(--transition); }
.cf7-form__field input:focus,
.cf7-form__field select:focus,
.cf7-form__field textarea:focus { border-color: var(--orange); outline: none; }
.cf7-form__field textarea { min-height: 120px; resize: vertical; }
.cf7-form__field .wpcf7-list-item { margin: 0 16px 0 0; }
.cf7-form__field--agree { background: var(--bg); padding: 16px; border-radius: var(--radius-sm); }
.cf7-form__field--agree a { color: var(--orange); text-decoration: underline; }
.wpcf7-response-output { border-radius: var(--radius-sm) !important; font-size: 14px; padding: 12px 16px !important; margin: 20px 0 0 !important; }
.wpcf7-not-valid-tip { font-size: 12px; color: #e53e3e; margin-top: 4px; }

/* ==========================================================================
   中間CTA
   ========================================================================== */
.mini-cta { background: linear-gradient(135deg, var(--orange), #e85d10); padding: 36px 0; }
.mini-cta__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.mini-cta__text { font-weight: 900; font-size: 18px; color: var(--white); }
.mini-cta__buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.mini-cta .btn-primary { background: var(--white); color: var(--orange); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.mini-cta .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.mini-cta .btn-line { box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

/* ==========================================================================
   ペルソナ訴求
   ========================================================================== */
.section-persona { padding: 100px 0; background: var(--cream); }
.persona-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
.persona-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); }
.persona-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.persona-card__label { display: inline-block; background: var(--orange); color: var(--white); font-weight: 700; font-size: 12px; padding: 5px 14px; border-radius: var(--radius-pill); margin-bottom: 14px; }
.persona-card__body { padding: 28px 24px; border-top: 3px solid var(--orange); }
.persona-card__who { font-family: var(--font-display); font-weight: 900; font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.persona-card__reason { font-size: 14px; color: var(--gray); line-height: 1.8; }
.persona-cta { text-align: center; }
.persona-cta__text { font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 20px; }

/* CTA merits */
.section-cta__merits { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.section-cta__merit { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-weight: 700; font-size: 13px; padding: 8px 18px; border-radius: var(--radius-pill); }
.section-cta__note { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 16px; }

/* ==========================================================================
   スクロールアニメーション
   ========================================================================== */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.06s; }
.fade-up:nth-child(3) { transition-delay: 0.12s; }
.fade-up:nth-child(4) { transition-delay: 0.18s; }
.fade-up:nth-child(5) { transition-delay: 0.24s; }
