/* ============================================
   そよかぜ訪問看護ステーション
   Station HP + Recruit Site
   Design: Navy (#142946) × Gold (#f0a818)
   ============================================ */
:root {
  --navy: #142946;
  --navy-hover: #1a3760;
  --navy-light: #e8eef5;
  --gold: #f0a818;
  --gold-light: #fef6e0;
  --line-green: #06C755;
  --line-hover: #05b34b;
  --seminar-blue: #136ded;
  --seminar-hover: #0f5fd4;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-warm: #f7f9fb;
  --bg-gradient: linear-gradient(135deg, #f7f9fb, #eef3f9 50%, #fef9ed 100%);
  --bg-recruit: linear-gradient(135deg, #ffffff, #def1ff 20%, #fff5c1 91%);
  --text: #142946;
  --text-body: #3d4f63;
  --text-muted: #8896a8;
  --border: #e4edf9;
  --border-light: #f0f4f8;
  --shadow-xs: 0 1px 2px rgba(20,41,70,0.04);
  --shadow-sm: 0 2px 8px rgba(20,41,70,0.06);
  --shadow-md: 0 4px 16px rgba(20,41,70,0.08);
  --shadow-lg: 0 8px 32px rgba(20,41,70,0.1);
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s, opacity 0.3s; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* === Layout === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.container--narrow { max-width: 880px; }
.container--wide { max-width: 1200px; }

/* === Typography === */
.en { font-family: 'Montserrat', sans-serif; }
h1, h2, h3, h4, h5 { color: var(--text); line-height: 1.4; }

/* === Section === */
.section { padding: clamp(80px, 10vw, 120px) 0; }
.section--gray { background: var(--bg-warm); }
.section--gradient { background: var(--bg-gradient); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.section--navy .section-label { color: var(--gold); }
.section-title {
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 700; letter-spacing: -0.01em;
}
.section-subtitle {
  font-size: 15px; color: var(--text-muted);
  margin-top: 8px; line-height: 1.7;
}
.section-header { margin-bottom: clamp(40px, 6vw, 64px); }
.section-header--center { text-align: center; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-size: 14px; font-weight: 600;
  border-radius: var(--radius-pill); transition: all 0.3s var(--ease);
  white-space: nowrap; justify-content: center;
}
.btn svg { transition: transform 0.3s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

.btn--navy { background: var(--navy); color: #fff; border: 2px solid var(--navy); }
.btn--navy:hover { background: var(--navy-hover); box-shadow: 0 4px 16px rgba(20,41,70,0.2); }
.btn--navy-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--navy-outline:hover { background: var(--navy); color: #fff; }
.btn--gold { background: var(--gold); color: #fff; border: 2px solid var(--gold); }
.btn--gold:hover { filter: brightness(1.08); box-shadow: 0 4px 16px rgba(240,168,24,0.3); }
.btn--line { background: var(--line-green); color: #fff; border: 2px solid var(--line-green); }
.btn--line:hover { background: var(--line-hover); box-shadow: 0 4px 16px rgba(6,199,85,0.3); }
.btn--seminar { background: var(--seminar-blue); color: #fff; border: 2px solid var(--seminar-blue); }
.btn--seminar:hover { background: var(--seminar-hover); box-shadow: 0 4px 16px rgba(19,109,237,0.3); }
.btn--white { background: #fff; color: var(--navy); border: 2px solid #fff; }
.btn--white:hover { background: #f5f5f5; }
.btn--white-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn--white-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn--block { width: 100%; }
.btn--lg { padding: 16px 40px; font-size: 16px; }
.btn--sm { padding: 10px 24px; font-size: 13px; }
.btn--icon-only { padding: 12px; border-radius: 50%; }

/* === Badges / Tags === */
.tag {
  display: inline-block; padding: 4px 12px;
  font-size: 12px; font-weight: 600;
  border-radius: var(--radius-pill);
  background: var(--navy-light); color: var(--navy);
}
.tag--filled { background: var(--navy); color: #fff; }
.tag--gold { background: var(--gold-light); color: #b07a00; }

/* === Cards === */
.card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-body { padding: clamp(20px, 3vw, 28px); }

/* === Animations === */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-child {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.stagger-child.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   HEADER (shared: station + recruit)
   ============================================ */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000; padding: 12px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm); padding: 8px 0;
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-pill);
  padding: 10px 12px 10px 20px;
  box-shadow: var(--shadow-md);
}
.site-header.scrolled .header-inner {
  box-shadow: none; background: transparent; border-radius: 0;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon img { width: 36px; height: 36px; }
.logo-icon svg { width: 36px; height: 36px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.logo-name {
  font-size: 15px; font-weight: 700; color: var(--navy);
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
}
.logo-badge {
  font-size: 12px; font-weight: 700; color: var(--navy);
  background: var(--navy-light); padding: 3px 10px;
  border-radius: var(--radius-pill); margin-left: 8px;
}

/* Nav */
.desktop-nav { display: flex; align-items: center; gap: 24px; }
.nav-link {
  font-size: 13px; font-weight: 600; color: var(--text-body);
  transition: color 0.2s; padding: 4px 0;
  position: relative;
}
.nav-link:hover { color: var(--navy); }
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--navy);
  transition: width 0.3s var(--ease);
}
.nav-link:hover::after { width: 100%; }
.nav-link--dropdown { display: flex; align-items: center; gap: 4px; }
.nav-link--dropdown svg { width: 12px; height: 12px; }
.header-cta { margin-left: 8px; }

/* Hamburger */
.hamburger { display: none; padding: 8px; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all 0.3s; margin: 5px 0;
}

/* Mobile menu */
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  z-index: 1001;
}
.overlay.open { opacity: 1; pointer-events: auto; }
.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: 300px; max-width: 85vw; height: 100dvh;
  background: #fff; z-index: 1002;
  transition: right 0.4s var(--ease);
  padding: 72px 28px 28px; overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu .nav-link {
  display: block; padding: 14px 0; font-size: 15px;
  border-bottom: 1px solid var(--border-light);
}
.mobile-menu .nav-link::after { display: none; }
.mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  color: var(--text-muted); padding: 4px;
}
.mobile-menu-cta {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ============================================
   HERO — Station Top
   ============================================ */
.hero-station {
  padding: calc(var(--header-h) + 32px) 0 48px;
  min-height: 600px; position: relative;
  display: flex; align-items: center;
  background: var(--bg-gradient);
  overflow: hidden;
}
.hero-station-inner {
  display: flex; align-items: center; gap: clamp(32px, 5vw, 64px);
  width: 100%;
}
.hero-station-text { flex: 1; max-width: 520px; }
.hero-station-text .hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.hero-station-text h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; line-height: 1.4;
  margin-bottom: 16px;
}
.hero-station-text h1 em {
  font-style: normal; color: var(--gold);
}
.hero-station-text .hero-desc {
  font-size: 15px; color: var(--text-body);
  margin-bottom: 24px; line-height: 1.8;
}
.hero-station-text .hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hero-station-img {
  flex: 0 0 45%; border-radius: var(--radius-xl);
  overflow: hidden; position: relative;
}
.hero-station-img img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}

/* ============================================
   HERO — Recruit Top
   ============================================ */
.hero-recruit {
  padding-top: var(--header-h);
  min-height: 480px; position: relative;
  display: flex; align-items: center;
  background: var(--bg-recruit);
  overflow: hidden;
}
.hero-recruit-inner {
  display: flex; align-items: center;
  gap: clamp(24px, 4vw, 48px); width: 100%;
}
.hero-recruit-text { flex: 1; max-width: 480px; }
.hero-recruit-text .hero-sub-label {
  font-size: 14px; color: var(--text-body);
  margin-bottom: 8px;
}
.hero-recruit-text h1 {
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; line-height: 1.15;
  color: var(--navy); margin-bottom: 12px;
}
.hero-recruit-text .hero-tagline {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600; color: var(--text-body);
  margin-bottom: 24px;
}
.hero-recruit-img {
  flex: 0 0 48%; border-radius: var(--radius-xl);
  overflow: hidden;
}
.hero-recruit-img img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}

/* Recruit action boxes */
.recruit-actions {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: -40px; position: relative; z-index: 2;
}
.recruit-action-box {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: clamp(24px, 3vw, 36px);
  text-align: center;
}
.recruit-action-box h3 {
  font-size: 18px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.recruit-action-box .action-buttons {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ============================================
   PAGE HERO (sub pages)
   ============================================ */
.page-hero {
  padding: calc(var(--header-h) + 48px) 0 48px;
  background: var(--bg-warm);
}
.page-hero .section-label { margin-bottom: 8px; }
.page-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
}

/* ============================================
   ABOUT / MISSION
   ============================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px); align-items: center;
}
.about-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-text h3 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 16px; line-height: 1.5;
}
.about-text p { margin-bottom: 12px; line-height: 1.9; }

/* Values */
.values-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.value-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 20px; background: var(--bg-warm);
  border-radius: var(--radius-md); border-left: 3px solid var(--gold);
}
.value-item strong { display: block; font-size: 15px; color: var(--navy); margin-bottom: 2px; }
.value-item p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ============================================
   NUMBERS
   ============================================ */
.numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; text-align: center;
}
.number-card {
  padding: 28px 16px; background: #fff;
  border-radius: var(--radius-md); box-shadow: var(--shadow-xs);
}
.number-card .num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700; color: var(--navy); line-height: 1;
}
.number-card .num-suffix { font-size: 0.5em; color: var(--gold); }
.number-card .num-label {
  font-size: 13px; color: var(--text-muted); margin-top: 8px;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.service-card {
  padding: clamp(24px, 3vw, 32px);
  background: #fff; border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.service-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--navy-light); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   STAFF
   ============================================ */
.staff-feature {
  display: grid; grid-template-columns: 260px 1fr;
  gap: clamp(28px, 4vw, 48px); align-items: start;
}
.staff-photo { border-radius: var(--radius-lg); overflow: hidden; }
.staff-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.staff-role {
  font-size: 13px; font-weight: 600; color: var(--gold);
  margin-bottom: 4px;
}
.staff-name {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700; margin-bottom: 16px;
}
.staff-message { line-height: 2; margin-bottom: 12px; }
.staff-team-photo {
  border-radius: var(--radius-lg); overflow: hidden;
  margin-top: clamp(36px, 5vw, 56px);
}
.staff-team-photo img { width: 100%; aspect-ratio: 2.5/1; object-fit: cover; }
.staff-team-caption {
  text-align: center; font-size: 13px;
  color: var(--text-muted); margin-top: 12px;
}

/* ============================================
   JOB LISTINGS
   ============================================ */
.job-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px; padding: 24px;
  background: var(--bg-warm); border-radius: var(--radius-md);
}
.job-filters .filter-label {
  font-size: 14px; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: 6px;
  margin-right: 8px; white-space: nowrap;
}
.job-filter-tag {
  padding: 6px 16px; font-size: 13px; font-weight: 500;
  border-radius: var(--radius-pill); border: 1px solid var(--border);
  background: #fff; color: var(--text-body);
  cursor: pointer; transition: all 0.2s;
}
.job-filter-tag:hover { border-color: var(--navy); color: var(--navy); }
.job-filter-tag.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.jobs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.job-card {
  background: #fff; border-radius: var(--radius-md);
  border: 1px solid var(--border); padding: 24px;
  transition: box-shadow 0.3s, border-color 0.3s;
  display: flex; flex-direction: column;
}
.job-card:hover { box-shadow: var(--shadow-md); border-color: var(--navy); }
.job-card-location {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; color: var(--text-muted); margin-bottom: 8px;
}
.job-card-location svg { width: 14px; height: 14px; color: var(--gold); }
.job-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; }
.job-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.job-card-cta { margin-top: auto; }

/* ============================================
   JOB DETAIL
   ============================================ */
.job-detail-layout {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 32px; align-items: start;
}
.job-detail-main {}
.job-detail-header { margin-bottom: 32px; }
.job-detail-header .location-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 14px; color: var(--seminar-blue); margin-bottom: 8px;
}
.job-detail-header .location-badge svg { width: 16px; height: 16px; }
.job-detail-header h1 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700; margin-bottom: 12px;
}
.job-detail-header .tags { display: flex; gap: 8px; flex-wrap: wrap; }

/* Detail table */
.detail-table { width: 100%; border-top: 2px solid var(--navy); }
.detail-table tr { border-bottom: 1px solid var(--border); }
.detail-table th {
  padding: 16px 20px; font-size: 14px; font-weight: 700;
  color: var(--navy); background: var(--bg-warm);
  text-align: left; vertical-align: top;
  width: 140px; white-space: nowrap;
}
.detail-table td {
  padding: 16px 20px; font-size: 14px;
  line-height: 1.8; color: var(--text-body);
}
.detail-table td .salary-section { margin-bottom: 16px; }
.detail-table td .salary-title { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.detail-table td .salary-item { padding-left: 1em; }
.detail-table td .sub-title { font-weight: 700; color: var(--navy); margin-top: 12px; margin-bottom: 4px; }

/* Sidebar */
.job-sidebar { position: sticky; top: calc(var(--header-h) + 20px); }
.sidebar-card {
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  padding: 24px; margin-bottom: 20px;
}
.sidebar-card h3 {
  font-size: 16px; font-weight: 700; text-align: center;
  margin-bottom: 16px; line-height: 1.5;
}
.sidebar-card .sidebar-buttons {
  display: flex; flex-direction: column; gap: 12px;
}
.sidebar-card h4 {
  font-size: 15px; font-weight: 700; margin-bottom: 12px;
}
.related-job {
  display: block; padding: 16px; border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 8px;
  transition: border-color 0.2s;
}
.related-job:hover { border-color: var(--navy); }
.related-job .rj-location {
  font-size: 12px; color: var(--text-muted);
  display: flex; align-items: center; gap: 4px; margin-bottom: 4px;
}
.related-job .rj-location svg { width: 12px; height: 12px; color: var(--gold); }
.related-job .rj-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.related-job .rj-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.related-job .rj-tags .tag { font-size: 11px; padding: 2px 8px; }

/* ============================================
   SEMINAR PAGE
   ============================================ */
.seminar-hero {
  padding-top: var(--header-h);
  min-height: 420px; position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.seminar-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.seminar-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.seminar-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,41,70,0.8), rgba(20,41,70,0.5));
}
.seminar-hero-content {
  position: relative; z-index: 1; color: #fff;
}
.seminar-hero-content .hero-badge {
  display: inline-block; padding: 6px 16px;
  background: rgba(19,109,237,0.8); color: #fff;
  font-size: 13px; font-weight: 600;
  border-radius: var(--radius-pill); margin-bottom: 16px;
}
.seminar-hero-content h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; color: #fff; line-height: 1.4;
}

.seminar-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px); align-items: center;
}
.seminar-section.reverse .seminar-img { order: -1; }
.seminar-text h3 {
  font-size: 20px; font-weight: 700; margin-bottom: 16px;
}
.seminar-text p { margin-bottom: 16px; line-height: 1.9; }
.seminar-img { border-radius: var(--radius-lg); overflow: hidden; }
.seminar-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

