/* ========================================
   K1 SAFETY — Global Styles
   ======================================== */

:root {
  --navy:      #0d1b3e;
  --navy-mid:  #152347;
  --navy-dark: #091429;
  --accent:    #e8a020;
  --accent-lt: #f5b840;
  --white:     #ffffff;
  --gray-50:   #f8f9fb;
  --gray-100:  #eef0f5;
  --gray-300:  #c4cad8;
  --gray-500:  #7a85a0;
  --gray-700:  #3d4560;
  --text:      #1a2040;
  --text-sub:  #4a5270;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(13,27,62,.08);
  --shadow-md: 0 8px 32px rgba(13,27,62,.14);
  --shadow-lg: 0 20px 60px rgba(13,27,62,.20);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

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

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .05em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--navy-dark);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-lt);
  border-color: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-lg { padding: 18px 48px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ---- Section commons ---- */
.section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--accent);
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}
.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px;
  height: 1px;
  background: var(--accent);
}
.section-label::before { right: 100%; margin-right: -16px; }
.section-label::after  { left: 100%;  margin-left:  -16px; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--navy);
}
.section-title--light { color: var(--white); }
.section-desc { color: var(--text-sub); margin-top: 16px; font-size: 1rem; }
.section-desc--light { color: rgba(255,255,255,.75); }
.section-header--light .section-label { color: var(--accent-lt); }
.section-header--light .section-label::before,
.section-header--light .section-label::after { background: var(--accent-lt); }

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.header.scrolled {
  background: rgba(9,20,41,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
  padding: 0;
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding var(--transition);
}
.header.scrolled .header-inner { padding: 14px 24px; }

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: -.02em;
}
.logo-mark span { color: var(--navy-dark); }
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-ja { font-size: .75rem; font-weight: 700; color: var(--white); letter-spacing: .05em; }
.logo-en { font-family: 'Oswald', sans-serif; font-size: .65rem; color: rgba(255,255,255,.55); letter-spacing: .1em; }

.nav ul { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  letter-spacing: .05em;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.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);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #091429 0%, #0d1b3e 40%, #1a2f5e 70%, #091429 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,160,32,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(21,35,71,.6) 0%, transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 840px;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(232,160,32,.15);
  border: 1px solid rgba(232,160,32,.4);
  color: var(--accent-lt);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-title { margin-bottom: 24px; }
.hero-title-en {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: .1em;
  line-height: 1;
  margin-bottom: 12px;
}
.hero-title-ja {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
}
.hero-sub {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,.65);
  line-height: 1.9;
  margin-bottom: 40px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 80px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 28px 48px;
}
.hero-stat { text-align: center; padding: 0 40px; }
.hero-stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.15); }
.stat-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-lt);
  line-height: 1;
}
.stat-unit { font-size: 1.2rem; margin-left: 2px; }
.stat-label {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .1em;
  margin-top: 6px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-family: 'Oswald', sans-serif;
  font-size: .65rem;
  letter-spacing: .2em;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   TICKER
   ======================================== */
.ticker {
  display: flex;
  align-items: center;
  background: var(--accent);
  overflow: hidden;
  height: 44px;
}
.ticker-label {
  flex-shrink: 0;
  background: var(--navy-dark);
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
}
.ticker-track { flex: 1; overflow: hidden; }
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: .05em;
}
.ticker-dot { color: var(--navy-dark); opacity: .4; font-size: .5rem; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   ABOUT
   ======================================== */
.about { background: var(--gray-50); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3060 100%);
}
.about-img-accent {
  position: absolute;
  bottom: -2px; right: -2px;
  width: 60%; height: 60%;
  background: var(--accent);
  opacity: .15;
  border-radius: var(--radius-lg) 0 0 0;
}
.about-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-icon-large {
  width: 120px; height: 120px;
  color: var(--accent);
  opacity: .8;
}
.about-icon-large svg { width: 100%; height: 100%; }
.about-badge-wrap {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.about-badge-item {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--accent);
}
.about-badge-item strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
}
.about-badge-item span { font-size: .75rem; color: var(--gray-500); }

.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.8;
}
.about-body {
  color: var(--text-sub);
  margin-bottom: 16px;
  font-size: .95rem;
}
.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.value-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent);
}
.value-text { display: flex; flex-direction: column; gap: 2px; }
.value-text strong { font-size: .9rem; color: var(--navy); }
.value-text span { font-size: .82rem; color: var(--text-sub); }

