/* ============================================================
   有限会社ライジング | Official Website Stylesheet v2.0
   Concept: "心を運ぶ、七十年。"
   Multi-page edition with fixed contact bar
   ============================================================ */

/* ---------- 1. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg, video { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ---------- 2. CUSTOM PROPERTIES ---------- */
:root {
  /* Brand Colors */
  --c-navy:        #0A2856;
  --c-navy-deep:   #061A3A;
  --c-navy-light:  #1E4380;
  --c-red:         #E63946;
  --c-red-deep:    #B82230;
  --c-charcoal:    #2C3E50;
  --c-gold:        #F4B942;
  --c-white:       #FFFFFF;
  --c-pearl:       #FAFAFA;
  --c-cream:       #F5F1E8;
  --c-gray-100:    #F5F7FA;
  --c-gray-200:    #E5EAF0;
  --c-gray-400:    #9AA5B5;
  --c-gray-600:    #5C6B7E;
  --c-text:        #1A2433;
  --c-text-soft:   #4A5468;
  --c-line:        rgba(10, 40, 86, 0.1);

  /* Fonts */
  --f-jp:    'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --f-min:   'Shippori Mincho B1', 'Yu Mincho', serif;
  --f-brush: 'Yuji Boku', 'Yuji Mai', 'Klee One', 'Hina Mincho', 'Shippori Mincho B1', 'Yu Mincho', serif;
  --f-en:    'Playfair Display', serif;
  --f-en-sans: 'Inter', sans-serif;

  --max-w: 1200px;
  --gutter: clamp(20px, 4vw, 48px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Dark mode */
body.dark {
  --c-pearl: #0E1521;
  --c-white: #1A2433;
  --c-text: #E8ECF2;
  --c-text-soft: #B2BCCB;
  --c-gray-100: #1A2433;
  --c-line: rgba(255,255,255,0.1);
}

body {
  font-family: var(--f-jp);
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-pearl);
  line-height: 1.8;
  letter-spacing: 0.04em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s, color 0.4s;
}
body.large-text { font-size: 17px; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- 3. LOADER ---------- */
.loader {
  position: fixed; inset: 0;
  background: var(--c-navy);
  z-index: 9999;
  display: grid; place-items: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s var(--ease-out);
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo-mark {
  width: clamp(80px, 14vw, 130px);
  height: auto;
  margin: 0 auto 18px;
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  animation: loaderMarkRise 1s var(--ease-out) 0.1s forwards;
  filter: drop-shadow(0 6px 24px rgba(244, 185, 66, 0.35));
}
.loader-logo-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: rgba(255, 255, 255, 0.96);
  padding: 12px;
  border-radius: 14px;
}
@keyframes loaderMarkRise {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.loader-tag {
  margin-top: 16px;
  font-family: var(--f-jp);
  font-size: clamp(12px, 1.6vw, 14px);
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  animation: loaderFade 0.9s 1.2s var(--ease-out) forwards;
}
.loader-logo {
  font-family: var(--f-en);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  color: var(--c-white);
  line-height: 1;
  display: flex; justify-content: center; align-items: baseline; gap: 4px;
}
.loader-r {
  background: linear-gradient(90deg, var(--c-red), var(--c-gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: loaderRise 1.4s var(--ease-out) forwards;
}
.loader-text { opacity: 0; transform: translateX(-10px); animation: loaderFade 1s 0.6s var(--ease-out) forwards; }
@keyframes loaderRise { 0% { transform: translateY(40px) scale(0.6); opacity:0; } 100% { transform: translateY(0) scale(1); opacity: 1; } }
@keyframes loaderFade { to { opacity: 1; transform: translateX(0); } }
.loader-bar { margin: 24px auto 0; width: 200px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.loader-bar span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--c-red), var(--c-gold)); animation: loaderBar 2.1s 0.3s var(--ease-out) forwards; }
@keyframes loaderBar { to { width: 100%; } }

/* ---------- 4. FIXED CONTACT BAR (右上固定) ---------- */
.fixed-contact {
  position: fixed;
  top: 0; right: 0;
  z-index: 120;
  display: flex;
  align-items: stretch;
  background: var(--c-white);
  border-bottom-left-radius: 14px;
  box-shadow: -4px 8px 30px rgba(10,40,86,0.18);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out);
}
.fc-phone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 18px 10px 22px;
  text-align: right;
  border-right: 1px solid var(--c-line);
}
.fc-phone-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--c-text-soft);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
  font-weight: 500;
  justify-content: flex-end;
}
.fc-phone-label svg { width: 12px; height: 12px; color: var(--c-red); }
.fc-phone-number {
  font-family: var(--f-en);
  font-size: 24px;
  font-weight: 900;
  color: var(--c-navy);
  line-height: 1;
  letter-spacing: 0.02em;
}
.fc-phone-hours {
  font-size: 9.5px;
  color: var(--c-gray-600);
  letter-spacing: 0.02em;
  margin-top: 3px;
}
.fc-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  background: var(--c-red);
  color: var(--c-white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: background 0.3s;
}
.fc-cta svg { width: 16px; height: 16px; }
.fc-cta:hover { background: var(--c-red-deep); }