/* ============================================
   LINE CTA Section
   ============================================ */
.line-section {
  background: #f0faf4; padding: clamp(48px, 6vw, 72px) 0;
}
.line-inner {
  display: flex; align-items: center; gap: clamp(32px, 5vw, 56px);
}
.line-text { flex: 1; }
.line-text h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700; color: var(--navy); margin-bottom: 12px;
}
.line-text p { margin-bottom: 16px; }
.line-features li {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px; font-size: 14px;
}
.line-features li svg { color: var(--line-green); flex-shrink: 0; }
.line-action { flex-shrink: 0; text-align: center; }
.line-action .line-note { font-size: 12px; color: var(--text-muted); margin-top: 10px; }

/* ============================================
   ACCESS / MAP
   ============================================ */
.access-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.access-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.info-table tr { border-bottom: 1px solid var(--border-light); }
.info-table th {
  padding: 12px 16px 12px 0; font-size: 13px;
  font-weight: 600; color: var(--text-muted);
  text-align: left; vertical-align: top; white-space: nowrap; width: 80px;
}
.info-table td {
  padding: 12px 0; font-size: 14px; line-height: 1.6;
}
.info-table td a { color: var(--navy); font-weight: 600; }
.info-table td a:hover { color: var(--gold); }
.access-map { border-radius: var(--radius-lg); overflow: hidden; min-height: 350px; }
.access-map iframe { width: 100%; height: 100%; min-height: 350px; border: 0; }

