/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'Yu Gothic', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.8;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
a:hover { opacity: 0.8; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.section-title .en {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #0E4695;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-title .desc {
  font-size: 0.95rem;
  color: #666;
  margin-top: 16px;
  line-height: 1.9;
}
section { padding: 100px 0; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #0E4695;
  letter-spacing: 0.05em;
}
.logo span { display: block; }
.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0E4695;
  transition: width 0.3s;
}
.header-nav a:hover::after { width: 100%; }
.header-nav a:hover { opacity: 1; }
.header-nav .btn-entry { color: #fff; }
.header-nav .btn-entry:hover { color: #fff; }
.btn-entry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0E4695;
  color: #fff;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
.btn-entry:hover { background: #0A3470; opacity: 1; transform: translateY(-1px); }

/* hamburger */
.hamburger { display: none; cursor: pointer; width: 32px; height: 24px; position: relative; }
.hamburger span {
  display: block; position: absolute; width: 100%; height: 2px; background: #0E4695;
  transition: all 0.3s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: 11px; transform: rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  padding: 32px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-nav.active { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid #eee;
}
.mobile-nav .btn-entry { margin-top: 20px; display: block; text-align: center; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #071E3D;
  padding: 0;
}
.hero-bg-columns {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  display: flex;
  gap: 0;
  padding: 0;
}
.hero-col {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.hero-col img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Round 1 (images 1-3): slide up, hold, slide out */
.hero-col .img-a {
  transform: translateY(100%);
  animation: heroSlideA 12s ease-in-out infinite;
}
/* Round 2 (images 4-6): wait, slide up, hold, slide out */
.hero-col .img-b {
  transform: translateY(100%);
  animation: heroSlideB 12s ease-in-out infinite;
}
/* Stagger columns for wave effect */
.hero-col:nth-child(1) .img-a,
.hero-col:nth-child(1) .img-b { animation-delay: 0s; }
.hero-col:nth-child(2) .img-a,
.hero-col:nth-child(2) .img-b { animation-delay: 0.15s; }
.hero-col:nth-child(3) .img-a,
.hero-col:nth-child(3) .img-b { animation-delay: 0.3s; }

/* 12s cycle: A visible 0-6s, B visible 6-12s */
@keyframes heroSlideA {
  0%   { transform: translateY(100%); }
  7%   { transform: translateY(0); }       /* 0→0.84s: slide in */
  42%  { transform: translateY(0); }       /* hold until 5.04s */
  50%  { transform: translateY(-100%); }   /* 5.04→6s: slide out */
  100% { transform: translateY(-100%); }
}
@keyframes heroSlideB {
  0%   { transform: translateY(100%); }
  50%  { transform: translateY(100%); }    /* wait until 6s */
  57%  { transform: translateY(0); }       /* 6→6.84s: slide in */
  92%  { transform: translateY(0); }       /* hold until 11.04s */
  100% { transform: translateY(-100%); }   /* 11.04→12s: slide out */
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(7,30,61,0.75) 0%, rgba(14,70,149,0.6) 50%, rgba(21,101,192,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}
.hero-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.8;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.hero-title .accent { color: #FFD100; text-shadow: 0 2px 8px rgba(255,209,0,0.3); }
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.85;
  margin-bottom: 48px;
  line-height: 1.8;
}
.hero .btn-entry {
  font-size: 1rem;
  padding: 16px 48px;
  box-shadow: 0 4px 20px rgba(14,70,149,0.4);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-align: center;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: #fff;
  margin: 8px auto 0;
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== MESSAGE BAND ===== */
.message-band {
  background: #0E4695;
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.message-band p {
  font-size: 1.05rem;
  line-height: 2.2;
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* ===== JOB TYPES ===== */
.job-types { background: #fff; }
.job-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.job-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.job-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.job-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.job-card-inner { padding: 32px; }
.job-card-label {
  display: inline-block;
  background: #0E4695;
  color: #fff;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.job-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; }
.job-card p { color: #666; font-size: 0.95rem; line-height: 1.9; }
a.job-card { display: block; }

/* ===== JOB DETAIL ===== */
.job-detail {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid #e0e0e0;
}
.job-detail:first-of-type {
  margin-top: 48px;
}
.job-detail-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #071E3D;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 5px solid #0E4695;
}
.job-detail-intro {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 40px;
}
.job-sub {
  margin-bottom: 48px;
}
.job-sub-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0E4695;
  margin-bottom: 12px;
  padding: 8px 16px;
  background: #EDF3FF;
  border-radius: 6px;
  display: inline-block;
}
.job-sub-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 28px;
  margin-top: 12px;
}
.job-info-block {
  margin-bottom: 32px;
  padding-left: 16px;
}
.job-info-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0E4695;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.job-info-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.9;
}

/* Timeline Diagram */
.timeline {
  position: relative;
  padding: 16px 0 0 0;
  max-width: 640px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 40px;
  bottom: 40px;
  width: 3px;
  background: linear-gradient(to bottom, #0E4695, #8BB8F0);
  border-radius: 3px;
}
.timeline.night::before {
  background: linear-gradient(to bottom, #071E3D, #0E4695, #8BB8F0);
}
.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 0 32px 0;
}
.timeline-item.last {
  padding-bottom: 0;
}
.timeline-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 3px 10px rgba(14,70,149,0.25);
}
.timeline-badge svg {
  width: 22px;
  height: 22px;
}
.timeline-badge.work {
  background: #0E4695;
}
.timeline-badge.rest {
  background: #4CAF50;
}
.timeline-badge.home {
  background: #FFD100;
}
.timeline-badge.home svg path {
  stroke: #071E3D;
}
.timeline-time {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0E4695;
  min-width: 56px;
  padding-top: 10px;
  letter-spacing: 0.02em;
}
.timeline.night .timeline-time {
  color: #071E3D;
}
.timeline-content {
  background: #f8f9fb;
  border-radius: 10px;
  padding: 14px 20px;
  flex: 1;
  border: 1px solid #e8ecf2;
  position: relative;
}
.timeline-content::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 16px;
  width: 12px;
  height: 12px;
  background: #f8f9fb;
  border-left: 1px solid #e8ecf2;
  border-bottom: 1px solid #e8ecf2;
  transform: rotate(45deg);
}
.timeline-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #071E3D;
  margin-bottom: 4px;
}
.timeline-content p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}
.timeline-day-label {
  position: relative;
  margin: 8px 0 16px 0;
  padding-left: 58px;
  z-index: 1;
}
.timeline-day-label span {
  display: inline-block;
  background: #071E3D;
  color: #FFD100;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 16px;
  border-radius: 50px;
  letter-spacing: 0.1em;
}

/* Truck Icons */
.truck-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 16px 0;
  align-items: end;
}
.truck-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.truck-icons-3col {
  grid-template-columns: repeat(3, 1fr);
  /* 3台×(コンテナ1/3幅)=全幅。各トラックは運行(LD)のトラック1台分と同じ大きさ。4台目(軽)は2段目へ */
  margin: 0;
}
/* 軽の右隣（残り2列）に配置する説明文。軽の高さに対して縦中央 */
.truck-note {
  grid-column: span 2;
  align-self: center;
  margin: 0;
  padding-left: 12px;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #333;
}
.truck-item span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
  text-align: center;
}
.truck-license {
  display: inline-block;
  margin-top: 2px;
  font-size: 0.75rem;
  font-weight: 400;
  color: #666;
}
.truck-img {
  width: 100%;
  height: auto;
}

/* Warehouse Compare / Flow Diagrams */
.warehouse-compare {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 24px;
}
.warehouse-flow {
  background: #f8f9fb;
  border-radius: 12px;
  padding: 28px 32px;
}
.warehouse-flow-label {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}
.warehouse-flow-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #e8ecf2;
  min-height: 120px;
  object-fit: contain;
}

/* Merit List */
.job-merit-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}
.job-merit-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  border-bottom: 1px dashed #e0e0e0;
}
.job-merit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 16px;
  height: 16px;
  background: #0E4695;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 11L3.5 8l1-1 2 2 4.5-4.5 1 1z' fill='%23fff'/%3E%3C/svg%3E");
  background-size: contain;
}

