@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;700;800&family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.material-symbols-outlined.card-icon {
  font-size: 22px;
}
.service-card-h__icon .material-symbols-outlined {
  font-size: 30px;
}
.strength-item__icon .material-symbols-outlined {
  font-size: 30px;
}

:root {
  --color-navy: #1B2A4A;
  --color-navy-dark: #0F1A2E;
  --color-navy-light: #2A3F66;
  --color-cta-contact: #1B2A4A;
  --color-cta-recruit: #D35400;
  --color-cta-recruit-hover: #B84700;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F5F6F8;
  --color-text: #333333;
  --color-text-muted: #666666;
  --color-text-light: #999999;
  --color-text-white: #FFFFFF;
  --color-border: #E0E3E8;
  --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-heading: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 72px;
  --space-2xl: 96px;
  --container-max: 1400px;
  --container-pad: 24px;
  --site-nav-h: 60px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
}
img { max-width: 100%; height: auto; display: block; }
picture { display: block; max-width: 100%; }
a { color: var(--color-navy); }
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
@media (max-width: 767px) {
  :root { --container-pad: 16px; }
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--color-navy);
  color: white;
  padding: 8px 16px;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: opacity 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: inherit;
}
.btn:hover { opacity: 0.85; }
.btn-contact { background: var(--color-navy); color: white; }
.btn-contact--outline {
  background: transparent;
  border-color: var(--color-navy);
  color: var(--color-navy);
}
.btn-recruit { background: var(--color-cta-recruit); color: white; }
.btn-hero-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}
.btn-lg { padding: 12px 32px; font-size: 16px; border-radius: 28px; }
.btn-sm { min-height: 40px; padding: 8px 16px; font-size: 14px; }

@media (min-width: 1280px) {
  :root { --container-pad: 32px; }
}

/* Site navigation (unified sticky nav) */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 12px rgba(27,42,74,0.06);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 10px var(--container-pad);
  min-height: var(--site-nav-h);
  position: relative;
}
.site-nav__logo {
  font-family: var(--font-heading);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 800;
  color: var(--color-navy);
  text-decoration: none;
  flex-shrink: 0;
  z-index: 2;
}
.site-nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 2;
  flex-shrink: 0;
}
.site-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: transform 0.3s, opacity 0.3s;
}
.site-nav__toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.site-nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.site-nav__toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.site-nav__menu {
  display: none;
  background: white;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 12px 24px rgba(27,42,74,0.1);
}
@media (max-width: 1023px) {
  .site-nav.is-open .site-nav__menu {
    display: block;
    position: fixed;
    top: var(--site-nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 199;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 8px var(--container-pad) 0;
}
.site-nav__list > li {
  border-bottom: 1px solid var(--color-border);
}
.site-nav__link,
.site-nav__parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-navy);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.site-nav__link:hover,
.site-nav__parent:hover,
.site-nav__link.is-active,
.site-nav__parent.is-active { color: var(--color-cta-recruit); }
.site-nav__parent::after {
  content: '';
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 12px;
}
.site-nav__item--has-child.is-open .site-nav__parent::after { transform: rotate(-135deg); }
.site-nav__sub {
  list-style: none;
  margin: 0;
  padding: 0 0 0 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.site-nav__item--has-child.is-open .site-nav__sub { max-height: 280px; }
.site-nav__sub a {
  display: block;
  padding: 10px 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: none;
}
.site-nav__sub a:hover { color: var(--color-navy); }
.site-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px var(--container-pad) 20px;
  border-top: 1px solid var(--color-border);
}
.site-nav__actions .btn { width: 100%; }

@media (min-width: 1024px) {
  .site-nav__toggle { display: none; }
  .site-nav__menu {
    display: flex !important;
    position: static;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    max-height: none;
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .site-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    flex: 1;
    justify-content: center;
  }
  .site-nav__list > li { border-bottom: none; position: relative; }
  .site-nav__link,
  .site-nav__parent {
    width: auto;
    padding: 8px 12px;
    font-size: 14px;
    white-space: nowrap;
  }
  .site-nav__parent::after { display: none; }
  .site-nav__sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 8px 0;
    max-height: none !important;
    display: none;
  }
  .site-nav__item--has-child:hover .site-nav__sub,
  .site-nav__item--has-child:focus-within .site-nav__sub { display: block; }
  .site-nav__sub a { padding: 10px 16px; }
  .site-nav__actions {
    flex-direction: row;
    border: none;
    padding: 0;
    flex-shrink: 0;
  }
  .site-nav__actions .btn { width: auto; }
}