/* ============================================
   NOTE / SNS Section
   ============================================ */
.note-banner {
  display: flex; align-items: center; gap: 24px;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  padding: 28px 32px;
}
.note-banner-logo {
  flex-shrink: 0; width: 100px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px; font-weight: 700; color: #2d2d2d;
}
.note-banner-text h3 {
  font-size: 16px; font-weight: 700; margin-bottom: 4px;
  display: flex; align-items: center; gap: 6px;
}
.note-banner-text h3 svg { width: 14px; height: 14px; color: var(--text-muted); }
.note-banner-text p { font-size: 13px; color: var(--text-muted); }

.sns-links { display: flex; gap: 12px; margin-top: 20px; }
.sns-link {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-light); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.sns-link:hover { background: var(--navy); color: #fff; }

/* ============================================
   RECRUIT BENEFITS
   ============================================ */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.benefit-card {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; background: rgba(255,255,255,0.08);
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.12);
}
.section--navy .benefit-card { color: rgba(255,255,255,0.9); }
.benefit-card svg { color: var(--gold); flex-shrink: 0; }
.benefit-card span { font-size: 14px; }

/* ============================================
   CONTACT CTA
   ============================================ */
.cta-section {
  padding: clamp(56px, 7vw, 80px) 0;
  background: var(--bg-warm); text-align: center;
}
.cta-section h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700; margin-bottom: 12px;
}
.cta-section p { font-size: 15px; color: var(--text-body); margin-bottom: 28px; }
.cta-buttons {
  display: flex; align-items: center;
  justify-content: center; gap: 20px; flex-wrap: wrap;
}
.cta-tel {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 32px); font-weight: 700;
  color: var(--navy);
}
.cta-tel svg { color: var(--gold); }
.cta-tel-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px; font-weight: 400;
  color: var(--text-muted); margin-top: 2px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,0.6);
  padding: clamp(48px, 6vw, 64px) 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px); padding-bottom: 40px;
}
.footer-brand {}
.site-footer .logo-main { color: rgba(255,255,255,0.5); }
.site-footer .logo-name { color: #fff; }
.footer-desc { font-size: 13px; margin-top: 16px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--gold); color: #fff; }
.footer-col h4 {
  font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 12px;
}
.footer-col a {
  display: block; font-size: 13px; padding: 4px 0;
  color: rgba(255,255,255,0.5); transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.25);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.25); font-size: 12px; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.5); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q, .faq-a {
  display: flex; gap: 12px; align-items: flex-start;
}
.faq-q { font-weight: 600; color: var(--navy); margin-bottom: 12px; cursor: pointer; }
.faq-a { color: var(--text-body); line-height: 1.8; font-size: 14px; }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  border-radius: 50%; background: var(--navy);
  color: #fff; display: flex; align-items: center;
  justify-content: center; font-size: 13px; font-weight: 700;
}
.faq-icon--a { background: var(--gold); }

