/* ========================================
   CSS変数・リセット
   ======================================== */
:root {
  --color-primary: #ED6103;
  --color-dark: #1A1A1A;
  --color-white: #FFFFFF;
  --color-body: #374151;
  --color-gray: #9CA3AF;
  --color-muted: #6B7280;
  --color-bg-light: #F9FAFB;
  --color-bg-gray: #F5F5F5;
  --color-border: #E5E7EB;
  --color-border-light: #F3F4F6;
  --font-gothic: 'Noto Sans JP', sans-serif;
  --font-mincho: 'Noto Serif JP', serif;
  --content-width: 1200px;
  --nav-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-gothic);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
  color: var(--color-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

table {
  border-collapse: collapse;
}

/* SP/PC専用改行 */
br.sp-only { display: none !important; }
br.pc-only { display: inline !important; }

/* アンカーリンク位置調整 */
[id] {
  scroll-margin-top: 150px;
}

/* ========================================
   ナビゲーション
   ======================================== */
.recruit-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s, border-bottom-color 0.3s, backdrop-filter 0.3s;
}

.recruit-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.recruit-nav {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruit-nav__inner {
  width: 100%;
  max-width: var(--content-width);
  padding: 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recruit-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.recruit-nav__logo-text {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
  transition: color 0.3s;
}

.recruit-header.is-scrolled .recruit-nav__logo-text {
  color: var(--color-dark);
}

.recruit-nav__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.recruit-nav__logo-img--hero {
  height: 95px;
  width: auto;
}

.recruit-nav__logo-img--scrolled {
  display: none;
  height: 30px;
  width: auto;
}

.recruit-header.is-scrolled .recruit-nav__logo-img--hero {
  display: none;
}

.recruit-header.is-scrolled .recruit-nav__logo-img--scrolled {
  display: block;
}

.recruit-nav__links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 10%;
}

.recruit-nav__links a {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
  color: #fff;
  transition: color 0.3s, opacity 0.3s;
}

.recruit-header.is-scrolled .recruit-nav__links a {
  color: var(--color-dark);
}

.recruit-nav__links a:hover {
  opacity: 0.7;
}

.recruit-nav__entry-btns {
  display: flex;
  gap: 6px;
}

.recruit-nav__entry-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  transition: opacity 0.3s;
}

.recruit-nav__entry-btn-year {
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.recruit-nav__entry-btn-text {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.recruit-nav__entry-btn:hover {
  opacity: 0.85;
}


.recruit-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.recruit-nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-dark);
  transition: transform 0.3s, opacity 0.3s;
}

.recruit-header.is-menu-open {
  background-color: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.recruit-header.is-menu-open .recruit-nav__entry-btn {
  opacity: 0;
  pointer-events: none;
}

.recruit-nav__hamburger.is-active span {
  background-color: var(--color-white);
}

.recruit-nav__hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.recruit-nav__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.recruit-nav__hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* モバイルメニュー */
.recruit-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 60px;
  height: calc(100vh - 60px);
  background-color: var(--color-dark);
  z-index: 99;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 120px 30px 40px;
}

.recruit-mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.recruit-mobile-menu__label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-primary);
}

.recruit-mobile-menu__nav {
  width: 100%;
  max-width: 320px;
}

.recruit-mobile-menu__links {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.recruit-mobile-menu__links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recruit-mobile-menu__links a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  transition: opacity 0.3s;
}

.recruit-mobile-menu__links a:hover {
  opacity: 0.7;
}

.recruit-mobile-menu__link-en {
  font-weight: 700;
  font-size: 11px;
  color: var(--color-primary);
  min-width: 24px;
}

.recruit-mobile-menu__link-ja {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

.recruit-mobile-menu__entry-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.recruit-mobile-menu__entry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 60px;
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}

.recruit-mobile-menu__entry-btn:hover {
  opacity: 0.85;
}

.recruit-mobile-menu__footer {
  position: absolute;
  bottom: 30px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}