/* ---------- 5. HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease-out), padding 0.4s;
  padding-right: 320px; /* 右上の固定バー回避 */
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  padding-right: 320px;
  box-shadow: 0 4px 30px rgba(10, 40, 86, 0.08);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-en);
  font-weight: 900; font-size: 28px;
  color: var(--c-navy);
  transition: transform 0.3s var(--ease-out);
}
.logo:hover { transform: translateY(-2px); }
.logo-mark { width: 38px; height: 38px; }
.header.dark-mode .logo,
.header:not(.scrolled) .logo {
  color: var(--c-white);
}
.header.scrolled .logo { color: var(--c-navy); }
/* Sub-page (no hero white bg) → 常に濃色ロゴ */
body.subpage .header .logo { color: var(--c-navy); }

.nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-family: var(--f-jp);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-white);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s;
}
.header.scrolled .nav a,
body.subpage .header .nav a { color: var(--c-text); }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--c-red);
  transition: width 0.3s var(--ease-out);
}
.nav a:hover::after,
.nav a.active::after { width: 100%; }
.nav a.active { color: var(--c-red) !important; font-weight: 700; }

.hamburger {
  display: none;
  width: 36px; height: 36px;
  position: relative;
  flex-direction: column;
  gap: 6px; justify-content: center; align-items: center;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-white);
  transition: all 0.3s var(--ease-out);
}
.header.scrolled .hamburger span,
body.subpage .header .hamburger span { background: var(--c-navy); }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--c-navy); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--c-navy); }

/* Header utility tools */
.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}
.tool-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--c-white);
  transition: all 0.3s;
}
.header.scrolled .tool-btn,
body.subpage .header .tool-btn {
  border-color: var(--c-line);
  color: var(--c-navy);
}
.tool-btn:hover { background: var(--c-red); border-color: var(--c-red); color: var(--c-white); }
.tool-btn svg { width: 14px; height: 14px; }

/* ---------- 6. HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: contrast(1.05) saturate(1.1);
}

/* スライドショー(動画フォールバック・シネマティック Ken Burnsエフェクト) */
.hero-slideshow {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--c-navy-deep);
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlide 21s infinite;
  transform-origin: center center;
  filter: contrast(1.08) saturate(1.15) brightness(0.95);
  will-change: opacity, transform;
}
.hero-slide:nth-child(1) { animation-delay: 0s;  transform-origin: 30% 50%; }
.hero-slide:nth-child(2) { animation-delay: 7s;  transform-origin: 70% 40%; }
.hero-slide:nth-child(3) { animation-delay: 14s; transform-origin: 50% 60%; }

@keyframes heroSlide {
  0%   { opacity: 0; transform: scale(1.0); }
  4%   { opacity: 1; }
  33%  { opacity: 1; transform: scale(1.18); }
  37%  { opacity: 0; transform: scale(1.18); }
  100% { opacity: 0; transform: scale(1.0); }
}

