/* ===========================================
   MEDI ALPHA PLUS 採用LP
   style.css
   =========================================== */

/* ---------- Variables ---------- */
:root {
  --navy: #0a1628;
  --navy-mid: #0d2040;
  --blue: #1255a4;
  --blue-light: #2a7de1;
  --blue-pale: #e8f0fb;
  --gold: #c9a227;
  --gold-light: #f0c93a;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --gray-light: #f0f4f8;
  --gray: #8a9ab5;
  --text: #1a2436;
  --text-mid: #3d4f69;
  --border: #d9e2f0;

  --font-jp: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --font-serif: 'Noto Serif JP', 'Times New Roman', serif;
  --font-en: 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 6px 24px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 16px 48px rgba(10, 22, 40, 0.18);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-jp);
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

/* ---------- Container ---------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Section Helpers ---------- */
.section-pad { padding: 96px 0; }
.bg-light { background: var(--gray-light); }
.bg-navy { background: var(--navy); }
.bg-gradient { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); }

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header.light .section-label { color: rgba(255,255,255,0.5); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-header.light .section-title { color: var(--white); }
.accent { color: var(--blue); }
.accent-gold { color: var(--gold); }
.section-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.9;
}
.section-header.light .section-desc { color: rgba(255,255,255,0.7); }


/* ===========================================
   HEADER
   =========================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(10,22,40,0.12);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo .logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}
.site-header.scrolled .header-logo .logo-img {
  filter: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  letter-spacing: 0.05em;
}
.header-nav a:hover { color: var(--gold); }
.site-header.scrolled .header-nav a { color: var(--text-mid); }
.site-header.scrolled .header-nav a:hover { color: var(--blue); }

.btn-header-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 22px !important;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  transition: all var(--transition) !important;
}
.btn-header-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201,162,39,0.4) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--navy); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(300px, 85vw);
  height: 100vh;
  background: var(--navy);
  z-index: 2000;
  padding: 80px 36px 36px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav nav { display: flex; flex-direction: column; gap: 0; }
.mobile-nav-link {
  display: block;
  padding: 16px 0;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-link.highlight {
  margin-top: 24px;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  border-radius: 50px;
  padding: 14px 20px;
  border-bottom: none;
  font-weight: 700;
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
}
.mobile-nav-overlay.show { display: block; }


/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

/* 背景 */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-team.jpg');
  background-size: cover;
  background-position: center 15%;
  background-repeat: no-repeat;
  animation: kenBurns 24s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes kenBurns {
  0%   { transform: scale(1.05) translateX(0); }
  100% { transform: scale(1.12) translateX(-1%); }
}

/* ユーザー提供の集合写真を優先して上書き（JSで設定） */

/* 左側グラデーション（テキストエリアを見やすく） */
.hero-overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 18, 40, 0.92) 0%,
    rgba(8, 18, 40, 0.80) 40%,
    rgba(8, 18, 40, 0.50) 65%,
    rgba(8, 18, 40, 0.25) 100%
  );
}
/* 全体の暗度補正（白背景の集合写真に合わせて濃いめ） */
.hero-overlay-base {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 40, 0.45);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Hero Text */
.hero-text {
  max-width: 700px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.08);
}
.label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}
.headline-main {
  display: block;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.headline-accent {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  margin-top: 4px;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: 32px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.pc-br { display: none; }
@media (min-width: 768px) { .pc-br { display: inline; } }

/* Tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--white);
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.tag i { color: var(--gold); font-size: 0.75rem; }

/* CTA Buttons */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #06C755;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(6,199,85,0.4);
  letter-spacing: 0.03em;
}
.btn-hero-primary i { font-size: 1.1rem; }
.btn-hero-primary:hover {
  background: #05a848;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(6,199,85,0.5);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 20px 28px;
  min-width: 140px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-hint span {
  font-family: var(--font-en);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ===========================================
   INDUSTRY TRUTH（業界の闇 → MAP の違い）
   =========================================== */

/* ---- 6ケース グリッド ---- */
.truth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}

/* ---- 個別カード ---- */
.truth-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  padding: 24px 22px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.truth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, #e74c3c, #e74c3c80);
}
.truth-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(231,76,60,0.10);
  border-color: rgba(231,76,60,0.2);
}

/* カード上部 */
.truth-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.truth-no {
  font-size: 0.62rem;
  font-weight: 700;
  color: #e74c3c;
  letter-spacing: 0.04em;
  background: rgba(231,76,60,0.08);
  padding: 3px 10px;
  border-radius: 50px;
}
.truth-icon-wrap {
  width: 36px; height: 36px;
  background: rgba(231,76,60,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #e74c3c;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* タイトル */
.truth-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

/* 箇条書き */
.truth-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.truth-list li {
  font-size: 0.82rem;
  color: #555;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.truth-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #e74c3c;
}

/* 結果 */
.truth-result {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(231,76,60,0.06);
  border: 1px solid rgba(231,76,60,0.15);
  border-radius: 8px;
  padding: 8px 12px;
}
.truth-result i {
  color: #e74c3c;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.truth-result span {
  font-size: 0.82rem;
  font-weight: 700;
  color: #c0392b;
}

/* ---- 切り返し矢印 ---- */
.truth-pivot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
.truth-pivot-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--gold);
}
.truth-pivot-arrow i {
  font-size: 1.1rem;
  opacity: 0.5;
  animation: arrow-bounce 1.4s ease-in-out infinite;
}
.truth-pivot-arrow i:nth-child(1) { animation-delay: 0s; }
.truth-pivot-arrow i:nth-child(2) { animation-delay: 0.15s; opacity: 0.7; }
.truth-pivot-arrow i:nth-child(3) { animation-delay: 0.3s; opacity: 1; }
@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}
.truth-pivot-lead {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.03em;
  text-align: center;
}

/* ---- MEDI ALPHA PLUS の答え（大バナー） ---- */
.truth-answer {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1a38 100%);
  border-radius: 20px;
  padding: 48px 44px 40px;
  position: relative;
  overflow: hidden;
}
.truth-answer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gold), #f5d784, var(--gold));
}
.truth-answer::after {
  content: 'MAP';
  position: absolute;
  right: -20px; top: -20px;
  font-size: 9rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  font-family: var(--font-en);
  line-height: 1;
  pointer-events: none;
}

/* ヘッダー */
.truth-answer-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.truth-answer-logo-mark {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold) 0%, #f5d784 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.truth-answer-label {
  font-family: var(--font-en);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 6px;
}
.truth-answer-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
}

/* 5つの強み グリッド */
.truth-answer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.truth-answer-item {
  display: flex;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 18px;
  transition: all 0.3s ease;
}
.truth-answer-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-2px);
}
.truth-answer-item--full {
  grid-column: 1 / -1;
  border-color: rgba(201,162,39,0.25);
  background: rgba(201,162,39,0.06);
}
.truth-answer-item--full:hover {
  background: rgba(201,162,39,0.10);
  border-color: var(--gold);
}
.truth-answer-icon {
  width: 42px; height: 42px;
  background: rgba(201,162,39,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.truth-answer-icon--gold {
  background: linear-gradient(135deg, var(--gold), #f5d784);
  color: var(--navy);
}
.truth-answer-item-title {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 7px;
  line-height: 1.4;
}
.truth-answer-item-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
}
.truth-answer-item-desc strong {
  color: var(--gold);
  font-weight: 700;
}

/* 5つの確約バッジ */
.truth-pledges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.truth-pledge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(201,162,39,0.10);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gold);
  transition: all 0.25s ease;
}
.truth-pledge-item:hover {
  background: rgba(201,162,39,0.18);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.truth-pledge-item i {
  font-size: 0.78rem;
  color: #4caf88;
}

/* ---- レスポンシブ ---- */
@media (max-width: 1024px) {
  .truth-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .truth-grid { grid-template-columns: 1fr; gap: 14px; }
  .truth-answer { padding: 32px 24px 28px; }
  .truth-answer-grid { grid-template-columns: 1fr; gap: 14px; }
  .truth-answer-item--full { grid-column: auto; }
  .truth-answer-title { font-size: 1.1rem; }
  .truth-pledges { gap: 8px; }
  .truth-pledge-item { font-size: 0.78rem; padding: 7px 14px; }
}
@media (max-width: 480px) {
  .truth-answer-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}


/* ===========================================
   EMPATHY
   =========================================== */
.empathy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

/* 画像付きカード */
.empathy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
  display: flex;
  flex-direction: column;
}
.empathy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

/* 画像エリア */
.empathy-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-light);
}
.empathy-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.empathy-card:hover .empathy-img-wrap img {
  transform: scale(1.06);
}
/* 画像下部のフェード */
.empathy-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(10, 22, 40, 0.18));
  pointer-events: none;
}