/* ============================================
   FLOATING CTAs (recruit pages)
   ============================================ */
.floating-ctas {
  position: fixed; right: 0; bottom: 120px;
  z-index: 900; display: flex; flex-direction: column; gap: 0;
}
.floating-cta-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px; font-size: 13px; font-weight: 700;
  color: #fff; border-radius: 8px 0 0 8px;
  writing-mode: horizontal-tb;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  box-shadow: -2px 2px 8px rgba(0,0,0,0.15);
}
.floating-cta-btn:hover { transform: translateX(-4px); }
.floating-cta-btn--line { background: var(--line-green); }
.floating-cta-btn--seminar { background: var(--seminar-blue); }
.floating-cta-btn .fcta-icon { flex-shrink: 0; }
.floating-cta-btn .fcta-text {
  display: flex; flex-direction: column;
  font-size: 12px; line-height: 1.4;
}
.floating-cta-btn .fcta-text strong { font-size: 13px; }

/* Mobile bottom bar */
.mobile-bottom-bar {
  display: none; position: fixed; bottom: 0; left: 0;
  width: 100%; z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
  padding: 10px 16px;
  gap: 8px;
}
.mobile-bottom-bar .mbb-btn {
  flex: 1; display: flex; align-items: center;
  justify-content: center; gap: 6px;
  padding: 12px 8px; border-radius: var(--radius);
  font-size: 12px; font-weight: 700; color: #fff;
}
.mbb-btn--tel { background: var(--navy); }
.mbb-btn--line { background: var(--line-green); }
.mbb-btn--entry { background: var(--gold); }