/* ========================================
   ヒーロー
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.75);
  animation: colorize 4s ease 2.8s forwards;
}

@keyframes colorize {
  to {
    filter: grayscale(0) brightness(1);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(35, 22, 1, 0.25);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 22px 0 102px;
  max-width: 1200px;
}

.hero__badge {
  display: inline-block;
  width: fit-content;
  padding: 4px 15px;
  background-color: var(--color-primary);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-white);
  opacity: 0;
  animation: fadeSlideIn 0.6s ease 0.3s forwards;
}

.hero__heading {
  display: flex;
  flex-direction: column;
}

.hero__heading-sub {
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.2;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  animation: revealText 1.6s ease 1.2s forwards;
}

.hero__heading-main {
  font-weight: 900;
  font-size: clamp(50px, 9vw, 180px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--color-white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(2.2);
  filter: blur(16px);
  transform-origin: center center;
  animation: heroMainAppear 2.4s cubic-bezier(0.22, 1, 0.36, 1) 2.4s forwards;
}

.hero__subtext {
  font-family: var(--font-mincho);
  font-size: 25px;
  line-height: 1.45;
  color: #ffffff;
  opacity: 0;
  animation: heroSubtextFadeIn 0.8s ease 4.2s forwards;
}

@keyframes heroSubtextFadeIn {
  to { opacity: 1; }
}

/* バッジ・サブテキストのフェードスライドイン */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 「ホームネットで」のテキスト横方向の出現 */
@keyframes revealText {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

/* 「突き抜けろ。」のダイナミックな出現：大きくぼかしたオレンジから白に縮小 */
@keyframes heroMainAppear {
  0% {
    opacity: 0;
    transform: scale(2.2);
    filter: blur(16px);
    color: var(--color-primary);
    text-shadow: 0 0 40px rgba(231, 76, 60, 0.8);
  }
  30% {
    opacity: 1;
    filter: blur(4px);
    color: var(--color-primary);
  }
  65% {
    transform: scale(1.04);
    filter: blur(0);
    color: var(--color-primary);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  }
  85% {
    transform: scale(0.97);
    color: var(--color-white);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    color: var(--color-white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  }
}

/* 「突き抜けろ。」の鼓動アニメーション */
@keyframes heroPulse {
  0%, 100% {
    transform: scale(1);
    text-shadow: 0 0 0 transparent;
  }
  50% {
    transform: scale(1.015);
    text-shadow: 0 0 30px rgba(237, 97, 3, 0.4);
  }
}

.hero__watermark {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-weight: 900;
  font-size: clamp(100px, 20.8vw, 300px);
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.08);
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero__scroll-text {
  font-size: 10px;
  line-height: 1.2;
  color: var(--color-white);
}

.hero__scroll-line {
  width: 1px;
  height: 45px;
  background-color: var(--color-white);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ========================================
   トップメッセージ
   ======================================== */
.top-message {
  padding: 150px 0;
  background-color: var(--color-white);
}

.top-message__header {
  max-width: var(--content-width);
  margin: 0 auto 60px;
  padding: 0 22px;
  text-align: left;
}

.top-message__title-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.top-message__section-heading {
  font-weight: 900;
  font-size: 45px;
  line-height: 1.2;
  color: var(--color-dark);
}

.top-message__header .top-message__label-text {
  font-size: 15px;
  letter-spacing: 0.1em;
}

.top-message__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.top-message__profile-role {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-dark);
}

.top-message__profile-name {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-dark);
}

.top-message__profile-name-en {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #888;
}

.top-message__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  gap: 90px;
  align-items: flex-start;
}

.top-message__inner + .top-message__inner {
  margin-top: 80px;
}


.top-message__photo {
  flex-shrink: 0;
}

.top-message__photo-img {
  width: 429px;
  height: 429px;
  object-fit: cover;
}

.top-message__photo-img--crop-right {
  object-position: right center;
}

.top-message__photo-caption {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.top-message__photo-role {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--color-dark);
}

.top-message__photo-name {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: var(--color-dark);
}

.top-message__photo-name-en {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.2;
  color: #888;
}

.top-message__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 35px;
}

.top-message__label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.top-message__label-bar {
  width: 45px;
  height: 4px;
  background-color: var(--color-primary);
}

.top-message__label-text {
  font-weight: 700;
  font-size: 11px;
  line-height: 1.2;
  color: var(--color-primary);
}

.top-message__heading {
  font-weight: 900;
  font-size: clamp(28px, 3.1vw, 45px);
  line-height: 1.2;
  color: var(--color-dark);
}

.top-message__body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.top-message__body-lead {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: var(--color-body);
}

.top-message__body p {
  font-size: 15px;
  line-height: 2;
  color: var(--color-body);
}

.top-message__signature {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  padding-top: 30px;
  border-top: 1px solid var(--color-border-light);
}