/* 動画が読み込まれた場合はスライドショーを非表示 */
.hero-video[style*="display:block"] ~ .hero-slideshow,
.hero-video[style*="display: block"] ~ .hero-slideshow {
  display: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10,40,86,0.15) 0%, rgba(6,26,58,0.65) 100%),
    linear-gradient(180deg, rgba(10,40,86,0.15) 0%, rgba(10,40,86,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px;
  padding: 0 var(--gutter);
  text-align: center;
}
.hero-tag {
  font-family: var(--f-en-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 0.5s var(--ease-out) forwards;
  display: inline-block;
}
.hero-tag::before, .hero-tag::after {
  content: '';
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--c-red);
  vertical-align: middle;
  margin: 0 16px;
}
.hero-title {
  font-family: var(--f-min);
  font-weight: 800;
  font-size: clamp(48px, 9vw, 110px);
  line-height: 1.15;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero-line { display: block; }
.hero-line span {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
  animation: heroChar 0.9s var(--ease-out) forwards;
}
.hero-line span:nth-child(1) { animation-delay: 0.7s; }
.hero-line span:nth-child(2) { animation-delay: 0.8s; }
.hero-line span:nth-child(3) { animation-delay: 0.9s; }
.hero-line span:nth-child(4) { animation-delay: 1.0s; }
.hero-line span:nth-child(5) { animation-delay: 1.1s; }
.hero-line-2 span:nth-child(1) { animation-delay: 1.3s; color: var(--c-gold); }
.hero-line-2 span:nth-child(2) { animation-delay: 1.4s; color: var(--c-gold); }
.hero-line-2 span:nth-child(3) { animation-delay: 1.5s; color: var(--c-gold); }
.hero-line-2 span:nth-child(4) { animation-delay: 1.6s; }
@keyframes heroChar { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 2;
  color: rgba(255,255,255,0.92);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s 1.8s var(--ease-out) forwards;
  letter-spacing: 0.1em;
}
.hero-cta {
  display: flex; gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 2.1s var(--ease-out) forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--c-red), #d93444);
  color: var(--c-white);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(230, 57, 70, 0.5); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--c-white);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: var(--c-white); transform: translateY(-3px); }
.btn-navy {
  background: var(--c-navy);
  color: var(--c-white);
}
.btn-navy:hover { background: var(--c-navy-deep); transform: translateY(-3px); }
.btn-outline {
  border: 1.5px solid var(--c-navy);
  color: var(--c-navy);
}
.btn-outline:hover { background: var(--c-navy); color: var(--c-white); }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  font-family: var(--f-en-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  animation: fadeUp 1s 2.4s var(--ease-out) forwards;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, rgba(255,255,255,0.7), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 50%;
  background: var(--c-red);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown { 0% { top: -100%; } 100% { top: 200%; } }

.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  overflow: hidden;
  padding: 14px 0;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-family: var(--f-en);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.55);
}
.marquee-track span { display: inline-block; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 7. SUB-PAGE HEADER ---------- */
.page-header {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--c-white);
  overflow: hidden;
  margin-top: 0;
}
.page-header-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.page-header-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,40,86,0.85), rgba(6,26,58,0.6));
  z-index: 1;
}
.page-header-content {
  position: relative;
  z-index: 2;
  padding: 100px var(--gutter) 40px;
  max-width: 1000px;
}
.page-header-en {
  font-family: var(--f-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--c-gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.page-header-title {
  font-family: var(--f-min);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.page-header-lead {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
  line-height: 1.9;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--c-gray-100);
  padding: 14px 0;
  font-size: 12px;
  border-bottom: 1px solid var(--c-line);
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.breadcrumb li {
  color: var(--c-text-soft);
  display: flex;
  align-items: center;
  gap: 4px;
}
.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin: 0 8px;
  color: var(--c-gray-400);
}
.breadcrumb a {
  color: var(--c-navy);
  font-weight: 500;
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--c-red); }

/* ---------- 8. SECTION HEAD ---------- */
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-num {
  font-family: var(--f-en);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--c-red);
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}
.section-en {
  font-family: var(--f-en-sans);
  font-size: 12px;
  letter-spacing: 0.5em;
  color: var(--c-gray-400);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--f-min);
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.3;
  color: var(--c-navy);
  letter-spacing: 0.06em;
}
.section-lead {
  font-size: 15px;
  line-height: 2;
  color: var(--c-text-soft);
  margin-top: 24px;
}
.section-head.light .section-en { color: rgba(255,255,255,0.55); }
.section-head.light .section-title { color: var(--c-white); }
.section-head.light .section-lead { color: rgba(255,255,255,0.85); }
.section-head.left { text-align: left; }
body.dark .section-title { color: var(--c-white); }

