/*
Theme Name: 小山工業 Koyama Kogyo
Theme URI: https://koyama-kogyo.co.jp
Author: syshan株式会社
Author URI: https://syshan.co.jp
Description: 株式会社小山工業 企業価値向上・採用強化サイトリニューアルテーマ
Version: 1.0.0
License: Private
Text Domain: koyama
*/

/* ===========================
   CSS Variables
=========================== */
:root {
  --navy:    #1a2b4a;
  --navy-dk: #0f1c33;
  --green:   #2a7a4b;
  --green-lt:#3aab69;
  --accent:  #e8f5ee;
  --white:   #ffffff;
  --gray-lt: #f4f6f8;
  --gray:    #8a9bb0;
  --text:    #1e2d40;
  --text-lt: #5a6b80;
  --border:  #d8e2ed;
  --shadow:  0 4px 24px rgba(26,43,74,0.10);
  --shadow-lg: 0 12px 48px rgba(26,43,74,0.18);
  --radius:  8px;
  --radius-lg: 16px;
  --font-jp: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --font-en: 'Barlow Condensed', 'Barlow', sans-serif;
  --trans: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===========================
   Reset & Base
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-jp);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===========================
   Typography
=========================== */
.en { font-family: var(--font-en); }
h1, h2, h3, h4 { line-height: 1.3; }

.section-label {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-lead {
  color: var(--text-lt);
  font-size: 0.95rem;
  max-width: 600px;
}

/* ===========================
   Layout Utilities
=========================== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide { max-width: 1400px; }
.section { padding: 80px 0; }
.section--gray { background: var(--gray-lt); }
.section--navy { background: var(--navy); color: var(--white); }
.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }

/* Grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ===========================
   Buttons
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: var(--trans);
  cursor: pointer;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn--primary:hover {
  background: var(--green-lt);
  border-color: var(--green-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,122,75,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn--navy:hover {
  background: var(--navy-dk);
  transform: translateY(-2px);
}
.btn--line {
  background: #06C755;
  color: var(--white);
  border: none;
  padding: 16px 36px;
  font-size: 1rem;
}
.btn--line:hover { background: #05a848; transform: translateY(-2px); }
.btn--line svg { width: 22px; height: 22px; }
.btn__icon {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  fill: currentColor;
}

/* ===========================
   Cards
=========================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.card__body { padding: 24px; }
.card__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.card__text { font-size: 0.875rem; color: var(--text-lt); }
.card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  width: 100%;
}

/* ===========================
   Header / Navigation
=========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--trans);
  padding: 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(26,43,74,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo__mark {
  width: 36px;
  height: 36px;
  background: transparent;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.site-logo__text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.site-logo__text small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.05em;
}
.site-header.hero-header .site-logo__text,
.site-header.hero-header .site-logo__mark { color: var(--white); }
.site-header.hero-header .site-logo__text small { color: rgba(255,255,255,0.7); }
.site-header.hero-header .site-logo__mark { background: rgba(255,255,255,0.2); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 4px;
  transition: var(--trans);
  letter-spacing: 0.03em;
}
.nav-menu a:hover { background: var(--accent); color: var(--green); }
.site-header.hero-header .nav-menu a { color: rgba(255,255,255,0.9); }
.site-header.hero-header .nav-menu a:hover { background: rgba(255,255,255,0.15); color: var(--white); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
}
.nav-cta .btn { padding: 10px 20px; font-size: 0.82rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--trans);
}
.site-header.hero-header .hamburger span { background: var(--white); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity var(--trans);
}
.mobile-nav.open { display: flex; opacity: 1; }
.mobile-nav a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 32px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ===========================
   Hero Section
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15,28,51,0.85) 0%,
    rgba(15,28,51,0.55) 50%,
    rgba(15,28,51,0.3) 100%
  );
  z-index: 1;
}
.hero__video,
.hero__img-placeholder {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero__img-placeholder {
  background: linear-gradient(135deg, #1a3a6a 0%, #0f2040 40%, #1a4a2a 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 32px 80px;
  max-width: 800px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}
.hero__eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--green-lt);
}
.hero__eyebrow-text {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-lt);
  font-weight: 600;
}
.hero__sub {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  font-weight: 500;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero__title em {
  font-style: normal;
  color: var(--green-lt);
}
.hero__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

/* ===========================
   Strengths (数字で語る強み)
=========================== */
.strengths {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.strengths::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.strengths__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.strength-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--trans);
}
.strength-item:last-child { border-right: none; }
.strength-item:hover { background: rgba(255,255,255,0.04); }
.strength-item__num {
  font-family: var(--font-en);
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.strength-item__num span {
  font-size: 0.5em;
  color: var(--green-lt);
  font-weight: 600;
}
.strength-item__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.strength-item__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: rgba(42,122,75,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-lt);
}
.strength-item__icon svg { width: 24px; height: 24px; }