/* ========================================
   SERVICES
   ======================================== */
.services {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.services-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 700;
  color: rgba(255,255,255,.025);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: .1em;
}
.services-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.service-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-card--featured {
  background: rgba(232,160,32,.1);
  border-color: rgba(232,160,32,.25);
}
.service-card--featured::before { opacity: 1; }
.service-card-num {
  font-family: 'Oswald', sans-serif;
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--accent);
  margin-bottom: 16px;
}
.service-icon {
  width: 48px; height: 48px;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.8; }
.service-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: .7rem;
}

/* ========================================
   STRENGTHS
   ======================================== */
.strengths { background: var(--white); }
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.strength-item {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.strength-item:hover {
  border-color: rgba(232,160,32,.3);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.strength-num {
  position: absolute;
  top: 24px; right: 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gray-100);
  line-height: 1;
  transition: color var(--transition);
}
.strength-item:hover .strength-num { color: rgba(232,160,32,.15); }
.strength-icon {
  width: 40px; height: 40px;
  color: var(--accent);
  margin-bottom: 16px;
}
.strength-icon svg { width: 100%; height: 100%; }
.strength-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.strength-item p { font-size: .9rem; color: var(--text-sub); line-height: 1.8; }

/* ========================================
   RECRUIT
   ======================================== */
.recruit {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.recruit-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(232,160,32,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(21,35,71,.8) 0%, transparent 50%);
}
.recruit-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.recruit-header {
  background: var(--navy);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.recruit-title { display: flex; align-items: center; gap: 16px; }
.recruit-tag {
  background: #e8383a;
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 4px;
}
.recruit-title h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.recruit-highlight {
  background: rgba(232,160,32,.2);
  border: 1px solid rgba(232,160,32,.4);
  color: var(--accent-lt);
  font-size: .85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  letter-spacing: .05em;
}
.recruit-details { padding: 0 40px; }
.recruit-row {
  display: flex;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: flex-start;
}
.recruit-row:last-child { border-bottom: none; }
.recruit-label {
  flex-shrink: 0;
  width: 140px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: .05em;
  padding-top: 2px;
}
.recruit-value {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.8;
}
.recruit-value--highlight {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.recruit-value--highlight small { font-size: .85rem; font-weight: 400; color: var(--text-sub); }
.recruit-cta {
  padding: 32px 40px;
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-100);
}
.recruit-note { font-size: .82rem; color: var(--gray-500); }

/* ========================================
   COMPANY
   ======================================== */
.company { background: var(--gray-50); }
.company-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.company-table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.company-table { width: 100%; border-collapse: collapse; }
.company-table tr { border-bottom: 1px solid var(--gray-100); }
.company-table tr:last-child { border-bottom: none; }
.company-table th {
  width: 140px;
  padding: 16px 24px;
  text-align: left;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gray-500);
  background: var(--gray-50);
  letter-spacing: .05em;
  vertical-align: top;
}
.company-table td {
  padding: 16px 24px;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.7;
}
.company-table a { color: var(--accent); text-decoration: underline; }

.company-map {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--gray-500);
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  width: 100%; height: 100%;
  justify-content: center;
}
.map-pin {
  width: 48px; height: 48px;
  color: var(--accent);
}
.map-pin svg { width: 100%; height: 100%; }
.map-placeholder p { font-size: .9rem; font-weight: 500; color: var(--text); }
.map-link {
  font-size: .85rem;
  color: var(--accent);
  text-decoration: underline;
  font-weight: 500;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.contact-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 700;
  color: rgba(255,255,255,.025);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: .1em;
}
.contact-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
  align-items: start;
}
.contact-tel-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-tel-icon {
  width: 48px; height: 48px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
}
.contact-tel-icon svg { width: 24px; height: 24px; }
.contact-tel-body { display: flex; flex-direction: column; gap: 6px; }
.contact-tel-label { font-size: .82rem; color: rgba(255,255,255,.55); letter-spacing: .05em; }
.contact-tel-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-lt);
  letter-spacing: .05em;
  transition: color var(--transition);
}
.contact-tel-num:hover { color: var(--white); }
.contact-tel-hours { font-size: .8rem; color: rgba(255,255,255,.45); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: flex; gap: 20px; }
.form-row--half .form-group { flex: 1; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.required {
  background: #e8383a;
  color: var(--white);
  font-size: .65rem;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,160,32,.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%237a85a0' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 40px; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 60px 24px 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-wrap: wrap;
}
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.35); margin-top: 12px; }
.logo--footer .logo-ja { color: rgba(255,255,255,.8); }

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  justify-content: flex-end;
}
.footer-nav a {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-address { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-address a { color: rgba(255,255,255,.5); }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.25); letter-spacing: .05em; }