/* Sub-section heading */
.sub-head {
  font-family: var(--f-min);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  position: relative;
  padding-left: 18px;
}
.sub-head::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 4px;
  background: linear-gradient(180deg, var(--c-red), var(--c-gold));
  border-radius: 2px;
}

/* ---------- 9. CONCEPT ---------- */
.concept {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--c-pearl);
  position: relative;
  overflow: hidden;
}
.concept::before {
  content: '心';
  position: absolute;
  top: 5%; right: -2%;
  font-family: var(--f-min);
  font-size: clamp(200px, 30vw, 500px);
  color: var(--c-navy);
  opacity: 0.03;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}
.concept-main { text-align: center; position: relative; margin-bottom: 100px; }
.concept-circles { position: relative; width: 200px; height: 100px; margin: 0 auto 40px; }
.circle {
  position: absolute;
  top: 0;
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 2px solid;
}
.circle-left { left: 30px; border-color: var(--c-navy); animation: circleLeft 4s var(--ease-in-out) infinite; }
.circle-right { right: 30px; border-color: var(--c-red); animation: circleRight 4s var(--ease-in-out) infinite; }
@keyframes circleLeft { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(20px); } }
@keyframes circleRight { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-20px); } }

.concept-lead {
  font-family: var(--f-en-sans);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--c-red);
  margin-bottom: 16px;
  font-weight: 600;
}
.concept-headline {
  font-family: var(--f-min);
  font-weight: 800;
  font-size: clamp(36px, 6.5vw, 80px);
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: var(--c-navy);
  margin-bottom: 32px;
}
.concept-headline em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 60%, rgba(244,185,66,0.4) 60%);
  padding: 0 4px;
}
.concept-text {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 2.2;
  color: var(--c-text-soft);
  letter-spacing: 0.08em;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.vision-card {
  background: var(--c-white);
  padding: 48px 36px;
  border-radius: 24px;
  box-shadow: 0 6px 30px rgba(10, 40, 86, 0.06);
  transition: all 0.5s var(--ease-out);
  border: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
}
.vision-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--c-red), var(--c-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(10, 40, 86, 0.12);
}
.vision-card:hover::before { transform: scaleX(1); }
.vision-num {
  font-family: var(--f-en);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--c-red);
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.vision-card h4 {
  font-family: var(--f-min);
  font-size: 26px;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.vision-card p { font-size: 14.5px; line-height: 1.95; color: var(--c-text-soft); }

/* ---------- 10. NUMBERS ---------- */
.numbers {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--c-navy);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.numbers-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(244,185,66,0.15), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(230,57,70,0.18), transparent 50%);
}
.numbers .container { position: relative; z-index: 1; }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px 24px;
  text-align: center;
}
.number-item { padding: 24px 12px; }
.number-value {
  font-family: var(--f-en);
  font-weight: 900;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 1;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-red) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: flex; align-items: baseline; justify-content: center; gap: 8px;
}
.number-value small {
  font-family: var(--f-jp);
  font-size: 16px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  -webkit-text-fill-color: rgba(255,255,255,0.7);
}
.number-label { margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--c-white); letter-spacing: 0.1em; }
.number-label small { display: block; margin-top: 4px; font-weight: 400; font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }

/* ---------- 11. SERVICE / GENERIC CARD GRID ---------- */
.service {
  padding: clamp(80px, 12vh, 140px) 0;
  background: linear-gradient(180deg, var(--c-pearl) 0%, var(--c-gray-100) 100%);
}
.service-grid, .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--c-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(10, 40, 86, 0.06);
  transition: all 0.5s var(--ease-out);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(10, 40, 86, 0.12); }
.service-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--c-red);
  color: var(--c-white);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--f-en-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.service-body { padding: 28px 28px 32px; flex: 1; }
.service-body h3 {
  font-family: var(--f-min);
  font-size: 21px;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.service-body p { font-size: 14px; line-height: 1.95; color: var(--c-text-soft); }
.service-body .read-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  color: var(--c-red);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em;
  transition: transform 0.3s;
}
.service-body .read-more:hover { transform: translateX(4px); }

/* ---------- 12. STRENGTH ---------- */
.strength {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--c-pearl);
}
.strength-list {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 10vh, 120px);
}
.strength-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.strength-row.reverse { direction: rtl; }
.strength-row.reverse > * { direction: ltr; }
.strength-img {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(10, 40, 86, 0.18);
}
.strength-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.strength-img:hover img { transform: scale(1.05); }
.strength-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(10,40,86,0.25));
  pointer-events: none;
}
.strength-text { padding: 12px 0; }
.strength-num {
  font-family: var(--f-en);
  font-size: 64px; font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--c-red), var(--c-gold));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 16px;
}
.strength-text h3 {
  font-family: var(--f-min);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.strength-text p { font-size: 15px; line-height: 2.1; color: var(--c-text-soft); }

/* ---------- 13. HISTORY / TIMELINE ---------- */
.history {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--c-navy);
  position: relative;
  overflow: hidden;
}
.history::before {
  content: 'HISTORY';
  position: absolute;
  top: 0; left: -2%;
  font-family: var(--f-en);
  font-size: clamp(140px, 22vw, 360px);
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.04em;
  line-height: 0.8;
  pointer-events: none;
}
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline-line {
  position: absolute;
  left: 100px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--c-red), var(--c-gold), transparent);
}
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 48px;
  position: relative;
  padding: 28px 0;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 92px; top: 44px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--c-red);
  box-shadow: 0 0 0 6px rgba(230,57,70,0.25), 0 0 0 14px rgba(230,57,70,0.1);
}
.timeline-year {
  font-family: var(--f-en);
  font-size: 30px;
  font-weight: 900;
  color: var(--c-gold);
  text-align: right;
  line-height: 1.2;
}
.timeline-year small {
  display: block;
  font-family: var(--f-jp);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
  margin-top: 4px;
}
.timeline-body {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 22px 28px;
  border-radius: 16px;
  margin-left: 16px;
  transition: all 0.4s var(--ease-out);
}
.timeline-body:hover { background: rgba(255,255,255,0.08); transform: translateX(8px); border-color: var(--c-red); }
.timeline-body h3 {
  font-family: var(--f-min);
  font-size: 20px; font-weight: 800;
  color: var(--c-white);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.timeline-body p { font-size: 13.5px; line-height: 1.95; color: rgba(255,255,255,0.85); }

/* ---------- 14. MESSAGE ---------- */
.message-section { padding: clamp(80px, 12vh, 140px) 0; background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-pearl) 100%); }
.message-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: var(--c-white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 40, 86, 0.1);
  max-width: 1100px;
  margin: 0 auto;
}
.message-img {
  position: relative;
  min-height: 400px;
  background: linear-gradient(135deg, var(--c-navy), var(--c-navy-deep));
  display: flex; align-items: center; justify-content: center;
}
.message-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.message-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,40,86,0.45), rgba(230,57,70,0.25)); mix-blend-mode: multiply; }
.message-img-text {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--c-white);
  padding: 40px;
}
.message-img-text .kanji {
  font-family: var(--f-min);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--c-gold), var(--c-red));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.message-img-text .label {
  display: block; margin-top: 20px;
  font-size: 13px; letter-spacing: 0.4em;
  color: rgba(255,255,255,0.85);
}
.message-body { padding: clamp(32px, 5vw, 56px); position: relative; }
.message-quote {
  position: absolute;
  top: 16px; left: 24px;
  font-family: var(--f-en);
  font-size: 120px;
  font-weight: 900;
  color: var(--c-red);
  opacity: 0.12;
  line-height: 1;
}
.message-lead {
  font-family: var(--f-min);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1.7;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}