/* ===========================
   Message (代表メッセージ)
=========================== */
.message {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}
.message__visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3a6a, #0f2040);
}
.message__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.message__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(15,28,51,0.3));
}
.message__content {
  background: var(--navy);
  color: var(--white);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.message__quote {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 2;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  position: relative;
}
.message__quote::before {
  content: '"';
  font-family: var(--font-en);
  font-size: 5rem;
  color: var(--green);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -20px;
  line-height: 1;
}
.message__sig {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.message__sig-title { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.message__sig-name { font-size: 1.2rem; font-weight: 700; color: var(--white); }

/* ===========================
   Services / Business
=========================== */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  border: 1px solid var(--border);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.service-card.active { border-color: var(--green); border-width: 2px; }
.service-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-card__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.service-card__body { padding: 28px; }
.service-card__dept {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.service-card__title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card__text { font-size: 0.875rem; color: var(--text-lt); line-height: 1.7; margin-bottom: 16px; }
.service-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-card__tag {
  background: var(--accent);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ===========================
   Departments (部門紹介)
=========================== */
.dept-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 48px;
}
.dept-tab {
  padding: 16px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--trans);
  cursor: pointer;
}
.dept-tab.active, .dept-tab:hover { color: var(--navy); border-bottom-color: var(--green); }
.dept-panel { display: none; }
.dept-panel.active { display: block; }
.dept-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.dept-jobs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.dept-job-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.dept-job-card__icon {
  width: 100%;
  max-width: 80px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dept-job-card__icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.dept-job-card__title { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.dept-job-card__text { font-size: 0.75rem; color: var(--text-lt); }
.flow { display: flex; flex-direction: column; gap: 0; }
.flow-item { display: flex; align-items: flex-start; gap: 16px; }
.flow-item__time {
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}
.flow-item__label { font-size: 0.9rem; font-weight: 500; color: var(--navy); }
.flow-connector {
  width: 2px;
  height: 20px;
  background: var(--border);
  margin-left: 40px;
}

/* Gallery */
.photo-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.photo-gallery__item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--trans);
}
.photo-gallery__item:hover { transform: scale(1.03); }

/* ===========================
   Recruit (採用情報)
=========================== */
.recruit { background: var(--gray-lt); }
.recruit-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.recruit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
}
.recruit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.recruit-card__img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.recruit-card__body { padding: 24px; }
.recruit-card__title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.recruit-card__salary {
  font-size: 0.8rem;
  color: var(--text-lt);
  margin-bottom: 4px;
}
.recruit-card__salary strong { color: var(--green); font-size: 0.95rem; }
.recruit-card__btn { margin-top: 16px; width: 100%; justify-content: center; text-align: center; }

/* Steps */
.steps { display: flex; align-items: flex-start; gap: 0; margin-top: 40px; }
.step { flex: 1; text-align: center; position: relative; }
.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 28px;
  right: -12px;
  color: var(--green);
  font-size: 1.2rem;
  z-index: 1;
}
.step__num {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 12px;
}
.step__icon { font-size: 1.5rem; margin-bottom: 8px; }
.step__label { font-size: 0.9rem; font-weight: 600; color: var(--navy); }

/* LINE CTA */
.line-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a2a 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.line-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18h-5v-2.5L10 20l5 4.5V22h5zM24.5 15l-4.5 5 4.5 5V22h5v2.5L34 20l-4.5-4.5V18h-5v-2.5z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.line-cta__title,
.line-cta__text,
.line-cta__actions { position: relative; z-index: 1; }
.line-cta__title { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.line-cta__text { color: rgba(255,255,255,0.75); margin-bottom: 28px; font-size: 0.9rem; }
.line-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   News
=========================== */
.news-list { margin-top: 40px; }
.news-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
.news-item:hover { color: var(--green); }
.news-item:first-child { border-top: 1px solid var(--border); }
.news-item__date {
  font-family: var(--font-en);
  font-size: 0.8rem;
  color: var(--gray);
  white-space: nowrap;
  flex-shrink: 0;
}
.news-item__cat {
  background: var(--accent);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.news-item__title { font-size: 0.9rem; flex: 1; }
.news-more { display: flex; justify-content: flex-end; margin-top: 16px; }

/* ===========================
   About / Company
=========================== */
.about-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.about-table th, .about-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  text-align: left;
  vertical-align: top;
}
.about-table th {
  width: 200px;
  color: var(--navy);
  font-weight: 600;
  background: var(--gray-lt);
  white-space: nowrap;
}
.about-table td { color: var(--text); }
.about-table tr:last-child th,
.about-table tr:last-child td { border-bottom: none; }

/* Timeline (沿革) */
.timeline { position: relative; padding: 0 0 0 32px; margin-top: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--navy));
}
.timeline-item { position: relative; padding-bottom: 28px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--green);
}
.timeline-item__year {
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.timeline-item__text { font-size: 0.9rem; color: var(--text); }

/* ===========================
   Contact
=========================== */
.contact-form { max-width: 680px; margin: 0 auto; }
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-label .required {
  background: var(--green);
  color: var(--white);
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-jp);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--trans);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(42,122,75,0.08);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-submit { text-align: center; margin-top: 32px; }