/* テキストエリア */
.empathy-card-body {
  padding: 20px 22px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.empathy-icon {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: all var(--transition);
}
.empathy-card:hover .empathy-icon {
  background: var(--blue);
  color: var(--white);
}
.empathy-card-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 500;
}

.empathy-answer {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
}
.answer-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.answer-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
}
.answer-lead {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.answer-main {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--white);
  font-weight: 500;
  line-height: 1.6;
}
.answer-main strong { color: var(--gold); font-weight: 700; }


/* ===========================================
   MEDICAL VALUE / JOB SCENES
   =========================================== */

/* グリッドレイアウト：2列ベース */
.job-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 48px;
}

/* 大カード：2行分の高さ＋2列分の幅 */
.job-scene-large {
  grid-row: span 2;
}

/* 通常カード */
.job-scene-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}
.job-scene-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.22);
}

/* 画像エリア */
.job-scene-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
/* 通常カードの画像高さ */
.job-scene-card:not(.job-scene-large) .job-scene-img {
  height: 200px;
}
/* 大カードの画像高さ（縦長を活かす） */
.job-scene-large .job-scene-img {
  flex: 1;
  min-height: 280px;
}
.job-scene-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.job-scene-card:hover .job-scene-img img {
  transform: scale(1.06);
}
/* 画像下グラデーション */
.job-scene-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(10,22,40,0.7) 0%, transparent 100%);
  pointer-events: none;
}

/* バッジ */
.job-scene-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.1em;
}
.job-scene-badge.urgent {
  background: var(--gold);
  color: var(--navy);
}
.job-scene-badge.night {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

/* テキストエリア */
.job-scene-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.job-scene-large .job-scene-body {
  padding: 26px 28px 32px;
}

/* タグ */
.job-scene-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.job-scene-tag i { font-size: 0.68rem; }

/* 見出し */
.job-scene-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}
.job-scene-large .job-scene-body h3 {
  font-size: 1.2rem;
}

/* 本文 */
.job-scene-body p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}
.job-scene-large .job-scene-body p {
  font-size: 0.9rem;
}

/* 深夜カードの強調 */
.job-scene-night .job-scene-body h3 {
  color: var(--gold-light);
}

.value-message {
  text-align: center;
  padding: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.value-message p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--white);
  line-height: 1.8;
  font-style: italic;
}

/* コーポレート動画ブロック */
.corporate-video-block {
  margin-top: 56px;
  text-align: center;
}
.corporate-video-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.corporate-video-label i {
  font-size: 1rem;
}
.corporate-video-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.corporate-video-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.corporate-video-wrap {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(201,162,39,0.25);
  line-height: 0; /* img下の余白を消す */
}
.corporate-video-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.corporate-video-wrap:hover .corporate-video-img {
  transform: scale(1.03);
}
.corporate-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.4);
  transition: background 0.3s ease;
}
.corporate-video-wrap:hover .corporate-video-overlay {
  background: rgba(10,22,40,0.6);
}
.corporate-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  z-index: 3;
}
.corporate-video-play-btn {
  width: 76px;
  height: 76px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(255,0,0,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.corporate-video-wrap:hover .corporate-video-play-btn {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(255,0,0,0.7);
}
.corporate-video-play-btn i {
  font-size: 2.2rem;
  color: #fff;
}
.corporate-video-play span {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}


/* ===========================================
   DIFFERENCE
   =========================================== */
.diff-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
  max-width: 100%;
}
.diff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 600px;
}
.diff-table thead tr {
  background: var(--navy);
}
.diff-th-label {
  padding: 20px 24px;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  font-weight: 500;
  width: 30%;
  text-align: left;
}
.diff-th-delivery {
  padding: 20px 24px;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  width: 35%;
}
.diff-th-medical {
  padding: 20px 24px;
  text-align: center;
  color: var(--gold);
  font-weight: 700;
  width: 35%;
}
.diff-th-medical small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.diff-table tbody tr:nth-child(odd) { background: var(--white); }
.diff-table tbody tr:nth-child(even) { background: var(--gray-light); }
.diff-label {
  padding: 16px 24px;
  font-weight: 600;
  color: var(--navy);
  border-right: 1px solid var(--border);
}
.diff-delivery {
  padding: 16px 24px;
  text-align: center;
  color: #e74c3c;
}
.diff-medical {
  padding: 16px 24px;
  text-align: center;
  color: var(--blue);
  font-weight: 600;
}
.diff-delivery i { margin-right: 4px; }
.diff-medical i { margin-right: 4px; }

/* ===========================================
   DIFF COMPARE（宅配比較・カード版）
   =========================================== */
.diff-compare-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
  border: 1px solid var(--border);
}
/* ヘッダー行 */
.diff-compare-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  background: var(--navy);
}
.diff-compare-head-item,
.diff-compare-head-bad,
.diff-compare-head-good {
  padding: 16px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.diff-compare-head-item { color: rgba(255,255,255,0.5); }
.diff-compare-head-bad  { color: rgba(255,255,255,0.65); text-align: center; border-left: 1px solid rgba(255,255,255,0.1); }
.diff-compare-head-good { color: var(--gold-light); text-align: center; border-left: 1px solid rgba(255,255,255,0.1); }
.diff-compare-head-good small { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.45); font-weight: 400; margin-top: 2px; }
/* データ行 */
.diff-compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.diff-compare-row:last-child { border-bottom: none; }
.diff-compare-row:nth-child(odd)  { background: var(--white); }
.diff-compare-row:nth-child(even) { background: var(--gray-light); }
.diff-compare-row:hover { background: var(--blue-pale); }
.diff-compare-label {
  padding: 14px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.diff-compare-bad {
  padding: 14px 18px;
  font-size: 0.85rem;
  color: #c0392b;
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.diff-compare-good {
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.diff-compare-good i { color: #27ae60; }
.diff-neutral { color: var(--gray); margin-right: 2px; }

/* モバイル（480px以下）：縦積みカード */
@media (max-width: 480px) {
  .diff-compare-head {
    grid-template-columns: 1fr 1fr;
  }
  .diff-compare-head-item { display: none; }
  .diff-compare-row {
    grid-template-columns: 1fr;
    border-bottom: 2px solid var(--navy);
    padding: 14px 16px;
    gap: 8px;
  }
  .diff-compare-label {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 8px 0;
    font-size: 0.9rem;
    color: var(--navy);
  }
  .diff-compare-bad,
  .diff-compare-good {
    justify-content: flex-start;
    padding: 4px 0;
    border-right: none;
    text-align: left;
    font-size: 0.85rem;
  }
  .diff-compare-bad::before {
    content: "一般宅配：";
    font-size: 0.72rem;
    color: var(--gray);
    font-weight: 600;
    margin-right: 4px;
    white-space: nowrap;
  }
  .diff-compare-good::before {
    content: "当社：";
    font-size: 0.72rem;
    color: var(--blue);
    font-weight: 700;
    margin-right: 4px;
    white-space: nowrap;
  }
}

/* ===========================================
   SUIT SECTION（なぜスーツを着るのか）
   写真上部全幅 ＋ 下部カードレイアウト
   =========================================== */
.suit-section {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ── 上部：写真エリア ── */
.suit-photo-area {
  position: relative;
  width: 100%;
  /* アスペクト比で高さを制御：16:9より少し縦長に */
  aspect-ratio: 16 / 9;
  max-height: 680px;
  overflow: hidden;
  background: var(--navy);
}
.suit-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 顔・全身フォルムが見えるよう上部を中心に */
  object-position: center 20%;
  display: block;
}

/* 写真下部フェード（ネイビーへ自然につなぐ） */
.suit-photo-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(8, 18, 40, 0.55) 55%,
    rgba(8, 18, 40, 0.96) 100%
  );
  pointer-events: none;
}

/* 写真の上に重なるキャッチコピー（下部） */
.suit-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 0 0 48px;
  text-align: center;
}
.suit-eyebrow {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.suit-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.suit-accent {
  color: var(--gold);
}
.suit-lead {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.suit-lead strong {
  color: var(--gold-light);
  font-weight: 700;
}

/* ── 下部：理由カードエリア ── */
.suit-body {
  padding: 64px 0 80px;
}

/* 3カードグリッド */
.suit-reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.suit-reason-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.suit-reason-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.suit-reason-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.suit-reason-card:hover::before {
  transform: scaleX(1);
}
.suit-reason-num {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.suit-reason-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.45;
}
.suit-reason-card p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
}
.suit-reason-card strong {
  color: var(--gold);
  font-weight: 700;
}

/* 下部CTA */
.suit-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.suit-bottom-cta p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.btn-suit-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #06C755;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 50px;
  white-space: nowrap;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(6,199,85,0.4);
  text-decoration: none;
}
.btn-suit-cta:hover {
  background: #05a848;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6,199,85,0.5);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .suit-photo-area {
    aspect-ratio: 4 / 3;
    max-height: 480px;
  }
  .suit-photo-caption { padding-bottom: 32px; }
  .suit-reasons-grid { grid-template-columns: 1fr; gap: 14px; }
  .suit-bottom-cta { flex-direction: column; text-align: center; }
  .suit-body { padding: 48px 0 64px; }
}
@media (max-width: 480px) {
  .suit-photo-area { aspect-ratio: 1 / 1; max-height: 400px; }
  .suit-headline { font-size: 1.5rem; }
  .suit-reason-card { padding: 24px 20px; }
}