.message-text { font-size: 14px; line-height: 2.1; color: var(--c-text-soft); margin-bottom: 32px; }
.message-sign { font-size: 13px; color: var(--c-text-soft); letter-spacing: 0.1em; }
.message-sign span {
  font-family: var(--f-min);
  font-size: 22px; font-weight: 800;
  color: var(--c-navy);
  margin-left: 12px;
}

/* ---------- 15. PARTNERS ---------- */
.partners { padding: clamp(80px, 12vh, 140px) 0; background: var(--c-pearl); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.partner {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: 0.02em;
  display: flex; align-items: center; justify-content: center;
  min-height: 80px;
  cursor: default;
}
/* ホバー効果は意図的に無効化(クリックできるように見えないように) */
.partner-more {
  background: var(--c-gray-100);
  color: var(--c-text-soft);
  border-color: var(--c-line);
  font-style: italic;
}

/* ---------- 16. RECRUIT(短縮版) ---------- */
.recruit-band {
  position: relative;
  padding: clamp(100px, 16vh, 180px) 0;
  color: var(--c-white);
  overflow: hidden;
}
.recruit-bg {
  position: absolute; inset: 0; z-index: 0;
}
.recruit-bg img { width: 100%; height: 100%; object-fit: cover; }
.recruit-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,40,86,0.92) 0%, rgba(230,57,70,0.7) 100%); }
.recruit-band .container { position: relative; z-index: 1; }
.recruit-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.recruit-content { margin-top: 24px; }
.recruit-lead {
  font-family: var(--f-min);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  color: var(--c-gold);
}
.recruit-text { font-size: 15px; line-height: 2.1; color: rgba(255,255,255,0.92); margin-bottom: 40px; letter-spacing: 0.05em; }
.recruit-cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- 17. COMPANY TABLE ---------- */
.company-section { padding: clamp(80px, 12vh, 140px) 0; background: var(--c-pearl); }
.company-wrap {
  max-width: 900px;
  margin: 0 auto 40px;
  background: var(--c-white);
  border-radius: 20px;
  padding: 16px 32px;
  box-shadow: 0 6px 30px rgba(10, 40, 86, 0.06);
}
.company-table th, .company-table td {
  text-align: left;
  padding: 18px 16px;
  border-bottom: 1px solid var(--c-line);
  vertical-align: top;
  font-size: 14px;
  line-height: 1.85;
}
.company-table tr:last-child th, .company-table tr:last-child td { border-bottom: none; }
.company-table th {
  width: 28%;
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.company-table td { color: var(--c-text-soft); }
.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(10, 40, 86, 0.08);
  max-width: 1100px;
  margin: 0 auto;
}