/* Hero home - 100vh + curve (G2) */
.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  background: var(--color-navy-dark);
}
.hero__media picture {
  width: 100%; height: 100%;
}
.hero__media img, .hero__media video, .hero__video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, rgba(15,26,46,0.82) 0%, rgba(27,42,74,0.45) 55%, rgba(27,42,74,0.25) 100%);
}
.hero-curve__svg {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
  height: clamp(48px, 8vw, 88px);
}
.hero-curve__svg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero__content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 48px var(--container-pad) 100px;
  color: var(--color-text-white);
}
.hero__label {
  font-size: 12px;
  letter-spacing: 0.15em;
  opacity: 0.8;
  margin: 0 0 12px;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 16px;
}
.hero__title span { display: block; }
.hero__catch {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 500;
  margin: 0 0 12px;
}
.hero__lead {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.8;
  margin: 0;
  max-width: 640px;
}
.hero__scroll {
  position: absolute;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: white;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-align: center;
  opacity: 0.7;
}
.page-home .hero__content {
  text-align: center;
}
.page-home .hero__lead {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .hero__content { padding-bottom: 120px; }
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px; height: 32px;
  background: white;
  margin: 8px auto 0;
  animation: scrollLine 1.5s infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Page hero (subpages) */
.hero-page {
  position: relative;
  min-height: auto;
  padding: 48px 0;
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 55%, var(--color-navy-light) 100%);
  color: white;
  overflow: hidden;
}
.hero-page::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--color-cta-recruit);
  z-index: 2;
}
.hero-page::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-page .hero__overlay { display: none; }
.hero-page .hero__media { opacity: 0.22; }
.hero-page .hero__content {
  position: relative;
  z-index: 1;
  padding: 0 var(--container-pad) 0 calc(var(--container-pad) + 12px);
  border-left: 3px solid rgba(255,255,255,0.35);
  margin-left: 10px;
}
.hero-page .hero__label {
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.18em;
}
.hero-page .hero__title {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px;
}
.hero-page .hero__catch {
  color: rgba(255,255,255,0.95);
}
.hero-page .hero__lead {
  margin-bottom: 0;
  opacity: 0.88;
}

/* Breadcrumb */
.breadcrumb-wrap {
  background: var(--color-bg-alt);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 13px;
  color: var(--color-text-muted);
}
.breadcrumb a { color: var(--color-text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-navy); }
.breadcrumb li + li::before { content: '>'; margin-right: 4px; opacity: 0.5; }

/* Sections */
.section { padding: var(--space-xl) 0; }
.section--alt { background: var(--color-bg-alt); }
.section-header { margin-bottom: var(--space-lg); }
.section-header--center { text-align: center; }
.section-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-family: var(--font-heading);
  margin-bottom: 12px;
}
.section-label__en {
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-navy);
}
.section-label__line {
  display: block;
  width: clamp(32px, 5vw, 56px);
  height: 1px;
  background: var(--color-navy);
  opacity: 0.35;
  flex-shrink: 0;
}
.section-label__ja {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
/* plain section-label without split (subpages) */
.section-label:not(:has(.section-label__en)) {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-cta-recruit);
  margin-bottom: 10px;
}
.section-label:not(:has(.section-label__en))::before {
  content: '';
  display: block;
  width: 18px;
  height: 3px;
  background: var(--color-cta-recruit);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 12px;
}
/* 下層ページのセクション見出し：左縦線＋薄い帯 */
body:not(.page-home) .section-title {
  border-left: 4px solid var(--color-navy);
  background: rgba(27, 42, 74, 0.06);
  padding: 10px 16px;
  margin-bottom: 16px;
}
.section-lead {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 640px;
  margin: 0;
}
.section-header--center .section-lead { margin: 0 auto; }
.section-link-more { text-align: center; margin-top: var(--space-md); }