/* ===========================================
   GROWTH STEPS
   =========================================== */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 48px;
  margin-bottom: 48px;
}
.steps-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--gold));
}
.step-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 32px;
}
.step-badge {
  position: absolute;
  left: -48px;
  top: 16px;
  width: 40px; height: 40px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  border: 3px solid var(--gray-light);
  z-index: 1;
}
.step-badge.lv5 {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  flex: 1;
  transition: all var(--transition);
}
.step-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.step-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffef5, #fff8e0);
}
.step-icon {
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 10px;
}
.step-card.featured .step-icon { color: var(--gold); }
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}
.step-keyword {
  display: inline-flex;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 4px 12px;
  border-radius: 50px;
}

.growth-message {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  text-align: center;
}
.growth-message-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.growth-message-inner i {
  font-size: 1.6rem;
  color: var(--gold);
}
.growth-message p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}
.growth-message strong { color: var(--gold); font-weight: 700; }


/* ===========================================
   SUITED
   =========================================== */
.suited-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.suited-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--transition);
}
.suited-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.suited-icon {
  width: 56px; height: 56px;
  background: var(--blue-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--blue);
  margin-bottom: 18px;
  transition: all var(--transition);
}
.suited-card:hover .suited-icon {
  background: var(--blue);
  color: var(--white);
}
.suited-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.suited-card p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.suited-message {
  text-align: center;
  padding: 40px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  color: var(--white);
}
.suited-message em {
  font-style: normal;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 8px;
}
.suited-message strong {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-family: var(--font-serif);
  color: var(--gold);
  font-weight: 700;
}


/* ===========================================
   DAILY FLOW
   =========================================== */
.flow-timeline {
  max-width: 780px;
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 120px;
}
.flow-timeline::before {
  content: '';
  position: absolute;
  left: 80px; top: 24px; bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--border));
}
.flow-item {
  position: relative;
  padding-bottom: 36px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.flow-time {
  position: absolute;
  left: -120px;
  width: 80px;
  text-align: right;
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  top: 2px;
  padding-right: 24px;
}
.flow-dot {
  position: absolute;
  left: -20px;
  top: 6px;
  width: 12px; height: 12px;
  background: var(--blue);
  border-radius: 50%;
  border: 3px solid var(--gray-light);
  z-index: 1;
}
.flow-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  flex: 1;
  transition: all var(--transition);
}
.flow-content:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--blue);
}
.flow-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.flow-content h3 i {
  margin-right: 6px;
  color: var(--blue);
}
.flow-content p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.flow-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 8px;
}


/* ===========================================
   ONBOARDING FLOW（稼働スタートまでの流れ）
   =========================================== */

.onboarding {
  background: #fff;
}

/* ---- タイムライン全体 ---- */
.onboarding-flow {
  max-width: 760px;
  margin: 0 auto 48px;
  position: relative;
}

/* ---- 各ステップ行 ---- */
.onboarding-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 20px;
  position: relative;
}

/* ---- 左列（番号＋縦ライン） ---- */
.onboarding-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.onboarding-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-en);
  font-size: 1.0rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(10,26,64,0.18);
}
.onboarding-num--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #f5d784 100%);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(201,162,39,0.35);
}
.onboarding-num--goal {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(46,204,113,0.35);
  width: 56px; height: 56px;
  font-size: 0.85rem;
}
.onboarding-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, rgba(10,26,64,0.15), rgba(10,26,64,0.05));
  margin: 6px 0;
}

/* ---- 右列（アイコン＋テキスト） ---- */
.onboarding-step-body {
  display: flex;
  gap: 18px;
  padding: 0 0 40px;
  align-items: flex-start;
}
.onboarding-step--last .onboarding-step-body {
  padding-bottom: 0;
}
.onboarding-icon {
  width: 48px; height: 48px;
  background: rgba(10,26,64,0.06);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.28s ease;
}
.onboarding-icon--gold {
  background: rgba(201,162,39,0.12);
  color: #b8860b;
}
.onboarding-icon--goal {
  background: rgba(46,204,113,0.12);
  color: #27ae60;
}
.onboarding-content {
  flex: 1;
}
.onboarding-step-label {
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 4px;
}
.onboarding-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.onboarding-content p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.85;
}

/* NDA バッジ */
.onboarding-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.4);
  color: #9a7200;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.06em;
}

/* 強調ステップ（NDA） */
.onboarding-step--highlight .onboarding-step-body {
  background: linear-gradient(to right, rgba(201,162,39,0.05), transparent);
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  border-radius: 0 12px 12px 0;
  margin-left: -16px;
}

/* お問い合わせタグ */
.onboarding-tags {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.onboarding-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,26,64,0.06);
  border: 1px solid rgba(10,26,64,0.12);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
}
.onboarding-tags .fa-line { color: #06c755; font-size: 1rem; }

/* 研修期間メモ */
.onboarding-period-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  background: rgba(10,26,64,0.04);
  border: 1px solid rgba(10,26,64,0.10);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.82rem;
  color: #555;
}
.onboarding-period-note i {
  color: var(--navy);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.onboarding-period-note strong {
  color: var(--navy);
  font-weight: 700;
}

/* ---- 補足ボックス ---- */
.onboarding-note-box {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: linear-gradient(to right, rgba(10,26,64,0.04), rgba(10,26,64,0.02));
  border: 1px solid rgba(10,26,64,0.10);
  border-left: 4px solid var(--navy);
  border-radius: 0 14px 14px 0;
  padding: 20px 24px;
}
.onboarding-note-icon {
  font-size: 1.3rem;
  color: var(--navy);
  opacity: 0.5;
  flex-shrink: 0;
  margin-top: 2px;
}
.onboarding-note-text {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.8;
}
.onboarding-note-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 5px;
  font-weight: 700;
}

/* ---- レスポンシブ ---- */
@media (max-width: 768px) {
  .onboarding-step {
    grid-template-columns: 56px 1fr;
    gap: 0 14px;
  }
  .onboarding-num { width: 44px; height: 44px; font-size: 0.88rem; }
  .onboarding-step-body { gap: 14px; }
  .onboarding-icon { width: 42px; height: 42px; font-size: 1rem; }
  .onboarding-content h3 { font-size: 0.95rem; }
  .onboarding-note-box { flex-direction: column; gap: 10px; }
}
@media (max-width: 480px) {
  .onboarding-step {
    grid-template-columns: 44px 1fr;
    gap: 0 12px;
  }
  .onboarding-num { width: 38px; height: 38px; font-size: 0.78rem; }
  .onboarding-step-body { padding-bottom: 28px; }
}


/* ===========================================
   AREA（全面リニューアル v2）
   =========================================== */

/* ---- 全国バナー ---- */
.area-nationwide {
  background: linear-gradient(135deg, rgba(201,162,39,0.08) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: var(--radius-lg);
  padding: 22px 32px;
  margin-bottom: 36px;
}
.area-nationwide-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.area-nationwide-icon {
  width: 52px; height: 52px;
  background: rgba(201,162,39,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}
.area-nationwide-label {
  font-family: var(--font-en);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 5px;
}
.area-nationwide-text {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.85);
  flex: 1;
}
.area-nationwide-text strong { color: var(--white); font-weight: 700; }
.area-nationwide-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}
.area-nationwide-badge i { font-size: 0.9rem; }

/* ---- 採用強化ラベル ---- */
.area-focus-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.area-focus-label span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.area-focus-label i { font-size: 0.85rem; color: #ff8c42; }
.area-focus-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(201,162,39,0.3), transparent);
}

/* ---- メインレイアウト：左大カード＋右縦並び ---- */
.area-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  margin-bottom: 36px;
  align-items: start;
}