/* ---------- 18. CONTACT ---------- */
.contact-section {
  padding: clamp(80px, 12vh, 140px) 0;
  background: linear-gradient(180deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: 'CONTACT';
  position: absolute;
  bottom: 5%; right: -2%;
  font-family: var(--f-en);
  font-size: clamp(120px, 20vw, 320px);
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.04em;
  line-height: 0.8;
  pointer-events: none;
}
.contact-section .container { position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; padding: 8px 0; }
.contact-item { display: flex; align-items: flex-start; gap: 20px; }
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--c-gold);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-label {
  display: block;
  font-family: var(--f-en-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.contact-value {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
a.contact-value:hover { color: var(--c-gold); }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  padding: 36px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form label { display: flex; flex-direction: column; gap: 8px; }
.contact-form label.full { grid-column: 1 / -1; }
.contact-form span {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.contact-form em { font-style: normal; color: var(--c-red); margin-left: 4px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--c-white);
  font-size: 14px;
  transition: all 0.3s;
  font-family: inherit;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255,255,255,0.12);
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.2);
}
.contact-form textarea { resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form select option { background: var(--c-navy); color: var(--c-white); }
.btn-submit {
  grid-column: 1 / -1;
  justify-content: center;
  width: fit-content;
  margin: 12px auto 0;
  padding: 18px 56px;
}

/* ---------- 19. NEWS ---------- */
.news-section { padding: clamp(80px, 12vh, 140px) 0; background: var(--c-pearl); }
.news-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 0;
}
.news-item {
  display: grid;
  grid-template-columns: 100px 100px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 12px;
  border-bottom: 1px solid var(--c-line);
  transition: all 0.3s;
}
.news-item:hover { background: var(--c-white); padding-left: 20px; }
.news-date { font-family: var(--f-en); font-size: 14px; font-weight: 700; color: var(--c-navy); letter-spacing: 0.05em; }
.news-cat {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}
.news-cat.info { background: var(--c-navy); color: var(--c-white); }
.news-cat.news { background: var(--c-red); color: var(--c-white); }
.news-cat.recruit { background: var(--c-gold); color: var(--c-navy-deep); }
.news-cat.media { background: var(--c-charcoal); color: var(--c-white); }
.news-title { font-size: 14.5px; font-weight: 500; color: var(--c-text); line-height: 1.6; }
.news-arrow { color: var(--c-gray-400); transition: transform 0.3s; }
.news-item:hover .news-arrow { transform: translateX(4px); color: var(--c-red); }

/* ---------- 20. SAFETY (品質・安全) ---------- */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.safety-card {
  background: var(--c-white);
  padding: 36px 28px;
  border-radius: 18px;
  text-align: center;
  border-top: 4px solid var(--c-red);
  box-shadow: 0 6px 24px rgba(10, 40, 86, 0.06);
  transition: all 0.4s var(--ease-out);
}
.safety-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(10, 40, 86, 0.14); }
.safety-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-red), var(--c-red-deep));
  color: var(--c-white);
  display: grid; place-items: center;
  margin: 0 auto 20px;
}
.safety-icon svg { width: 28px; height: 28px; }
.safety-card h3 {
  font-family: var(--f-min);
  font-size: 19px;
  color: var(--c-navy);
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.safety-card p { font-size: 13.5px; line-height: 1.85; color: var(--c-text-soft); }

.safety-policy {
  background: linear-gradient(135deg, var(--c-navy), var(--c-navy-deep));
  color: var(--c-white);
  padding: 60px;
  border-radius: 24px;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.safety-policy::before {
  content: 'SAFETY';
  position: absolute;
  bottom: -50px; right: -20px;
  font-family: var(--f-en);
  font-size: 240px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 0.8;
  pointer-events: none;
}
.safety-policy-tag { font-family: var(--f-en); color: var(--c-gold); font-size: 13px; letter-spacing: 0.4em; margin-bottom: 14px; }
.safety-policy h3 {
  font-family: var(--f-min);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.safety-policy ul {
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 14px;
  position: relative; z-index: 1;
}
.safety-policy li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 15px;
  line-height: 1.8;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.safety-policy li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 12px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-red);
  color: var(--c-white);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
}

/* Vehicle gallery */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.vehicle-card {
  background: var(--c-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(10, 40, 86, 0.06);
}
.vehicle-card-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--c-navy), var(--c-navy-light));
  position: relative;
  overflow: hidden;
}
.vehicle-card-img img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-card-body { padding: 24px; }
.vehicle-card h3 {
  font-family: var(--f-min);
  font-size: 20px;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 10px;
}
.vehicle-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--c-line);
}
.vehicle-spec dt { font-size: 11px; color: var(--c-text-soft); letter-spacing: 0.1em; }
.vehicle-spec dd { font-size: 14px; font-weight: 700; color: var(--c-navy); }

