/* =========================================================
   ÉCLAT Inc. Corporate Site (Pattern D / Business)
   style.css  - 共通スタイル + recruit専用スタイル
   依存：Google Fonts のみ
   ========================================================= */

/* ---------- 1. Design Tokens / Variables ---------- */
:root {
  --c-white: #ffffff;
  --c-light: #f5f7fa;
  --c-navy: #0b2545;
  --c-navy-2: #13315c;
  --c-blue: #2e6fb5;
  --c-blue-2: #3a86c8;
  --c-text: #1f2933;
  --c-sub: #5b6770;
  --c-line: #e3e8ee;

  --radius: 6px;
  --radius-sm: 4px;
  --shadow: 0 2px 10px rgba(11, 37, 69, 0.06);
  --shadow-lg: 0 6px 24px rgba(11, 37, 69, 0.10);

  --maxw: 1120px;
  --gap: 24px;

  --ff-base: "Noto Sans JP", system-ui, sans-serif;
  --ff-en: "Montserrat", "Inter", sans-serif;

  --header-h: 72px;
}

/* ---------- 2. Reset / Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--ff-base);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--c-blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-navy); }

h1, h2, h3, h4 { line-height: 1.4; margin: 0; font-weight: 700; }

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

/* ---------- 3. Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: 88px 0; }
.section--light { background: var(--c-light); }
.section--navy { background: var(--c-navy); color: var(--c-white); }

.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head .en {
  display: block;
  font-family: var(--ff-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--c-blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section--navy .section-head .en { color: var(--c-blue-2); }
.section-head h2 {
  font-size: clamp(24px, 3.4vw, 32px);
  letter-spacing: .02em;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: var(--c-blue);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--c-blue); color: #fff; }
.btn--primary:hover { background: var(--c-navy); color: #fff; }
.btn--navy { background: var(--c-navy); color: #fff; }
.btn--navy:hover { background: var(--c-navy-2); color: #fff; }
.btn--outline {
  background: transparent;
  border-color: var(--c-line);
  color: var(--c-text);
}
.btn--outline:hover { border-color: var(--c-blue); color: var(--c-blue); }
.btn--ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.btn--ghost-light:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn--lg { padding: 16px 38px; font-size: 16px; }

/* ---------- 5. Photo Placeholder ---------- */
.photo {
  position: relative;
  background: linear-gradient(135deg, #e9eef4 0%, #d7e0ea 100%);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.photo::after {
  content: "PHOTO";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .22em;
  color: #9aaabd;
}

/* ---------- 6. Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(1.2) blur(6px);
  border-bottom: 1px solid var(--c-line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-navy);
}
.brand:hover { color: var(--c-navy); }
.brand__mark { flex: 0 0 auto; }
.brand__name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .03em;
  line-height: 1.2;
}
.brand__name small {
  display: block;
  font-family: var(--ff-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--c-sub);
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav__list { display: flex; gap: 22px; }
.nav__list a {
  color: var(--c-text);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--c-blue);
  transition: width .2s ease;
}
.nav__list a:hover { color: var(--c-navy); }
.nav__list a:hover::after { width: 100%; }

/* hamburger (CSS :checked方式) */
.nav-toggle { display: none; }
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-navy);
  margin-inline: auto;
  transition: transform .25s ease, opacity .2s ease;
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11,37,69,.92) 0%, rgba(19,49,92,.86) 55%, rgba(46,111,181,.74) 100%),
    linear-gradient(135deg, #1a3a63 0%, #284e7f 100%);
  overflow: hidden;
}
.hero::before {
  /* PHOTOラベル付き写真プレースホルダ感 */
  content: "PHOTO";
  position: absolute;
  right: 28px; bottom: 18px;
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: .22em;
  color: rgba(255,255,255,.35);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 116px 0 124px;
  max-width: 740px;
}
.hero .en {
  font-family: var(--ff-en);
  font-size: 13px;
  letter-spacing: .2em;
  font-weight: 600;
  color: var(--c-blue-2);
  text-transform: uppercase;
  display: block;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(30px, 5.4vw, 52px);
  line-height: 1.35;
  letter-spacing: .02em;
  margin-bottom: 24px;
}
.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.9);
  margin-bottom: 38px;
  max-width: 600px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- 8. KPI / Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.stat-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-card .en {
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--c-blue);
  font-weight: 600;
  text-transform: uppercase;
}
.stat-card .num {
  font-family: var(--ff-en);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.1;
  margin: 8px 0 4px;
}
.stat-card .num span { font-size: .5em; margin-left: 4px; color: var(--c-blue); }
.stat-card .label { font-size: 14px; color: var(--c-sub); }

/* ---------- 9. Business cards ---------- */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.biz-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.biz-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #cfdbe9;
}
.biz-card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-light);
  border-radius: var(--radius);
  color: var(--c-blue);
  margin-bottom: 18px;
}
.biz-card h3 { font-size: 18px; margin-bottom: 10px; letter-spacing: .02em; }
.biz-card p { font-size: 14.5px; color: var(--c-sub); }