/* ---- 首都圏メインカード ---- */
.area-main-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.area-main-card.area-card-featured {
  background: linear-gradient(145deg, rgba(201,162,39,0.10) 0%, rgba(201,162,39,0.03) 100%);
  border: 1.5px solid rgba(201,162,39,0.45);
}
.area-main-card.area-card-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), #f5d784, var(--gold));
}
.area-main-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,162,39,0.18);
}
.area-main-card-inner {
  padding: 28px 28px 26px;
}
.area-main-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.area-badge-hot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.63rem;
  font-weight: 800;
  padding: 4px 11px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.area-badge-hot i { font-size: 0.6rem; color: #b22222; }
.area-priority-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}
.area-main-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.area-main-emoji { font-size: 1.6rem; line-height: 1; }
.area-main-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ---- 首都圏4都県グリッド ---- */
.area-prefs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}
.area-pref-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.area-pref-name i { font-size: 0.68rem; }
.area-list-new {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.area-list-new li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.68);
  padding-left: 11px;
  position: relative;
}
.area-list-new li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: rgba(201,162,39,0.5);
}

/* ---- 右列：サブカード群 ---- */
.area-sub-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.area-sub-card {
  border-radius: var(--radius);
  padding: 20px 22px 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  transition: all var(--transition);
  position: relative;
}
.area-sub-card.area-card-hot {
  background: linear-gradient(135deg, rgba(201,162,39,0.07) 0%, rgba(255,255,255,0.03) 100%);
  border-color: rgba(201,162,39,0.35);
}
.area-sub-card.area-card-hot:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201,162,39,0.12);
}
.area-sub-card.area-card-nationwide {
  background: rgba(255,255,255,0.03);
  border-style: dashed;
  border-color: rgba(255,255,255,0.18);
}
.area-sub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.area-sub-region {
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-region-emoji { font-size: 1.2rem; }
.area-sub-name {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--white);
}
.area-sub-prefs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.area-sub-pref {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.area-sub-pref-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 5px;
}
.area-sub-pref-label i { font-size: 0.65rem; }
.area-sub-pref-detail {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.62);
  padding-left: 14px;
}
.area-nationwide-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-top: 4px;
}

/* ---- 日本列島ビジュアル帯 ---- */
.area-japan-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.area-japan-left {
  flex: 1;
}
.area-japan-copy {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.area-japan-pins {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.area-pin-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.area-pin-group span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.area-pin-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.3);
  position: relative;
}
.area-pin-dot.area-pin-hot {
  background: var(--gold);
  border-color: #f5d784;
  box-shadow: 0 0 0 4px rgba(201,162,39,0.25), 0 0 12px rgba(201,162,39,0.5);
  animation: pin-pulse 1.8s ease-in-out infinite;
}
@keyframes pin-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201,162,39,0.25), 0 0 12px rgba(201,162,39,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(201,162,39,0.12), 0 0 20px rgba(201,162,39,0.6); }
}
.area-pin-kanto .area-pin-group span { color: var(--gold); font-weight: 700; }
.area-pin-tokai .area-pin-group span { color: var(--gold); font-weight: 700; }
.area-pin-kansai .area-pin-group span { color: var(--gold); font-weight: 700; }

/* ---- CTAエリア ---- */
.area-cta { text-align: center; }
.area-cta-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.93rem;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---- レスポンシブ ---- */
@media (max-width: 900px) {
  .area-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .area-nationwide { padding: 18px 22px; }
  .area-nationwide-badge { display: none; }
  .area-prefs-grid { grid-template-columns: 1fr 1fr; }
  .area-japan-strip { flex-direction: column; align-items: flex-start; gap: 16px; }
  .area-japan-pins { gap: 18px; }
}
@media (max-width: 480px) {
  .area-prefs-grid { grid-template-columns: 1fr; }
  .area-main-card-inner { padding: 22px 18px 20px; }
  .area-main-title { font-size: 1.25rem; }
}


/* ===========================================
   正規雇用 vs 業務委託 比較テーブル
   =========================================== */
.emp-vs-fc {
  background: var(--gray-light);
}

/* テーブルラッパー */
.evf-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,30,80,0.10);
  margin-bottom: 32px;
}
.evf-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

/* ヘッダー */
.evf-table thead tr {
  background: var(--navy);
}
.evf-table thead th {
  padding: 18px 20px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  vertical-align: middle;
}
.evf-th-item {
  width: 22%;
  text-align: left !important;
  background: #0a1628;
}
.evf-th-regular { width: 37%; }
.evf-th-fc {
  width: 41%;
  background: rgba(201,163,63,0.18);
}

/* ヘッダーバッジ */
.evf-head-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.evf-head-badge i {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.evf-head-badge span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.evf-head-badge small {
  font-size: 0.72rem;
  opacity: 0.75;
  font-weight: 400;
}
.evf-badge-regular i { color: #a0b4c8; }
.evf-badge-fc {
  color: var(--gold);
}
.evf-badge-fc i { color: var(--gold); }

/* ボディ行 */
.evf-table tbody tr {
  border-bottom: 1px solid #eef2f8;
  transition: background 0.15s;
}
.evf-table tbody tr:last-child { border-bottom: none; }
.evf-table tbody tr:hover { background: #f8faff; }
.evf-table tbody tr:nth-child(even) { background: #fbfcff; }
.evf-table tbody tr:nth-child(even):hover { background: #f5f8ff; }

/* セル共通 */
.evf-table tbody td {
  padding: 20px 20px;
  vertical-align: middle;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* 比較項目列 */
.evf-td-item {
  background: #f0f4f8;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.evf-item-icon {
  width: 28px;
  height: 28px;
  background: var(--navy);
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.78rem;
  flex-shrink: 0;
}

/* 正規雇用列 */
.evf-td-regular {
  color: #555;
  text-align: center;
}

/* 業務委託列（ハイライト） */
.evf-td-fc {
  text-align: center;
  background: rgba(245,232,195,0.15);
}
.evf-highlight {
  background: rgba(201,163,63,0.07) !important;
}

/* 値テキスト */
.evf-val {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.evf-val-good {
  color: #1a7a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.evf-val-good i { font-size: 0.85rem; }
.evf-sub {
  display: block;
  font-size: 0.76rem;
  color: #888;
  line-height: 1.6;
}

/* 補足コピー */
.evf-note-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.evf-note-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid #dde5f0;
  border-radius: 12px;
  padding: 20px 22px;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.8;
}
.evf-note-item i {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 1.1rem;
}
.evf-note-item strong { color: var(--navy); }
.evf-note-cta {
  border-left: 4px solid var(--gold);
}
.evf-note-cta i { color: var(--gold); }

/* 信頼ブロック */
.evf-trust-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--navy);
  border-radius: 16px;
  padding: 32px 24px;
  flex-wrap: wrap;
}
.evf-trust-item {
  text-align: center;
  padding: 0 32px;
}
.evf-trust-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  line-height: 1;
  margin-bottom: 8px;
}
.evf-trust-num span {
  font-size: 1.1rem;
  font-weight: 600;
  margin-left: 2px;
}
.evf-trust-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.evf-trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .evf-note-block { grid-template-columns: 1fr; }
  .evf-trust-item { padding: 12px 20px; }
  .evf-trust-num { font-size: 1.9rem; }
  .evf-trust-divider { display: none; }
  .evf-trust-block { gap: 8px; }
}
@media (max-width: 480px) {
  .evf-table { min-width: 520px; }
  .evf-trust-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .evf-trust-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 16px 12px;
  }
}


/* ===========================================
   ONBOARD FLOW（稼働スタートまでの流れ）
   =========================================== */

.onboard-flow {
  position: relative;
  overflow: hidden;
}
.onboard-flow::before {
  content: 'FLOW';
  position: absolute;
  right: -40px; top: 40px;
  font-size: 12rem;
  font-weight: 900;
  font-family: var(--font-en);
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
}

/* ステップ群 */
.onboard-steps {
  max-width: 760px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 1ステップ行 */
.onboard-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 24px;
  align-items: stretch;
}
.onboard-step--last .onboard-step-line {
  display: none;
}

/* 左カラム：番号＋縦線 */
.onboard-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.onboard-step-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  background: rgba(201,162,39,0.12);
  border: 1.5px solid rgba(201,162,39,0.35);
  border-radius: 50%;
  flex-shrink: 0;
  gap: 1px;
  transition: all 0.3s ease;
}
.onboard-step:hover .onboard-step-num {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(201,162,39,0.15);
}
.onboard-step-label {
  font-family: var(--font-en);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  line-height: 1;
  transition: color 0.3s ease;
}
.onboard-step:hover .onboard-step-label {
  color: var(--navy);
}
.onboard-step-digit {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  transition: color 0.3s ease;
}
.onboard-step:hover .onboard-step-digit {
  color: var(--navy);
}

/* ゴール番号（旗アイコン版） */
.onboard-step-num--goal {
  background: linear-gradient(135deg, var(--gold), #f5d784);
  border-color: var(--gold);
}
.onboard-step-num--goal .onboard-step-label {
  color: var(--navy);
  font-size: 0.55rem;
}
.onboard-flag {
  font-size: 1.3rem;
  color: var(--navy);
}

/* 縦線 */
.onboard-step-line {
  width: 2px;
  flex: 1;
  min-height: 32px;
  background: linear-gradient(to bottom, rgba(201,162,39,0.4), rgba(201,162,39,0.1));
  margin: 6px 0;
}

/* 右カラム：カード */
.onboard-step-card {
  display: flex;
  gap: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  align-items: flex-start;
}
.onboard-step-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,162,39,0.3);
  transform: translateX(4px);
}