/* Back to top */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px);
  transition: all 0.3s var(--ease); z-index: 898;
  box-shadow: var(--shadow-md);
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-station-inner { flex-direction: column; text-align: center; }
  .hero-station-text { max-width: 100%; }
  .hero-station-text .hero-actions { justify-content: center; }
  .hero-station-img { flex: none; width: 100%; max-width: 480px; }
  .hero-recruit-inner { flex-direction: column; text-align: center; }
  .hero-recruit-text { max-width: 100%; }
  .hero-recruit-img { flex: none; width: 100%; max-width: 500px; }
  .about-grid { grid-template-columns: 1fr; }
  .staff-feature { grid-template-columns: 1fr; justify-items: center; }
  .staff-photo { max-width: 260px; }
  .access-grid { grid-template-columns: 1fr; }
  .job-detail-layout { grid-template-columns: 1fr; }
  .job-sidebar { position: static; }
  .seminar-section { grid-template-columns: 1fr; }
  .seminar-section.reverse .seminar-img { order: 0; }
  .line-inner { flex-direction: column; text-align: center; }
  .line-features { display: inline-flex; flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: block; }
  .header-inner { padding: 8px 12px 8px 16px; }

  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .recruit-actions { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .floating-ctas { display: none; }
  .mobile-bottom-bar { display: flex; }
  .back-to-top { bottom: 72px; }
  .cta-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .note-banner { flex-direction: column; text-align: center; }
}