/* ===========================
   Page Hero (inner pages)
=========================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--green), var(--green-lt));
}
.page-hero__eyebrow {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-lt);
  margin-bottom: 12px;
}
.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero__lead { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* Breadcrumb */
.breadcrumb {
  padding: 12px 0;
  background: var(--gray-lt);
  border-bottom: 1px solid var(--border);
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray);
}
.breadcrumb ol li a { color: var(--navy); }
.breadcrumb ol li + li::before { content: '/'; }

/* ===========================
   Footer
=========================== */
.site-footer {
  background: var(--navy-dk);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand__logo { margin-bottom: 16px; }
.footer-brand__desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.8; }
.footer-brand__tel {
  margin-top: 20px;
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand__tel small { font-size: 0.7rem; color: rgba(255,255,255,0.5); font-family: var(--font-jp); display: block; margin-bottom: 4px; }
.footer-brand__addr { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 8px; }
.footer-col__title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: var(--trans);
}
.footer-col ul a:hover { color: var(--green-lt); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ===========================
   Animations
=========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ===========================
   部門紹介 写真列（仕事内容上部）
=========================== */
.dept-photos-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}
.dept-photo-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #1a3a6a, #1a4a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: var(--trans);
}
.dept-photo-item:hover { transform: scale(1.03); }
.dept-photo-item img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================
   Works Gallery Grid（既存サイト方式：タイトル＋画像＋概要）
=========================== */
.works-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.works-gallery-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--trans);
}
.works-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.works-gallery-item a { display: block; color: inherit; text-decoration: none; }

/* 画像エリア：4:3横長統一 */
.works-gallery-item__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-lt);
}
.works-gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.works-gallery-item:hover .works-gallery-item__img { transform: scale(1.04); }
.works-gallery-item__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #e0e8f0, #d0e0d8);
}

/* テキストエリア */
.works-gallery-item__body {
  padding: 14px 16px 18px;
  border-top: 1px solid var(--border);
}
.works-gallery-item__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 6px;
}
.works-gallery-item__overview {
  font-size: 0.78rem;
  color: var(--text-lt);
  line-height: 1.6;
  white-space: pre-line;
}

@media (max-width: 1024px) {
  .works-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .works-gallery-grid { grid-template-columns: 1fr; }
}

/* ===========================
   Works (施工事例 カードUI)
=========================== */

/* フィルターボタン */
.works-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 0;
}
.works-filter__btn {
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  background: var(--white);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--trans);
  font-family: var(--font-jp);
}
.works-filter__btn:hover,
.works-filter__btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* グリッド */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* カード */
.works-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  border: 1px solid var(--border);
}
.works-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.works-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

/* 画像エリア：横長4:3基準で統一 */
.works-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;   /* 打ち合わせ確認：スマホ撮影標準比率 */
  overflow: hidden;
  background: var(--gray-lt);
  flex-shrink: 0;
}
.works-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.works-card:hover .works-card__img {
  transform: scale(1.04);
}
.works-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, #e8f0f8, #d8e8d8);
}
.works-card__cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