.top-message__signature-role {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--color-dark);
}

.top-message__signature-name {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: var(--color-dark);
}

.top-message__signature-name-en {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.2;
  color: #888;
}

/* ========================================
   募集職種
   ======================================== */
.section-jobs {
  padding: 90px 0;
  background-color: var(--color-bg-light);
}

.section-jobs__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.section-jobs__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-jobs__title-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-jobs__label {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: var(--color-primary);
}

.section-jobs__heading {
  font-weight: 900;
  font-size: 45px;
  line-height: 1.2;
  color: var(--color-dark);
}

.section-jobs__hint {
  font-weight: 700;
  font-size: 11px;
  line-height: 1.2;
  color: var(--color-gray);
}

.section-jobs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid #D1D5DB;
}

.section-jobs__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 38px;
  border-right: 1px solid #D1D5DB;
  border-bottom: 1px solid #D1D5DB;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.section-jobs__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 0;
}

.section-jobs__card:hover::before {
  transform: scaleX(1);
}

.section-jobs__card {
  border-right: 1px solid #D1D5DB;
}

.section-jobs__card:last-child {
  border-right: none;
}

.section-jobs__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.section-jobs__card:hover .section-jobs__card-title,
.section-jobs__card:hover .section-jobs__card-arrow,
.section-jobs__card:hover .section-jobs__card-subtitle,
.section-jobs__card:hover .section-jobs__card-desc {
  color: var(--color-white);
}

.section-jobs__card-header,
.section-jobs__card-subtitle,
.section-jobs__card-desc {
  position: relative;
  z-index: 1;
}

.section-jobs__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-jobs__card-title {
  font-weight: 900;
  font-size: 22.5px;
  line-height: 1.2;
  color: var(--color-dark);
  transition: color 0.3s;
}

.section-jobs__card-num {
  margin-right: 6px;
  font-size: 22.5px;
  font-weight: 700;
  color: var(--color-primary);
  transition: color 0.3s;
}

.section-jobs__card:hover .section-jobs__card-num {
  color: var(--color-white);
}

.section-jobs__card-arrow {
  font-size: 22.5px;
  color: var(--color-dark);
  transition: color 0.3s;
}

.section-jobs__card-subtitle {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  color: var(--color-primary);
  transition: color 0.3s;
}

.section-jobs__card-desc {
  font-size: 13px;
  line-height: 1.2;
  color: var(--color-muted);
  transition: color 0.3s;
}

.section-jobs__card-more {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  transition: color 0.3s;
}

.section-jobs__card:hover .section-jobs__card-more {
  color: var(--color-white);
}

/* ========================================
   社員インタビュー
   ======================================== */
.section-interviews {
  padding: 90px 0;
  background-color: var(--color-dark);
}

.section-interviews__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.section-interviews__title-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-interviews__label {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: var(--color-primary);
}

.section-interviews__heading {
  font-weight: 900;
  font-size: 45px;
  line-height: 1.2;
  color: var(--color-white);
}

.section-interviews__cards {
  display: flex;
  gap: 30px;
}

.section-interviews__card {
  flex: 1;
  position: relative;
  cursor: pointer;
}

.section-interviews__card-img-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 133.33%;
  overflow: hidden;
}

.section-interviews__card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  z-index: 1;
}

.section-interviews__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.section-interviews__card-img--shift-right {
  object-position: calc(50% + 1cm) center;
}

.section-interviews__card-img--shift-right-2 {
  object-position: calc(50% + 2cm) center;
}

.section-interviews__card-img--shift-right-3 {
  object-position: calc(50% + 2cm) center;
}

.section-interviews__card:hover .section-interviews__card-img {
  transform: scale(1.08);
}

.section-interviews__card-text {
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(10px);
  opacity: 0.8;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.section-interviews__card:hover .section-interviews__card-text {
  transform: translateY(0);
  opacity: 1;
}

.section-interviews__card-quote {
  font-family: var(--font-mincho);
  font-size: 17px;
  line-height: 1.45;
  color: var(--color-white);
}

.section-interviews__card-role {
  font-weight: 700;
  font-size: 10px;
  line-height: 1.2;
  color: var(--color-primary);
}

.section-interviews__card-name {
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  color: var(--color-white);
}

/* ========================================
   数字で見る事実
   ======================================== */
.section-data {
  padding: 90px 0;
  background-color: var(--color-bg-gray);
}

.section-data__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.section-data__label {
  font-weight: 900;
  font-size: 45px;
  line-height: 1.2;
  color: var(--color-dark);
}

.section-data__title-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-data__sub {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: #ED6103;
}

.section-data__numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px 60px;
}