/* ---------- 10. Message (代表メッセージ) ---------- */
.message-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
.message-photo { aspect-ratio: 3 / 4; }
.message-body h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 24px;
  letter-spacing: .03em;
  line-height: 1.5;
}
.message-body p { margin-bottom: 18px; color: #36424c; }
.message-sign {
  margin-top: 28px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.message-sign .role { font-size: 14px; color: var(--c-sub); }
.message-sign .name { font-size: 20px; font-weight: 700; letter-spacing: .08em; }

/* ---------- 11. Timeline (沿革) ---------- */
.timeline {
  max-width: 760px;
  margin-inline: auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 110px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--c-line);
}
.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 36px;
  padding-bottom: 36px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-year {
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 20px;
  color: var(--c-navy);
  text-align: right;
  padding-top: 2px;
}
.tl-body { position: relative; padding-left: 14px; }
.tl-body::before {
  content: "";
  position: absolute;
  left: -29px; top: 8px;
  width: 12px; height: 12px;
  background: var(--c-blue);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--c-line);
}
.tl-body h3 { font-size: 16px; margin-bottom: 4px; }
.tl-body p { font-size: 14px; color: var(--c-sub); }

/* ---------- 12. News ---------- */
.news-list {
  max-width: 840px;
  margin: 0 auto 36px;
  border-top: 1px solid var(--c-line);
}
.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 8px;
  border-bottom: 1px solid var(--c-line);
  transition: background .2s ease;
}
.news-item:hover { background: var(--c-light); }
.news-date {
  font-family: var(--ff-en);
  font-size: 14px;
  color: var(--c-sub);
  flex: 0 0 96px;
}
.news-cat {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--c-blue);
  border: 1px solid #c9dbee;
  background: #f0f6fc;
  border-radius: 999px;
  padding: 3px 12px;
}
.news-title { font-size: 15px; color: var(--c-text); font-weight: 500; }
.news-item:hover .news-title { color: var(--c-navy); }
.news-more { text-align: center; }

/* ---------- 13. Company profile (dl) ---------- */
.profile {
  max-width: 840px;
  margin-inline: auto;
  border-top: 1px solid var(--c-line);
}
.profile div {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--c-line);
}
.profile dt {
  padding: 20px 24px;
  font-weight: 700;
  background: var(--c-light);
  color: var(--c-navy);
  font-size: 15px;
}
.profile dd {
  padding: 20px 24px;
  margin: 0;
  color: #36424c;
  font-size: 15px;
}

/* ---------- 14. Recruit banner ---------- */
.recruit-banner {
  background:
    linear-gradient(120deg, rgba(11,37,69,.94), rgba(19,49,92,.88)),
    linear-gradient(120deg, #18375f, #2b5589);
  color: #fff;
  border-radius: var(--radius);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.recruit-banner::after {
  content: "PHOTO";
  position: absolute;
  right: 18px; bottom: 12px;
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.3);
}
.recruit-banner .en {
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--c-blue-2);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.recruit-banner h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 12px; }
.recruit-banner p { color: rgba(255,255,255,.85); font-size: 15px; }

/* ---------- 15. Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info .lead { color: var(--c-sub); margin-bottom: 28px; }
.contact-line {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid var(--c-line);
}
.contact-line:last-child { border-bottom: 1px solid var(--c-line); }
.contact-line__icon { color: var(--c-blue); flex: 0 0 auto; margin-top: 2px; }
.contact-line .ttl { font-size: 13px; color: var(--c-sub); }
.contact-line .val {
  font-family: var(--ff-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: .02em;
}
.contact-line .val a { color: var(--c-navy); }
.contact-line .val a:hover { color: var(--c-blue); }
.contact-line .note { font-size: 13px; color: var(--c-sub); }

/* Form */
.form {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--c-navy);
}
.form-row .req {
  font-size: 11px;
  color: #c0392b;
  margin-left: 6px;
  font-weight: 600;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--c-text);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(46,111,181,.12);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--c-sub);
  margin-bottom: 22px;
}
.form-check input { width: auto; margin-top: 4px; }
.form .btn { width: 100%; }