/* Service cards G2 - horizontal with image */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .service-grid--4col { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .service-grid--4col { grid-template-columns: repeat(4, 1fr); }
}
.service-grid--4col { padding-top: 0; }
.service-card-h {
  display: flex;
  flex-direction: column;
  background: white;
  border: none;
  border-radius: 8px;
  overflow: visible;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(27,42,74,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card-h:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(27,42,74,0.15);
}
.service-card-h__media {
  position: relative;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.service-card-h__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 50%;
  aspect-ratio: 1;
  background: var(--color-navy);
  color: white;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0.4em 0 0 0.55em;
  box-sizing: border-box;
  font-family: var(--font-heading);
  font-size: clamp(21px, 4.2vw, 26px);
  font-weight: 800;
  line-height: 1;
}
.service-card-h__img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  background: var(--color-bg-alt);
  display: block;
}
.service-card-h__body {
  padding: 24px 20px;
  flex: 1;
  text-align: center;
}
.service-card-h__head {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  text-align: left;
}
.service-card-h__labels {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-navy);
  color: var(--color-navy);
  vertical-align: middle;
  margin-right: 8px;
  flex-shrink: 0;
}
.service-card-h__title {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: var(--color-navy);
  line-height: 1.5;
}
.service-card-h__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--color-navy);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  line-height: 0;
}
.service-card-h__icon .material-symbols-outlined {
  display: block;
}
.service-card-h__title-text {
  line-height: 1.5;
}
.service-card-h__title-sub {
  font-size: 14px;
  font-weight: 400;
}
.service-card-h__en {
  font-size: 11px;
  color: var(--color-text-light);
  margin: 0;
  letter-spacing: 0.05em;
}
.service-card-h__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}

/* Service card simple (numbered, no image) */
.service-card {
  display: block;
  padding: 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--color-navy); }
.service-card__num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-navy);
  opacity: 0.25;
  line-height: 1;
}
.service-card__title { font-size: 18px; font-weight: 700; margin: 8px 0 4px; }
.service-card__en { font-size: 12px; color: var(--color-text-muted); margin-bottom: 12px; }
.service-card__desc { font-size: 14px; line-height: 1.7; color: var(--color-text-muted); margin: 0; }

/* Strength row (G2 icon style) */
.strength-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .strength-row { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .strength-row { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.strength-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
@media (min-width: 768px) {
  .strength-item {
    align-items: center;
  }
}
.strength-item__head {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.strength-item__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--color-navy);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  line-height: 0;
}
.strength-item__icon .material-symbols-outlined {
  display: block;
}
.strength-item__icon svg { display: block; }
.strength-item__title {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--color-navy);
  line-height: 1.5;
  flex: 1;
}
.strength-item__text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin: 0;
  width: 100%;
  text-align: left;
}

/* Strength 2x2 (legacy subpages) */
.strength-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .strength-grid { grid-template-columns: 1fr 1fr; }
}
.strength-card {
  background: var(--color-bg-alt);
  border-radius: 6px;
  overflow: hidden;
}
.strength-card__img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}
.strength-card__body { padding: 20px; }
.strength-card__num {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-navy);
}
.strength-card__title {
  font-size: 17px;
  font-weight: 700;
  margin: 8px 0;
}
.strength-card__text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin: 0;
}