/* カード本文 */
.works-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.works-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 10px;
}
.works-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.75rem;
  color: var(--gray);
}
.works-card__excerpt {
  font-size: 0.82rem;
  color: var(--text-lt);
  line-height: 1.7;
  flex: 1;
}

/* ページネーション */
.works-pagination {
  margin-top: 48px;
  text-align: center;
}
.works-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: var(--trans);
}
.works-pagination .page-numbers.current,
.works-pagination .page-numbers:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* 施工事例詳細ギャラリー */
.works-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.works-gallery__item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-lt);
}
.works-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.works-gallery__item:hover img { transform: scale(1.05); }

/* WordPress サムネイルサイズ登録用（functions.phpで参照） */
/* works-thumb: 800x600 (4:3 横長) */

/* ===========================
   Recruit Engage カード
=========================== */
.recruit-engage-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  transition: var(--trans);
}
.recruit-engage-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
}
.recruit-engage-card__icon {
  font-size: 2.8rem;
  flex-shrink: 0;
  width: 64px;
  text-align: center;
}
.recruit-engage-card__body { flex: 1; }
.recruit-engage-card__dept {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}
.recruit-engage-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.recruit-engage-card__desc {
  font-size: 0.875rem;
  color: var(--text-lt);
  line-height: 1.75;
  margin-bottom: 12px;
}
.recruit-engage-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.recruit-engage-card__cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.recruit-engage-card__cta .btn {
  text-align: center;
  line-height: 1.4;
  min-width: 120px;
}

/* エンゲージバナー */
.engage-banner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 36px;
  font-weight: 600;
  color: var(--navy);
  transition: var(--trans);
  text-decoration: none;
}
.engage-banner:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.engage-banner__label {
  display: block;
  font-size: 0.7rem;
  color: var(--gray);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.engage-banner__arrow { color: var(--green); font-size: 1.2rem; }

/* ===========================
   Contact Form 7 スタイル上書き
=========================== */
.cf7-wrap .wpcf7-form p { margin-bottom: 20px; }
.cf7-wrap .wpcf7-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.cf7-wrap .wpcf7-form input[type="text"],
.cf7-wrap .wpcf7-form input[type="email"],
.cf7-wrap .wpcf7-form input[type="tel"],
.cf7-wrap .wpcf7-form select,
.cf7-wrap .wpcf7-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-jp);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--trans);
  outline: none;
  appearance: none;
}
.cf7-wrap .wpcf7-form input:focus,
.cf7-wrap .wpcf7-form select:focus,
.cf7-wrap .wpcf7-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(42,122,75,0.08);
}
.cf7-wrap .wpcf7-form textarea { resize: vertical; min-height: 140px; }
.cf7-wrap .wpcf7-form input[type="submit"] {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 14px 48px;
  border-radius: var(--radius);
  font-family: var(--font-jp);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  letter-spacing: 0.05em;
}
.cf7-wrap .wpcf7-form input[type="submit"]:hover {
  background: var(--green-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,122,75,0.3);
}
.cf7-wrap .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: #e53e3e;
  margin-top: 4px;
  display: block;
}
.cf7-wrap .wpcf7-response-output {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  margin-top: 20px;
  border: none !important;
}
.cf7-wrap .wpcf7-mail-sent-ok {
  background: var(--accent);
  color: var(--green);
  border-left: 4px solid var(--green) !important;
}
.cf7-wrap .wpcf7-validation-errors,
.cf7-wrap .wpcf7-mail-sent-ng {
  background: #fff5f5;
  color: #e53e3e;
  border-left: 4px solid #e53e3e !important;
}