/* ---------- 16. Footer ---------- */
.footer {
  background: var(--c-navy);
  color: rgba(255,255,255,.78);
  padding: 64px 0 28px;
  font-size: 14px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer .brand__name { color: #fff; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer__addr { line-height: 1.9; color: rgba(255,255,255,.7); }
.footer__col h4 {
  font-size: 13px;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: 16px;
  font-family: var(--ff-en);
  text-transform: uppercase;
}
.footer__col li { margin-bottom: 10px; }
.footer__col a { color: rgba(255,255,255,.74); }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  font-family: var(--ff-en);
  letter-spacing: .04em;
}

/* =========================================================
   RECRUIT 専用スタイル
   ========================================================= */

/* recruit hero */
.rec-hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(11,37,69,.90) 0%, rgba(19,49,92,.82) 60%, rgba(46,111,181,.66) 100%),
    linear-gradient(120deg, #16335a 0%, #2c5688 100%);
  overflow: hidden;
}
.rec-hero::before {
  content: "PHOTO";
  position: absolute;
  right: 28px; bottom: 18px;
  font-family: var(--ff-en);
  font-size: 12px; letter-spacing: .22em;
  color: rgba(255,255,255,.32);
}
.rec-hero__inner {
  position: relative; z-index: 1;
  padding: 104px 0 110px;
  max-width: 720px;
}
.rec-hero .en {
  font-family: var(--ff-en);
  font-size: 13px; letter-spacing: .2em; font-weight: 600;
  color: var(--c-blue-2); text-transform: uppercase;
  display: block; margin-bottom: 20px;
}
.rec-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.4; margin-bottom: 22px; letter-spacing: .02em;
}
.rec-hero p { color: rgba(255,255,255,.9); font-size: clamp(15px,2vw,17px); margin-bottom: 34px; }

.rec-breadcrumb {
  font-size: 13px; color: var(--c-sub);
  padding: 14px 0; background: var(--c-light);
  border-bottom: 1px solid var(--c-line);
}
.rec-breadcrumb a { color: var(--c-sub); }
.rec-breadcrumb a:hover { color: var(--c-blue); }

/* 募集職種 */
.job-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.job-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 30px 30px 26px;
  border-top: 4px solid var(--c-blue);
  transition: box-shadow .2s ease, transform .2s ease;
}
.job-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.job-card h3 {
  font-size: 19px; margin-bottom: 6px; color: var(--c-navy);
  display: flex; align-items: center; gap: 10px;
}
.job-card__tag {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  background: #f0f6fc; color: var(--c-blue);
  border: 1px solid #c9dbee; border-radius: 999px;
  padding: 2px 12px; margin-bottom: 14px;
}
.job-card p { font-size: 14.5px; color: var(--c-sub); margin-bottom: 16px; }
.job-card dl { display: grid; grid-template-columns: 88px 1fr; gap: 8px 14px; font-size: 14px; }
.job-card dt { color: var(--c-sub); font-weight: 600; }
.job-card dd { margin: 0; color: var(--c-text); }

/* 福利厚生 */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
}
.benefit-card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-light); border-radius: var(--radius);
  color: var(--c-blue); margin-bottom: 16px;
}
.benefit-card h3 { font-size: 16px; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--c-sub); }

/* 先輩の声 */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.voice-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  align-items: start;
}
.voice-photo { aspect-ratio: 1; border-radius: 50%; }
.voice-photo::after { font-size: 9px; letter-spacing: .12em; }
.voice-card .role { font-size: 13px; color: var(--c-blue); font-weight: 600; margin-bottom: 4px; }
.voice-card h3 { font-size: 17px; margin-bottom: 12px; }
.voice-card p { font-size: 14px; color: var(--c-sub); }

/* 募集要項 (dl共通の.profileを再利用) */

/* エントリーCTA */
.entry-cta {
  text-align: center;
}
.entry-cta h2 { color: #fff; font-size: clamp(24px,3.4vw,32px); margin-bottom: 14px; }
.entry-cta p { color: rgba(255,255,255,.85); margin-bottom: 30px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
  .message-grid { grid-template-columns: 1fr; gap: 32px; }
  .message-photo { max-width: 300px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }

  /* nav -> hamburger */
  .nav-burger { display: flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-lg);
    padding: 8px 0 16px;
    transform: translateY(-120%);
    transition: transform .28s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav__list { flex-direction: column; gap: 0; width: 100%; }
  .nav__list a { padding: 14px 24px; border-bottom: 1px solid var(--c-line); }
  .nav__list a::after { display: none; }
  .nav .btn { margin: 14px 24px 0; }
  .nav-toggle:checked ~ .nav { transform: translateY(0); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__inner { padding: 76px 0 84px; }
  .hero__cta .btn { flex: 1 1 auto; }

  .timeline::before { left: 8px; }
  .tl-item { grid-template-columns: 1fr; gap: 6px; padding-left: 30px; }
  .tl-year { text-align: left; }
  .tl-body { padding-left: 0; }
  .tl-body::before { left: -30px; }

  .profile div { grid-template-columns: 1fr; }
  .profile dt { padding-bottom: 8px; }
  .profile dd { padding-top: 8px; }

  .news-item { flex-wrap: wrap; gap: 8px 14px; }
  .news-date { flex-basis: auto; }
  .news-title { flex-basis: 100%; }

  .job-grid, .voice-grid, .benefit-grid { grid-template-columns: 1fr; }
  .voice-card { grid-template-columns: 72px 1fr; gap: 18px; }

  .recruit-banner { padding: 40px 28px; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
  .biz-grid { grid-template-columns: 1fr; }
  .container { padding-inline: 18px; }
}