/* ゴールカード */
.onboard-step-card--goal {
  background: linear-gradient(135deg, rgba(201,162,39,0.12), rgba(201,162,39,0.04));
  border-color: rgba(201,162,39,0.4);
}
.onboard-step-card--goal:hover {
  background: linear-gradient(135deg, rgba(201,162,39,0.18), rgba(201,162,39,0.08));
  border-color: var(--gold);
}

/* アイコン */
.onboard-step-icon {
  width: 44px; height: 44px;
  background: rgba(201,162,39,0.12);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.onboard-step-icon--gold {
  background: linear-gradient(135deg, var(--gold), #f5d784);
  color: var(--navy);
}

/* タイトル・テキスト */
.onboard-step-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.4;
}
.onboard-step-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* タグ */
.onboard-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.onboard-step-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(201,162,39,0.10);
  border: 1px solid rgba(201,162,39,0.25);
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}
.onboard-step-tags i { font-size: 0.7rem; }

/* CTAボタン */
.onboard-cta {
  text-align: center;
}

/* ---- レスポンシブ ---- */
@media (max-width: 600px) {
  .onboard-step {
    grid-template-columns: 56px 1fr;
    gap: 0 16px;
  }
  .onboard-step-num {
    width: 52px; height: 52px;
  }
  .onboard-step-digit { font-size: 1.1rem; }
  .onboard-step-card { padding: 18px 16px; gap: 14px; }
  .onboard-step-icon { width: 38px; height: 38px; font-size: 0.9rem; }
}


/* ===========================================
   JOBS PREVIEW（LP 案件プレビューセクション）
   =========================================== */

.jobs-preview { background: #f4f6fa; }

/* ローディング */
.jobs-preview-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  color: #999;
  font-size: 0.9rem;
}
.preview-spinner {
  width: 22px; height: 22px;
  border: 3px solid #ddd;
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* グリッド */
.jobs-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

/* カード */
.preview-job-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: all 0.28s ease;
}
.preview-job-card:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 28px rgba(10,26,64,0.10);
  transform: translateY(-3px);
}

/* カード上部 */
.preview-job-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.preview-area-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 50px;
  border: 1px solid;
  letter-spacing: 0.04em;
}
.preview-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 11px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}
.preview-status.status-urgent { background: #fff0f0; color: #e74c3c; border: 1px solid #fdc5c5; }
.preview-status.status-urgent i { color: #e74c3c; }
.preview-status.status-open   { background: #f0fff4; color: #27ae60; border: 1px solid #b7efc5; }
.preview-status.status-open i { color: #27ae60; font-size: 0.5rem; }
.preview-status.status-few    { background: #fff8e1; color: #f39c12; border: 1px solid #ffe082; }

/* タイトル */
.preview-job-title {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  flex: 1;
}

/* エリア */
.preview-job-area {
  font-size: 0.8rem;
  color: #777;
  display: flex;
  align-items: center;
  gap: 6px;
}
.preview-job-area i { color: #aaa; font-size: 0.75rem; }

/* メタ情報 */
.preview-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.preview-job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  color: #666;
  background: #f4f6fa;
  padding: 4px 10px;
  border-radius: 6px;
}
.preview-job-meta i { color: var(--navy); font-size: 0.7rem; opacity: 0.6; }

/* フッター */
.preview-job-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}
.preview-reward {
  font-size: 0.78rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}
.preview-reward i { color: var(--gold); font-size: 0.75rem; }
.preview-reward-note {
  font-size: 0.7rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed var(--border);
}
.preview-reward-note i {
  color: var(--blue-light);
  font-size: 0.68rem;
}

/* プレビューカード 特徴タグ */
.preview-features {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 8px 0 10px;
}
.preview-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #eef4ff;
  color: #1a56a0;
  border: 1px solid #c5d8f5;
  border-radius: 20px;
  font-size: 0.72rem;
  padding: 3px 9px;
  font-weight: 600;
  white-space: nowrap;
}
.preview-feature-tag i {
  color: #2d7dd2;
  font-size: 0.65rem;
}

.preview-detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s ease;
}
.preview-detail-btn:hover { gap: 10px; color: var(--gold); }
.preview-detail-btn i { font-size: 0.7rem; }

/* フッター帯 */
.jobs-preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.jobs-preview-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: #888;
}
.jobs-preview-note i { color: var(--gold); }

/* 一部のみ掲載 注意バナー */
.jobs-partial-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  max-width: 640px;
  margin: 12px auto 0;
  background: #fffbea;
  border: 1px solid #f0d060;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #7a6000;
  line-height: 1.7;
  text-align: left;
  box-sizing: border-box;
}
.jobs-partial-note i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.jobs-partial-note span {
  display: inline;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.jobs-partial-note strong {
  display: inline;
  color: #b8860b;
  font-weight: 700;
}

.jobs-preview-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.28s ease;
  box-shadow: 0 4px 16px rgba(10,26,64,0.18);
}
.jobs-preview-more-btn:hover {
  background: #0d2352;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,26,64,0.25);
  gap: 14px;
}
.jobs-preview-more-btn .fa-arrow-right { font-size: 0.8rem; }
.preview-no-jobs {
  text-align: center;
  color: #999;
  font-size: 0.9rem;
  padding: 32px;
  grid-column: 1 / -1;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .jobs-preview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .jobs-preview-grid { grid-template-columns: 1fr; }
  .jobs-preview-footer { flex-direction: column; align-items: flex-start; }
  .jobs-preview-more-btn { width: 100%; justify-content: center; }
}


/* ===========================================
   DIRECT CONTRACT + COMMUNITY
   =========================================== */

/* ---- セクション全体 ---- */
.direct-community {
  background: #f8f9fb;
}

/* ---- PART 1：直接契約ブロック ---- */
.direct-block {
  margin-bottom: 72px;
}

/* リードエリア */
.direct-reason-wrap {
  max-width: 880px;
  margin: 0 auto;
}
.direct-reason-lead {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--navy);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 24px;
}
.direct-reason-icon-big {
  width: 64px; height: 64px;
  background: rgba(201,162,39,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
}
.direct-reason-headline {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.direct-reason-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* 3つの理由カード */
.direct-reason-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.direct-reason-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 24px 22px;
  display: flex;
  gap: 20px;
  transition: all 0.28s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.direct-reason-card:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 28px rgba(10,26,64,0.10);
  transform: translateY(-3px);
}
.direct-reason-card--full {
  grid-column: 1 / -1;
  border-left: 4px solid var(--gold);
  background: linear-gradient(to right, rgba(201,162,39,0.04), #fff);
}
.direct-reason-num {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(10,26,64,0.08);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  text-align: right;
}
.direct-reason-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.direct-reason-body h4 i {
  color: var(--gold);
  font-size: 0.85rem;
}
.direct-reason-body p {
  font-size: 0.83rem;
  color: #555;
  line-height: 1.8;
}
.direct-reason-body p strong {
  color: var(--navy);
  font-weight: 700;
}

/* 告知バナー */
.direct-notice {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff5f5;
  border: 1.5px solid #e74c3c;
  border-radius: 12px;
  padding: 18px 24px;
}
.direct-notice-icon {
  font-size: 1.5rem;
  color: #e74c3c;
  flex-shrink: 0;
}
.direct-notice-text {
  font-size: 0.87rem;
  color: #555;
  line-height: 1.75;
}
.direct-notice-text strong {
  display: block;
  font-size: 0.93rem;
  color: #c0392b;
  margin-bottom: 4px;
}

/* ---- 仕切り ---- */
.section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 64px;
}
.section-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #ddd, transparent);
}
.section-divider i {
  font-size: 1.3rem;
  color: var(--navy);
  opacity: 0.3;
}