.section-data__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.section-data__item--badge {
  align-items: center;
  justify-content: center;
}

.section-data__item-label {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--color-dark);
}

.section-data__item-value {
  display: flex;
  align-items: baseline;
}

.section-data__item-num {
  font-weight: 900;
  font-size: clamp(48px, 6.25vw, 90px);
  line-height: 1.2;
  color: var(--color-dark);
}

.section-data__item-unit {
  font-weight: 900;
  font-size: 34px;
  line-height: 1.2;
  color: var(--color-primary);
}

.section-data__item-desc {
  font-weight: 700;
  font-size: 11px;
  line-height: 1.2;
  color: var(--color-gray);
}

.section-data__item--gender .section-data__item-num {
  font-size: clamp(36px, 4.5vw, 65px);
}


.section-data__item--gender .section-data__item-unit {
  font-size: 26px;
}

.section-data__item-gender-tag {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark);
  margin-right: 4px;
}

.section-data__item-gender-values {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 20px;
}

.section-data__item-badge {
  width: 120px;
  height: 120px;
  border: 10px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  color: var(--color-dark);
}

/* ========================================
   データグリッド（新）
   ======================================== */

.section-data__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.data-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.data-card::after {
  content: '2025年11月期';
  display: block;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.55);
  letter-spacing: 0.05em;
  margin-top: auto;
}

.data-card__label {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--color-dark);
  opacity: 1;
}

.data-card__value {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.data-card__big-num {
  font-size: clamp(56px, 7vw, 100px);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.num-comma {
  font-size: 0.45em;
  vertical-align: 0.2em;
}

.data-card__unit {
  font-size: clamp(18px, 2.3vw, 32px);
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1;
}


/* グリッド位置を明示指定 */
.data-card--sales      { grid-column: 1; grid-row: 1; }
.data-card--anniversary{ grid-column: 2; grid-row: 1; }
.data-card--paid-leave { grid-column: 1; grid-row: 2; align-self: stretch; }
.data-card--gender     { grid-column: 2; grid-row: 2 / 4; }
.data-card--retention  { grid-column: 1; grid-row: 3; align-self: stretch; }

.data-card--max-salary { grid-column: 1; grid-row: 4; align-self: stretch; }
.data-card--age        { grid-column: 2; grid-row: 4; align-self: end; }

/* 男女比率カード */
.data-card--gender .data-card__gender-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
}

.data-card__gender-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.data-card__gender-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.data-card__gender-icon {
  font-size: 60px;
}

.data-card__gender-icon--male   { color: var(--color-primary); }
.data-card__gender-icon--female { color: var(--color-primary); }

.data-card__gender-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  min-width: 3em;
}

.data-card__gender-num {
  font-size: 100px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.data-card__gender-unit {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  margin-left: 2px;
}

.data-card__gender-chart {
  flex-shrink: 0;
}

.data-card__gender-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: none;
  border: 3px solid var(--color-primary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.data-card__gender-circle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 48%;
  height: 100%;
  background: var(--color-white);
  z-index: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.data-card__gender-circle::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 52%;
  height: 100%;
  background: var(--color-primary);
  z-index: 0;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.data-card__gender-circle.is-animated::before {
  clip-path: inset(0 0 0 0);
}

.data-card__gender-circle.is-animated::after {
  clip-path: inset(0 0 0 0);
}

.data-card__gender-divider {
  position: absolute;
  left: 48%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-primary);
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease 0.9s;
}

.data-card__gender-circle.is-animated .data-card__gender-divider {
  opacity: 1;
}

.data-card__gender-circle-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease 0.8s;
}

.data-card__gender-circle.is-animated .data-card__gender-circle-icon {
  opacity: 1;
}

.data-card__gender-circle-icon--male   { right: 12%; color: var(--color-white); }
.data-card__gender-circle-icon--female { left: 12%; color: var(--color-primary); }

.data-card__sales-inner {
  display: flex;
  align-items: flex-end;
  gap: 48px;
}

.data-card__sales-chart {
  flex: 1;
  min-width: 0;
}

.data-card__bar-list {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 180px;
}

.data-card__bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}