/* Flow Steps */
.flow-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.flow-step {
  background: var(--c-white);
  padding: 28px 20px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  border: 1px solid var(--c-line);
  transition: all 0.3s;
}
.flow-step:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(10, 40, 86, 0.08); }
.flow-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -14px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--c-red);
  font-weight: 700;
  z-index: 2;
}
.flow-num {
  display: inline-block;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-red);
  color: var(--c-white);
  font-family: var(--f-en);
  font-weight: 900;
  font-size: 16px;
  line-height: 36px;
  margin-bottom: 14px;
}
.flow-step h4 { font-family: var(--f-min); font-size: 16px; color: var(--c-navy); margin-bottom: 8px; }
.flow-step p { font-size: 12px; color: var(--c-text-soft); line-height: 1.7; }

/* FAQ */
.faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--c-white);
  border-radius: 12px;
  border: 1px solid var(--c-line);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  color: var(--c-navy);
}
.faq-q::before {
  content: 'Q';
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-red);
  color: var(--c-white);
  display: grid; place-items: center;
  font-family: var(--f-en);
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}
.faq-q::after {
  content: '+';
  margin-left: auto;
  font-size: 24px;
  color: var(--c-red);
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px 20px 68px;
  font-size: 14px;
  line-height: 1.95;
  color: var(--c-text-soft);
  display: none;
  position: relative;
}
.faq-a::before {
  content: 'A';
  position: absolute;
  left: 24px; top: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-navy);
  color: var(--c-white);
  display: grid; place-items: center;
  font-family: var(--f-en);
  font-weight: 900;
  font-size: 14px;
}
.faq-item.open .faq-a { display: block; }

/* Recruit specific */
.recruit-job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.recruit-job {
  background: var(--c-white);
  padding: 32px 28px;
  border-radius: 16px;
  border-left: 5px solid var(--c-red);
  box-shadow: 0 6px 18px rgba(10, 40, 86, 0.06);
  transition: all 0.4s;
}
.recruit-job:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(10, 40, 86, 0.12); }
.recruit-job-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--c-red);
  color: var(--c-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 4px;
  margin-bottom: 14px;
}
.recruit-job h3 {
  font-family: var(--f-min);
  font-size: 22px;
  color: var(--c-navy);
  margin-bottom: 14px;
  font-weight: 800;
}
.recruit-job p { font-size: 14px; line-height: 1.95; color: var(--c-text-soft); margin-bottom: 14px; }
.recruit-job ul { font-size: 13px; color: var(--c-text); line-height: 2; padding-left: 20px; }
.recruit-job ul li { list-style: disc; }

/* Driver day timeline */
.day-timeline {
  position: relative;
  max-width: 760px;
  margin: 40px auto 0;
  padding-left: 60px;
}
.day-timeline::before {
  content: '';
  position: absolute;
  left: 30px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--c-red), var(--c-gold));
}
.day-step { position: relative; padding: 18px 0; }
.day-step::before {
  content: '';
  position: absolute;
  left: -36px; top: 24px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c-white);
  border: 3px solid var(--c-red);
}
.day-time {
  display: inline-block;
  font-family: var(--f-en);
  font-weight: 900;
  font-size: 22px;
  color: var(--c-red);
  margin-bottom: 6px;
}
.day-step h4 { font-size: 16px; color: var(--c-navy); margin-bottom: 6px; font-family: var(--f-min); }
.day-step p { font-size: 13.5px; color: var(--c-text-soft); line-height: 1.85; }

/* Welfare grid */
.welfare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.welfare-item {
  background: var(--c-white);
  padding: 22px 18px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--c-line);
}
.welfare-item .icon {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--c-gold), var(--c-red));
  bord