/* Recruit full-width band (index) */
.recruit-band {
  background: #E8EEF5;
  padding: 0;
  overflow: hidden;
}
.recruit-band__inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 100%;
  min-height: 260px;
}
@media (min-width: 768px) {
  .recruit-band__inner {
    grid-template-columns: 1fr minmax(240px, 38%);
    min-height: 320px;
  }
}
.recruit-band__content {
  padding: var(--space-md) var(--container-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .recruit-band__content {
    padding: var(--space-lg) clamp(28px, 4vw, 56px);
    justify-content: space-evenly;
    gap: 8px;
    min-height: 100%;
  }
  .recruit-band__content .section-label {
    margin-bottom: 0;
  }
}
@media (min-width: 1280px) {
  .recruit-band__content {
    padding-left: max(clamp(28px, 4vw, 56px), calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
    padding-right: clamp(28px, 4vw, 56px);
  }
}
.recruit-band__title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 10px;
  line-height: 1.45;
}
@media (min-width: 768px) {
  .recruit-band__title {
    font-size: clamp(22px, 2.8vw, 30px);
    margin: 0;
  }
}
.recruit-band__lead {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .recruit-band__lead {
    font-size: 15px;
    margin: 0;
    max-width: none;
  }
}
.recruit-band__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 480px) {
  .recruit-band__cta { flex-direction: row; flex-wrap: wrap; }
}
@media (min-width: 768px) {
  .recruit-band__cta {
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    gap: 16px;
    margin-top: 8px;
  }
}
.recruit-band__cta .btn-lg {
  min-height: 44px;
  padding: 10px 24px;
  font-size: 15px;
}
@media (min-width: 768px) {
  .recruit-band__cta .btn-lg {
    flex: 1 1 0;
    justify-content: center;
    text-align: center;
    min-width: 0;
    padding: 12px 16px;
  }
}
.recruit-band__visual {
  min-height: 200px;
}
.recruit-band__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}
.recruit-band__visual img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
}
.u-sp-only { display: none; }
@media (max-width: 767px) {
  .u-sp-only { display: inline; }
}

/* Recruit section (subpages) */
.recruit-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(180deg, #EEF2F7 0%, #F5F6F8 100%);
}
.recruit-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}
@media (min-width: 768px) {
  .recruit-split { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.recruit-split__content .section-title {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 16px;
}
.recruit-split__visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(27,42,74,0.12);
}
.recruit-section__head { text-align: center; max-width: 640px; margin: 0 auto var(--space-md); }
.recruit-section__lead {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.recruit-motto {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--color-navy);
  margin-bottom: 24px;
}
.recruit-split .recruit-section__cta { margin-bottom: 0; }
.recruit-section__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .recruit-section__cta { flex-direction: row; }
}
.recruit-gallery {
  overflow-x: auto;
  display: flex;
  gap: 12px;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.recruit-gallery img {
  height: 180px;
  width: auto;
  border-radius: 4px;
  flex-shrink: 0;
}

/* News minimal */
.news-minimal { padding: var(--space-lg) 0; }
.news-minimal .section-label {
  margin-bottom: 20px;
}
.news-minimal .section-title { display: none; }
.news-list { list-style: none; margin: 0; padding: 0; }
.news-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}
.news-list li:last-child { border-bottom: none; }
.news-date {
  color: var(--color-text-light);
  min-width: 90px;
  white-space: nowrap;
}
.news-date::after {
  content: '|';
  margin: 0 16px;
  color: var(--color-border);
  font-weight: 300;
}
.news-title {
  color: var(--color-text-muted);
  flex: 1;
  min-width: 0;
}
a.news-title {
  color: var(--color-text-muted);
  text-decoration: none;
}
a.news-title:hover {
  color: var(--color-navy);
  text-decoration: underline;
}

/* CTA dual */
.cta-dual { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .cta-dual { grid-template-columns: 1fr 1fr; } }
.cta-dual__panel {
  padding: 48px 32px;
  text-align: center;
  background: var(--color-navy);
  color: white;
}
.cta-dual__panel--recruit { background: var(--color-navy-light); }
.cta-dual__head {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  text-align: left;
}
.cta-dual__labels {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}
.cta-dual__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  line-height: 0;
}
.cta-dual__icon .material-symbols-outlined {
  font-size: 36px;
  display: block;
}
.cta-dual__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: white;
  line-height: 1.5;
}
.cta-dual__en {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  margin: 0;
}
.cta-dual__desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin: 0 0 20px;
}
.cta-dual__panel .btn-contact {
  background: white;
  color: var(--color-navy);
}
.cta-dual__panel .btn-recruit {
  background: var(--color-cta-recruit);
  color: white;
}