/* ---- PART 2：コミュニティブロック ---- */
.community-block {}

/* 写真グリッド */
.community-photo-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  grid-template-rows: 300px;
  gap: 12px;
  margin-bottom: 40px;
  border-radius: 18px;
  overflow: hidden;
}
.community-photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.community-photo-item--large {
  grid-row: 1;
}
.community-photo-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.community-photo-item:hover img {
  transform: scale(1.05);
}

/* プレースホルダー（写真未設定時） */
.community-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e8ecf4 0%, #d0d8e8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #8a9bb5;
  transition: background 0.3s ease;
}
.community-photo-item:hover .community-photo-placeholder {
  background: linear-gradient(135deg, #dde2f0 0%, #c4cede 100%);
}
.community-photo-placeholder i {
  font-size: 1.8rem;
  opacity: 0.5;
}
.community-photo-placeholder span {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.6;
  letter-spacing: 0.05em;
}
.community-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px 12px;
  background: linear-gradient(to top, rgba(10,26,64,0.7), transparent);
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
}

/* コミュニティ特徴 4列グリッド */
.community-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.community-feature-item {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.28s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.community-feature-item:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 28px rgba(10,26,64,0.10);
  transform: translateY(-3px);
}
.community-feature-icon {
  width: 46px; height: 46px;
  background: rgba(10,26,64,0.06);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  transition: all 0.28s ease;
}
.community-feature-item:hover .community-feature-icon {
  background: var(--navy);
  color: var(--gold);
}
.community-feature-body h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4;
}
.community-feature-body p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.75;
}

/* ---- レスポンシブ ---- */
@media (max-width: 1024px) {
  .community-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .community-photo-item--large {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .community-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .direct-reason-grid { grid-template-columns: 1fr; }
  .direct-reason-card--full { grid-column: auto; }
  .direct-reason-lead { flex-direction: column; text-align: center; }
  .direct-reason-icon-big { margin: 0 auto; }
  .community-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px;
  }
  .community-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .community-photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }
  .community-photo-item--large { grid-column: auto; grid-row: auto; }
  .community-features { grid-template-columns: 1fr; }
  .direct-notice { flex-direction: column; text-align: center; }
}


/* ===========================================
   EMPLOYMENT COMPARE（正規雇用 vs 業務委託）
   =========================================== */

.employment-compare {
  background: #fff;
}

/* ---- 比較テーブル ---- */
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 44px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  max-width: 100%;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 520px;
  max-width: 100%;
}
.compare-table thead tr {
  background: var(--navy);
}
.compare-table th {
  padding: 18px 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.compare-th-item {
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  width: 26%;
  text-align: left;
}
.compare-th-regular {
  color: rgba(255,255,255,0.7);
  text-align: center;
  width: 37%;
}
.compare-th-map {
  text-align: center;
  width: 37%;
  position: relative;
}
.compare-th-label {
  display: block;
  font-size: 1.0rem;
  font-weight: 700;
}
.compare-th-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.compare-th-map .compare-th-label {
  color: #fff;
}

/* テーブルボディ */
.compare-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: #fafbfc; }

.compare-item {
  padding: 18px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 9px;
}
.compare-item i {
  color: var(--gold);
  width: 16px;
  text-align: center;
}
.compare-regular {
  padding: 18px 24px;
  text-align: center;
  color: #888;
  font-size: 0.87rem;
  background: #fafafa;
}
.compare-map {
  padding: 18px 24px;
  text-align: center;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(201,162,39,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.compare-map i { color: #2ecc71; font-size: 0.85rem; }

/* ===========================================
   EMP COMPARE（正規雇用vs業務委託・カード版）
   =========================================== */
.emp-compare-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 44px;
  border: 1px solid var(--border);
}
.emp-compare-head {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.2fr;
  background: var(--navy);
}
.emp-compare-head-item,
.emp-compare-head-regular,
.emp-compare-head-map {
  padding: 16px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.emp-compare-head-item    { color: rgba(255,255,255,0.5); align-items: flex-start; }
.emp-compare-head-regular { color: rgba(255,255,255,0.7); border-left: 1px solid rgba(255,255,255,0.1); }
.emp-compare-head-map     { color: #fff; border-left: 1px solid rgba(255,255,255,0.1); }
.emp-compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 50px;
  letter-spacing: 0.06em;
}
.emp-compare-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.2fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.emp-compare-row:last-child { border-bottom: none; }
.emp-compare-row:nth-child(odd)  { background: var(--white); }
.emp-compare-row:nth-child(even) { background: var(--gray-light); }
.emp-compare-row:hover { background: var(--blue-pale); }
.emp-compare-label {
  padding: 16px 20px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.emp-compare-label i { color: var(--gold); width: 16px; text-align: center; }
.emp-compare-regular {
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--text-mid);
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.emp-compare-map {
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.emp-compare-map i { color: #27ae60; font-size: 0.9rem; }

@media (max-width: 480px) {
  .emp-compare-head { grid-template-columns: 1fr 1fr; }
  .emp-compare-head-item { display: none; }
  .emp-compare-row {
    grid-template-columns: 1fr;
    border-bottom: 2px solid var(--navy);
    padding: 14px 16px;
    gap: 8px;
  }
  .emp-compare-label {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 8px 0;
  }
  .emp-compare-regular,
  .emp-compare-map {
    justify-content: flex-start;
    padding: 4px 0;
    border-right: none;
    text-align: left;
    font-size: 0.85rem;
  }
  .emp-compare-regular::before {
    content: "正規雇用：";
    font-size: 0.72rem;
    color: var(--gray);
    font-weight: 600;
    margin-right: 4px;
  }
  .emp-compare-map::before {
    content: "当社（業務委託）：";
    font-size: 0.72rem;
    color: var(--blue);
    font-weight: 700;
    margin-right: 4px;
  }
}

/* ---- 補足コピー ---- */
.compare-copy-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 52px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.compare-copy-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
}
.compare-copy-regular {
  background: #f4f6fa;
}
.compare-copy-map {
  background: var(--navy);
}
.compare-copy-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.compare-copy-regular .compare-copy-icon {
  background: rgba(10,26,64,0.08);
  color: #888;
}
.compare-copy-map .compare-copy-icon {
  background: rgba(201,162,39,0.15);
  color: var(--gold);
}
.compare-copy-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}
.compare-copy-regular .compare-copy-label { color: #aaa; }
.compare-copy-map .compare-copy-label { color: var(--gold); }
.compare-copy-text {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
}
.compare-copy-regular .compare-copy-text { color: #555; }
.compare-copy-map .compare-copy-text { color: #fff; }
.compare-copy-vs {
  padding: 20px 18px;
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 900;
  color: #ccc;
  background: #eef0f5;
  align-self: stretch;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
}

/* ---- 信頼ブロック ---- */
.compare-trust-block {
  background: #f8f9fb;
  border-radius: 20px;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.compare-trust-text {
  text-align: center;
}
.compare-trust-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 10px;
}
.compare-trust-text p:last-child { margin-bottom: 0; }
.compare-trust-text strong { color: var(--navy); font-weight: 700; }

/* 安心訴求エリア */
.compare-reassure {
  background: var(--navy);
  border-radius: 16px;
  padding: 36px 36px 32px;
  position: relative;
  overflow: hidden;
}
.compare-reassure::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), #f5d784, var(--gold));
}
.compare-reassure-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.compare-reassure-logo {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold) 0%, #f5d784 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy);
  flex-shrink: 0;
}
.compare-reassure-label {
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 6px;
}
.compare-reassure-title {
  font-size: 1.0rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.55;
}
.compare-reassure-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.compare-reassure-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 18px;
  transition: all 0.28s ease;
}
.compare-reassure-item:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-2px);
}
.compare-reassure-icon {
  width: 42px; height: 42px;
  background: rgba(201,162,39,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  color: var(--gold);
}
.compare-reassure-body h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
  line-height: 1.4;
}
.compare-reassure-body p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
}

/* 締めコピー */
.compare-closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.compare-closing-quote {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.compare-closing-line1 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #666;
  position: relative;
  padding-left: 18px;
}
.compare-closing-line1::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 80%;
  background: #ddd;
  border-radius: 2px;
}
.compare-closing-line2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  padding-left: 18px;
  position: relative;
}
.compare-closing-line2::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 80%;
  background: var(--gold);
  border-radius: 2px;
}
.compare-closing-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- レスポンシブ ---- */
@media (max-width: 900px) {
  .compare-reassure-list { grid-template-columns: 1fr 1fr; }
  .compare-trust-block { padding: 32px 24px; }
}
@media (max-width: 768px) {
  .compare-copy-block { flex-direction: column; }
  .compare-copy-vs { padding: 12px 24px; align-self: auto; width: 100%; text-align: center; justify-content: center; }
  .compare-copy-item { padding: 22px 24px; }
  .compare-reassure { padding: 24px 20px 22px; }
  .compare-reassure-header { flex-direction: column; align-items: flex-start; }
  .compare-reassure-list { grid-template-columns: 1fr; }
  .compare-closing { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .compare-trust-block { padding: 24px 18px; }
  .compare-closing-line1 { font-size: 0.95rem; }
  .compare-closing-line2 { font-size: 1.05rem; }
}


/* ===========================================
   VEHICLE LEASE（車両リース）
   =========================================== */

.vehicle-lease {
  background: #f4f6fa;
}

/* ---- 2カラムレイアウト ---- */
.vehicle-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ---- 写真エリア ---- */
.vehicle-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.vehicle-photo-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.vehicle-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.vehicle-photo-item:hover img {
  transform: scale(1.03);
}
.vehicle-photo-main {
  height: 260px;
}
.vehicle-photo-sub {
  height: 200px;
}
.vehicle-photo-tag {
  position: absolute;
  bottom: 12px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,26,64,0.78);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}