/* ===========================
   Contact Form 7 スタイル上書き
=========================== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .strengths__grid { grid-template-columns: repeat(2, 1fr); }
  .strength-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .message { grid-template-columns: 1fr; }
  .message__content { padding: 48px 32px; }
  .dept-tabs { overflow-x: auto; }
  .dept-content { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .recruit-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .hero__content { padding: 100px 24px 60px; }
  .steps { flex-direction: column; align-items: center; gap: 16px; }
  .step:not(:last-child)::after { content: '↓'; right: auto; top: auto; bottom: -16px; left: 50%; transform: translateX(-50%); }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .dept-jobs { grid-template-columns: 1fr; }
  /* Works */
  .works-grid { grid-template-columns: 1fr; }
  .works-filter { gap: 6px; }
  .works-filter__btn { padding: 8px 14px; font-size: 0.8rem; }
  .works-gallery { grid-template-columns: repeat(2, 1fr); }
  /* Dept photos */
  .dept-photos-row { grid-template-columns: repeat(2, 1fr); }
  /* Recruit Engage */
  .recruit-engage-card { flex-direction: column; gap: 16px; }
  .recruit-engage-card__cta { width: 100%; }
  .recruit-engage-card__cta .btn { width: 100%; justify-content: center; }
  .engage-banner { padding: 16px 20px; flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .strengths__grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .line-cta { padding: 32px 24px; }
  .works-grid { grid-template-columns: 1fr; }
}

/* ===========================
   CF7 テーブルレイアウト
   （既存サイトに合わせた行形式）
=========================== */
.cf7-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--border);
}
.cf7-row:first-child { border-top: 1px solid var(--border); }
.cf7-label {
  padding: 16px 20px;
  background: var(--gray-lt);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--border);
}
.cf7-required {
  font-size: 0.72rem;
  color: #e53e3e;
  font-weight: 400;
}
.cf7-field { padding: 14px 20px; }
.cf7-tel { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cf7-tel .wpcf7-form-control { width: auto !important; }
.cf7-wrap .wpcf7-radio .wpcf7-list-item { display: block; margin: 6px 0; }
.cf7-wrap .wpcf7-acceptance { display: flex; align-items: center; gap: 8px; }
.cf7-wrap .wpcf7-submit { margin-top: 8px; }
@media (max-width: 600px) {
  .cf7-row { grid-template-columns: 1fr; }
  .cf7-label { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ===========================
   CF7 TEL/FAX 横並び修正
=========================== */
.cf7-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}
.cf7-tel .wpcf7-form-control {
  width: auto !important;
  flex: 1;
  min-width: 60px;
  max-width: 100px;
}
.cf7-tel span { color: var(--gray); font-weight: 600; }

/* 送信ボタン センター */
.cf7-wrap .wpcf7-submit,
.cf7-submit-wrap {
  display: block;
  margin: 24px auto 0;
  text-align: center;
}
.cf7-wrap p:last-of-type {
  text-align: center;
}

/* ===========================
   プライバシーポリシーページ
=========================== */
.privacy-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.privacy-section:last-of-type { border-bottom: none; }
.privacy-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid var(--green);
}
.privacy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.privacy-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}
.privacy-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--green);
}
.privacy-content p { font-size: 0.9rem; color: var(--text); line-height: 1.9; }

/* CF7 ラジオボタン 左寄せ修正 */
.cf7-wrap .wpcf7-radio {
  text-align: left;
}
.cf7-wrap .wpcf7-radio .wpcf7-list-item {
  display: block;
  margin: 6px 0;
  text-align: left;
}

/* ===========================
   事業内容 横長3段構成
=========================== */
.services-horizontal {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.services-horizontal .service-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 220px;
}
.services-horizontal .service-card__img,
.services-horizontal .service-card__img-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}
.services-horizontal .service-card__img-placeholder {
  min-height: 200px;
}
.services-horizontal .service-card__body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .services-horizontal .service-card {
    grid-template-columns: 1fr;
  }
  .services-horizontal .service-card__img-placeholder {
    min-height: 160px;
    aspect-ratio: 16/9;
  }
}

/* ===========================
   部門紹介アイコン拡大
   魅力カード画像センター
=========================== */
.dept-job-card__icon {
  width: 100%;
  max-width: 100px;
  margin: 0 auto 16px;
}
.dept-job-card__icon img {
  width: 100%;
  height: auto;
  display: block;
}

/* 魅力カード テキスト中央揃え */
.card .animate-on-scroll,
.card[style*="text-align:center"] img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   部門紹介アイコン さらに拡大（上書き）
=========================== */
.dept-job-card { text-align: center; }
.dept-job-card__icon {
  width: 160px !important;
  max-width: 160px !important;
  height: 160px;
  margin: 0 auto 16px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dept-job-card__icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  display: block;
}

/* 採用ステップ 画像センター強制 */
.section .container.text-center img[alt*="応募"],
.section .container.text-center img[alt*="面接"] {
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
}