/* Floating recruit (G2 B-F) */
.floating-recruit {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 250;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--color-navy);
  border: none;
  border-radius: 8px 0 0 8px;
  padding: 24px 14px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  box-shadow: -4px 0 16px rgba(27,42,74,0.25);
}
.floating-recruit__label {
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.floating-recruit__icon {
  font-size: 22px;
  line-height: 1;
}
.floating-recruit:hover { background: var(--color-navy-light); color: white; opacity: 1; }
@media (max-width: 767px) {
  .floating-recruit {
    flex-direction: row;
    top: auto; bottom: 16px; right: 16px;
    transform: none;
    border-radius: 24px;
    padding: 14px 22px;
    box-shadow: 0 4px 16px rgba(27,42,74,0.3);
  }
  .floating-recruit__label {
    writing-mode: horizontal-tb;
  }
}

/* Footer */
.site-footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.85);
  padding: var(--space-lg) 0 var(--space-md);
  font-size: 14px;
}
.footer-sitemap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: var(--space-lg);
}
@media (min-width: 768px) {
  .footer-sitemap { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-sitemap { grid-template-columns: repeat(4, 1fr); }
}
.footer-nav-en {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.6;
}
.footer-nav-ja {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin: 4px 0 12px;
}
.footer-nav-children {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav-children a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
}
.footer-nav-children a:hover { color: white; }
.footer-nav-cta { font-weight: 700; color: white !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  opacity: 0.7;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom a { color: rgba(255,255,255,0.85); }

/* Subpage components */
.page-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}
.page-subnav a {
  font-size: 13px;
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  text-decoration: none;
  color: var(--color-text-muted);
}
.page-subnav a:hover,
.page-subnav a.active {
  border-color: var(--color-navy);
  color: var(--color-navy);
  background: var(--color-bg-alt);
}

.content-block { margin-bottom: var(--space-xl); }
.content-block h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px;
  padding: 10px 16px;
  color: var(--color-navy);
  border-left: 4px solid var(--color-navy);
  background: rgba(27, 42, 74, 0.06);
}
.content-block h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 12px;
  color: var(--color-navy);
  border-left: 3px solid var(--color-cta-recruit);
  background: rgba(211, 84, 0, 0.06);
  padding: 8px 14px;
}
.content-block p { margin: 0 0 16px; color: var(--color-text-muted); }
.content-block ul, .content-block ol {
  margin: 0 0 16px;
  padding-left: 1.5em;
  color: var(--color-text-muted);
}
.content-block li { margin-bottom: 8px; }

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: var(--space-md);
  background: #fff;
}
.info-table th,
.info-table td {
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
  background: #fff;
}
.info-table th {
  font-weight: 700;
  width: 30%;
  color: var(--color-navy);
}
/* 保有車両など「項目 | 数値」2列表 */
.info-table--fleet th:last-child,
.info-table--fleet td:last-child {
  width: 5.5em;
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 767px) {
  .info-table:not(.info-table--fleet) th,
  .info-table:not(.info-table--fleet) td {
    display: block;
    width: 100%;
  }
  .info-table:not(.info-table--fleet) th { border-bottom: none; }
  .info-table--fleet {
    table-layout: fixed;
    font-size: 13px;
  }
  .info-table--fleet th,
  .info-table--fleet td {
    padding: 10px 12px;
  }
  .info-table--fleet th:first-child,
  .info-table--fleet td:first-child {
    width: auto;
    text-align: left;
  }
  .info-table--fleet th:last-child,
  .info-table--fleet td:last-child {
    width: 4.5em;
    text-align: right;
  }
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-navy);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 2px;
  margin-bottom: 12px;
}
.alert-box {
  padding: 16px;
  background: #FFF8E6;
  border-left: 4px solid #F0AD4E;
  font-size: 14px;
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
}

/* Cards grid */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.appeal-card {
  padding: 24px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 6px;
}
.appeal-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--color-navy);
}
.appeal-card p { font-size: 14px; color: var(--color-text-muted); margin: 0; }