.data-card__bar-val {
  font-size: 9px;
  font-weight: 700;
  color: #b34800;
  line-height: 1;
  white-space: nowrap;
}

.data-card__bar {
  width: 100%;
  height: var(--h);
  background: linear-gradient(to top, #c85400, #ff9a3c);
  border-radius: 3px 3px 0 0;
  transform-origin: bottom;
  transform: scaleY(0);
}

.data-card__bar.is-animated {
  animation: barGrow 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.data-card__bar-col--accent .data-card__bar {
  background: linear-gradient(to top, #ED6103, #ffb347);
}

.data-card__bar-col--accent .data-card__bar-val {
  font-size: 11px;
  color: var(--color-primary);
}

.data-card__bar-year {
  font-size: 7.5px;
  font-weight: 500;
  color: #999;
  text-align: center;
  line-height: 1.4;
}

@keyframes barGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

.data-card__sales-summary {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 190px;
}

.data-card__sales-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-dark);
}

.data-card__sales-period {
  font-size: 13px;
  font-weight: 500;
  color: #999;
}

.data-card__sales-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 10px;
}

.data-card__sales-value .data-card__big-num {
  font-size: clamp(56px, 7vw, 100px);
}

/* 平均年収（1列） */
.data-card--salary {
  grid-column: auto;
}

.data-card__salary-inner {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  flex: 1;
}

.data-card__salary-nums {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.data-card__salary-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.data-card__salary-decade {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark);
  opacity: 0.6;
  min-width: 30px;
}

.data-card__salary-bignum {
  font-size: clamp(46px, 5.5vw, 78px);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.data-card__salary-unit-sm {
  font-size: clamp(15px, 2vw, 25px);
  font-weight: 700;
  color: var(--color-dark);
}

.data-card__salary-vchart {
  display: flex;
  align-items: flex-end;
}

.data-card__salary-vbars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
}

.data-card__salary-vcol {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 28px;
  height: 100%;
  justify-content: flex-end;
}

.data-card__salary-vbar {
  width: 100%;
  height: var(--h);
  background: linear-gradient(to top, #c85400, #ff9a3c);
  border-radius: 3px 3px 0 0;
  transform-origin: bottom;
  transform: scaleY(0);
}

.data-card__salary-vbar.is-animated {
  animation: barGrow 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.data-card__salary-vcol--accent .data-card__salary-vbar {
  background: linear-gradient(to top, #ED6103, #ffb347);
}

.data-card__salary-vlab {
  font-size: 9px;
  font-weight: 500;
  color: #999;
  text-align: center;
}

/* 育休取得率 */
.data-card__circles {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex: 1;
  align-items: center;
}

.data-card__circle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.data-card__circle-chart {
  position: relative;
  width: 130px;
  height: 130px;
}

.data-card__circle-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.data-card__circle-bg {
  fill: none;
  stroke: #f0ede9;
  stroke-width: 10;
}

.data-card__circle-fill {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dasharray 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.data-card__circle-pct {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 900;
  color: var(--color-dark);
}

.data-card__circle-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-dark);
  opacity: 0.75;
}

.data-card__circle-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.data-card__circle-bignum {
  font-size: clamp(50px, 5.5vw, 76px);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.data-card__circle-unit {
  font-size: clamp(17px, 2vw, 26px);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
}

.data-card__picto {
  font-size: 28px;
  flex-shrink: 0;
  color: var(--color-dark);
  opacity: 0.65;
}

/* 20代最高年収 */
.data-card--max-salary {
  justify-content: space-between;
}

.data-card--max-salary .data-card__value {
  align-items: baseline;
  gap: 6px;
}

.data-card--max-salary .data-card__big-num {
  font-size: clamp(64px, 9vw, 120px);
}

/* 創業25周年 */
.data-card--anniversary {
  background: var(--color-white);
  justify-content: space-between;
}

.data-card--anniversary::after {
  display: none;
}

.data-card__anniversary-sub {
  font-size: 15px;
  font-weight: 500;
  color: rgba(0,0,0,0.4);
  letter-spacing: 0.08em;
}

/* ========================================
   会社概要
   ======================================== */
.section-company {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.section-company__bg {
  position: absolute;
  inset: 0;
}

.section-company__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-company__bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.section-company__inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 45px;
}

.section-company__title-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-company__label {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: var(--color-primary);
}

.section-company__heading {
  font-weight: 900;
  font-size: 45px;
  line-height: 1.2;
  color: var(--color-white);
}

.section-company__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  transition: opacity 0.3s;
  align-self: center;
}

.section-company__btn:hover {
  opacity: 0.85;
}

/* ========================================
   FAQ
   ======================================== */
.section-faq {
  padding: 90px 0;
  background-color: var(--color-white);
}

.section-faq__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}

.section-faq__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-faq__heading {
  font-weight: 900;
  font-size: 45px;
  line-height: 1.2;
  color: var(--color-dark);
}

.section-faq__label {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: var(--color-primary);
}

.section-faq__list {
  width: 100%;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-faq__item {
  border-top: 1px solid var(--color-border-light);
}

.section-faq__item:first-child {
  border-top: none;
}

.section-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-dark);
  list-style: none;
}

