/* ========================================
   variables.css — デザイントークン
   ======================================== */
:root {
  --font-size-base: 16px;
  --color-primary: #1976d2;
  --color-primary-dark: #0d47a1;
  --color-primary-accent: #1976d2;
  --color-primary-light: #42a5f5;
  --color-btn-career: #1976d2;
  --gradient-blue: linear-gradient(to bottom, #004a99 0%, #00aaff 100%);
  --gradient-blue-horizontal: linear-gradient(to right, #0044b2 0%, #00aaff 100%);
  --color-text: #222;
  --color-text-muted: #333;
  --color-text-light: #555;
  --color-text-white: #fff;
  --color-border: #e0e0e0;
  --color-border-light: #e0e9f5;
  --color-bg-gray: #f5f8fc;
  --color-bg-white: #fff;
  --header-height: 62px;
  --content-max-width: 1280px;
  --content-max-width-wide: 1440px;
  --font-family-base: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --transition-fast: 0.2s;
  --transition-normal: 0.35s;
  --transition-slow: 0.5s;
  --shadow-sm: 0 1px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   shared.css — 共通コンポーネント
   ======================================== */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  background: var(--color-bg-white);
  color: #111;
}
a { color: inherit; text-decoration: none; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  height: var(--header-height);
  display: flex;
  align-items: stretch;
  transition: background var(--transition-normal) ease, box-shadow var(--transition-normal) ease;
}
.header--scrolled {
  background: linear-gradient(to right, #fff 0%, #fff 55%, rgba(126, 202, 255, 0.15) 75%, rgba(25, 118, 210, 0.25) 100%);
  box-shadow: var(--shadow-sm);
}
/* サブページ用: スクロール時白背景 */
.header--subpage.header--scrolled {
  background: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}
.header__inner { display: flex; align-items: center; flex: 1; padding: 0 36px; }
.header__logo {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: auto;
  transition: color var(--transition-normal) ease;
  display: flex;
  align-items: center;
}
.header__logo img { height: 72px; width: auto; max-width: 340px; display: block; object-fit: contain; }
.header--scrolled .header__logo { color: var(--color-text); }
.header__nav { display: flex; align-items: center; gap: 32px; }
.header__nav a { font-size: var(--font-size-base); color: #fff; font-weight: 500; white-space: nowrap; transition: color var(--transition-normal) ease; }
.header__nav a:hover { opacity: 0.75; }
.header--scrolled .header__nav a { color: var(--color-text-muted); }
.header--scrolled .header__nav a:hover { opacity: 1; color: var(--color-primary-accent); }
.header__tabs { display: flex; align-items: stretch; flex-shrink: 0; height: 100%; margin-left: 32px; }
.header__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
  padding: 0 28px;
  font-size: var(--font-size-base);
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  transition: filter var(--transition-fast);
  letter-spacing: 0.03em;
}
.header__tab:hover { filter: brightness(1.12); }
.header__tab--recruit { background: var(--color-primary-accent); }
.header__tab--career { background: var(--color-primary-dark); }
@media (max-width: 768px) {

  .header__inner { padding: 0 16px; }
  .header__inner .header__nav { display: none; }
  .header > .header__tabs { display: none; }
  .header__logo img { height: 52px; max-width: 240px; }
}

/* ========================================
   Hero（サブページ共通）
   ======================================== */
.hero { position: relative; background: #fff; overflow: visible; }
.hero__img { display: block; width: 100%; height: auto; }
.hero__content { position: absolute; top: 40%; left: 80px; transform: translateY(-50%); z-index: 3; }
.hero__en { font-family: 'Barlow Semi Condensed', var(--font-en); font-size: 68px; font-weight: 300; color: #fff; letter-spacing: 0.04em; line-height: 1; }
.hero__ja { font-size: 15px; color: rgba(255,255,255,0.9); margin-top: 10px; letter-spacing: 0.15em; font-weight: 400; }
@media (max-width: 900px) { .hero__content { left: 24px; } .hero__en { font-size: 44px; } .hero__ja { font-size: 16px; } }
@media (max-width: 480px) { .hero__content { left: 16px; top: 35%; } .hero__en { font-size: 32px; } .hero__ja { font-size: 15px; margin-top: 8px; letter-spacing: 0.1em; } }

/* ========================================
   ハンバーガーメニュー・ドロワー（SP共通）
   ======================================== */
.header__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
  z-index: 1001;
  position: relative;
}
.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}
.header__hamburger span:nth-child(1) { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); }
.header__hamburger span:nth-child(2) { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.header__hamburger span:nth-child(3) { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); }
.header--scrolled .header__hamburger span,
.header.is-menu-open .header__hamburger span { background: #333; }
.header.is-menu-open .header__hamburger span:nth-child(1) { top: 50%; transform: translate(-50%, -50%) rotate(45deg); }
.header.is-menu-open .header__hamburger span:nth-child(2) { opacity: 0; }
.header.is-menu-open .header__hamburger span:nth-child(3) { bottom: auto; top: 50%; transform: translate(-50%, -50%) rotate(-45deg); }
@media (max-width: 768px) { .header__hamburger { display: flex; } }
.header__drawer {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 999;
  padding: 24px 20px 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.header.is-menu-open .header__drawer,
.header.is-open .header__drawer { display: flex; flex-direction: column; opacity: 1; visibility: visible; }
/* recruit等: ドロワーが header の兄弟要素の場合 */
.header.is-menu-open ~ .header__drawer,
.header.is-open ~ .header__drawer { display: block; opacity: 1; visibility: visible; pointer-events: auto; }
.header.is-menu-open ~ .header__drawer .header__drawer-inner,
.header.is-open ~ .header__drawer .header__drawer-inner { transform: translateX(0); }
.header__drawer .header__nav { display: flex; flex-direction: column; gap: 0; padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid #e0e0e0; }
.header__drawer .header__nav a { display: block; padding: 14px 0; font-size: var(--font-size-base); color: #333; }
.header__drawer .header__nav a:hover { color: var(--color-primary-accent); }
.header__drawer .header__tabs { flex-direction: column; gap: 12px; margin-left: 0; height: auto; }
.header__drawer .header__tab { display: flex; justify-content: center; padding: 16px 20px; font-size: 16px; min-height: 52px; border-radius: 4px; }
/* contact等: sp-nav（スライドパネル） */
.header.is-menu-open .header__sp-nav,
.header.is-open .header__sp-nav { transform: translateX(0); }
/* ハンバーガー span/bar 両対応 */
.header.is-menu-open .header__hamburger-bar:nth-child(1),
.header.is-open .header__hamburger-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header.is-menu-open .header__hamburger-bar:nth-child(2),
.header.is-open .header__hamburger-bar:nth-child(2) { opacity: 0; }
.header.is-menu-open .header__hamburger-bar:nth-child(3),
.header.is-open .header__hamburger-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* PICK UP 非表示 */
.fv .pickup,
.hero .pickup,
.pickup,
#pickup-bar {
  display: none !important;
}

.fv .pickup, .hero .pickup {
  position: absolute;
  bottom: 24px;
  right: 60px;
  z-index: 10;
  background: #fff;
  display: flex;
  align-items: center;
  width: 560px;
  min-height: 62px;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08), 0 2px 12px rgba(0, 0, 0, 0.08);
}
.fv .pickup__label, .hero .pickup__label {
  flex-shrink: 0;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-right: 2px solid var(--color-border-light);
  height: 100%;
  display: flex;
  align-items: center;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #004a99;
}
.fv .pickup__body, .hero .pickup__body { flex: 1; padding: 10px 16px; overflow: hidden; }
.fv .pickup__date, .hero .pickup__date { font-size: 12px; color: #888; margin-bottom: 2px; letter-spacing: 0.05em; }
.fv .pickup__title, .hero .pickup__title { font-size: 14px; color: #1565c0; text-decoration: underline; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; cursor: pointer; display: block; }
.fv .pickup__title:hover, .hero .pickup__title:hover { color: var(--color-primary-dark); }
.fv .pickup__arrows, .hero .pickup__arrows { flex-shrink: 0; display: flex; gap: 2px; padding: 0 14px; }
.fv .pickup__arrow, .hero .pickup__arrow {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: #555;
  transition: background 0.15s, color 0.15s;
  user-select: none;
}
.fv .pickup__arrow:hover, .hero .pickup__arrow:hover { background: var(--color-primary-accent); color: #fff; border-color: var(--color-primary-accent); }
@media (max-width: 768px) {

  .fv .pickup, .hero .pickup { width: calc(100% - 24px); right: 12px; left: 12px; flex-wrap: wrap; min-height: auto; padding: 12px 0; }
  .fv .pickup__label, .hero .pickup__label { padding: 0 12px; font-size: 12px; width: 100%; border-right: none; border-bottom: 1px solid var(--color-border-light); }
  .fv .pickup__body, .hero .pickup__body { padding: 8px 12px; width: 100%; }
  .fv .pickup__arrows, .hero .pickup__arrows { padding: 0 12px; margin: 0 auto; }
  .fv .pickup__title, .hero .pickup__title { white-space: normal; }
}

.btn--gradient-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 50px;
  background: transparent;
  text-decoration: none;
  position: relative;
  z-index: 1;
  color: #004a99;
  transition: color 0.3s ease;
  border: none;
}
.btn--gradient-outline::before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -2; background: var(--gradient-blue); }
.btn--gradient-outline::after { content: ""; position: absolute; top: 3px; right: 3px; bottom: 3px; left: 3px; z-index: -1; background: #fff; transition: opacity 0.3s; }
.btn--gradient-outline span { font-family: var(--font-en); font-weight: 700; font-size: 16px; letter-spacing: 0.05em; color: inherit; }
.btn--gradient-outline:hover { color: #fff; }
.btn--gradient-outline:hover::after { opacity: 0; }
.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 50px;
  position: relative;
  color: var(--color-btn-career);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  background: transparent;
  border: none;
  transition: color 0.3s;
  cursor: pointer;
  z-index: 1;
}
.btn--outline::before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -2; background: linear-gradient(to bottom, var(--color-btn-career) 0%, #00aaff 100%); }
.btn--outline::after { content: ""; position: absolute; top: 3px; right: 3px; bottom: 3px; left: 3px; z-index: -1; background: #fff; transition: opacity 0.3s; }
.btn--outline:hover { background-color: transparent; color: #fff; }
.btn--outline:hover::after { opacity: 0; }

.footer { width: 100%; background-color: #061e31; color: #fff; padding: 80px 4vw 20px; font-size: 16px; }
.footer__inner { max-width: var(--content-max-width); margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 60px; margin-bottom: 30px; }
.footer__info { width: 40%; }
.footer__logo { font-size: 32px; font-weight: 700; font-family: var(--font-en); margin-bottom: 15px; letter-spacing: 0.05em; }
.footer__logo img { height: 72px; width: auto; max-width: 350px; display: block; object-fit: contain; }
.footer__company-name { font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer__address, .footer__contact { line-height: 1.6; opacity: 0.8; }
.footer__address { margin-bottom: 4px; }
.footer__contact { margin-top: 0; }
.footer__contact p { margin: 0 0 2px 0; }
.footer__contact p:last-child { margin-bottom: 0; }
.footer__sitemap { width: 50%; display: flex; justify-content: space-between; }
.footer__nav-col { width: 30%; }
.footer__nav-list { list-style: none; margin: 0; padding: 0; }
.footer__nav-list li { margin-bottom: 15px; }
.footer__nav-list a { font-weight: 500; opacity: 0.9; transition: opacity 0.3s; }
.footer__nav-list a:hover { opacity: 0.6; }
.footer__copyright { text-align: center; opacity: 0.5; font-size: 12px; font-family: var(--font-en); letter-spacing: 0.05em; }
@media (max-width: 768px) {

  .footer { padding-top: 60px; }
  .footer__inner { flex-direction: column; gap: 40px; }
  .footer__info { width: 100%; }
  .footer__logo img { height: 52px; max-width: 240px; }
  .footer__sitemap { width: 100%; flex-direction: column; gap: 20px; }
  .footer__nav-col { width: 100%; }
  .footer__nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}

/* ========================================
   index.css — TOPページ固有スタイル
   ======================================== */
.fv {
  min-height: calc(100vh - var(--header-height));
  padding-top: var(--header-height);
  background: #111;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.fv__slider { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
@keyframes fv-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.fv__track { display: flex; height: 100%; width: max-content; animation: fv-scroll 84s linear infinite; }
.fv__segment { flex-shrink: 0; width: 55vw; height: 100%; overflow: hidden; clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%); margin-right: -80px; }
@media (min-width: 769px) {
  .fv__segment { width: 34vw; margin-right: -80px; }
}
.fv__segment img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.fv__img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; z-index: 0; }
.fv__inner { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 60px 80px 40px; max-width: var(--content-max-width-wide); position: relative; z-index: 2; }
.fv__headline { margin: 0; font-size: clamp(42px, 6.5vw, 76px); font-weight: 700; color: #fff; letter-spacing: 0.05em; line-height: 1.35; text-shadow: 0 0 2px rgba(0,102,204,0.9), 0 0 4px rgba(0,102,204,0.8), 0 2px 4px rgba(0,0,0,0.3); font-family: 'Zen Antique', 'Hiragino Mincho ProN', 'Yu Mincho', serif; }
.fv__line { display: block; }
.fv__subtitle { margin: 20px 0 0; font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.9); letter-spacing: 0.15em; text-transform: uppercase; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
@media (max-width: 768px) {

  .fv { min-height: 66vh; height: 66vh; }
  .fv__inner { padding: 32px 20px 0; }
  .fv__headline { font-size: 36px; line-height: 1.45; letter-spacing: 0.08em; }
  .fv__subtitle { font-size: 12px; letter-spacing: 0.12em; margin-top: 12px; }
}

.sp-br { display: none; }
.message { width: 100%; padding: 120px 0; background-color: #fff; overflow: hidden; }
.message__inner { max-width: var(--content-max-width); width: 100%; margin: 0 auto; padding: 0 4vw; display: flex; justify-content: center; align-items: center; }
.message__text-area { width: 100%; max-width: 1200px; text-align: center; }
.message__text { font-size: 22px; line-height: 2.2; color: #444; margin-bottom: 48px; letter-spacing: 0.05em; font-feature-settings: "palt"; font-weight: 400; }
.message__text strong { font-size: 1.15em; font-weight: 700; color: #0d47a1; }
.message__text:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .sp-br { display: block; }
  .message { padding: 24px 0; }
  .message__inner { padding: 0 20px; }
  .message__text-area { width: 100%; max-width: 100%; }
  .message__text { font-size: 12px; line-height: 1.85; text-align: center; letter-spacing: 0.02em; margin-bottom: 22px; color: #333; }
  .message__text strong { font-size: 1.2em; font-weight: 700; color: #0d47a1; }
  .message__text .message__nowrap { white-space: nowrap; }
  .message__text:last-child { margin-bottom: 0; }
}

.business { width: 100%; background-color: #fff; overflow: hidden; }
.business__inner { width: 100%; max-width: 100%; padding: 0; display: flex; align-items: stretch; }
.business__image-area { width: 40%; position: relative; flex-shrink: 0; overflow: hidden; }
.business__image-area img { width: 100%; height: 100%; object-fit: cover; display: block; }
.business__content-wrapper { width: 60%; display: flex; justify-content: center; align-items: center; background-color: #fff; }
.business__content-area { width: 100%; max-width: 640px; padding: 80px 4vw 80px 40px; }
.business__block { padding: 40px 0 24px; border-bottom: 4px solid var(--color-border); }
.business__block:first-child { padding-top: 0; }
.business__block:last-child { padding-bottom: 24px; }
.business__title { font-size: 32px; font-weight: 700; margin-bottom: 20px; line-height: 1.4; font-feature-settings: "palt"; }
.business__subtitle { font-size: 16px; font-weight: 700; margin-bottom: 15px; color: var(--color-text); }
.business__desc { font-size: 16px; line-height: 1.8; margin-bottom: 30px; color: var(--color-text-light); }
.business__btn-wrapper { text-align: right; }
@media (max-width: 768px) {
  .business__inner { flex-direction: column; padding: 0 20px; }
  .business__image-area { width: 100%; height: 260px; }
  .business__content-wrapper { width: 100%; }
  .business__content-area { padding: 48px 4vw 48px; }
  .business__block { padding: 32px 0 20px; }
  .business__block:first-child { padding-top: 0; }
  .business__title { font-size: 22px; line-height: 1.35; letter-spacing: -0.02em; }
  .business__block:first-child .business__title { font-size: 20px; letter-spacing: -0.03em; }
  .business__subtitle { font-size: var(--font-size-base); margin-bottom: 12px; }
  .business__desc { font-size: var(--font-size-base); line-height: 1.8; margin-bottom: 24px; }
  .business__btn-wrapper { text-align: center; margin-top: 16px; }
  .btn--gradient-outline { width: 100%; max-width: 240px; margin: 0 auto; }
}

.column { width: 100%; padding: 100px 4vw 0; background-color: #fff; overflow: hidden; }
.column__header { margin-bottom: 30px; text-align: center; }
.column__label { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-en); font-weight: 700; font-size: 19px; letter-spacing: 0.1em; margin-bottom: 10px; background: var(--gradient-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: #004a99; }
.icon-feather { width: 24px; height: 24px; fill: currentColor; }
.column__title { font-size: 32px; font-weight: 700; color: var(--color-text); letter-spacing: 0.05em; margin: 0; }
.column__slider { display: flex; align-items: center; justify-content: center; gap: 20px; width: 100%; margin-bottom: 15px; padding: 20px 0; position: relative; }
.column__arrow { width: 48px; height: 48px; border: 1px solid #ddd; background: #f5f5f5; border-radius: 8px; cursor: pointer; flex-shrink: 0; transition: background 0.2s, border-color 0.2s; position: relative; }
.column__arrow:hover { background: #ebebeb; border-color: #ccc; }
.column__arrow::before { content: ''; position: absolute; top: 50%; left: 50%; width: 10px; height: 10px; border-left: 2px solid #666; border-bottom: 2px solid #666; transition: border-color 0.2s; }
.column__arrow:hover::before { border-color: #333; }
.column__arrow--prev::before { transform: translate(-30%, -50%) rotate(45deg); margin-left: 2px; }
.column__arrow--next::before { transform: translate(-70%, -50%) rotate(-135deg); margin-left: -2px; }
.column__btn { text-align: center; }
.column__viewport { overflow: hidden; display: flex; justify-content: center; flex: 1; max-width: 1200px; }
.column__track { display: flex; align-items: center; justify-content: center; gap: 24px; }
.column__card { position: relative; flex-shrink: 0; background-color: #000; overflow: hidden; text-decoration: none; display: block; transition: width 0.4s ease, height 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease; }
.column__card--prev,
.column__card--next { width: 320px; height: 320px; opacity: 0.9; }
.column__card--center { width: 480px; height: 480px; z-index: 2; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25); opacity: 1; }
.column__card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; transition: transform 0.5s; display: block; }
.column__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.3); display: flex; flex-direction: column; justify-content: center; align-items: center; }
.column__sample-text { font-family: var(--font-en); font-size: 24px; color: rgba(255, 255, 255, 0.8); letter-spacing: 0.1em; font-weight: 500; }
.column__card-title { position: absolute; bottom: 16px; left: 30px; width: calc(100% - 60px); text-align: left; color: #fff; font-size: 16px; line-height: 1.6; font-weight: 500; margin: 0; }
.column__card:hover img { transform: scale(1.1); }
@media (max-width: 768px) {

  .column { padding: 0 4vw 24px; }
  .column__slider { flex-direction: column; gap: 20px; }
  .column__arrow { display: none; }
  .column__viewport { width: 100%; max-width: none; overflow: visible; }
  .column__track { flex-direction: column; align-items: center; gap: 20px; }
  .column__card--prev,
  .column__card--center { width: 100%; max-width: 340px; height: 280px; opacity: 1; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); }
  .column__card--next { display: none; }
  .column__title { font-size: 28px; }
}

/* エントリーバナーセクション */
.recruit { width: 100%; padding: 0 0 20px; background-color: #fff; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; }
.recruit__inner { max-width: 100%; margin: 0; }
.recruit__box { position: relative; overflow: hidden; min-height: 946px; padding: 140px 0 180px 24vw; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 48px; background-color: #0066cc; background-image: url(../img/top/entrybanner_TOP.png); background-repeat: no-repeat; background-position: center; background-size: cover; clip-path: polygon(0 31%, 100% 18%, 100% 65%, 0 78%); }
.recruit__left { flex: 0 0 26%; min-width: 200px; position: relative; z-index: 1; text-align: center; margin-top: -170px; }
.recruit__label { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 14px; font-weight: 600; letter-spacing: 0.15em; margin-bottom: 20px; color: #fff; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35); }
.icon-recruit { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
.recruit__title { font-size: 40px; font-weight: 700; margin: 0; letter-spacing: 0.05em; color: #fff; text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4); line-height: 1.2; }
.recruit__right { flex: 1 1 60%; min-width: 280px; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.recruit__sub { font-size: 24px; font-weight: 700; margin: 0 0 24px; letter-spacing: 0.02em; color: #fff; text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4); line-height: 1.5; width: 100%; }
.recruit__desc { font-size: var(--font-size-base); line-height: 2; margin: 0 0 32px; color: #fff; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35); letter-spacing: 0.02em; width: 100%; }
.recruit__btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-start; width: 100%; }
.recruit__btn { display: inline-flex; align-items: center; justify-content: center; padding: 18px 36px; background: #fff; color: #0066cc; font-weight: 600; font-size: 16px; text-decoration: none; border-radius: 0; transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12); white-space: nowrap; min-width: max-content; }
.recruit__btn:hover { background: #f0f7ff; color: #004d99; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18); }
@media (max-width: 768px) {

  .recruit { padding: 0; }
  .recruit__inner { overflow: visible; }
  .recruit__box { flex-direction: column; padding: 96px 20px 80px; gap: 24px; min-height: auto; clip-path: polygon(0 8%, 100% 3%, 100% 88%, 0 95%); align-items: center; justify-content: flex-start; width: 100%; box-sizing: border-box; }
  .recruit__left, .recruit__right { flex: none; width: 100%; text-align: center; margin-top: 0; }
  .recruit__label { text-align: center; }
  .recruit__title { font-size: 32px; }
  .recruit__sub { font-size: 20px; text-align: center; }
  .recruit__desc { text-align: center; font-size: 14px; line-height: 1.9; }
  .recruit__btns { justify-content: center; flex-direction: column; flex-wrap: nowrap; align-items: center; gap: 12px; }
  .recruit__btn { flex: 0 0 auto; font-size: 14px; padding: 14px 22px; width: 100%; max-width: 280px; text-align: center; }
}

.news { width: 100%; padding: 100px 0; background-color: #fff; text-align: center; overflow: hidden; }
.news__header { margin-bottom: 50px; }
.news__label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-en); font-weight: 700; font-size: 19px; letter-spacing: 0.1em; margin-bottom: 10px; background: var(--gradient-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: #004a99; }
.icon-star { width: 20px; height: 20px; fill: currentColor; }
.news__title { font-size: 32px; font-weight: 700; color: var(--color-text); letter-spacing: 0.05em; }
.news__carousel-wrapper { position: relative; max-width: 1360px; margin: 0 auto; padding: 0 60px; }
.news__slider { display: flex; gap: 30px; padding: 10px 0 50px; width: 100%; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; }
.news__slider::-webkit-scrollbar { display: none; }
.news__card { flex-shrink: 0; width: 320px; text-align: left; transition: transform 0.3s; cursor: pointer; scroll-snap-align: start; }
.news__card:hover { transform: translateY(-5px); }
.news__img { width: 100%; height: 200px; position: relative; overflow: hidden; margin-bottom: 15px; }
.news__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news__card:hover .news__img img { transform: scale(1.1); }
.news__img-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: rgba(255, 255, 255, 0.8); font-family: var(--font-en); font-size: 24px; letter-spacing: 0.1em; }
.news__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.news__tag { background-color: var(--color-btn-career); color: #fff; font-size: 16px; font-weight: 700; padding: 4px 12px; font-family: var(--font-en); }
.news__date { font-family: var(--font-en); color: var(--color-btn-career); font-weight: 700; font-size: 16px; }
.news__card-title { font-size: 16px; line-height: 1.6; font-weight: 500; color: var(--color-text); }
.carousel-arrow { position: absolute; top: 40%; transform: translateY(-50%); width: 50px; height: 50px; border: 1px solid #ddd; border-radius: 50%; background-color: #fff; cursor: pointer; z-index: 10; transition: all 0.3s; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); }
.carousel-arrow:hover { background-color: var(--color-btn-career); border-color: var(--color-btn-career); }
.carousel-arrow::after { content: ""; display: block; width: 10px; height: 10px; border-top: 2px solid #333; border-right: 2px solid #333; transition: border-color 0.3s; }
.carousel-arrow:hover::after { border-color: #fff; }
.carousel-arrow--prev { left: 0; }
.carousel-arrow--prev::after { transform: rotate(-135deg); margin-left: 4px; }
.carousel-arrow--next { right: 0; }
.carousel-arrow--next::after { transform: rotate(45deg); margin-right: 4px; }
.news__btn { margin-top: 20px; }
@media (max-width: 768px) {

  .news { padding: 60px 0; }
  .news__carousel-wrapper { padding: 0; max-width: 100%; }
  .news__slider { padding-left: calc(50% - 130px); padding-right: calc(50% - 130px); gap: 20px; scroll-snap-type: x mandatory; }
  .news__card { width: 260px; scroll-snap-align: center; }
  .news__title { font-size: 28px; }
  .carousel-arrow { display: none; }
}

.entry { width: 100%; padding: 100px 4vw; background: url("../img/common/entry_newguraduate.png") no-repeat center / cover; text-align: center; color: #fff; position: relative; }
.entry--top { background-image: url("../img/common/entry_newguraduate.png"); }
.entry--subpage { background-image: url("../img/common/entry_newguraduate.png"); }
.entry::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 50, 100, 0.4); z-index: 1; }
.entry__inner { position: relative; z-index: 2; max-width: var(--content-max-width); margin: 0 auto; }
.entry__title { font-family: var(--font-en); font-size: 40px; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 60px; }
.entry__links { display: flex; justify-content: center; gap: 30px; }
.entry__card { display: flex; flex-direction: column; justify-content: center; align-items: center; width: 48%; max-width: 600px; height: 180px; background-color: #fff; border-radius: 6px; padding: 0 40px; text-decoration: none; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.entry__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.entry__label { font-family: var(--font-en); font-weight: 700; font-size: 18px; letter-spacing: 0.1em; margin-bottom: 0; background: var(--gradient-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: #004a99; display: inline-block; }
.entry__card-title { font-size: 32px; font-weight: 700; letter-spacing: 0.05em; background: var(--gradient-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: #004a99; display: inline-block; }
.entry__arrow { position: absolute; right: 40px; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; fill: #004a99; transition: transform 0.3s; }
.entry__card:hover .entry__arrow { transform: translate(5px, -50%); }
@media (max-width: 768px) {

  .entry { padding: 60px 4vw; }
  .entry__title { margin-bottom: 40px; font-size: 32px; }
  .entry__links { flex-direction: column; align-items: center; gap: 20px; }
  .entry__card { width: 100%; max-width: none; height: 140px; padding: 0 20px; }
  .entry__card-title { font-size: 28px; }
  .entry__arrow { right: 20px; width: 22px; height: 22px; }
}
