/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #0f2d1e;
  --primary-mid:  #1a4a2a;
  --green:        #1e7e34;
  --green-light:  #27ae60;
  --accent:       #c9a227;
  --accent-light: #e8c040;
  --white:        #ffffff;
  --bg-light:     #f6f9f6;
  --text-dark:    #1a1a1a;
  --text-mid:     #444444;
  --text-gray:    #777777;
  --border:       #dde8dd;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 10px 36px rgba(0,0,0,0.14);
  --transition:   all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}

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

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

/* === HEADER === */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { width: 40px; height: 40px; border-radius: 8px; object-fit: contain; background: #fff; padding: 2px; }
.logo-text { line-height: 1.2; }
.logo-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.01em;
  transition: color 0.4s;
}
.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  transition: color 0.4s;
}
#header.scrolled .logo-text strong { color: var(--primary); }
#header.scrolled .logo-text span   { color: var(--text-gray); }

.global-nav { display: flex; align-items: center; gap: 0.25rem; }
.global-nav a {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: var(--transition);
}
.global-nav a:hover { color: var(--accent-light); background: rgba(255,255,255,0.08); }
#header.scrolled .global-nav a { color: var(--text-mid); }
#header.scrolled .global-nav a:hover { color: var(--green); background: var(--bg-light); }
.global-nav .nav-contact-btn {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  margin-left: 0.5rem;
}
.global-nav .nav-contact-btn:hover { background: var(--accent-light); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#header.scrolled .hamburger span { background: var(--primary); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  padding: 1rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 999;
}
.mobile-menu a {
  display: block;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: block; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(30,126,52,0.4); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,162,39,0.4); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-double { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.9); outline: 2px solid rgba(255,255,255,0.5); outline-offset: 3px; }
.btn-double:hover { background: rgba(255,255,255,0.12); border-color: #fff; outline-color: rgba(255,255,255,0.8); }
.btn-double-gold { background: transparent; color: var(--accent-light); border: 2px solid var(--accent); outline: 2px solid rgba(201,162,39,0.5); outline-offset: 3px; }
.btn-double-gold:hover { background: rgba(201,162,39,0.1); border-color: var(--accent-light); outline-color: var(--accent); }
.btn-outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: #fff; }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1rem; }

/* === SECTIONS === */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--primary); color: #fff; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(30,126,52,0.08);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.section-dark .section-title { color: #fff; }
.section-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}
.section-dark .section-desc { color: rgba(255,255,255,0.75); }

/* === HERO === */
#hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f2d1e;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero-slide.sapporo {
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(10,30,16,0.48) 0%, rgba(15,45,30,0.36) 50%, rgba(26,74,42,0.22) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,162,39,0.2);
  border: 1px solid rgba(201,162,39,0.5);
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge i { font-size: 0.85rem; }
.hero-catch {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hero-catch em {
  font-style: normal;
  color: var(--accent-light);
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat-item { }
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
  font-weight: 500;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* === MESSAGE === */
.message-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.message-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}
.message-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.message-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.message-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 4/3;
}
.message-img img { width: 100%; height: 100%; object-fit: cover; }
.message-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f2d1e 0%, #1e7e34 60%, #27ae60 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  gap: 1rem;
  font-size: 3rem;
}

/* === SERVICES === */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #e6f4ea, #c3e6cb);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.75;
}