.section-faq__question::-webkit-details-marker {
  display: none;
}

.section-faq__toggle {
  font-weight: 300;
  font-size: 22.5px;
  line-height: 1.2;
  color: var(--color-dark);
  transition: transform 0.3s;
}

.section-faq__item[open] .section-faq__toggle {
  transform: rotate(45deg);
}

.section-faq__answer {
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
}

.section-faq__answer.is-closing,
.section-faq__answer:not(.is-open) {
  max-height: 0;
  opacity: 0;
  padding: 0 22px;
}

.section-faq__answer.is-open {
  max-height: 500px;
  opacity: 1;
  padding: 0 22px 22px;
}

/* ========================================
   CTA
   ======================================== */
.section-cta {
  position: relative;
  padding: 150px 0;
  background-color: var(--color-dark);
  overflow: hidden;
  text-align: center;
}

.section-cta::after {
  content: '';
  display: block;
  width: 80%;
  height: 1px;
  background-color: var(--color-white);
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 10%;
}

.section-cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.section-cta__bg-track {
  display: flex;
  width: max-content;
  animation: ctaMarquee 18s linear infinite;
}

.section-cta__bg-track span {
  font-weight: 900;
  font-size: clamp(100px, 26vw, 375px);
  line-height: 1.2;
  color: var(--color-white);
  opacity: 0.04;
  white-space: nowrap;
  padding-right: 1em;
}

@keyframes ctaMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section-cta__inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.section-cta__label {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: -45px;
  color: var(--color-primary);
}

.section-cta__heading {
  font-weight: 900;
  font-size: clamp(28px, 3.9vw, 56px);
  line-height: 1.2;
  color: var(--color-white);
}

.section-cta__btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* PC（タブレット以上）でのボタン順序：27卒→28卒→中途 */
@media (min-width: 768px) {
  .section-cta__btn--new27 { order: 1; }
  .section-cta__btn--new28 { order: 2; }
  .section-cta__btn--career { order: 3; }
}

.section-cta__btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 30px 80px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 900;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
}

.section-cta__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 0;
}

.section-cta__btn-year,
.section-cta__btn-entry {
  position: relative;
  z-index: 1;
}

.section-cta__btn-year {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.section-cta__btn-entry {
  font-size: clamp(14px, 1.5vw, 22px);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.section-cta__btn:hover::before {
  transform: scaleX(1);
}

.section-cta__btn:hover {
  color: var(--color-primary);
}

.section-cta__btn:hover .section-cta__btn-note {
  color: var(--color-primary);
}

.section-cta__btn-note {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}


/* ========================================
   フッター
   ======================================== */
.recruit-footer {
  background-color: var(--color-dark);
  padding: 60px 0 30px;
}

.recruit-footer__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 22px;
}

.recruit-footer__columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.recruit-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recruit-footer__col-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 4px;
}

.recruit-footer__col a {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-gray);
  transition: opacity 0.3s;
}

.recruit-footer__col a::before {
  content: '>';
  margin-right: 6px;
  font-size: 11px;
}

.recruit-footer__col a:hover {
  opacity: 0.7;
}

.recruit-footer__logo-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.recruit-footer__logo-img {
  height: 60px;
  width: auto;
  opacity: 0.9;
}

.recruit-footer__bottom {
  padding-top: 20px;
  text-align: center;
}

.recruit-footer__copy {
  font-size: 10px;
  line-height: 1.2;
  color: var(--color-muted);
}

/* ========================================
   レスポンシブ: タブレット (768px〜1023px)
   ======================================== */