.motto-boxes {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.motto-box {
  padding: 20px 28px;
  border: 2px solid var(--color-navy);
  border-radius: 4px;
  text-align: center;
  min-width: 120px;
}
.motto-box strong {
  display: block;
  font-size: 18px;
  color: var(--color-navy);
  margin-bottom: 4px;
}
.motto-box span { font-size: 13px; color: var(--color-text-muted); }

.quote-block {
  padding: 32px;
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-navy);
  margin: var(--space-md) 0;
}
.quote-block p {
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 12px;
  color: var(--color-text);
}
.quote-block cite {
  font-size: 14px;
  color: var(--color-text-muted);
  font-style: normal;
}

/* Accordion */
.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: white;
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.accordion-trigger::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 12px;
}
.accordion-item.is-open .accordion-trigger::after { content: '−'; }
.accordion-body {
  display: none;
  padding: 12px 20px 20px;
  font-size: 14px;
  color: var(--color-text-muted);
}
.accordion-item.is-open .accordion-body { display: block; }
.accordion-body dl { margin: 0; }
.accordion-body dt { font-weight: 700; color: var(--color-text); margin-top: 12px; }
.accordion-body dt:first-child { margin-top: 0; }
.accordion-body dd { margin: 4px 0 0; }

/* FAQ */
.faq-group { margin-bottom: var(--space-lg); }
.faq-group h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-md);
  padding: 10px 16px;
  border-left: 4px solid var(--color-navy);
  background: rgba(27, 42, 74, 0.06);
}

/* Forms */
.form-section {
  background: var(--color-bg-alt);
  padding: var(--space-lg);
  border-radius: 6px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-text);
}
.form-label .required {
  font-size: 11px;
  color: white;
  background: var(--color-navy);
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 6px;
  font-weight: 500;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  background: white;
}
.form-control:focus {
  outline: 2px solid var(--color-navy);
  outline-offset: 0;
}
textarea.form-control { min-height: 140px; resize: vertical; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
}
.form-check input { margin-top: 4px; flex-shrink: 0; width: 18px; height: 18px; }
.form-note { font-size: 13px; color: var(--color-text-light); margin-top: 8px; }
.form-feedback {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.7;
}
.form-feedback--success {
  background: #edf7ed;
  border: 1px solid #b7dfbc;
  color: #1f5f2d;
}
.form-feedback--error {
  background: #fdecec;
  border: 1px solid #f0b8b8;
  color: #8a1f1f;
}

/* Timeline */
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}
.timeline__year {
  font-weight: 700;
  color: var(--color-navy);
  min-width: 80px;
  flex-shrink: 0;
}
.timeline__text { color: var(--color-text-muted); }

/* Link cards */
.link-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.link-card:hover { border-color: var(--color-navy); }
.link-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; color: var(--color-navy); }
.link-card p { font-size: 14px; color: var(--color-text-muted); margin: 0 0 12px; }
.link-card--muted { opacity: 0.6; pointer-events: none; }

/* Map */
.map-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 4px;
  margin-top: var(--space-md);
}

/* Two column layout */
.layout-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (min-width: 768px) {
  .layout-2col { grid-template-columns: 1fr 1fr; }
}

/* Image placeholder note */
.img-placeholder {
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 13px;
  text-align: center;
  padding: 16px;
}

/* Image lightbox */
.img-lightbox-block {
  text-align: center;
}
.img-lightbox-caption {
  font-size: 13px;
  color: var(--color-text-light);
  margin: 12px 0 0;
  text-align: center;
}
.img-lightbox-trigger {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-bg-alt);
  cursor: zoom-in;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.img-lightbox-trigger--lg {
  max-width: 960px;
}
.img-lightbox-trigger:hover {
  box-shadow: 0 4px 20px rgba(27,42,74,0.12);
}
.img-lightbox-trigger img {
  width: 100%;
  height: auto;
  display: block;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15,26,46,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox[hidden] { display: none !important; }
.lightbox__inner {
  max-width: min(960px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
}
.lightbox__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  background: white;
}
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.lightbox__close:hover { background: rgba(255,255,255,0.25); }