/* === WHY === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.why-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-mid), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.why-card h3 {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.why-card p { font-size: 0.83rem; color: var(--text-gray); line-height: 1.65; }

/* === AREA === */
.area-hokkaido {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.area-item {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 1rem 0.75rem;
  text-align: center;
  transition: var(--transition);
}
.area-item:hover { background: var(--green); color: #fff; transform: translateY(-3px); }
.area-item:hover .area-icon { color: #fff; }
.area-item:hover .area-name { color: #fff; }
.area-item:hover .area-note { color: rgba(255,255,255,0.8); }
.area-icon { font-size: 1.5rem; color: var(--green); margin-bottom: 0.5rem; }
.area-name { font-size: 0.9rem; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; }
.area-note { font-size: 0.75rem; color: var(--text-gray); }
.area-highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.area-highlight:hover { background: linear-gradient(135deg, var(--primary-mid), var(--green)); color: #fff; transform: none; }
.area-highlight .area-name,
.area-highlight .area-note { color: rgba(255,255,255,0.9); }
.area-highlight .area-icon { color: var(--accent-light); font-size: 1.75rem; }
.area-hl-right { text-align: right; }
.area-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.25rem;
}

/* === RECRUIT === */
.recruit-wrap {
  background: linear-gradient(135deg, var(--primary) 0%, #1a5235 60%, #27ae60 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.recruit-content {
  padding: 3.5rem;
  color: #fff;
}
.recruit-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
}
.recruit-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.recruit-sub { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 1.75rem; line-height: 1.8; }
.recruit-points { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.recruit-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.92);
}
.recruit-point i { color: var(--accent-light); flex-shrink: 0; margin-top: 0.2rem; }
.recruit-img {
  position: relative;
  overflow: hidden;
}
.recruit-img img { width: 100%; height: 100%; object-fit: cover; }
.recruit-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: linear-gradient(160deg, #1a5235 0%, #27ae60 50%, #2ecc71 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  gap: 1rem;
  font-size: 4rem;
}
.recruit-income {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.income-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.income-label { font-size: 0.72rem; color: rgba(255,255,255,0.65); margin-bottom: 0.25rem; }
.income-val { font-size: 1.4rem; font-weight: 900; color: var(--accent-light); font-family: 'Montserrat', sans-serif; }
.income-unit { font-size: 0.75rem; color: rgba(255,255,255,0.7); }

/* === GROUP === */
.group-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}
.group-logo-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.group-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-light);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.group-logo img { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; }
.group-logo-text strong { display: block; font-size: 1rem; font-weight: 900; color: var(--primary); }
.group-logo-text span  { display: block; font-size: 0.72rem; color: var(--text-gray); letter-spacing: 0.08em; }
.group-businesses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
}
.group-biz {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-light);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mid);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.group-biz:hover { background: var(--white); border-color: var(--green); color: var(--green); }
.group-biz i { color: var(--green); font-size: 1rem; }
.group-biz.active { border-color: var(--green); background: rgba(30,126,52,0.06); color: var(--green); }
.group-body { font-size: 0.9rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 2rem; }

/* === CONTACT BANNER === */
.contact-banner {
  background: linear-gradient(135deg, #0a1f0e 0%, var(--primary) 50%, var(--primary-mid) 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}
.contact-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.contact-banner p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-bottom: 1.5rem; }
.contact-tel {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--accent-light);
  margin-bottom: 0.25rem;
  letter-spacing: 0.04em;
}
.contact-tel-note { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.contact-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.contact-btns .btn { min-width: 310px; justify-content: center; }

/* === FOOTER === */
#footer {
  background: #09180f;
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.footer-brand .logo-text strong { color: #fff; }
.footer-brand .logo-text span   { color: rgba(255,255,255,0.5); }
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.75rem;
  line-height: 1.7;
}
.footer-nav h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--accent-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* === FADE-IN === */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.fade-in-delay-1 { transition-delay: 0.12s; }
.fade-in-delay-2 { transition-delay: 0.24s; }
.fade-in-delay-3 { transition-delay: 0.36s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === VEHICLE GALLERY === */
.vehicle-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.vehicle-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--white);
}
.vehicle-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.vehicle-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1c2c1c 0%, #2d4a2d 60%, #1a3a1a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.28);
  font-size: 3.5rem;
  transition: var(--transition);
}
.vehicle-photo img { width:100%; height:100%; object-fit:cover; position:absolute; top:0; left:0; }
.vehicle-photo:hover { background: linear-gradient(135deg, #0f2d1e 0%, #1e7e34 100%); }
.vehicle-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: rgba(255,255,255,0.9);
  padding: 2rem 1rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}
.vehicle-info { padding: 1rem 1.25rem; }
.vehicle-info h4 { font-size: 0.875rem; font-weight: 900; color: var(--primary); margin-bottom: 0.2rem; }
.vehicle-info p  { font-size: 0.78rem; color: var(--text-gray); }

.vehicle-gallery-wide {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}
.vehicle-gallery-wide .vehicle-card:first-child {
  grid-row: 1 / 3;
}
.vehicle-gallery-wide .vehicle-card:first-child .vehicle-photo {
  aspect-ratio: unset;
  height: 100%;
  min-height: 300px;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-recruit {
  background:
    linear-gradient(135deg, rgba(8,18,10,0.94) 0%, rgba(12,28,16,0.9) 50%, rgba(24,80,48,0.84) 100%),
    url('../corporate-site/images/city-photo.jpg') center 30% / cover no-repeat;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 64px;
  color: #fff;
}
.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 0.75rem 0 1rem;
}
.page-hero-content p {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  line-height: 1.85;
  margin-bottom: 1.75rem;
}
.page-hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.page-hero-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
}