/* ========================================
   PAGE TOP
   ======================================== */
.pagetop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  background: var(--accent);
  color: var(--navy-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232,160,32,.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 900;
  transform: translateY(16px);
}
.pagetop.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.pagetop:hover { background: var(--accent-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,.5); }
.pagetop svg { width: 20px; height: 20px; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 480px; margin: 0 auto; }
  .company-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card--featured { grid-column: 1 / -1; }
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }

  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(9,20,41,.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .nav.open { display: flex; }
  .nav ul { flex-direction: column; gap: 24px; text-align: center; }
  .nav a { font-size: 1.2rem; }
  .hamburger { display: flex; position: relative; z-index: 1000; }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }
  .hero-stat { padding: 0; }
  .hero-stat-divider { width: 48px; height: 1px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: 1; }
  .strengths-grid { grid-template-columns: 1fr; }

  .recruit-header { flex-direction: column; align-items: flex-start; }
  .recruit-row { flex-direction: column; gap: 8px; }
  .recruit-label { width: auto; }
  .recruit-details { padding: 0 24px; }
  .recruit-cta { padding: 24px; }
  .recruit-header { padding: 24px; }

  .contact-form { padding: 32px 24px; }
  .form-row--half { flex-direction: column; }

  .footer-top { flex-direction: column; }
  .footer-nav ul { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .hero-cta { flex-direction: column; align-items: center; }
  .btn-lg { padding: 16px 32px; }
}

@media (max-width: 480px) {
  .hero-stats { padding: 20px; }
  .about-badge-wrap { flex-direction: column; }
  .company-table th { width: 100px; padding: 12px 16px; }
  .company-table td { padding: 12px 16px; }
  .pagetop { bottom: 20px; right: 20px; }
}

/* ========================================
   ANIMATIONS (Intersection Observer)
   ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ========================================
   MULTI-PAGE — 追加スタイル
   ======================================== */

/* ---- Header: btn + active nav ---- */
.btn-header {
  padding: 10px 22px;
  font-size: .82rem;
  flex-shrink: 0;
}
.nav a.active {
  color: var(--accent-lt);
}
.nav a.active::after {
  width: 100%;
  background: var(--accent-lt);
}

/* ---- Page Hero (下層ページ共通) ---- */
.page-hero {
  position: relative;
  padding: 160px 24px 80px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 320px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #091429 0%, #0d1b3e 50%, #152347 100%);
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(232,160,32,.1) 0%, transparent 55%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 60px 60px,
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 60px 60px;
}
.page-hero-content {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: .8rem;
}
.breadcrumb a {
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--accent-lt); }
.bc-sep { color: rgba(255,255,255,.3); }
.breadcrumb span:last-child { color: rgba(255,255,255,.75); }
.page-hero-en {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: rgba(255,255,255,.07);
  letter-spacing: .15em;
  line-height: 1;
  position: absolute;
  right: 0; bottom: -10px;
  pointer-events: none;
  white-space: nowrap;
}
.page-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.01em;
  line-height: 1.2;
}

/* ---- Top page: About Teaser ---- */
.about-teaser { background: var(--gray-50); }
.teaser-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.teaser-content .section-label { text-align: left; padding-left: 0; }
.teaser-content .section-label::before { display: none; }
.teaser-content .section-title { text-align: left; }
.teaser-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.teaser-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.teaser-value div { display: flex; flex-direction: column; gap: 2px; }
.teaser-value strong { font-size: .9rem; color: var(--navy); }
.teaser-value span { font-size: .8rem; color: var(--text-sub); }
.tv-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  color: var(--accent);
}