@media (max-width: 1023px) {
  .recruit-nav__links {
    display: none;
  }

  .recruit-nav__entry-btns {
    display: none;
  }

  .recruit-nav__hamburger {
    display: flex;
    flex-shrink: 0;
    margin-left: 15px;
  }

  .recruit-nav__logo-img--hero {
    height: 65px;
    width: auto;
    max-height: 65px;
  }

  .recruit-nav__logo {
    margin-right: 0;
  }

  .hero {
    height: 100vh;
  }

  .hero__content {
    padding: 0 40px;
  }

  .top-message__inner {
    gap: 50px;
  }

  .top-message__photo-img {
    width: 320px;
    height: 320px;
  }

  .section-interviews__cards {
    flex-direction: column;
    gap: 20px;
  }

  .section-interviews__card-img-wrap {
    aspect-ratio: 3 / 4;
    max-height: 400px;
  }

  .section-data__numbers {
    gap: 30px 40px;
  }

  .section-cta__btns {
    gap: 14px;
  }

  .section-cta__btn {
    padding: 20px 50px;
  }

  .recruit-footer__columns {
    flex-wrap: wrap;
    gap: 30px;
  }

  .recruit-footer__logo-area {
    width: 100%;
    justify-content: flex-start;
    margin-top: 10px;
  }
}

/* ========================================
   スマホ固定エントリーボタン
   ======================================== */
.recruit-fixed-entry {
  display: none;
}

/* ========================================
   レスポンシブ: モバイル (〜767px)
   ======================================== */