/* === TIMELINE (1日の流れ) === */
.timeline { position: relative; max-width: 720px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 96px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(var(--green), var(--green-light));
}
.timeline-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-time {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--green);
  padding-top: 0.2rem;
  padding-right: 18px;
  position: relative;
  z-index: 2;
}
.timeline-dot {
  position: absolute;
  left: 90px; top: 6px;
  width: 14px; height: 14px;
  background: var(--green);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green);
}
.timeline-body {
  grid-column: 2;
  grid-row: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--green);
}
.timeline-body h4 { font-size: 0.9rem; font-weight: 900; color: var(--primary); margin-bottom: 0.2rem; }
.timeline-body p  { font-size: 0.82rem; color: var(--text-gray); line-height: 1.65; }

/* === INCOME SIMULATION === */
.income-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.income-sim-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.income-sim-header { padding: 1.5rem; text-align: center; }
.income-sim-header.starter  { background: #e8f5e9; }
.income-sim-header.standard { background: var(--primary); color: #fff; }
.income-sim-header.veteran  { background: var(--accent); color: #fff; }
.income-sim-type { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 0.4rem; opacity: 0.75; }
.income-sim-amount { font-family: 'Montserrat', sans-serif; font-size: 2.4rem; font-weight: 900; line-height: 1; }
.income-sim-header.starter .income-sim-amount { color: var(--primary); }
.income-sim-unit { font-size: 0.9rem; margin-left: 0.2rem; }
.income-sim-body { padding: 1.25rem 1.5rem; }
.income-sim-row {
  display: flex; justify-content: space-between;
  font-size: 0.82rem; padding: 0.45rem 0;
  border-bottom: 1px solid var(--border); color: var(--text-mid);
}
.income-sim-row:last-child { border-bottom: none; }
.income-sim-row span:last-child { font-weight: 700; color: var(--text-dark); }

/* === STAFF VOICES === */
.voice-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.voice-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); transition: var(--transition);
}
.voice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.voice-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a3a1a 0%, #2d5a2d 60%, #27ae60 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35); font-size: 4rem; position: relative;
}
.voice-photo img { width:100%; height:100%; object-fit:cover; position:absolute; top:0; left:0; }
.voice-tag {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--accent); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  padding: 0.2rem 0.6rem; border-radius: 4px;
}
.voice-body { padding: 1.5rem; }
.voice-quote {
  font-size: 0.88rem; color: var(--text-mid); line-height: 1.85;
  margin-bottom: 1rem; position: relative; padding-left: 1.2rem;
}
.voice-quote::before {
  content: '"'; position: absolute; left: 0; top: -0.2rem;
  font-size: 2rem; color: var(--green); line-height: 1; font-family: Georgia, serif;
}
.voice-name { font-size: 0.82rem; font-weight: 700; color: var(--primary); }
.voice-meta { font-size: 0.75rem; color: var(--text-gray); margin-top: 0.1rem; }