.vehicle-photo-tag i { color: var(--gold); }

/* ---- 情報エリア ---- */
.vehicle-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.vehicle-info-lead {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--navy);
  border-radius: 14px;
  padding: 22px 24px;
}
.vehicle-info-icon {
  width: 48px; height: 48px;
  background: rgba(201,162,39,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}
.vehicle-info-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.5;
}
.vehicle-info-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ---- チェックポイント ---- */
.vehicle-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.vehicle-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 18px 20px;
  transition: all 0.28s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.vehicle-point:hover {
  border-color: var(--navy);
  box-shadow: 0 6px 22px rgba(10,26,64,0.10);
  transform: translateX(4px);
}
.vehicle-point-icon {
  font-size: 1.1rem;
  color: #2ecc71;
  flex-shrink: 0;
  margin-top: 2px;
}
.vehicle-point-body h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.vehicle-point-body p {
  font-size: 0.81rem;
  color: #666;
  line-height: 1.75;
}

/* ---- 注意書きCTA ---- */
.vehicle-cta-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.83rem;
  color: #666;
}
.vehicle-cta-note i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---- レスポンシブ ---- */
@media (max-width: 900px) {
  .vehicle-layout { grid-template-columns: 1fr; }
  .vehicle-photos {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .vehicle-photo-main,
  .vehicle-photo-sub { height: 200px; }
}
@media (max-width: 600px) {
  .vehicle-photos { grid-template-columns: 1fr; }
  .vehicle-photo-main { height: 220px; }
  .vehicle-photo-sub { height: 180px; }
  .vehicle-info-lead { flex-direction: column; }
}


/* ===========================================
   INCOME
   =========================================== */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.condition-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition);
}
.condition-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.condition-icon {
  font-size: 1.6rem;
  color: var(--blue);
  margin-bottom: 14px;
}
.condition-label {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.condition-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.income-models {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.income-models-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.income-models-title i { color: var(--blue); }
.income-models-note {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.income-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.income-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all var(--transition);
}
.income-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.income-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffef5, #fff8e0);
}
.income-initial {
  width: 60px; height: 60px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.income-card.featured .income-initial {
  background: var(--gold);
  color: var(--navy);
}
.income-details { flex: 1; }
.income-days {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.income-job {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.income-amount {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.income-amount span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray);
}
.income-disclaimer {
  font-size: 0.77rem;
  color: var(--gray);
  line-height: 1.7;
}

/* 経費ブロック */
/* ===========================================
   業務委託ならではの収入ブロック
   =========================================== */
.income-cost-block {
  margin-top: 48px;
  background: #fffaf2;
  border: 1px solid #f5c07a;
  border-left: 6px solid var(--gold);
  border-radius: 16px;
  padding: 40px 44px;
}

/* ヘッダー */
.income-cost-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.income-cost-header-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.income-cost-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.income-cost-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.income-cost-lead {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 32px;
}
.income-cost-lead strong { color: var(--navy); }

/* 計算式ビジュアル */
.income-cost-eq {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.income-cost-eq-box {
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.income-cost-eq-revenue {
  background: var(--navy);
  color: #fff;
  margin-bottom: 2px;
}
.income-cost-eq-result {
  background: linear-gradient(135deg, var(--gold), #e6a800);
  color: var(--navy);
}
.income-cost-eq-sub {
  font-size: 0.75rem;
  opacity: 0.75;
  letter-spacing: 0.05em;
}
.income-cost-eq-main {
  font-size: 1.15rem;
  font-weight: 700;
}
.income-cost-eq-ex {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 2px;
}

/* 演算子 */
.income-cost-eq-op {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  color: #c0392b;
  font-weight: 700;
  font-size: 0.88rem;
}
.income-cost-eq-op i { font-size: 1rem; }
.income-cost-eq-op--eq { color: var(--navy); }

/* 経費一覧 */
.income-cost-eq-expenses {
  background: #fff;
  border: 1.5px solid #f0d8b0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2px;
}
.income-cost-expense-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid #faebd7;
  transition: background 0.15s;
}
.income-cost-expense-item:last-child { border-bottom: none; }
.income-cost-expense-item:hover { background: #fffbf0; }

.ice-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #fff3d0, #ffd97a);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ice-body { flex: 1; }
.ice-name {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.ice-detail {
  display: block;
  font-size: 0.78rem;
  color: #777;
  line-height: 1.75;
}

/* 補足 */
.income-cost-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(245,192,122,0.12);
  border: 1px solid #f5c07a;
  border-radius: 10px;
  padding: 14px 20px;
  margin-top: 20px;
  font-size: 0.82rem;
  color: #665500;
  line-height: 1.75;
}
.income-cost-note i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1rem;
}

/* ===========================================
   個人事業主の魅力ブロック
   =========================================== */
.income-merit-block {
  margin-top: 44px;
  background: linear-gradient(135deg, #f0f5ff 0%, #e6eeff 100%);
  border: 1px solid #c0d3f5;
  border-left: 6px solid var(--blue);
  border-radius: 16px;
  padding: 40px 44px;
}
.income-merit-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.income-merit-header-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.income-merit-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.income-merit-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.income-merit-lead {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 28px;
}
.income-merit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.income-merit-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px;
  border: 1px solid #dce8fb;
  box-shadow: 0 2px 10px rgba(30,70,180,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.income-merit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30,70,180,0.12);
}
.income-merit-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
}
.income-merit-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.45;
}
.income-merit-card p {
  font-size: 0.79rem;
  color: #666;
  line-height: 1.8;
}
.income-merit-card p strong { color: var(--navy); }

/* CTA Note */
.income-merit-cta {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.75);
  border: 1px solid #c0d3f5;
  border-radius: 10px;
  padding: 18px 22px;
  font-size: 0.85rem;
  color: #444;
  line-height: 1.8;
}
.income-merit-cta i {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 1.1rem;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .income-merit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .income-cost-block,
  .income-merit-block { padding: 28px 22px; }
  .income-merit-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 540px) {
  .income-merit-grid { grid-template-columns: 1fr; }
  .income-cost-header h3,
  .income-merit-header h3 { font-size: 1rem; }
  .income-cost-expense-item { padding: 14px 16px; gap: 12px; }
}


/* ===========================================
   SUPPORT
   =========================================== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.support-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.support-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-en);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(18, 85, 164, 0.06);
  line-height: 1;
  user-select: none;
}
.support-icon {
  font-size: 1.6rem;
  color: var(--blue);
  margin-bottom: 16px;
}
.support-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.support-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.85;
}


/* ===========================================
   ENVIRONMENT / VOICES
   =========================================== */
.env-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.env-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 20px;
}
.env-text p:last-child { margin-bottom: 0; }

/* 環境写真スタック */
.env-photo-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.env-photo-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.env-photo-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.env-photo-main img {
  height: 220px;
}
.env-photo-sub img {
  height: 150px;
}
.env-photo-item:hover img {
  transform: scale(1.03);
}
.env-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10,22,40,0.72));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 20px 14px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.env-photo-label i {
  font-size: 0.8rem;
  opacity: 0.85;
}

.voices-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue-pale);
}
.voice-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  position: relative;
  transition: all var(--transition);
}
.voice-card:hover { box-shadow: var(--shadow-sm); }
.voice-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.voice-quote {
  font-size: 1.2rem;
  color: var(--blue-light);
  margin-bottom: 8px;
  opacity: 0.5;
}
.voice-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 12px;
}
.voice-author {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
}