@media (max-width: 767px) {
  /* SP/PC専用改行の切り替え */
  br.sp-only { display: block !important; }
  br.pc-only { display: none !important; }

  /* ロゴをwidthで指定 */
  .recruit-nav__logo-img--hero {
    width: 90px;
    height: auto;
  }

  .recruit-nav__logo-img--scrolled {
    width: 80px;
    height: auto;
  }

  /* ハンバーガーメニュー: 透明時は白、スクロール後は黒 */
  .recruit-nav__hamburger span {
    background-color: var(--color-white);
  }

  .recruit-header.is-scrolled .recruit-nav__hamburger span {
    background-color: var(--color-dark);
  }

  /* メニューオープン時: ロゴとハンバーガーを白に */
  .recruit-header.is-menu-open .recruit-nav__logo-img {
    filter: brightness(0) invert(1);
  }

  .recruit-header.is-menu-open .recruit-nav__hamburger span {
    background-color: var(--color-white);
  }

  /* ヘッダーのエントリーボタン非表示 */
  .recruit-nav__entry-btns {
    display: none;
  }

  /* 固定エントリーボタン（最下部） */
  .recruit-fixed-entry {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 200;
    height: 60px;
  }

  .recruit-fixed-entry__btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
    transition: opacity 0.3s;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
  }

  .recruit-fixed-entry__btn:last-child {
    border-right: none;
  }

  .recruit-fixed-entry__btn:hover {
    opacity: 0.85;
  }

  .recruit-fixed-entry__year {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .recruit-fixed-entry__label {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
  }

  /* 固定バーの高さ分のpadding */
  body {
    padding-bottom: 60px;
  }

  .hero {
    height: 100vh;
    min-height: 600px;
  }

  .hero__content {
    padding: 0 20px;
  }

  .hero__watermark {
    display: none;
  }

  .top-message {
    padding: 60px 0;
  }

  .top-message__inner {
    flex-direction: column;
    gap: 40px;
  }

  /* スマホ: 写真を常に上に表示 */
  .top-message__inner .top-message__photo {
    order: -1;
  }

  .top-message__photo-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .top-message__heading {
    font-size: 28px;
  }

  .top-message__signature {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .section-jobs {
    padding: 60px 0;
  }

  .top-message__section-heading {
    font-size: 32px;
  }

  /* メインビジュアルより下の40px以上の文字を32pxに統一 */
  .section-jobs__heading,
  .section-interviews__heading,
  .section-company__heading,
  .section-faq__heading {
    font-size: 32px;
  }

  .section-jobs__grid {
    grid-template-columns: 1fr;
  }

  .section-jobs__card {
    border-right: none;
    border-bottom: 1px solid #D1D5DB;
  }

  .section-jobs__card:last-child {
    border-bottom: none;
  }

  .section-jobs__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .section-interviews {
    padding: 60px 0;
  }

  /* 社員インタビュー写真サイズ統一 */
  .section-interviews__card-img-wrap {
    aspect-ratio: 3 / 4;
    max-height: 480px;
  }

  /* section-interviews__card-img-wrap::afterの縦伸び防止 */
  .section-interviews__card-img-wrap::after {
    bottom: 0;
  }

  /* インタビューカードテキストのgap調整 */
  .section-interviews__card-text {
    gap: 0;
  }
  .section-interviews__card-quote {
    font-size: 23px;
    margin-bottom: 10px;
  }
  .section-interviews__card-role {
    font-size: 15px;
    margin-bottom: 5px;
  }

  /* jobs */
  .section-jobs__inner {
    gap: 30px;
  }
  .section-jobs__card-more {
    margin-left: auto;
    text-align: right;
  }

  /* section-data */
  .section-data__inner {
    gap: 30px;
  }
  .data-card::after {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.55);
  }

  /* section-faq */
  .section-faq__inner {
    gap: 30px;
  }
  .section-faq__question {
    gap: 20px;
  }

  /* section-cta ボタン順序（27卒→28卒→中途） */
  .section-cta__btn--new27 { order: 1; }
  .section-cta__btn--new28 { order: 2; }
  .section-cta__btn--career { order: 3; }

  /* top-message__title-group */
  .top-message__title-group {
    gap: 3px;
  }

  .section-data {
    padding: 60px 0;
  }

  .section-data__label {
    font-size: 32px;
  }

  .section-data__numbers {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  /* ラベルと数値の行間を詰める */
  .section-data__item {
    gap: 4px;
  }

  .section-data__item-num {
    font-size: 34px;
  }

  .section-data__item-unit {
    font-size: 24px;
  }

  .section-data__item-gender-values {
    flex-direction: column;
    gap: 8px;
  }

  .section-data__item--full {
    grid-column: 1 / -1;
  }

  .section-data__item--full .section-data__item-num {
    font-size: 72px;
  }

  .section-data__item--full .section-data__item-unit {
    font-size: 44px;
  }

  /* データグリッド（スマホ）：全カードを1列縦並びにリセット */
  .section-data__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-data__grid .data-card {
    grid-column: 1 !important;
    grid-row: auto !important;
    align-self: stretch !important;
  }

  .data-card {
    padding: 24px 20px;
    gap: 12px;
  }

  .data-card__label {
    font-size: 22px;
  }

  .data-card__big-num {
    font-size: 68px;
  }

  .data-card__unit {
    font-size: 28px;
  }


  .data-card__sales-inner {
    flex-direction: row;
    gap: 20px;
    align-items: flex-end;
  }

  .data-card__sales-chart {
    flex: 1;
  }

  .data-card__bar-list {
    height: 100px;
    gap: 4px;
  }

  .data-card__bar-year {
    font-size: 7px;
  }

  .data-card__sales-summary {
    min-width: unset;
    flex-shrink: 0;
  }

  .data-card__sales-value .data-card__big-num {
    font-size: 48px;
  }

  .data-card__sales-value .data-card__unit {
    font-size: 20px;
  }

  .data-card__salary-bignum {
    font-size: 36px;
  }

  .data-card__salary-vbars {
    height: 80px;
  }

  .data-card--max-salary .data-card__big-num {
    font-size: 72px;
  }

  .data-card--max-salary .data-card__unit {
    font-size: 32px;
  }

  .section-data__item--badge {
    align-items: flex-start;
  }

  /* 男女比カード：グラフ非表示 */
  .data-card__gender-chart {
    display: none;
  }

  .data-card__gender-num {
    font-size: 60px;
  }

  .data-card__gender-stats {
    gap: 12px;
  }

  .data-card__gender-name {
    font-size: 15px;
  }

  /* 売上グラフカード：縦積みに変更 */
  .data-card__sales-inner {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .data-card__sales-summary {
    flex-shrink: 1;
  }

  .section-company {
    padding: 60px 0;
  }

  .section-faq {
    padding: 60px 0;
  }

  /* FAQ質問の文字を小さく */
  .section-faq__question {
    font-size: 14px;
  }

  .section-cta {
    padding: 80px 0;
  }

  .section-cta__btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .section-cta__btn {
    padding: 20px 60px;
    width: 100%;
    max-width: 300px;
  }

  .recruit-footer {
    padding: 30px 0 20px;
  }

  .recruit-footer__columns {
    flex-direction: column;
    gap: 25px;
  }
}