.teaser-visual { display: flex; flex-direction: column; gap: 16px; }
.tv-card-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tv-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3060 100%);
}
.tv-card-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: .7;
}
.tv-card-icon svg { width: 120px; height: 120px; }
.tv-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.tv-badge {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tv-badge strong {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  display: block;
}
.tv-badge span { font-size: .7rem; color: var(--gray-500); }

/* ---- Top page: Services teaser ---- */
.services-teaser {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* ---- Top page: Recruit Banner ---- */
.recruit-banner {
  position: relative;
  padding: 80px 24px;
  overflow: hidden;
}
.rb-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, #c87010 100%);
}
.rb-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.rb-tag {
  display: inline-block;
  background: rgba(0,0,0,.15);
  color: rgba(0,0,0,.7);
  font-family: 'Oswald', sans-serif;
  font-size: .75rem;
  letter-spacing: .2em;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.rb-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.3;
  margin-bottom: 8px;
}
.rb-text p { font-size: .95rem; color: rgba(9,20,41,.7); }
.rb-cta .btn-primary {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--accent-lt);
}
.rb-cta .btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 8px 24px rgba(9,20,41,.3);
}

/* ---- Top page: Contact CTA ---- */
.contact-cta { background: var(--gray-50); }
.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 16px;
}
.contact-cta .section-title--light ~ .cta-inner h2 { color: var(--white); }
.cta-inner p { color: var(--text-sub); margin-bottom: 32px; line-height: 1.8; }
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-300);
}
.btn-outline-dark:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.cta-note { font-size: .8rem; color: var(--gray-500); margin-top: 16px; }

/* ---- About: Message ---- */
.message-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.message-photo-inner {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3060 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
}
.message-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  text-align: center;
}
.mn-role { font-size: .8rem; color: var(--gray-500); }
.mn-name { font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.message-lead {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.7;
  border-left: 4px solid var(--accent);
  padding-left: 16px;
}
.message-body p, .message-body + p {
  color: var(--text-sub);
  margin-bottom: 16px;
  line-height: 1.9;
}
.message-sig {
  margin-top: 28px;
  font-size: .9rem;
  color: var(--text-sub);
  line-height: 1.8;
}
.message-sig strong { color: var(--navy); font-size: 1rem; }

/* ---- About: Philosophy ---- */
.philosophy {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.philosophy-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 700;
  color: rgba(255,255,255,.025);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: .1em;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.philosophy-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
}
.philosophy-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
}
.phi-label {
  font-family: 'Oswald', sans-serif;
  font-size: .7rem;
  letter-spacing: .25em;
  color: var(--accent);
  margin-bottom: 12px;
}
.philosophy-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.philosophy-card p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.8; }
.phi-list { display: flex; flex-direction: column; gap: 12px; }
.phi-list li {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  padding-left: 0;
  display: flex;
  gap: 10px;
}
.phi-list li span {
  flex-shrink: 0;
  background: rgba(232,160,32,.2);
  color: var(--accent-lt);
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  line-height: 1.6;
  height: fit-content;
}

/* ---- About: Timeline ---- */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 84px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(232,160,32,.1));
}
.tl-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-year {
  flex-shrink: 0;
  width: 68px;
  text-align: right;
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  padding-top: 2px;
  line-height: 1.2;
}
.tl-year span { font-size: .7rem; }
.tl-content {
  flex: 1;
  padding-left: 28px;
  position: relative;
}
.tl-content::before {
  content: '';
  position: absolute;
  left: -7px; top: 7px;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}
.tl-month {
  display: block;
  font-size: .8rem;
  color: var(--gray-500);
  letter-spacing: .05em;
  margin-bottom: 6px;
  font-weight: 600;
}
.tl-content p {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.8;
}

/* ---- Service: Detail Grid ---- */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
}
.sd-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.sd-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(232,160,32,.3);
}
.sd-card--main {
  border-top: 4px solid var(--accent);
}
.sd-num {
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--accent);
  margin-bottom: 16px;
}
.sd-icon {
  width: 56px; height: 56px;
  color: var(--navy);
  margin-bottom: 20px;
}
.sd-icon svg { width: 100%; height: 100%; }
.sd-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.sd-lead {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}
.sd-card p { font-size: .9rem; color: var(--text-sub); line-height: 1.8; }
.sd-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sd-list li {
  font-size: .85rem;
  color: var(--text-sub);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.sd-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: .7rem;
}