/* Store Link */
#job-stores .btn-cta-wrap {
  margin-top: 24px;
}

/* ===== JOB DETAIL RESPONSIVE ===== */
@media (max-width: 768px) {
  .job-detail-title { font-size: 1.4rem; }
  .job-sub-title { font-size: 1.1rem; display: block; }
  .timeline { max-width: 100%; }
  .timeline::before { left: 22px; }
  .timeline-time { font-size: 0.95rem; min-width: 48px; }
  .timeline-content { padding: 12px 14px; }
  .timeline-content::before { display: none; }
  .truck-icons { gap: 20px; }
  .truck-icons-3col { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .truck-note { grid-column: 1 / -1; padding-left: 0; margin-top: 8px; font-size: 0.85rem; }
  .truck-svg { width: 80px; }
  .truck-svg.truck-md { width: 100px; }
  .truck-svg.truck-lg { width: 130px; }
  .warehouse-flow { padding: 20px 16px; }
  .job-info-block { padding-left: 0; }
}

/* ===== CAREER SECTIONS ===== */
.career-section { position: relative; }
.career-section:nth-child(even) { background: #fafafa; }
.career-section .section-header-bar {
  background: #0E4695;
  padding: 20px 0;
  margin-bottom: 60px;
}
.career-section .section-header-bar h2 {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.section-hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-bottom: 48px;
  border-radius: 12px;
}
.career-desc {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 48px;
  line-height: 1.9;
}
.voice-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.voice-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.voice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: #0E4695;
}
.voice-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.voice-card .icon {
  width: 64px;
  height: 64px;
  background: #EDF3FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}
.voice-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #444;
  font-weight: 500;
}
.btn-cta-wrap { text-align: center; margin-top: 40px; }
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0E4695;
  color: #fff;
  padding: 16px 48px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(14,70,149,0.3);
}
.btn-cta:hover { background: #0A3470; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(14,70,149,0.4); opacity: 1; }
.btn-cta::after { content: '\2192'; font-size: 1.2rem; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #0E4695;
  color: #0E4695;
  background: transparent;
  padding: 14px 44px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
.btn-outline:hover { background: #0E4695; color: #fff; opacity: 1; }
.btn-outline::after { content: '\2192'; font-size: 1.2rem; }
.link-note {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  margin-top: 12px;
}

/* ===== EMPLOYEE VOICES ===== */
.voices { background: #fff; }
.voice-theme {
  margin-bottom: 64px;
}
.voice-theme:last-child {
  margin-bottom: 0;
}
.voice-theme-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #071E3D;
  padding: 16px 24px;
  background: #EDF3FF;
  border-left: 5px solid #0E4695;
  border-radius: 0 8px 8px 0;
  margin-bottom: 32px;
}
.voice-block {
  margin-bottom: 32px;
  padding: 28px 32px;
  background: #f8f9fb;
  border-radius: 12px;
  border: 1px solid #e8ecf2;
}
.voice-block:last-child {
  margin-bottom: 0;
}
.voice-headline {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0E4695;
  margin-bottom: 16px;
  line-height: 1.7;
}
.voice-body {
  font-size: 0.95rem;
  color: #555;
  line-height: 2;
}

/* ===== SURVEY ===== */
.survey { background: #fafafa; }
.survey-intro {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 60px;
  line-height: 1.9;
}
.chart-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.chart-box {
  background: #fff;
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.chart-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: #333;
}
.chart-box h3 .en {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  color: #0E4695;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.chart-canvas-wrap {
  max-width: 280px;
  margin: 0 auto;
}
.chart-box.full-width {
  grid-column: 1 / -1;
}

/* opinion cards */
.opinion-section { margin-bottom: 60px; }
.opinion-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
.opinion-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.opinion-card {
  background: #fff;
  border-left: 4px solid #0E4695;
  padding: 24px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  position: relative;
}
.opinion-card::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 2rem;
  color: #0E4695;
  opacity: 0.3;
  font-family: serif;
}

/* bar chart custom */
.bar-chart-wrap { max-width: 500px; margin: 0 auto; }
.bar-item { margin-bottom: 16px; }
.bar-label { font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; color: #444; }
.bar-track { background: #f0f0f0; border-radius: 50px; height: 28px; position: relative; overflow: hidden; }
.bar-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, #0E4695, #FFD100);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 700;
  transition: width 1s ease;
}

/* star rating */
.star-chart-wrap { max-width: 500px; margin: 0 auto; }
.star-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.star-label { font-size: 0.85rem; min-width: 160px; color: #444; }
.star-bar { flex: 1; }

/* ===== FOOTER CTA ===== */
.footer-cta {
  background: linear-gradient(135deg, #0E4695 0%, #0A3470 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.footer-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.footer-cta .en {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  opacity: 0.7;
  margin-bottom: 32px;
  display: block;
}
.footer-cta .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0E4695;
  font-weight: 700;
  padding: 16px 56px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.footer-cta .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); opacity: 1; }
.footer-cta .btn-white::after { content: '\2192'; font-size: 1.2rem; }

/* ===== FOOTER ===== */
.footer {
  background: #071E3D;
  color: #fff;
  padding: 48px 0 32px;
  text-align: center;
}
.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  opacity: 0.9;
}
.footer-links { margin-bottom: 24px; }
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin: 0 16px;
}
.footer-links a:hover { color: #fff; }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-family: 'Poppins', sans-serif;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.office-illust-img { width: 100%; margin-bottom: 40px; }

/* ===== バックオフィスの主な職種 ===== */
.back-office-jobs { margin-top: 32px; }
.back-office-title { font-size: 1.1rem; margin-bottom: 24px; }
.back-office-group { margin-bottom: 32px; }
.back-office-group-title { font-size: 1rem; margin-bottom: 16px; }
.back-office-cols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.back-office-cols:has(.back-office-col:nth-child(4):last-child) { grid-template-columns: repeat(4, 1fr); }
.back-office-col { font-size: 0.9rem; }
.back-office-job-title { margin-bottom: 8px; font-size: 0.95rem; }
.back-office-col ul { list-style: none; padding: 0; }
.back-office-col li { padding: 2px 0; line-height: 1.5; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .hamburger { display: block; }
  .voice-cards { grid-template-columns: repeat(2, 1fr); }
  .job-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .back-office-cols,
  .back-office-cols:has(.back-office-col:nth-child(4):last-child) { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .back-office-cols,
  .back-office-cols:has(.back-office-col:nth-child(4):last-child) { grid-template-columns: 1fr; }
  section { padding: 72px 0; }
  .section-title h2 { font-size: 1.6rem; }
  .hero { min-height: 500px; }
  .hero-title { font-size: 2rem; }
  .voice-cards { grid-template-columns: 1fr; }
  .chart-grid { grid-template-columns: 1fr; }
  .opinion-cards { grid-template-columns: 1fr; }
  .job-cards-grid { grid-template-columns: 1fr; }
  .job-card-inner { padding: 28px; }
  .btn-cta, .btn-outline { padding: 14px 36px; font-size: 0.9rem; }
}