/* === FAQ === */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.faq-q {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.5rem; cursor: pointer;
  font-size: 0.9rem; font-weight: 700; color: var(--primary);
  user-select: none; transition: var(--transition);
}
.faq-q:hover { background: var(--bg-light); }
.faq-q-badge {
  flex-shrink: 0; width: 26px; height: 26px;
  background: var(--green); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 900; font-family: 'Montserrat', sans-serif;
}
.faq-q-text { flex: 1; }
.faq-icon { flex-shrink: 0; color: var(--green); transition: transform 0.3s; font-size: 0.9rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 1rem 1.5rem 1.25rem 4.5rem;
  font-size: 0.87rem; color: var(--text-mid); line-height: 1.85;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; }

/* === APPLICATION FORM === */
.apply-wrap { background: var(--bg-light); border-radius: var(--radius-lg); padding: 3rem; max-width: 720px; margin: 0 auto; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.form-label .required {
  display: inline-block; background: var(--green); color: #fff;
  font-size: 0.65rem; font-weight: 700; padding: 0.1rem 0.4rem;
  border-radius: 3px; margin-left: 0.4rem; vertical-align: middle;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: 0.9rem; color: var(--text-dark);
  background: var(--white); transition: border-color 0.2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green); background: #fff;
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--text-gray); margin-top: 0.35rem; }

/* === REQUIREMENT TABLE === */
.req-table { width: 100%; border-collapse: collapse; box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; }
.req-table th {
  background: var(--primary); color: #fff;
  padding: 1rem 1.25rem; text-align: left;
  font-size: 0.85rem; width: 28%; vertical-align: top;
}
.req-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem; color: var(--text-dark);
  background: var(--white); vertical-align: top; line-height: 1.8;
}
.req-table tr:last-child td { border-bottom: none; }
.req-table tr:nth-child(even) td { background: var(--bg-light); }

/* === SUPPORT CARDS === */
.support-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.support-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem; text-align: center; box-shadow: var(--shadow);
  border-bottom: 4px solid var(--green); transition: var(--transition);
}
.support-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.support-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, #e6f4ea, #c3e6cb);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--green); margin: 0 auto 1rem;
}
.support-card h3 { font-size: 0.9rem; font-weight: 900; color: var(--primary); margin-bottom: 0.5rem; }
.support-card p  { font-size: 0.8rem; color: var(--text-gray); line-height: 1.65; }

@media (max-width: 768px) {
  .global-nav { display: none; }
  .hamburger { display: flex; }
  #header.scrolled .hamburger span { background: var(--primary); }

  .section { padding: 64px 0; }

  .hero-content { padding: 100px 0 60px; }
  .hero-catch { font-size: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.5rem; }

  .message-grid { grid-template-columns: 1fr; gap: 2rem; }
  .message-img { order: -1; }
  .message-img-placeholder { min-height: 240px; }

  .service-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .area-hokkaido { grid-template-columns: 1fr 1fr; }

  .recruit-wrap { grid-template-columns: 1fr; }
  .recruit-content { padding: 2rem 1.5rem; }
  .recruit-img { display: none; }

  .group-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .group-businesses { grid-template-columns: 1fr 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .vehicle-gallery { grid-template-columns: 1fr; }
  .vehicle-gallery-wide { grid-template-columns: 1fr 1fr; }
  .vehicle-gallery-wide .vehicle-card:first-child { grid-row: auto; grid-column: 1 / -1; }
  .income-grid { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 68px; }
  .timeline-item { grid-template-columns: 68px 1fr; }
  .timeline-dot { left: 62px; }
  .apply-wrap { padding: 1.75rem 1.25rem; }
  .page-hero-content h1 { font-size: 1.8rem; }
}
@media (max-width: 1024px) {
  .vehicle-gallery { grid-template-columns: repeat(2,1fr); }
  .vehicle-gallery-wide { grid-template-columns: 1fr 1fr; }
  .vehicle-gallery-wide .vehicle-card:first-child { grid-row: auto; grid-column: 1 / -1; }
  .income-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: repeat(2,1fr); }
  .voice-grid { grid-template-columns: 1fr 1fr; }
}