/* ---- Service: Flow ---- */
.flow-section { background: var(--gray-50); }
.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.flow-step {
  flex: 1;
  min-width: 160px;
  max-width: 240px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.flow-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.fs-num {
  font-family: 'Oswald', sans-serif;
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--accent);
  margin-bottom: 12px;
}
.fs-icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  color: var(--navy);
}
.fs-icon svg { width: 100%; height: 100%; }
.flow-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.flow-step p { font-size: .82rem; color: var(--text-sub); line-height: 1.7; }
.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  padding: 0 8px;
  margin-top: 50px;
  flex-shrink: 0;
}

/* ---- Service: Area ---- */
.area-section { position: relative; overflow: hidden; }
.area-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.area-map-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.area-map-inner { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.area-pin-group { position: relative; display: flex; align-items: center; justify-content: center; }
.area-center-badge {
  position: relative;
  z-index: 3;
  background: var(--accent);
  color: var(--navy-dark);
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding: 8px 12px;
  border-radius: var(--radius);
}
.area-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,160,32,.3);
  animation: pulseCircle 2.5s ease-in-out infinite;
}
.area-circle--1 { width: 140px; height: 140px; animation-delay: 0s; }
.area-circle--2 { width: 240px; height: 240px; animation-delay: .5s; opacity: .5; }
@keyframes pulseCircle {
  0%, 100% { transform: scale(1); opacity: .4; }
  50% { transform: scale(1.04); opacity: .7; }
}
.area-map-label {
  position: absolute;
  bottom: 20px;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .1em;
}
.area-list-wrap h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.area-tag {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .82rem;
}
.area-tag--main {
  background: rgba(232,160,32,.15);
  border-color: rgba(232,160,32,.35);
  color: var(--accent-lt);
  font-weight: 700;
}
.area-tag.other {
  background: transparent;
  border-style: dashed;
  color: rgba(255,255,255,.4);
  font-size: .78rem;
}
.area-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 12px 16px;
}

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--gray-100); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--accent);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 0 4px 20px;
  font-size: .9rem;
  color: var(--text-sub);
  line-height: 1.9;
}

/* ---- Recruit: Catch ---- */
.recruit-catch { background: var(--navy); text-align: center; }
.rc-inner { max-width: 700px; margin: 0 auto; }
.rc-tags {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.rc-tag {
  background: rgba(232,160,32,.15);
  border: 1px solid rgba(232,160,32,.35);
  color: var(--accent-lt);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: .05em;
}
.rc-inner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
}
.rc-inner p { color: rgba(255,255,255,.6); line-height: 1.8; }