/* ===========================================
   STRENGTHS / MISSION
   =========================================== */
.mission-statement {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  margin-bottom: 56px;
}
.mission-statement p {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: rgba(255,255,255,0.8);
  line-height: 2.1;
}
.mission-statement strong { color: var(--gold); font-weight: 700; }

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.strength-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.strength-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.strength-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 auto 16px;
}
.strength-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.strength-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}


/* ===========================================
   CEO MESSAGE
   =========================================== */
.ceo-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.ceo-photo-wrap { position: relative; }
.ceo-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.ceo-name-card {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  text-align: center;
  min-width: 160px;
  box-shadow: var(--shadow-md);
}
.ceo-title {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.ceo-name { font-size: 0.95rem; font-weight: 700; }

.ceo-quote-mark {
  font-size: 2rem;
  color: var(--blue-light);
  opacity: 0.3;
  margin-bottom: 16px;
}
.ceo-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--blue-pale);
}
.ceo-body p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 18px;
}
.ceo-body strong { color: var(--navy); font-weight: 700; }
.ceo-closing {
  font-weight: 600;
  color: var(--blue) !important;
  font-style: italic;
  border-left: 3px solid var(--blue);
  padding-left: 16px;
}


/* ===========================================
   FINAL CTA
   =========================================== */
.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.4;
}
.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 2;
  margin-bottom: 8px;
}
.cta-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn-cta-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 44px;
  background: #06C755;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(6,199,85,0.4);
}
.btn-cta-line:hover {
  background: #05a848;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(6,199,85,0.5);
}
.btn-cta-form {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 36px;
  background: var(--gold);
  border: 1.5px solid var(--gold);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(201,162,39,0.35);
}
.btn-cta-form:hover {
  background: #f5d784;
  border-color: #f5d784;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,0.5);
}
.cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.cta-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
}
.cta-tags i { color: var(--gold); }


/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
  background: var(--navy);
  padding: 48px 0 28px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: 0.8; }
.footer-logo p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { text-align: center; }
.footer-copy p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.footer-disclaimer { font-size: 0.72rem !important; color: rgba(255,255,255,0.2) !important; }


/* ===========================================
   PHOTO DISCLAIMER (写真加工免責文)
   =========================================== */
.photo-disclaimer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--gray);
  background: rgba(138, 154, 181, 0.08);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px 12px;
  margin-top: 16px;
  line-height: 1.5;
}
.photo-disclaimer i {
  font-size: 0.75rem;
  color: var(--blue-light);
  flex-shrink: 0;
}
/* ネイビー背景セクション用（白文字） */
.photo-disclaimer--light {
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.photo-disclaimer--light i {
  color: rgba(255, 255, 255, 0.55);
}
/* 代表メッセージ写真下用 */
.photo-disclaimer--ceo {
  font-size: 0.68rem;
  margin-top: 8px;
  padding: 5px 10px;
  text-align: left;
}
/* 車両リース写真エリア内用（写真列下に収める） */
.photo-disclaimer--inline {
  grid-column: 1 / -1;
  margin-top: 8px;
}


/* ===========================================
   FAQ SECTION
   =========================================== */
.faq-section { background: var(--off-white); }

/* タブ */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.faq-tab {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-jp);
}
.faq-tab:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
}
.faq-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* FAQリスト */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.hidden { display: none; }

/* Q行 */
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-jp);
  transition: background 0.2s;
}
.faq-q:hover { background: var(--gray-light); }
.faq-q.open { background: var(--blue-pale); }
.faq-q-label {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-q span:not(.faq-q-label) {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}
.faq-icon {
  flex-shrink: 0;
  color: var(--gray);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}
.faq-q.open .faq-icon { transform: rotate(180deg); color: var(--blue); }

/* A行 */
.faq-a {
  display: none;
  gap: 14px;
  padding: 0 20px 20px 20px;
  align-items: flex-start;
}
.faq-a.open { display: flex; }
.faq-a-label {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-a > div {
  flex: 1;
  padding-top: 4px;
}
.faq-a p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 8px;
}
.faq-a p:last-child { margin-bottom: 0; }
.faq-a ul.faq-list {
  margin: 8px 0 12px 4px;
  padding-left: 1.2em;
  list-style: none;
}
.faq-a ul.faq-list li {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 2px;
}
.faq-a ul.faq-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 0.75rem;
  top: 0.15em;
}

/* 契約形態カード */
.faq-contract-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 16px 0;
}
.faq-contract-card {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 10px;
}
.faq-contract-num {
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}
.faq-contract-body h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.faq-contract-sub {
  font-size: 0.75rem !important;
  color: var(--blue) !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
}
.faq-contract-body ul {
  padding-left: 16px;
  margin-bottom: 8px;
}
.faq-contract-body ul li {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.faq-contract-tag {
  font-size: 0.75rem !important;
  color: var(--text-mid) !important;
  background: var(--white);
  border-radius: 4px;
  padding: 4px 8px;
  margin-top: 6px !important;
}
.faq-contract-closing {
  background: var(--blue-pale);
  border-left: 3px solid var(--blue);
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  font-size: 0.88rem !important;
  color: var(--blue) !important;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-contract-closing i { color: var(--gold); }

/* 注意書き */
.faq-notice {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff8e1;
  border: 1px solid #f0c93a;
  border-radius: var(--radius);
  padding: 18px 20px;
}
.faq-notice-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.faq-notice-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.faq-notice-text strong {
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

/* FAQ内CTA */
.faq-cta {
  text-align: center;
  margin-top: 40px;
}
.faq-cta p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 16px;
}

/* モバイル */
@media (max-width: 640px) {
  .faq-contract-cards { grid-template-columns: 1fr; }
  .faq-q span:not(.faq-q-label) { font-size: 0.88rem; }
}

/* ===========================================
   FADE-IN ANIMATION
   =========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }


/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
  .job-scene-grid { grid-template-columns: repeat(2, 1fr); }
  .job-scene-large { grid-row: span 1; }
  .strengths-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .income-cards { grid-template-columns: 1fr; }
  .ceo-inner { grid-template-columns: 220px 1fr; gap: 40px; }
  .env-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  
  /* Header */
  .header-nav { display: none; }
  .hamburger { display: flex; }
  
  /* Hero */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .stat-card { padding: 14px 12px; min-width: unset; }
  .stat-num { font-size: 1.5rem; }
  
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  
  /* Grids */
  .empathy-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .empathy-img-wrap { aspect-ratio: 4 / 3; }
  .job-scene-grid { grid-template-columns: 1fr; }
  .job-scene-large { grid-row: span 1; }
  .job-scene-card:not(.job-scene-large) .job-scene-img { height: 220px; }
  .suited-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .strengths-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .income-cards { grid-template-columns: 1fr; }
  
  /* CEO */
  .ceo-inner { grid-template-columns: 1fr; gap: 0; }
  .ceo-photo-wrap {
    max-width: 240px;
    margin: 0 auto 0;
    padding-bottom: 52px;
  }
  .ceo-name-card {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 24px;
    min-width: 150px;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  }
  .ceo-text-wrap { margin-top: 24px; }
  
  /* Tables */
  .suit-reason-inner { flex-direction: column; gap: 20px; }
  
  /* Answer */
  .answer-inner { flex-direction: column; text-align: center; }
  
  /* Growth */
  .growth-message-inner { flex-direction: column; }
  
  /* Mission */
  .mission-statement { padding: 32px 24px; }
  
  /* Flow */
  .flow-timeline { padding-left: 80px; }
  .flow-timeline::before { left: 50px; }
  .flow-time { left: -80px; }
  .flow-dot { left: -24px; }
  
  /* Footer */
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { justify-content: center; }
  
  /* Steps */
  .steps-timeline { padding-left: 40px; }
  .steps-timeline::before { left: 16px; }
  .step-badge { left: -40px; width: 32px; height: 32px; font-size: 0.65rem; }
  
  .hero-scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .empathy-grid { grid-template-columns: 1fr; gap: 16px; }
  /* スマホでは画像を16:9（横長）に変更して縦スペースを節約 */
  .empathy-img-wrap { aspect-ratio: 16 / 9; }
  .area-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .stat-card { display: flex; align-items: center; gap: 12px; text-align: left; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .btn-cta-line, .btn-cta-form { text-align: center; justify-content: center; }
  .income-models { padding: 28px 20px; }
  .suit-reason { padding: 32px 24px; }
  .mission-statement { padding: 28px 20px; }
  .empathy-answer { padding: 28px 24px; }
}