/* ---- Recruit: Job Card ---- */
.job-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.job-card-header {
  background: var(--navy);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.job-title-wrap { display: flex; align-items: center; gap: 16px; }
.job-urgent {
  background: #e8383a;
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: .05em;
}
.job-title-wrap h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.job-badge {
  background: rgba(232,160,32,.2);
  border: 1px solid rgba(232,160,32,.4);
  color: var(--accent-lt);
  font-size: .82rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
}
.job-details { padding: 0 40px; }
.jd-row {
  display: flex;
  gap: 40px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: flex-start;
}
.jd-row:last-child { border-bottom: none; }
.jd-label {
  flex-shrink: 0;
  width: 140px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: .05em;
  padding-top: 2px;
}
.jd-value p { font-size: .95rem; color: var(--text); line-height: 1.7; }
.jd-highlight {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
}
.jd-sub { font-size: .85rem !important; color: var(--text-sub) !important; margin-top: 4px; }
.jd-list { margin-top: 8px; display: flex; flex-direction: column; gap: 4px; }
.jd-list li {
  font-size: .88rem;
  color: var(--text-sub);
  padding-left: 14px;
  position: relative;
}
.jd-list li::before { content: '・'; position: absolute; left: 0; color: var(--accent); }
.jd-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.jd-benefits span {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: .82rem;
  color: var(--text);
}
.job-cta {
  padding: 32px 40px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Recruit: Daily Flow ---- */
.daily-flow {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.df-item {
  display: grid;
  grid-template-columns: 64px 3px 1fr;
  gap: 0 20px;
  padding-bottom: 32px;
}
.df-item:last-child { padding-bottom: 0; }
.df-time {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  text-align: right;
  padding-top: 3px;
  white-space: nowrap;
}
.df-bar {
  width: 3px;
  background: linear-gradient(to bottom, var(--accent), rgba(232,160,32,.15));
  border-radius: 2px;
  position: relative;
}
.df-bar::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}
.df-content { padding-left: 4px; }
.df-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.df-content p { font-size: .88rem; color: var(--text-sub); line-height: 1.7; }

/* ---- Company: Profile ---- */
.company-profile-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  max-width: 800px;
  margin: 0 auto;
}

/* ---- Company: Access ---- */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.access-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.access-addr, .access-tel {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.access-addr-text { font-size: .95rem; color: var(--text); line-height: 1.7; }
.access-tel-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
}
.access-hours { font-size: .78rem; color: var(--gray-500); display: block; }
.access-route h4 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.access-route li { font-size: .88rem; color: var(--text-sub); line-height: 1.8; }
.access-route strong { color: var(--navy); }
.access-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-embed-placeholder {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.map-visual {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #d4e4f0 0%, #c8d8e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-marker {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.map-label-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
}
.map-label-card strong { font-size: .85rem; color: var(--navy); }
.map-label-card span { font-size: .75rem; color: var(--gray-500); }
.map-open-link {
  display: block;
  padding: 12px 16px;
  background: var(--white);
  font-size: .82rem;
  color: var(--accent);
  text-align: center;
  font-weight: 700;
  text-decoration: underline;
  transition: background var(--transition);
}
.map-open-link:hover { background: var(--gray-50); }

/* ---- Contact: Cards ---- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 0;
}
.contact-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy-dark);
}
.cc-body { display: flex; flex-direction: column; gap: 4px; }
.cc-label { font-size: .75rem; color: rgba(255,255,255,.45); letter-spacing: .05em; }
.cc-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-lt);
  transition: color var(--transition);
}
.cc-value:hover { color: var(--white); }
.cc-value--plain { font-family: 'Noto Sans JP', sans-serif; font-size: 1rem; color: var(--white); }
.cc-value--sm { font-size: .9rem !important; }
.cc-note { font-size: .75rem; color: rgba(255,255,255,.4); }

/* ---- Contact: Form Card ---- */
.contact-form-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-lg);
}
.form-privacy {
  margin: 8px 0 20px;
}
.privacy-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: .88rem;
  color: var(--text-sub);
}
.privacy-check input[type=checkbox] {
  width: 18px; height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

/* ---- Contact: Privacy Box ---- */
.privacy-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
}
.privacy-box h3 {
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}
.privacy-box p { font-size: .82rem; color: rgba(255,255,255,.35); line-height: 1.8; }

/* ========================================
   RESPONSIVE — 追加
   ======================================== */
@media (max-width: 1024px) {
  .teaser-grid { grid-template-columns: 1fr; gap: 48px; }
  .tv-card-wrap { max-width: 480px; }
  .message-grid { grid-template-columns: 200px 1fr; gap: 40px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-detail-grid { grid-template-columns: 1fr 1fr; }
  .sd-card--main { grid-column: 1 / -1; }
  .contact-cards { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-hero { padding: 130px 24px 60px; min-height: 260px; }
  .teaser-visual { display: none; }
  .message-grid { grid-template-columns: 1fr; }
  .message-photo { display: flex; flex-direction: column; align-items: center; max-width: 200px; margin: 0 auto; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .sd-card--main { grid-column: 1; }
  .flow-steps { gap: 8px; }
  .flow-arrow { margin-top: 20px; font-size: 1.2rem; }
  .flow-step { min-width: 130px; padding: 24px 16px; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 60px; }
  .tl-item { gap: 20px; }
  .tl-year { width: 44px; font-size: .95rem; }
  .job-card-header { flex-direction: column; align-items: flex-start; padding: 24px; }
  .job-details { padding: 0 24px; }
  .jd-row { flex-direction: column; gap: 8px; }
  .jd-label { width: auto; }
  .job-cta { flex-direction: column; padding: 24px; }
  .contact-form-card { padding: 32px 24px; }
  .rb-inner { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .tv-badges { grid-template-columns: repeat(3, 1fr); }
}
