/* picture要素をレイアウトから透過させる */
picture {
  display: contents;
}

/* ========================================
   CSS Variables
   ======================================== */
:root {
  /* --- Color Palette --- */
  --color-primary:      #0B1B2B; /* ダークネイビー：ヘッダー・フッター・濃色背景 */
  --color-accent:       #1464F6; /* アクセントブルー：CTAボタン・リンク・ハイライト */
  --color-accent-dark:  #0F4FCC; /* アクセントブルー（ホバー時） */
  --color-text:         #333333; /* ベーステキスト */
  --color-text-light:   #FFFFFF; /* ダーク背景上のテキスト */
  --color-text-muted:   #888888; /* 補足・キャプションテキスト */
  --color-bg:           #FFFFFF; /* ページ背景 */
  --color-bg-light:     #F5F7FA; /* ライトセクション背景 */
  --color-border:       #E0E0E0; /* ボーダー・区切り線 */
  --color-overlay:      rgba(11, 27, 43, 0.85); /* オーバーレイ */

  /* --- Typography --- */
  --font-base: 'Noto Sans JP', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.8;

  /* --- Layout --- */
  --header-height: 72px;
  --container-width: 1200px;
  --container-padding: clamp(16px, 4vw, 40px);
}

/* ========================================
   Base Styles
   ======================================== */
body {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ヘッダー固定時のスクロール余白 */
body.nav-open {
  overflow: hidden;
}

.l-container {
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-bg);
  z-index: 100;
  transition: box-shadow 0.3s ease, transform 0.35s ease;
}

.header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header.is-hidden {
  transform: translateY(-100%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: none;
  padding-inline: 5%;
}

/* ロゴ */
.header__logo {
  flex-shrink: 0;
  line-height: 1;
}

.header__logo a {
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 150px;
  height: auto;
  transition: opacity 0.2s;
}

.header__logo a:hover img {
  opacity: 0.8;
}

/* グローバルナビゲーション */
.header__nav {
  display: flex;
  align-items: center;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__nav-item a {
  display: block;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  transition: color 0.2s;
  white-space: nowrap;
}

.header__nav-item a:hover {
  color: var(--color-accent);
}

/* お問い合わせボタン */
.header__nav-item--contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-light);
  background-color: var(--color-primary);
  border-radius: 2px;
  padding: 10px 20px;
  transition: background-color 0.2s;
}

.header__contact-icon {
  flex-shrink: 0;
}

.header__nav-logo {
  display: none;
}

.header__nav-item--contact a:hover {
  background-color: #1a3255;
  color: var(--color-text-light);
}

/* ハンバーガーボタン（スマホ用） */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
  z-index: 110;
  flex-shrink: 0;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* ハンバーガー → ×（アクティブ時） */
.header__hamburger.is-active span {
  background-color: var(--color-text-light);
}
.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ========================================
   Footer
   ======================================== */
.footer .l-container {
  max-width: none;
  padding-inline: 5%;
}

.footer {
  /* ドットパターン + ラジアルグラデーションで奥行きを表現 */
  background-color: #0A1828;
  background-image:
    radial-gradient(ellipse 75% 70% at 68% 38%, rgba(20, 80, 210, 0.22) 0%, transparent 65%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Ccircle cx='10' cy='10' r='0.8' fill='rgba(255%2C255%2C255%2C0.05)'/%3E%3C/svg%3E");
  background-size: auto, 20px 20px;
  color: var(--color-text-light);
}

/* ---- メインエリア ---- */
.footer__main {
  padding-block: 56px 52px;
}

.footer__main-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

/* 左：会社情報 */
.footer__info {
  flex: 1 1 auto;
  max-width: 400px;
}

.footer__logo {
  margin-bottom: 10px;
  line-height: 1;
}

.footer__logo img {
  width: 160px;
  height: auto;
}

.footer__company-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.footer__address {
  font-size: 13px;
  font-style: normal;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

/* SNSアイコン */
.footer__sns {
  display: flex;
  gap: 10px;
}

.footer__sns-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--color-text-light);
  transition: border-color 0.2s, background-color 0.2s;
}

.footer__sns-item a:hover {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
}

.footer__sns-item svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* 右：CTAボックス */
.footer__cta {
  flex: 0 0 480px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* 2層の半透明レイヤー：白みレイヤー + 青みネイビーレイヤー */
  background:
    linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)),
    linear-gradient(rgba(20, 60, 140, 0.30), rgba(20, 60, 140, 0.30));
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 36px 36px;
}

.footer__cta-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.footer__cta-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  line-height: 1.8;
  white-space: nowrap;
  margin-bottom: 4px;
}

.footer__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  /* ボタンにも薄い半透明レイヤーを重ねて区別 */
  background:
    linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)),
    linear-gradient(rgba(30, 65, 110, 0.12), rgba(30, 65, 110, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  transition: background 0.25s, border-color 0.25s;
}

.footer__cta-btn:hover {
  background:
    linear-gradient(rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.10)),
    linear-gradient(rgba(30, 65, 110, 0.20), rgba(30, 65, 110, 0.20));
  border-color: var(--color-text-light);
}

.footer__cta-icon {
  flex-shrink: 0;
}

/* ---- ナビゲーションバー ---- */
.footer__nav-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 22px;
}

.footer__nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.footer__nav-item a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  padding-inline: 4px;
  white-space: nowrap;
  transition: color 0.2s;
}

.footer__nav-item a:hover {
  color: var(--color-text-light);
}

.footer__nav-sep {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  padding-inline: 14px;
  user-select: none;
}

/* ---- 最下部バー ---- */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 16px;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer__bottom-nav a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  padding-inline: 4px;
  transition: color 0.2s;
}

.footer__bottom-nav a:hover {
  color: var(--color-text-light);
}

.footer__bottom-sep {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  padding-inline: 12px;
  user-select: none;
}

.footer__copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

/* ========================================
   News Ticker
   ======================================== */
.news-ticker {
  background-color: var(--color-primary);
}

.news-ticker__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-block: 14px;
  padding-inline: 5%;
  color: var(--color-text-light);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.news-ticker__inner:hover {
  background-color: #1a3255;
}

.news-ticker__label {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  background-color: rgba(20, 100, 246, 0.15);
  border: 1px solid rgba(20, 100, 246, 0.4);
  padding: 3px 12px;
  margin-right: 24px;
  white-space: nowrap;
}

.news-ticker__date {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  margin-right: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.news-ticker__title {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.03em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news-ticker__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease, transform 0.2s ease;
}

.news-ticker__inner:hover .news-ticker__arrow {
  color: var(--color-text-light);
  transform: translateX(4px);
}

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 560px;
  background-color: var(--color-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* テキスト可読性：左→右へのグラデーションオーバーレイ */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #060d18 0%,
    #060d18 24%,
    rgba(6, 13, 24, 0.90) 36%,
    rgba(6, 13, 24, 0.45) 48%,
    rgba(6, 13, 24, 0.10) 58%,
    transparent 66%
  );
  z-index: 2;
  pointer-events: none;
}

/* 右側：斜めクリップ画像 */
.hero__image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* 左側：テキストコンテンツ */
.hero__inner {
  position: relative;
  z-index: 3;
  padding-top: var(--header-height);
  width: 100%;
  /* l-container の中央寄せを上書きして左寄せに */
  max-width: none;
  margin-inline: 0;
  padding-inline-start: clamp(24px, 5vw, 72px);
}

.hero__content {
  max-width: 600px;
}

.hero__heading {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.3;
  color: var(--color-text-light);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.85), 0 0 48px rgba(0, 0, 0, 0.55);
}

.hero__heading-line1,
.hero__heading-line2 {
  display: block;
}

.hero__heading-line2 {
  white-space: nowrap;
}

.hero__slash {
  color: var(--color-accent);
  margin-right: 4px;
}

.hero__accent {
  color: var(--color-accent);
  font-size: 1.25em;
}

.hero__en {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.14em;
  margin-bottom: 28px;
}

.hero__desc {
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  color: rgba(255, 255, 255, 0.75);
}

/* 右下コーナー三角形（スクロールインジケーター含む） */
.hero__corner-triangle {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90px;
  height: 220px;
  background: #ffffff;
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
  z-index: 4;
}

/* スクロールインジケーター（三角形内に配置） */
.hero__scroll {
  position: absolute;
  bottom: 20px;
  right: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero__scroll-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  position: relative;
  display: block;
  width: 1px;
  height: 56px;
  background: rgba(11, 27, 43, 0.18);
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, var(--color-primary), transparent);
  transform: translateY(-28px);
  animation: scrollLineFlow 1.8s ease-in-out infinite;
}

@keyframes scrollLineFlow {
  0%   { transform: translateY(-28px); }
  100% { transform: translateY(56px); }
}

/* 近未来的な菱形装飾：見出し下・画像境界付近 */
.hero__deco {
  position: absolute;
  pointer-events: none;
}

.hero__deco--diamond {
  width: 240px;
  height: 240px;
  top: 30%;
  left: 40%;
  transform: rotate(45deg);
  background: rgba(6, 14, 28, 0.62);
  border: 1px solid rgba(20, 100, 246, 0.24);
  box-shadow:
    0 0 48px rgba(20, 100, 246, 0.12),
    inset 0 0 28px rgba(20, 100, 246, 0.06);
  z-index: 0;
}

/* 流線形アニメーション */
.hero__streams {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.hero__stream {
  position: absolute;
  top: -150px;
  width: 1px;
  height: clamp(140px, 18vh, 240px);
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(100, 170, 255, 0.55),
    rgba(100, 170, 255, 0.3),
    transparent
  );
  opacity: 0;
  animation: heroStream linear infinite;
}

/* 上部から左斜め下へ流れる */
@keyframes heroStream {
  0%   { transform: rotate(22deg) translateY(0);      opacity: 0; }
  12%  { opacity: 0.65; }
  75%  { opacity: 0.25; }
  100% { transform: rotate(22deg) translateY(140vh);  opacity: 0; }
}

.hero__stream:nth-child(1) { left: 10%; animation-duration: 3.8s; animation-delay:  0.0s; }
.hero__stream:nth-child(2) { left: 22%; animation-duration: 4.5s; animation-delay:  1.2s; }
.hero__stream:nth-child(3) { left: 34%; animation-duration: 3.2s; animation-delay:  2.5s; }
.hero__stream:nth-child(4) { left: 16%; animation-duration: 5.0s; animation-delay:  0.6s; }
.hero__stream:nth-child(5) { left: 28%; animation-duration: 4.2s; animation-delay:  1.8s; }
.hero__stream:nth-child(6) { left:  6%; animation-duration: 3.6s; animation-delay:  3.2s; }

/* ========================================
   Service
   ======================================== */
.service {
  position: relative;
  background: #f5f5f9;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 60px;
  min-height: 640px;
}

/* ヒーローと同じ左寄せに統一・刈り込み効果のベース */
.service .l-container {
  position: relative;
  z-index: 2;
  max-width: none;
  margin-inline: 0;
  padding-inline-start: clamp(24px, 5vw, 72px);
  padding-inline-end: 0;
}

.service__header {
  position: relative;
  margin-bottom: 40px;
  max-width: 660px;
}

.service__label {
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 900;
  color: #e0e5f0;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: -36px;
  position: relative;
  z-index: 0;
}

.service__heading {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.service__accent {
  color: var(--color-accent);
}

.service__cards {
  display: flex;
  max-width: 780px;
  background: #f5f5f9;
}

.service__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 20px 28px;
  border-right: 1px solid #e0e5f0;
}

.service__card:last-child {
  border-right: none;
}

.service__card-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
}

.service__card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  white-space: nowrap;
}

.service__card-desc {
  font-size: 12px;
  line-height: 1.9;
  color: var(--color-text-muted);
}

/* 右側：平行四辺形画像群（右端を見切れさせ、左端を画面中央付近に配置） */
.service__images {
  position: absolute;
  right: -68px;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.service__img {
  flex-shrink: 0;
}

.service__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* offset/height = 0.15 で全画像の角度を統一 */
.service__img--lg {
  width: 360px;
  height: 600px;
  clip-path: polygon(90px 0%, 100% 0%, calc(100% - 90px) 100%, 0% 100%);
}

.service__img--sm {
  width: 290px;
  height: 480px;
  clip-path: polygon(72px 0%, 100% 0%, calc(100% - 72px) 100%, 0% 100%);
  margin-left: -70px;
}

/* gap = margin + offset: lg→sm: -70+90=20px, sm→lg: -52+72=20px */
.service__img--sm + .service__img--lg {
  margin-left: -52px;
}

/* ========================================
   PAGE NAVIGATION
   ======================================== */
.page-navi {
  background: #f5f5f9;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-navi .l-container {
  max-width: none;
  padding-inline: 5%;
}

.page-navi__header {
  margin-bottom: 40px;
}

.page-navi__label {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0;
}

.page-navi__label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #c8cdd8;
  margin-left: 24px;
}

.page-navi__label-accent {
  color: var(--color-accent);
  margin-left: 0.3em;
}

.page-navi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.page-navi__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 56px;
  aspect-ratio: 4 / 3;
  text-decoration: none;
  overflow: hidden;
  color: var(--color-text-light);
}

.page-navi__card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.page-navi__card:hover .page-navi__card-bg {
  transform: scale(1.1);
}

.page-navi__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 27, 43, 0.62);
  transition: background 0.3s ease;
}

.page-navi__card:hover::after {
  background: rgba(11, 27, 43, 0.45);
}

.page-navi__num {
  position: relative;
  z-index: 1;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
  font-style: italic;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.page-navi__title {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.page-navi__desc {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  opacity: 0.85;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.page-navi__arrow {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  overflow: hidden;
  font-size: 0;
  transition: border-color 0.3s ease;
}

.page-navi__arrow::before,
.page-navi__arrow::after {
  content: '→';
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.35s ease;
}

.page-navi__arrow::before {
  transform: translate(-50%, -50%);
}

.page-navi__arrow::after {
  transform: translate(calc(-50% - 44px), -50%);
}

.page-navi__card:hover .page-navi__arrow {
  border-color: rgba(255, 255, 255, 1);
}

.page-navi__card:hover .page-navi__arrow::before {
  transform: translate(calc(-50% + 44px), -50%);
}

.page-navi__card:hover .page-navi__arrow::after {
  transform: translate(-50%, -50%);
}

/* ========================================
   NUMBERS
   ======================================== */
.numbers {
  background: #f5f5f9;
  padding-top: 72px;
  padding-bottom: 80px;
}

.numbers .l-container {
  max-width: none;
  padding-inline: 5%;
}

.numbers__header {
  margin-bottom: 48px;
}

.numbers__label {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  color: #e0e5f0;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: -28px;
  position: relative;
  z-index: 0;
}

.numbers__heading {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.numbers__accent {
  color: var(--color-accent);
  font-style: normal;
}

.numbers__cards {
  display: flex;
}

.numbers__card {
  flex: 1;
  padding: 28px 32px;
  border-right: 1px solid #d8dde8;
  display: flex;
  flex-direction: column;
}

.numbers__card:last-child {
  border-right: none;
}

.numbers__card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.numbers__card-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.numbers__card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.numbers__card-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.numbers__card-num {
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.numbers__card-unit {
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 700;
  color: var(--color-primary);
}

.numbers__card-note {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: auto;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  position: relative;
  height: clamp(300px, 28vw, 420px);
  overflow: hidden;
  background: #fff;
}

.cta-banner__img {
  position: absolute;
  top: 0;
  height: 100%;
}

.cta-banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-banner__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 27, 43, 0.60);
}

/* 三連平行四辺形：白い4pxの対角ラインが境界に現れる */
.cta-banner__img--1 {
  left: 0;
  width: calc(33.33% + 80px);
  clip-path: polygon(0 0, 100% 0, calc(100% - 80px) 100%, 0 100%);
}

.cta-banner__img--2 {
  left: calc(33.33% + 4px);
  width: calc(33.34% - 8px);
  clip-path: polygon(80px 0, 100% 0, calc(100% - 80px) 100%, 0 100%);
}

.cta-banner__img--3 {
  right: 0;
  width: calc(33.33% + 80px);
  clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
}

.cta-banner__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-light);
  z-index: 2;
  padding-inline: var(--container-padding);
}

.cta-banner__title {
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 24px rgba(0, 0, 0, 0.6);
}

.cta-banner__desc {
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 500;
  margin-bottom: 28px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 2px 16px rgba(0, 0, 0, 0.5);
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--color-accent);
  color: var(--color-text-light);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 52px;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: background 0.2s ease;
}

.cta-banner__btn:hover {
  background: var(--color-accent-dark);
}

.cta-banner__btn-arrow {
  font-size: 18px;
}

/* ========================================
   About Hero
   ======================================== */
.about-hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 560px;
  background-color: var(--color-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #060d18 0%,
    #060d18 22%,
    rgba(6, 13, 24, 0.92) 34%,
    rgba(6, 13, 24, 0.50) 46%,
    rgba(6, 13, 24, 0.12) 56%,
    transparent 65%
  );
  z-index: 2;
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
  z-index: 3;
  padding-top: var(--header-height);
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline-start: clamp(24px, 5vw, 72px);
}

.about-hero__content {
  max-width: none;
}

.about-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.50);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.about-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.50);
  transition: color 0.2s;
}

.about-hero__breadcrumb a:hover {
  color: var(--color-text-light);
}

.about-hero__breadcrumb-sep {
  color: rgba(255, 255, 255, 0.28);
}

.about-hero__heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  white-space: nowrap;
}

.about-hero__slash {
  color: var(--color-accent);
  margin-right: 4px;
  font-style: normal;
}

.about-hero__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  margin-bottom: 30px;
}

.about-hero__desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.75);
}

/* 右側：画像グリッド */
.about-hero__images {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  display: grid;
  grid-template-columns: 56fr 44fr;
  grid-template-rows: 57fr 21.5fr 21.5fr;
  row-gap: 3px;
  column-gap: 0;
  background: var(--color-primary);
  clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.about-hero__img {
  overflow: hidden;
}

.about-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 上段：全幅 */
.about-hero__img--top {
  grid-column: 1 / -1;
  grid-row: 1;
}

/* 下段左：両列にまたがせ、右辺を右列と同角度の斜めにする */
.about-hero__img--bl {
  grid-column: 1 / 3;
  grid-row: 2 / 4;
  clip-path: polygon(0 0, calc(56% + 34px) 0, 56% 100%, 0 100%);
}

/* 下段右・上：大枠と同角度の斜め辺（34px→17px） */
.about-hero__img--rt {
  grid-column: 2;
  grid-row: 2;
  clip-path: polygon(34px 0, 100% 0, 100% 100%, 17px 100%);
}

/* 下段右・下：斜め辺を連続させる（17px→0px） */
.about-hero__img--rb {
  grid-column: 2;
  grid-row: 3;
  clip-path: polygon(17px 0, 100% 0, 100% 100%, 0 100%);
}

/* ========================================
   About Mission
   ======================================== */
.about-mission {
  padding-block: 100px 120px;
  background: var(--color-bg);
  overflow: hidden;
}

.about-mission__inner {
  display: flex;
  align-items: center;
  padding-left: 5%;
}

/* ---- 左：テキスト ---- */
.about-mission__text {
  position: relative;
  z-index: 2;
  flex: 0 0 52%;
  padding-right: 60px;
}

.about-mission__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  margin-bottom: 6px;
}

.about-mission__title {
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.about-mission__bg-text {
  position: relative;
  z-index: 0;
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 900;
  color: #e0e5f0;
  line-height: 1;
  letter-spacing: 0.12em;
  margin-bottom: -36px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.about-mission__heading {
  position: relative;
  z-index: 1;
  font-size: clamp(32px, 3.6vw, 54px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  margin-bottom: 28px;
}

.about-mission__desc {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.2;
  color: var(--color-text);
}

/* ---- 右：画像 ---- */
.about-mission__images {
  flex: 1;
  min-width: 0;
  position: relative;
  height: 700px;
}

.about-mission__img {
  position: absolute;
  right: 0;
  overflow: hidden;
}

.about-mission__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-mission__img--top {
  top: 0;
  left: -50px;
  right: auto;
  width: calc(100% + 50px);
  height: 55%;
  clip-path: polygon(60px 0, 100% 0, calc(100% - 60px) 100%, 0 100%);
  z-index: 2;
}

.about-mission__img--bottom {
  bottom: 0;
  right: 0;
  width: 82%;
  height: 50%;
  clip-path: polygon(60px 0, 100% 0, calc(100% - 60px) 100%, 0 100%);
  z-index: 1;
}

/* ========================================
   About Vision
   ======================================== */
.about-vision {
  position: relative;
  height: clamp(430px, 46vw, 600px);
  overflow: hidden;
}

.about-vision__bg {
  position: absolute;
  inset: 0;
}

.about-vision__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-vision__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6, 13, 24, 0.96) 0%,
    rgba(6, 13, 24, 0.88) 22%,
    rgba(6, 13, 24, 0.65) 38%,
    rgba(6, 13, 24, 0.25) 55%,
    rgba(6, 13, 24, 0.05) 70%,
    transparent 85%
  );
}

.about-vision__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-inline-start: 5%;
  max-width: 56%;
  padding-block: 80px;
}

.about-vision__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  margin-bottom: 6px;
}

.about-vision__title {
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4px;
}

.about-vision__bg-text {
  position: relative;
  z-index: 0;
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.14);
  line-height: 1;
  letter-spacing: 0.12em;
  margin-bottom: -36px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.about-vision__heading {
  position: relative;
  z-index: 1;
  font-size: clamp(32px, 3.6vw, 54px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-light);
  margin-bottom: 28px;
}

.about-vision__desc {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   About Value
   ======================================== */
.about-value {
  padding-block: 100px 120px;
  background: var(--color-bg-light);
  overflow: hidden;
}

.about-value__inner {
  padding-inline: 5%;
}

.about-value__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  margin-bottom: 6px;
}

.about-value__title {
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.about-value__bg-text {
  position: relative;
  z-index: 0;
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 900;
  color: #d8dde8;
  line-height: 1;
  letter-spacing: 0.12em;
  margin-bottom: -36px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.about-value__cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-value__card {
  position: relative;
  background: var(--color-bg);
  padding: 36px 32px 52px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.about-value__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 28px 28px;
  border-color: transparent transparent var(--color-accent) transparent;
}

.about-value__card-num {
  display: block;
  font-size: 40px;
  font-weight: 900;
  font-style: italic;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 10px;
}

.about-value__card-title {
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  margin-bottom: 32px;
}

.about-value__card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72px;
  margin-bottom: 28px;
}

.about-value__card-icon svg {
  width: 60px;
  height: 60px;
  color: var(--color-primary);
  opacity: 0.5;
}

.about-value__card-text {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text);
  text-wrap: pretty;
  overflow-wrap: break-word;
}

/* ========================================
   About Message
   ======================================== */
.about-message {
  display: flex;
  min-height: 760px;
  background: var(--color-bg);
}

.about-message__photo {
  flex: 0 0 44%;
  position: relative;
  overflow: hidden;
}

.about-message__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.about-message__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 7% 80px 6%;
}

.about-message__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}

.about-message__title {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 36px;
}

.about-message__body {
  margin-bottom: 40px;
}

.about-message__body p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--color-text);
  margin-bottom: 20px;
  text-wrap: pretty;
}

.about-message__body p:last-child {
  margin-bottom: 0;
}

.about-message__sign {
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.about-message__company {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.about-message__position-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-message__position {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
}

.about-message__sign-img {
  height: 48px;
  width: auto;
  mix-blend-mode: multiply;
}

/* ========================================
   About Company
   ======================================== */
.about-company {
  display: flex;
  align-items: stretch;
  background: var(--color-bg-light);
}

.about-company__info {
  flex: 0 0 55%;
  padding: 80px 5% 80px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-company__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}

.about-company__title {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 36px;
}

.about-company__row {
  display: flex;
  align-items: baseline;
  padding-block: 16px;
  border-bottom: 1px solid var(--color-border);
}

.about-company__row:first-child {
  border-top: 1px solid var(--color-border);
}

.about-company__term {
  flex: 0 0 88px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

.about-company__desc {
  flex: 1;
  font-size: 14px;
  color: var(--color-text);
  padding-left: 24px;
  border-left: 1px solid var(--color-border);
  line-height: 1.9;
}

.about-company__image {
  flex: 1;
  position: relative;
  overflow: hidden;
  clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
}

.about-company__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-company__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 13, 24, 0.55);
}

/* ========================================
   SERVICE PAGE
   ======================================== */

/* --- Service Hero --- */
.service-hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 560px;
  background-color: var(--color-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #060d18 0%,
    #060d18 22%,
    rgba(6, 13, 24, 0.92) 34%,
    rgba(6, 13, 24, 0.50) 46%,
    rgba(6, 13, 24, 0.12) 56%,
    transparent 65%
  );
  z-index: 2;
  pointer-events: none;
}

.service-hero__inner {
  position: relative;
  z-index: 3;
  padding-top: var(--header-height);
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline-start: clamp(24px, 5vw, 72px);
}

.service-hero__content {
  max-width: none;
}

.service-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.50);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.service-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.50);
  transition: color 0.2s;
}

.service-hero__breadcrumb a:hover {
  color: var(--color-text-light);
}

.service-hero__breadcrumb-sep {
  color: rgba(255, 255, 255, 0.28);
}

.service-hero__heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  white-space: nowrap;
}

.service-hero__slash {
  color: var(--color-accent);
  margin-right: 4px;
  font-style: normal;
}

.service-hero__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  margin-bottom: 30px;
}

.service-hero__desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.75);
}

/* 右側：画像グリッド（上段全幅 + 下段2枚並び） */
.service-hero__images {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  display: grid;
  grid-template-columns: 56fr 44fr;
  grid-template-rows: 57fr 43fr;
  row-gap: 3px;
  column-gap: 0;
  background: var(--color-primary);
  clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.service-hero__img {
  overflow: hidden;
}

.service-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 上段：全幅 */
.service-hero__img--top {
  grid-column: 1 / -1;
  grid-row: 1;
}

/* 下段左：全幅スパンして clip-path で斜め右辺を作る */
.service-hero__img--bl {
  grid-column: 1 / -1;
  grid-row: 2;
  clip-path: polygon(0 0, calc(56% + 34px) 0, 56% 100%, 0 100%);
}

/* 下段左の画像は可視領域＋対角分（56% + 34px）にフィットさせてズームを抑える */
.service-hero__img--bl img {
  width: calc(56% + 34px);
  object-position: center center;
}

/* 下段右（1段）：bl の上に重ねて斜め左辺を合わせる */
.service-hero__img--br {
  grid-column: 2;
  grid-row: 2;
  clip-path: polygon(34px 0, 100% 0, 100% 100%, 0 100%);
}


/* ========================================
   Recruit Hero
   ======================================== */
.recruit-hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 560px;
  background-color: var(--color-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.recruit-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #060d18 0%,
    #060d18 22%,
    rgba(6, 13, 24, 0.92) 34%,
    rgba(6, 13, 24, 0.50) 46%,
    rgba(6, 13, 24, 0.12) 56%,
    transparent 65%
  );
  z-index: 2;
  pointer-events: none;
}

.recruit-hero__inner {
  position: relative;
  z-index: 3;
  padding-top: var(--header-height);
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline-start: clamp(24px, 5vw, 72px);
}

.recruit-hero__content {
  max-width: none;
}

.recruit-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.50);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.recruit-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.50);
  transition: color 0.2s;
}

.recruit-hero__breadcrumb a:hover {
  color: var(--color-text-light);
}

.recruit-hero__breadcrumb-sep {
  color: rgba(255, 255, 255, 0.28);
}

.recruit-hero__heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  white-space: nowrap;
}

.recruit-hero__slash {
  color: var(--color-accent);
  margin-right: 4px;
  font-style: normal;
}

.recruit-hero__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  margin-bottom: 30px;
}

.recruit-hero__desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.7);
}

/* 右側：画像グリッド（上段全幅 + 下段2枚並び） */
.recruit-hero__images {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  display: grid;
  grid-template-columns: 56fr 44fr;
  grid-template-rows: 57fr 43fr;
  row-gap: 3px;
  column-gap: 0;
  background: var(--color-primary);
  clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.recruit-hero__img {
  overflow: hidden;
}

.recruit-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-hero__img--top {
  grid-column: 1 / -1;
  grid-row: 1;
}

.recruit-hero__img--bl {
  grid-column: 1 / -1;
  grid-row: 2;
  clip-path: polygon(0 0, calc(56% + 34px) 0, 56% 100%, 0 100%);
}

.recruit-hero__img--bl img {
  width: calc(56% + 34px);
  object-position: center center;
}

.recruit-hero__img--br {
  grid-column: 2;
  grid-row: 2;
  clip-path: polygon(34px 0, 100% 0, 100% 100%, 0 100%);
}


/* ========================================
   Recruit Catch
   ======================================== */
.recruit-catch {
  position: relative;
  height: clamp(300px, 28vw, 420px);
  overflow: hidden;
  background: var(--color-primary);
  margin-top: clamp(40px, 6vw, 80px);
}

.recruit-catch__img {
  position: absolute;
  top: 0;
  height: 100%;
}

.recruit-catch__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recruit-catch__img--1 {
  left: 0;
  width: calc(33.33% + 80px);
  clip-path: polygon(0 0, 100% 0, calc(100% - 80px) 100%, 0 100%);
}

.recruit-catch__img--2 {
  left: calc(33.33% + 4px);
  width: calc(33.34% - 8px);
  clip-path: polygon(80px 0, 100% 0, calc(100% - 80px) 100%, 0 100%);
}

.recruit-catch__img--3 {
  right: 0;
  width: calc(33.33% + 80px);
  clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
}

.recruit-catch__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.recruit-catch__copy {
  font-size: clamp(26px, 3.6vw, 52px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.95),
    0 4px 16px rgba(0, 0, 0, 0.85),
    0 8px 32px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(0, 0, 0, 0.5);
}


/* --- Service Overview --- */
.service-overview {
  background: var(--color-primary);
  overflow: hidden;
}

.service-overview__inner {
  display: flex;
  align-items: stretch;
  min-height: 560px;
}

.service-overview__text {
  flex: 0 0 52%;
  padding: 80px 5% 80px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-overview__bg-text {
  position: relative;
  z-index: 0;
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.10);
  line-height: 1;
  letter-spacing: 0.12em;
  margin-bottom: -36px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.service-overview__heading {
  position: relative;
  z-index: 1;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.service-overview__accent {
  color: var(--color-accent);
}

.service-overview__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-overview__body p {
  font-size: 15px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.72);
}

.service-overview__image {
  flex: 1;
  position: relative;
  background: var(--color-primary);
  clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-overview__image img {
  width: 86%;
  height: auto;
  object-fit: contain;
  margin-left: 48px;
}


/* --- Service Intro --- */
.service-intro {
  background: var(--color-primary);
  padding-block: 100px 120px;
  overflow: hidden;
}

.service-intro__inner {
  padding-inline: 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-intro__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.service-intro__bg-text {
  font-size: clamp(60px, 9vw, 110px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 0;
  margin-bottom: -32px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.service-intro__heading {
  position: relative;
  z-index: 1;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 1.35;
  margin-bottom: 28px;
}

.service-intro__desc {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.service-intro__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 36px;
}

.service-intro__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  border-left: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.service-intro__link:hover {
  background: rgba(20, 100, 246, 0.12);
  border-left-color: var(--color-accent);
  color: #fff;
}

.service-intro__link-num {
  font-size: 18px;
  font-weight: 900;
  color: var(--color-accent);
  min-width: 28px;
}

.service-intro__image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
}

.service-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* --- Service Genre --- */
.service-genre {
  padding-block: 80px 100px;
  background: var(--color-bg);
}

.service-genre__inner {
  padding-inline: 5%;
}

.service-genre__title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 10px;
}

.service-genre__title::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--color-accent);
  margin: 10px auto 0;
  border-radius: 2px;
}

.service-genre__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-genre__card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
}

.service-genre__card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
}

.service-genre__card-icon {
  color: var(--color-accent);
  line-height: 0;
}

.service-genre__card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  line-height: 1.4;
}

.service-genre__card-img {
  aspect-ratio: 8 / 3;
  overflow: hidden;
}

.service-genre__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-genre__card:hover .service-genre__card-img img {
  transform: scale(1.05);
}


/* --- Service Detail --- */
.service-detail {
  padding-block: 64px 72px;
  background: var(--color-bg);
}

.service-detail + .service-detail {
  background: var(--color-bg-light);
}

.service-detail + .service-detail + .service-detail {
  background: var(--color-bg);
}

.service-detail__inner {
  padding-inline: 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail--reverse .service-detail__inner {
  direction: rtl;
}

.service-detail--reverse .service-detail__text,
.service-detail--reverse .service-detail__images {
  direction: ltr;
}

.service-detail__hd {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.service-detail__num {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  font-style: italic;
}

.service-detail__title {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 0;
}

.service-detail__sub {
  margin-bottom: 28px;
}

.service-detail__sub:last-child {
  margin-bottom: 0;
}

.service-detail__lead {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.service-detail__desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 14px;
}

.service-detail__list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-detail__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text);
}

.service-detail__list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

.service-detail__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
}

.service-detail__img {
  overflow: hidden;
}

.service-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-detail__img--main {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.service-detail__img--strip {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 5;
}

.service-detail__img--sub1,
.service-detail__img--sub2 {
  aspect-ratio: 16 / 7;
}


/* --- Service CTA --- */
.service-cta {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.service-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(6, 13, 24, 0.78);
}

.service-cta__inner {
  position: relative;
  z-index: 2;
  padding-inline: 5%;
  padding-block: 80px;
}

.service-cta__catch {
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.service-cta__desc {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 36px;
}

.service-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--color-accent);
  color: var(--color-text-light);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}

.service-cta__btn:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
}


/* ========================================
   Staff Interview
   ======================================== */
.staff-interview {
  padding-block: 100px 80px;
  background: var(--color-bg-light);
  overflow: hidden;
}

.staff-interview__hd {
  text-align: left;
  margin-bottom: 64px;
  overflow: hidden;
  padding-inline: 5%;
}

.staff-interview__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}

.staff-interview__bg-text {
  position: relative;
  z-index: 0;
  font-size: clamp(64px, 9vw, 110px);
  font-weight: 900;
  color: #e8ecf4;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: -34px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.staff-interview__title {
  position: relative;
  z-index: 1;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 0;
}

.staff-interview__desc {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 500;
  line-height: 2.2;
  color: rgba(11, 27, 43, 0.6);
  margin-top: 16px;
}

/* slider：斜めスライド（右上→左下）*/
.staff-interview__slider-outer {
  position: relative;
  width: 95vw;
  margin-left: auto;
  margin-right: auto;
  height: calc(min(460px, 95vw) * 4 / 3 + 88px);
  overflow: hidden;
}

.staff-interview__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* 全スライド共通：絶対位置でコンテナ中央を基点 */
.staff-interview__slide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(460px, 95vw);
  /* デフォルト：左下オフスクリーン（is-exitingと同位置） */
  transform: translate(calc(-50% - 150vw), calc(-50% + 6vw)) scale(0.84);
  opacity: 0;
  pointer-events: none;
  /* overflow: hidden はキャッチコピーはみ出しのため除去。画像クリップは photo 側で管理 */
  border-radius: 0;
  filter: grayscale(1) brightness(0.72);
  transition:
    transform  0.65s cubic-bezier(0.4, 0, 0.2, 1),
    filter     0.65s ease,
    opacity    0.65s ease;
  z-index: 1;
}

/* 右上オフスクリーン（遷移前の待機位置） */
.staff-interview__slide.is-entering {
  transform: translate(calc(-50% + 150vw), calc(-50% - 6vw)) scale(0.84);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

/* 右側（次のスライド）：右上寄り */
.staff-interview__slide.is-next {
  transform: translate(
    calc(-50% + clamp(200px, 33vw, 475px)),
    calc(-50% - clamp(16px, 3vw, 44px))
  ) scale(0.84);
  opacity: 1;
  z-index: 5;
}

/* 中央（アクティブ） */
.staff-interview__slide.is-active {
  transform: translate(-50%, -50%) scale(1);
  filter: none;
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
}

/* 左側（前のスライド）：左下寄り */
.staff-interview__slide.is-prev {
  transform: translate(
    calc(-50% - clamp(200px, 33vw, 475px)),
    calc(-50% + clamp(16px, 3vw, 44px))
  ) scale(0.84);
  opacity: 1;
  z-index: 5;
}

/* 左下オフスクリーン（退場） */
.staff-interview__slide.is-exiting {
  transform: translate(calc(-50% - 150vw), calc(-50% + 6vw)) scale(0.84);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.staff-interview__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.staff-interview__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 13, 24, 0.55) 0%,
    rgba(6, 13, 24, 0.15) 35%,
    transparent 60%
  );
  pointer-events: none;
}

.staff-interview__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* テキストオーバーレイ（アクティブ時のみ表示）
   left を負値にしてキャッチコピーを画像左へはみ出させる */
.staff-interview__info {
  position: absolute;
  bottom: 0;
  left: -80px;  /* 画像左外へ 80px はみ出す */
  right: 0;
  padding: 0 0 0;
  background: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.staff-interview__slide.is-active .staff-interview__info {
  opacity: 1;
  transform: translateY(0);
}

/* キャッチコピー：背景ボックス付き、大きく表示 */
.staff-interview__catch {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: clamp(16px, 1.9vw, 24px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.03em;
  padding: 16px 24px;
  margin-bottom: 0;
  /* ボックスは画像左端を超えて左へ自然にはみ出る */
}

/* 職種・名前：画像の中に収まる位置へインデント */
.staff-interview__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0 28px 80px; /* left 80px でスライド左端（画像左端）に揃える */
}

.staff-interview__role {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border: none;
  white-space: nowrap;
  background: #fff;
}

.staff-interview__name {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

/* ドットナビ */
.staff-interview__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
}

.staff-interview__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.staff-interview__dot.is-active {
  background: var(--color-accent);
  transform: scale(1.4);
}

/* インタビューページへのリンク：meta flex行の末尾に配置 */
.staff-interview__link {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 8px 14px;
  transition: background 0.2s, border-color 0.2s;
}

.staff-interview__link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}


/* ========== REQUIREMENTS ========== */
.requirements {
  padding-block: 60px 72px;
  background: var(--color-bg);
}

.requirements .l-container {
  max-width: 100%;
  padding-inline: 5vw;
}

.requirements__hd {
  margin-bottom: 52px;
}

.requirements__bg-text {
  display: block;
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 900;
  color: #e8ecf4;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: -24px;
  pointer-events: none;
  user-select: none;
}

.requirements__title {
  position: relative;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--color-primary);
}

.requirements__table {
  border-top: 1px solid var(--color-border);
}

.requirements__row {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid var(--color-border);
  padding-block: 14px;
}

.requirements__label {
  flex: 0 0 160px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.06em;
  line-height: 1.7;
  padding-top: 1px;
}

.requirements__value {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text, #333);
  line-height: 1.85;
  border-left: 1px solid var(--color-border);
  padding-left: 40px;
}

.requirements__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirements__list li {
  position: relative;
  padding-left: 16px;
}

.requirements__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 1px;
  background: var(--color-primary);
}


/* ========== BENEFITS ========== */
.benefits {
  padding-block: 60px 72px;
  background: var(--color-bg);
}

.benefits .l-container {
  max-width: 100%;
  padding-inline: 5vw;
}

.benefits__hd {
  margin-bottom: 48px;
}

.benefits__bg-text {
  display: block;
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 900;
  color: #e8ecf4;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: -24px;
  pointer-events: none;
  user-select: none;
}

.benefits__title {
  position: relative;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--color-primary);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.benefits__card {
  background: #fff;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 28px 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits__icon {
  color: var(--color-accent);
  margin-bottom: 18px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits__icon svg {
  width: 100%;
  height: 100%;
}

.benefits__card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.benefits__card-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text, #555);
  line-height: 1.9;
}

.benefits__note {
  font-size: 13px;
  color: var(--color-text-light, #888);
}


/* ========== ENTRY FORM ========== */
.entry {
  padding-block: 100px 120px;
  background: var(--color-bg-light);
}

.entry .l-container {
  max-width: 100%;
  padding-inline: 5vw;
}

.entry__hd {
  margin-bottom: 52px;
}

.entry__bg-text {
  display: block;
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 900;
  color: #e0e4ef;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: -24px;
  pointer-events: none;
  user-select: none;
}

.entry__label {
  position: relative;
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.22em;
  margin-bottom: 10px;
}

.entry__title {
  position: relative;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--color-primary);
}

/* エラー表示 */
.form__error-block {
  background: #fff5f5;
  border: 1px solid #fcc;
  border-left: 4px solid #e53e3e;
  padding: 16px 20px;
  margin-bottom: 32px;
}

.form__error-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form__error-block li {
  font-size: 13px;
  color: #c53030;
}

.form__error-block li::before {
  content: '・';
}

/* フォーム行 */
.entry__body {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.entry-form {
  flex: 0 0 auto;
  width: 60vw;
  max-width: 60vw;
  min-width: 0;
  border-top: 1px solid var(--color-border);
}

.entry__side {
  flex: 1;
  min-width: 0;
  padding-top: 32px;
  margin-right: 5vw;
}

.entry__side-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 2.2;
  color: rgba(11, 27, 43, 0.7);
}

@media (max-width: 768px) {
  .entry__body {
    flex-direction: column;
    gap: 40px;
  }
  .entry-form {
    order: 2;
    width: 90vw;
    max-width: 90vw;
  }
  .entry__side {
    order: 1;
    width: 90vw;
    max-width: 90vw;
    margin-right: 0;
    padding-top: 0;
  }
}

.form__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--color-border);
}

.form__label-cell {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 22px 20px 22px 0;
}

.form__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
}

.form__required {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--color-accent);
  padding: 2px 6px;
  flex-shrink: 0;
  line-height: 1.6;
  margin-top: 2px;
}

.form__optional {
  font-size: 10px;
  font-weight: 500;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 2px 6px;
  flex-shrink: 0;
  line-height: 1.6;
  margin-top: 2px;
}

.form__input-cell {
  padding: 18px 0 18px 24px;
  border-left: 1px solid var(--color-border);
  display: flex;
  align-items: center;
}

.form__row--top .form__input-cell {
  align-items: flex-start;
  padding-top: 22px;
}

/* 入力要素 */
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  padding: 10px 14px;
  font-family: var(--font-base);
  font-size: 15px;
  color: var(--color-text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(20, 100, 246, 0.1);
}

.form__input--short {
  max-width: 260px;
}

/* セレクト */
.form__select-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.form__select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  pointer-events: none;
}

.form__select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

/* テキストエリア */
.form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

/* ラジオ */
.form__radio-group {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.form__radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
  color: var(--color-text);
}

.form__radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
}

/* チェックボックス */
.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.7;
}

.form__checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 3px;
}

.form__checkbox-label a {
  color: var(--color-accent);
  text-decoration: underline;
}

.form__checkbox-label a:hover {
  text-decoration: none;
}

/* フォーム補足・エラー */
.form__note {
  font-size: 13px;
  color: var(--color-text-light, #888);
  margin-bottom: 10px;
}

.form__checkbox-error {
  font-size: 13px;
  color: #d9534f;
  margin-top: 8px;
}

/* 送信ボタン */
.form__submit-wrap {
  margin-top: 48px;
  text-align: center;
}

.form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 18px 72px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.form__submit:hover {
  background: var(--color-accent-dark);
}

.form__submit:active {
  transform: scale(0.98);
}


/* ========== THANKS PAGE ========== */
.thanks-section {
  padding-block: 120px 160px;
  background: var(--color-bg);
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
}

.thanks__inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thanks__icon {
  color: var(--color-accent);
  margin-bottom: 28px;
}

.thanks__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.thanks__heading {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.thanks__body {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text, #444);
  margin-bottom: 20px;
}

.thanks__note {
  font-size: 13px;
  color: var(--color-text-light, #888);
  line-height: 1.8;
  margin-bottom: 48px;
}

.thanks__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 12px 28px;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.thanks__btn:hover {
  background: var(--color-primary);
  color: #fff;
}


/* ========================================
   WORKS PAGE
   ======================================== */

/* --- Works Hero --- */
.works-hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 560px;
  background-color: var(--color-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.works-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #060d18 0%,
    #060d18 22%,
    rgba(6, 13, 24, 0.92) 34%,
    rgba(6, 13, 24, 0.50) 46%,
    rgba(6, 13, 24, 0.12) 56%,
    transparent 65%
  );
  z-index: 2;
  pointer-events: none;
}

.works-hero__inner {
  position: relative;
  z-index: 3;
  padding-top: var(--header-height);
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline-start: clamp(24px, 5vw, 72px);
}

.works-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.50);
  margin-bottom: 32px;
}

.works-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.50);
  transition: color 0.2s;
}

.works-hero__breadcrumb a:hover {
  color: var(--color-text-light);
}

.works-hero__breadcrumb-sep {
  color: rgba(255, 255, 255, 0.28);
}

.works-hero__heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  white-space: nowrap;
}

.works-hero__slash {
  color: var(--color-accent);
  margin-right: 4px;
  font-style: normal;
}

.works-hero__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  margin-bottom: 30px;
}

.works-hero__desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
}

/* 右側：画像グリッド（上段全幅 + 下段2枚並び） */
.works-hero__images {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  display: grid;
  grid-template-columns: 56fr 44fr;
  grid-template-rows: 57fr 43fr;
  row-gap: 3px;
  column-gap: 0;
  background: var(--color-primary);
  clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.works-hero__img {
  overflow: hidden;
}

.works-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-hero__img--top {
  grid-column: 1 / -1;
  grid-row: 1;
}

.works-hero__img--bl {
  grid-column: 1 / -1;
  grid-row: 2;
  clip-path: polygon(0 0, calc(56% + 34px) 0, 56% 100%, 0 100%);
}

.works-hero__img--bl img {
  width: calc(56% + 34px);
  object-position: center center;
}

.works-hero__img--br {
  grid-column: 2;
  grid-row: 2;
  clip-path: polygon(34px 0, 100% 0, 100% 100%, 0 100%);
}

/* --- Works List Section --- */
.works-list {
  padding-block: 100px 120px;
  background: var(--color-bg);
}

.works-list__hd {
  margin-bottom: 12px;
}

.works-list__bg-text {
  display: block;
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 900;
  color: #e8ecf4;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: -24px;
  pointer-events: none;
  user-select: none;
}

.works-list__label {
  position: relative;
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.22em;
  margin-bottom: 8px;
}

.works-list__title {
  position: relative;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 40px;
}

/* Filter */
.works-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.works-filter__btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  background: transparent;
  border: 1.5px solid var(--color-border);
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.works-filter__btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.works-filter__btn.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* Status (Loading / Error / Empty) */
.works-status {
  padding: 80px 0;
  text-align: center;
}

.works-status__loading,
.works-status__error,
.works-status__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.works-status__spinner {
  display: block;
  width: 36px;
  height: 36px;
  border: 3px solid rgba(20, 100, 246, 0.15);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: worksSpinner 0.8s linear infinite;
}

@keyframes worksSpinner {
  to { transform: rotate(360deg); }
}

.works-status__icon {
  color: var(--color-text-muted);
  opacity: 0.4;
}

.works-status__msg {
  font-size: 15px;
  color: var(--color-text-muted);
}

.works-status__sub {
  font-size: 13px;
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* Card Grid */
.works-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Works Card */
.works-card {
  background: #fff;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.25s, transform 0.25s;
}

.works-card:hover {
  box-shadow: 0 8px 32px rgba(11, 27, 43, 0.10);
  transform: translateY(-4px);
}

.works-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.works-card__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-light);
}

.works-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.works-card:hover .works-card__img {
  transform: scale(1.05);
}

.works-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-border);
}

.works-card__scopes {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
}

.works-card__scope {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #ED5D12;
  padding: 3px 8px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.works-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 20px 16px;
}

.works-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.55;
  margin-bottom: 8px;
}

.works-card__date {
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.works-card__summary {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.75;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 14px;
}

.works-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  margin-top: auto;
}

/* ========================================
   WORKS DETAIL PAGE
   ======================================== */
.works-detail-main {
  padding-top: var(--header-height);
  min-height: 100vh;
}

.works-detail-main .works-status {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.works-detail-main .works-status[hidden] {
  display: none;
}

.works-detail__hero {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 320px;
  max-height: 560px;
  overflow: hidden;
  background: var(--color-primary);
}

.works-detail__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.works-detail__hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d1f36 0%, #1a3a5c 100%);
}

.works-detail__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 13, 24, 0.88) 0%,
    rgba(6, 13, 24, 0.40) 55%,
    rgba(6, 13, 24, 0.12) 100%
  );
}

.works-detail__hero-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 clamp(24px, 5vw, 72px) 40px;
}

.works-detail__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.60);
  margin-bottom: 14px;
}

.works-detail__breadcrumb a {
  color: rgba(255, 255, 255, 0.60);
  transition: color 0.2s;
}

.works-detail__breadcrumb a:hover {
  color: #fff;
}

.works-detail__breadcrumb-sep {
  color: rgba(255, 255, 255, 0.28);
}

.works-detail__title {
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 1.4;
  max-width: 860px;
}

.works-detail__body {
  max-width: 900px;
  margin-inline: auto;
  padding: 56px clamp(24px, 5vw, 40px) 100px;
}

.works-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 48px;
}

.works-detail__meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.works-detail__meta-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.works-detail__meta-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
}

.works-detail__scopes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.works-detail__scope {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(20, 100, 246, 0.07);
  border: 1px solid rgba(20, 100, 246, 0.22);
  padding: 4px 10px;
  letter-spacing: 0.04em;
}

.works-detail__summary {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.9;
  color: var(--color-primary);
  margin-bottom: 40px;
}

.works-detail__content {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 48px;
}

.works-detail__content p   { margin-bottom: 1.5em; }
.works-detail__content h2  { font-size: 20px; font-weight: 700; color: var(--color-primary); margin: 2.2em 0 0.8em; border-left: 3px solid var(--color-accent); padding-left: 12px; }
.works-detail__content h3  { font-size: 17px; font-weight: 700; color: var(--color-primary); margin: 1.8em 0 0.6em; }
.works-detail__content ul  { padding-left: 1.5em; margin-bottom: 1.5em; }
.works-detail__content li  { margin-bottom: 0.4em; }
.works-detail__content img { max-width: 100%; height: auto; display: block; margin: 2em 0; }

.works-detail__external {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  border: 1.5px solid rgba(20, 100, 246, 0.4);
  padding: 12px 24px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  margin-bottom: 60px;
}

.works-detail__external:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.works-detail__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  margin-bottom: 56px;
}

.works-detail__nav-item {
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 20px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.works-detail__nav-item:hover {
  background: var(--color-bg-light);
}

.works-detail__nav-item--next {
  text-align: right;
}

.works-detail__nav-item--disabled {
  pointer-events: none;
  opacity: 0.3;
}

.works-detail__nav-dir {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.works-detail__nav-item--next .works-detail__nav-dir {
  justify-content: flex-end;
}

.works-detail__nav-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.works-detail__back {
  text-align: center;
}

.works-detail__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 12px 32px;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.works-detail__back-btn:hover {
  background: var(--color-primary);
  color: #fff;
}


/* ========================================
   TOPICS HERO
   ======================================== */
.topics-hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 560px;
  background-color: var(--color-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.topics-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #060d18 0%,
    #060d18 22%,
    rgba(6, 13, 24, 0.92) 34%,
    rgba(6, 13, 24, 0.50) 46%,
    rgba(6, 13, 24, 0.12) 56%,
    transparent 65%
  );
  z-index: 2;
  pointer-events: none;
}

.topics-hero__inner {
  position: relative;
  z-index: 3;
  padding-top: var(--header-height);
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline-start: clamp(24px, 5vw, 72px);
}

.topics-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.50);
  margin-bottom: 32px;
}

.topics-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.50);
  transition: color 0.2s;
}

.topics-hero__breadcrumb a:hover {
  color: var(--color-text-light);
}

.topics-hero__breadcrumb-sep {
  color: rgba(255, 255, 255, 0.28);
}

.topics-hero__heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  white-space: nowrap;
}

.topics-hero__slash {
  color: var(--color-accent);
  margin-right: 4px;
  font-style: normal;
}

.topics-hero__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  margin-bottom: 30px;
}

.topics-hero__desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
}

.topics-hero__images {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  display: grid;
  grid-template-columns: 56fr 44fr;
  grid-template-rows: 57fr 43fr;
  row-gap: 3px;
  column-gap: 0;
  background: var(--color-primary);
  clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.topics-hero__img {
  overflow: hidden;
}

.topics-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topics-hero__img--top {
  grid-column: 1 / -1;
  grid-row: 1;
}

.topics-hero__img--bl {
  grid-column: 1 / -1;
  grid-row: 2;
  clip-path: polygon(0 0, calc(56% + 34px) 0, 56% 100%, 0 100%);
}

.topics-hero__img--bl img {
  width: calc(56% + 34px);
  object-position: center center;
}

.topics-hero__img--br {
  grid-column: 2;
  grid-row: 2;
  clip-path: polygon(34px 0, 100% 0, 100% 100%, 0 100%);
}

/* ========================================
   TOPICS LIST SECTION
   ======================================== */
.topics-list {
  padding-block: 100px 120px;
  background: var(--color-bg);
}

.topics-list__hd {
  margin-bottom: 12px;
}

.topics-list__bg-text {
  display: block;
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 900;
  color: #e8ecf4;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: -24px;
  pointer-events: none;
  user-select: none;
}

.topics-list__label {
  position: relative;
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.22em;
  margin-bottom: 8px;
}

.topics-list__title {
  position: relative;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 40px;
}

/* Filter */
.topics-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.topics-filter__btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  background: transparent;
  border: 1.5px solid var(--color-border);
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.topics-filter__btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.topics-filter__btn.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* ========================================
   TOPICS FEATURED ARTICLE
   ======================================== */
.topics-featured {
  margin-bottom: 56px;
}

.topics-featured__link {
  display: grid;
  grid-template-columns: 3fr 2fr;
  border: 1px solid var(--color-border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.25s;
}

.topics-featured__link:hover {
  box-shadow: 0 8px 32px rgba(11, 27, 43, 0.10);
  transform: translateY(-3px);
}

.topics-featured__img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-light);
}

.topics-featured__img-wrap::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

.topics-featured__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.topics-featured__link:hover .topics-featured__img {
  transform: scale(1.04);
}

.topics-featured__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-border);
}

.topics-featured__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--color-accent);
  padding: 4px 12px;
  letter-spacing: 0.12em;
  z-index: 1;
}

.topics-featured__body {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-bg-light);
}

.topics-featured__cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.topics-featured__date {
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.topics-featured__title {
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.65;
  color: var(--color-primary);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.topics-featured__excerpt {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 28px;
}

.topics-featured__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  margin-top: auto;
}

/* ========================================
   TOPICS CARD GRID
   ======================================== */
.topics-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.topics-card {
  background: #fff;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.25s, transform 0.25s;
}

.topics-card:hover {
  box-shadow: 0 8px 32px rgba(11, 27, 43, 0.10);
  transform: translateY(-4px);
}

.topics-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.topics-card__img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-bg-light);
}

.topics-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.topics-card:hover .topics-card__img {
  transform: scale(1.05);
}

.topics-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-border);
}

.topics-card__cat {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--color-accent);
  padding: 3px 10px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.topics-card__external-mark {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
}

.topics-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 18px 18px;
}

.topics-card__date {
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.topics-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.55;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.topics-card__excerpt {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.75;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 14px;
}

.topics-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  margin-top: auto;
}

/* ========================================
   TOPICS DETAIL PAGE
   ======================================== */
.topics-detail-main {
  padding-top: var(--header-height);
  min-height: 100vh;
}

.topics-detail-main .works-status {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.topics-detail-main .works-status[hidden] {
  display: none;
}

.topics-detail__hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 280px;
  max-height: 500px;
  overflow: hidden;
  background: var(--color-primary);
}

.topics-detail__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.topics-detail__hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d1f36 0%, #1a3a5c 100%);
}

.topics-detail__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 13, 24, 0.65) 0%,
    rgba(6, 13, 24, 0.10) 60%,
    transparent 100%
  );
}

.topics-detail__article {
  max-width: 840px;
  margin-inline: auto;
  padding: 64px clamp(24px, 5vw, 40px) 100px;
}

.topics-detail__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.topics-detail__breadcrumb a {
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.topics-detail__breadcrumb a:hover {
  color: var(--color-accent);
}

.topics-detail__breadcrumb-sep {
  color: var(--color-border);
}

.topics-detail__header {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 48px;
}

.topics-detail__cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(20, 100, 246, 0.07);
  border: 1px solid rgba(20, 100, 246, 0.22);
  padding: 4px 12px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.topics-detail__title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.55;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.topics-detail__date {
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.topics-detail__content {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 48px;
}

.topics-detail__content p   { margin-bottom: 1.5em; }
.topics-detail__content h2  { font-size: 20px; font-weight: 700; color: var(--color-primary); margin: 2.2em 0 0.8em; border-left: 3px solid var(--color-accent); padding-left: 12px; }
.topics-detail__content h3  { font-size: 17px; font-weight: 700; color: var(--color-primary); margin: 1.8em 0 0.6em; }
.topics-detail__content ul  { padding-left: 1.5em; margin-bottom: 1.5em; }
.topics-detail__content li  { margin-bottom: 0.4em; }
.topics-detail__content img { max-width: 100%; height: auto; display: block; margin: 2em 0; }
.topics-detail__content a   { color: var(--color-accent); text-decoration: underline; }

.topics-detail__external {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  border: 1.5px solid rgba(20, 100, 246, 0.4);
  padding: 12px 24px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  margin-bottom: 60px;
}

.topics-detail__external:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.topics-detail__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  margin-bottom: 56px;
}

.topics-detail__nav-item {
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 20px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.topics-detail__nav-item:hover {
  background: var(--color-bg-light);
}

.topics-detail__nav-item--next {
  text-align: right;
}

.topics-detail__nav-item--disabled {
  pointer-events: none;
  opacity: 0.3;
}

.topics-detail__nav-dir {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.topics-detail__nav-item--next .topics-detail__nav-dir {
  justify-content: flex-end;
}

.topics-detail__nav-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.topics-detail__back {
  text-align: center;
}

.topics-detail__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 12px 32px;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.topics-detail__back-btn:hover {
  background: var(--color-primary);
  color: #fff;
}


/* ========================================
   Responsive : Tablet & Mobile ( <= 1024px )
   ハンバーガーメニューはタブレット以下で表示
   ======================================== */
@media screen and (max-width: 1024px) {
  :root {
    --header-height: 60px;
  }

  /* --- Header --- */
  .header__hamburger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: var(--color-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.35s ease, visibility 0.35s, transform 0.35s ease;
    z-index: 105;
  }

  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header__nav-logo {
    display: block;
    margin-bottom: 32px;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding-inline: var(--container-padding);
  }

  .header__nav-item {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header__nav-item a {
    font-size: 15px;
    padding: 16px;
    display: block;
    color: var(--color-text-light);
  }

  .header__nav-item--contact {
    margin-top: 16px;
    border-bottom: none;
  }

  .header__nav-item--contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1.5px solid var(--color-accent);
    border-radius: 2px;
    background-color: var(--color-accent);
    padding: 14px 40px;
  }

  /* --- Footer --- */
  .footer__cta {
    display: none;
  }
}

/* ========================================
   Responsive : Mobile ( <= 767px )
   フッターはスマホのみ縦並び
   ======================================== */
@media screen and (max-width: 767px) {

  /* --- Hero --- */
  .hero {
    align-items: flex-end;
    padding-bottom: 110px;
  }

  .hero__image-wrap {
    top: 0;
    width: 100%;
    height: 56%;
  }

  .hero__image {
    clip-path: polygon(0% 0%, 100% 0%, 100% 82%, 0% 100%);
    object-position: center center;
  }

  .hero__inner {
    padding-top: 0;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__corner-triangle {
    width: 80px;
    height: 190px;
  }

  .hero__scroll {
    bottom: 16px;
    right: 12px;
  }

  .hero__scroll-line {
    height: 36px;
  }

  @keyframes scrollLineFlow {
    0%   { transform: translateY(-28px); }
    100% { transform: translateY(36px); }
  }

  .hero__desc {
    font-size: 13px;
  }

  /* --- Service --- */
  .service .l-container {
    padding-inline-end: var(--container-padding);
  }

  .service__images {
    display: none;
  }

  .service__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 1px;
    background-color: #d8dde8;
  }

  .service__card {
    border-right: none;
    padding: 20px 14px 22px;
    background: #f5f5f9;
  }

  .service__card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .service__card-title {
    font-size: 11px;
    margin-bottom: 8px;
    white-space: normal;
  }

  .service__card-desc {
    font-size: 10px;
    line-height: 1.8;
  }

  /* --- Page Navigation --- */
  .page-navi {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .page-navi .l-container {
    padding-inline: var(--container-padding);
  }

  .page-navi__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* カード全体：画像エリア(84px) + 説明文エリアの2段構成 */
  .page-navi__card {
    aspect-ratio: auto;
    height: auto;
    padding: 0;
    overflow: visible;
    justify-content: flex-start;
    gap: 0;
  }

  /* 画像背景・暗色オーバーレイを上部84pxに限定 */
  .page-navi__card-bg {
    inset: 0 0 auto 0;
    height: 84px;
  }

  .page-navi__card::after {
    inset: 0 0 auto 0;
    height: 84px;
  }

  /* 番号・タイトル・矢印を画像エリア内に絶対配置 */
  .page-navi__num {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 18px;
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1;
  }

  .page-navi__title {
    position: absolute;
    z-index: 2;
    top: 36px;
    left: 18px;
    right: 56px;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.3;
  }

  /* 説明文：画像エリアの直下に薄いベタ背景で表示 */
  .page-navi__desc {
    display: block;
    margin-top: 84px;
    padding: 10px 18px 12px;
    color: var(--color-text);
    font-size: 12px;
    line-height: 1.7;
    text-shadow: none;
    opacity: 1;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-top: none;
  }

  .page-navi__arrow {
    top: 42px;
    bottom: auto;
    right: 14px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
  }

  /* --- Numbers --- */
  .numbers {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .numbers .l-container {
    padding-inline: var(--container-padding);
  }

  .numbers__label {
    margin-bottom: -20px;
  }

  .numbers__cards {
    flex-wrap: wrap;
  }

  .numbers__card {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid #d8dde8;
    padding: 20px 16px;
  }

  .numbers__card:nth-child(odd) {
    border-right: 1px solid #d8dde8;
  }

  .numbers__card:nth-child(3),
  .numbers__card:nth-child(4) {
    border-bottom: none;
  }

  .numbers__card-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 14px;
  }

  .numbers__card-icon {
    width: 24px;
    height: 24px;
  }

  .numbers__card-title {
    font-size: 12px;
    white-space: nowrap;
  }

  .numbers__card-num {
    font-size: clamp(24px, 7.5vw, 36px);
  }

  .numbers__card-unit {
    white-space: nowrap;
    font-size: 13px;
  }

  /* --- CTA Banner --- */
  .cta-banner {
    height: auto;
    min-height: 200px;
  }

  .cta-banner__img--1,
  .cta-banner__img--3 {
    display: none;
  }

  .cta-banner__img--2 {
    left: 0;
    width: 100%;
    clip-path: none;
    height: 100%;
  }

  .cta-banner__title {
    font-size: 20px;
  }

  .cta-banner__btn {
    padding: 14px 32px;
    font-size: 14px;
  }

  /* --- Service --- */
  .service {
    padding-top: 48px;
    padding-bottom: 40px;
    min-height: 0;
  }

  .service .l-container {
    padding-inline-end: var(--container-padding);
  }

  .service__label {
    margin-bottom: -20px;
  }

  .service__images {
    display: none;
  }

  .service__cards {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .service__card {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid #e0e5f0;
    padding: 20px 16px 24px;
  }

  .service__card:nth-child(odd) {
    border-right: 1px solid #e0e5f0;
  }

  .service__card:nth-child(3),
  .service__card:nth-child(4) {
    border-bottom: none;
  }

  /* --- Footer --- */
  .footer__main {
    padding-block: 44px 40px;
  }

  .footer__main-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer__info {
    max-width: 100%;
  }

  .footer__cta {
    display: none;
  }

  .footer__nav-list {
    gap: 4px 0;
  }

  .footer__nav-sep {
    padding-inline: 8px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding-block: 4px;
  }

  /* --- Service Page --- */
  .service-hero {
    align-items: flex-start;
  }

  .service-hero::before {
    background: linear-gradient(
      to bottom,
      rgba(6, 13, 24, 0.95) 0%,
      rgba(6, 13, 24, 0.80) 30%,
      rgba(6, 13, 24, 0.40) 58%,
      rgba(6, 13, 24, 0.10) 80%,
      transparent 100%
    );
  }

  .service-hero__inner {
    width: 100%;
    padding-top: calc(var(--header-height) + 28px);
    padding-inline-start: var(--container-padding);
  }

  .service-hero__images {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 52%;
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
  }

  .service-hero__heading {
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95), 0 0 40px rgba(0, 0, 0, 0.85), 0 0 80px rgba(0, 0, 0, 0.6);
  }

  .service-hero__desc {
    font-size: 13px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.95), 0 0 24px rgba(0, 0, 0, 0.85);
  }

  /* --- Service Overview --- */
  .service-overview__inner {
    flex-direction: column;
    min-height: 0;
  }

  .service-overview__text {
    display: contents;
  }

  .service-overview__bg-text {
    order: 1;
    font-size: 48px;
    margin-bottom: -24px;
    padding: 56px var(--container-padding) 0;
    overflow: hidden;
  }

  .service-overview__heading {
    order: 2;
    font-size: 26px;
    margin-bottom: 0;
    padding: 0 var(--container-padding) 0;
  }

  .service-overview__image {
    order: 3;
    flex: none;
    height: auto;
    clip-path: none;
    padding-block: 0;
  }

  .service-overview__image img {
    margin-left: 0;
    width: 88%;
    display: block;
    margin-inline: auto;
  }

  .service-overview__body {
    order: 4;
    padding: 0 var(--container-padding) 56px;
  }

  .service-overview__body p {
    font-size: 14px;
    line-height: 2.0;
  }

  /* --- Service Genre --- */
  .service-genre {
    padding-block: 48px 60px;
  }

  .service-genre__inner {
    padding-inline: var(--container-padding);
  }

  .service-genre__title {
    font-size: 20px;
    margin-bottom: 0;
  }

  .service-genre__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
  }

  .service-genre__card-head {
    gap: 8px;
    padding-bottom: 10px;
  }

  .service-genre__card-icon svg {
    width: 32px;
    height: 32px;
  }

  .service-genre__card-name {
    font-size: 12px;
  }

  .service-genre__card-img {
    aspect-ratio: 4 / 3;
  }

  /* --- Service Detail --- */
  .service-detail {
    padding-block: 20px 24px;
  }

  .service-detail__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-inline: 0;
  }

  .service-detail--reverse .service-detail__inner {
    direction: ltr;
  }

  .service-detail__text {
    display: contents;
  }

  .service-detail__hd {
    order: 1;
    margin-bottom: 0;
    padding: 0 var(--container-padding) 14px;
  }

  .service-detail__num {
    font-size: 36px;
  }

  .service-detail__title {
    font-size: 18px;
  }

  .service-detail__images {
    order: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    overflow: hidden;
  }

  .service-detail--reverse .service-detail__images {
    order: 2;
  }

  .service-detail__img--strip {
    flex: 0 0 54%;
    aspect-ratio: 4 / 3;
  }

  .service-detail__img--strip:first-child {
    clip-path: polygon(0 0, 100% 0, 87% 100%, 0 100%);
  }

  .service-detail__img--strip:last-child {
    margin-left: -8%;
    position: relative;
    z-index: 1;
    clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
  }

  .service-detail__img--sub1 {
    flex: 0 0 50%;
    aspect-ratio: 4 / 3;
  }

  .service-detail__sub {
    order: 3;
    margin-bottom: 0;
    padding: 10px var(--container-padding) 20px;
  }

  .service-detail__sub:last-child {
    padding-bottom: 28px;
  }

  .service-detail__lead {
    font-size: 14px;
    margin-bottom: 4px;
  }

  /* __sub 内の __desc（01, 02）— __sub がすでに padding-inline 確保済み */
  .service-detail__sub .service-detail__desc {
    font-size: 14px;
    margin-bottom: 0;
    padding-left: 0;
    margin-left: 0;
  }

  /* 単独グリッドアイテムの __desc（03） */
  .service-detail__text > .service-detail__desc {
    order: 3;
    font-size: 14px;
    margin-bottom: 0;
    padding: 10px var(--container-padding) 28px;
  }

  /* --- Benefits --- */
  .benefits {
    padding-block: 72px 80px;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits__card {
    padding: 32px 20px 28px;
  }

  /* --- Recruit Requirements --- */
  .requirements {
    padding-block: 72px 80px;
  }

  .requirements__row {
    flex-direction: column;
    gap: 10px;
    padding-block: 24px;
  }

  .requirements__label {
    flex: none;
    font-size: 13px;
  }

  .requirements__value {
    border-left: none;
    border-top: 1px solid var(--color-border);
    padding-left: 0;
    padding-top: 12px;
    font-size: 14px;
  }

  /* --- Benefits (767px) --- */
  .benefits__grid {
    grid-template-columns: 1fr;
  }

  /* --- Entry Form --- */
  .entry {
    padding-block: 72px 80px;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .form__label-cell {
    padding: 20px 0 10px;
  }

  .form__input-cell {
    border-left: none;
    border-top: 1px solid var(--color-border);
    padding: 14px 0 20px;
  }

  .form__row--top .form__input-cell {
    padding-top: 14px;
  }

  .form__input--short {
    max-width: 100%;
  }

  .form__select-wrap {
    max-width: 100%;
  }

  .form__submit {
    width: 100%;
    padding: 18px 24px;
  }
}

/* ========================================
   Responsive : About Page
   ======================================== */
@media screen and (max-width: 767px) {
  /* --- About Hero --- */
  .about-hero {
    align-items: flex-start;
  }

  .about-hero::before {
    background: linear-gradient(
      to bottom,
      rgba(6, 13, 24, 0.95) 0%,
      rgba(6, 13, 24, 0.80) 30%,
      rgba(6, 13, 24, 0.40) 58%,
      rgba(6, 13, 24, 0.10) 80%,
      transparent 100%
    );
  }

  .about-hero__images {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 52%;
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
  }

  .about-hero__inner {
    padding-top: calc(var(--header-height) + 28px);
  }

  .about-hero__heading {
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.85), 0 0 48px rgba(0, 0, 0, 0.55);
  }

  .about-hero__desc {
    font-size: 13px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
  }

  /* --- About Mission --- */
  .about-mission {
    padding-block: 56px 60px;
  }

  .about-mission__inner {
    flex-direction: column;
    padding-left: 0;
  }

  .about-mission__text {
    flex: none;
    width: 100%;
    padding-right: 0;
    padding-inline: var(--container-padding);
  }

  .about-mission__images {
    display: none;
  }

  .about-mission__bg-text {
    font-size: 48px;
    margin-bottom: -20px;
  }

  .about-mission__heading {
    font-size: 26px;
  }

  .about-mission__desc {
    font-size: 14px;
    line-height: 2.0;
  }

  /* --- About Vision --- */
  .about-vision {
    height: auto;
  }

  .about-vision__bg img {
    object-position: 70% top;
  }

  .about-vision__bg::after {
    background: rgba(6, 13, 24, 0.55);
  }

  .about-vision__content {
    max-width: 100%;
    padding-inline: var(--container-padding);
    padding-block: 56px 60px;
  }

  .about-vision__bg-text {
    font-size: 48px;
    margin-bottom: -20px;
  }

  .about-vision__heading {
    font-size: 26px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.9), 0 0 48px rgba(0, 0, 0, 0.7);
  }

  .about-vision__title {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
  }

  .about-vision__desc {
    font-size: 14px;
    line-height: 2.0;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85);
  }

  /* --- About Value --- */
  .about-value {
    padding-block: 56px 60px;
  }

  .about-value__inner {
    padding-inline: var(--container-padding);
  }

  .about-value__bg-text {
    font-size: 48px;
    margin-bottom: 8px;
  }

  .about-value__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-value__card {
    padding: 20px 24px 28px;
  }

  .about-value__card-num {
    font-size: 32px;
  }

  .about-value__card-title {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .about-value__card-icon {
    height: 56px;
    margin-bottom: 20px;
  }

  .about-value__card-icon svg {
    width: 48px;
    height: 48px;
  }

  .about-value__card-text {
    font-size: 13px;
  }

  /* --- About Message --- */
  .about-message {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    overflow: hidden;
  }

  /* display:contents でコンテンツの子要素をグリッドに直接参加させる */
  .about-message__content {
    display: contents;
  }

  .about-message__label {
    grid-row: 1;
    padding: 48px var(--container-padding) 0;
  }

  .about-message__title {
    grid-row: 2;
    font-size: 22px;
    margin-bottom: 0;
    padding: 8px var(--container-padding) 24px;
  }

  .about-message__photo {
    grid-row: 3;
    height: 280px;
  }

  .about-message__body {
    grid-row: 4;
    padding: 24px var(--container-padding) 0;
    margin-bottom: 0;
  }

  .about-message__body p {
    font-size: 14px;
    line-height: 2.0;
    margin-bottom: 16px;
    text-wrap: wrap;
  }

  .about-message__sign {
    grid-row: 5;
    padding: 20px var(--container-padding) 56px;
    border-top: none;
    min-width: 0;
  }

  .about-message__sign-img {
    max-width: calc(100% - 7em);
    height: 40px;
  }

  /* --- About Company --- */
  .about-company {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-company__info {
    display: contents;
  }

  .about-company__label {
    grid-row: 1;
    padding: 48px var(--container-padding) 0;
  }

  .about-company__title {
    grid-row: 2;
    font-size: 22px;
    margin-bottom: 0;
    padding: 8px var(--container-padding) 16px;
  }

  .about-company__image {
    grid-row: 3;
    height: 220px;
    clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
  }

  .about-company__table {
    grid-row: 4;
    padding: 16px var(--container-padding) 48px;
  }

  .about-company__term {
    flex: 0 0 76px;
    font-size: 13px;
  }

  .about-company__desc {
    font-size: 13px;
    padding-left: 16px;
  }

  .about-company__zip {
    display: block;
  }
}

/* ========================================
   Responsive : Works Page
   ======================================== */
@media screen and (max-width: 1024px) {
  .works-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  /* Works Hero */
  .works-hero {
    align-items: flex-start;
  }

  .works-hero::before {
    background: linear-gradient(
      to bottom,
      rgba(6, 13, 24, 0.95) 0%,
      rgba(6, 13, 24, 0.80) 30%,
      rgba(6, 13, 24, 0.40) 58%,
      rgba(6, 13, 24, 0.10) 80%,
      transparent 100%
    );
  }

  .works-hero__inner {
    width: 100%;
    padding-top: calc(var(--header-height) + 28px);
    padding-inline-start: var(--container-padding);
  }

  .works-hero__images {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 52%;
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
  }

  .works-hero__heading {
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95), 0 0 40px rgba(0, 0, 0, 0.85), 0 0 80px rgba(0, 0, 0, 0.6);
  }

  .works-hero__desc {
    font-size: 13px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.95), 0 0 24px rgba(0, 0, 0, 0.85);
  }

  /* Works List */
  .works-list {
    padding-block: 72px 80px;
  }

  .works-list__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .works-filter {
    gap: 6px;
    margin-bottom: 32px;
  }

  .works-filter__btn {
    padding: 7px 14px;
    font-size: 12px;
  }

  /* Works Detail */
  .works-detail__hero {
    height: 45vw;
    min-height: 240px;
    max-height: 400px;
  }

  .works-detail__nav {
    grid-template-columns: 1fr;
  }

  .works-detail__nav-item--next {
    text-align: left;
    border-top: 1px solid var(--color-border);
  }

  .works-detail__nav-item--next .works-detail__nav-dir {
    justify-content: flex-start;
  }

  .works-detail__meta {
    gap: 20px;
  }

  .works-detail__summary {
    font-size: 15px;
  }

  /* --- Recruit Hero --- */
  .recruit-hero {
    align-items: flex-start;
  }

  .recruit-hero::before {
    background: linear-gradient(
      to bottom,
      rgba(6, 13, 24, 0.95) 0%,
      rgba(6, 13, 24, 0.80) 30%,
      rgba(6, 13, 24, 0.40) 58%,
      rgba(6, 13, 24, 0.10) 80%,
      transparent 100%
    );
  }

  .recruit-hero__inner {
    width: 100%;
    padding-top: calc(var(--header-height) + 28px);
    padding-inline-start: var(--container-padding);
  }

  .recruit-hero__images {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 52%;
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
  }

  .recruit-hero__heading {
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95), 0 0 40px rgba(0, 0, 0, 0.85), 0 0 80px rgba(0, 0, 0, 0.6);
  }

  .recruit-hero__desc {
    font-size: 13px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.95), 0 0 24px rgba(0, 0, 0, 0.85);
  }

  /* --- Recruit Catch --- */
  .recruit-catch {
    height: 180px;
    margin-top: 32px;
  }

  .recruit-catch__img--1 {
    width: calc(33.33% + 20px);
    clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
  }

  .recruit-catch__img--2 {
    left: calc(33.33% + 4px);
    width: calc(33.34% - 8px);
    clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
  }

  .recruit-catch__img--3 {
    width: calc(33.33% + 20px);
    clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%);
  }

  .recruit-catch__copy {
    font-size: 18px;
    line-height: 1.6;
  }

  .staff-interview {
    padding-top: 48px;
    padding-bottom: 16px;
  }

  /* Staff Interview - フォントサイズ縮小 */
  .staff-interview__hd {
    margin-bottom: 32px;
  }
  .staff-interview__bg-text {
    font-size: clamp(40px, 10vw, 64px);
    margin-bottom: -20px;
  }
  .staff-interview__title {
    font-size: clamp(22px, 5.5vw, 28px);
  }
  .staff-interview__desc {
    font-size: 13px;
    margin-top: 10px;
    line-height: 1.9;
  }

  /* Staff Interview スライダー - 3枚表示 + タイトルはみ出し */
  .staff-interview__slider-outer {
    height: calc(min(300px, 80vw) * 4 / 3 + 200px);
  }
  .staff-interview__slide {
    width: min(300px, 80vw);
    padding-bottom: 150px;
  }
  .staff-interview__slide.is-next {
    transform: translate(
      calc(-50% + clamp(160px, 44vw, 475px)),
      calc(-50% - 8px)
    ) scale(0.82);
  }
  .staff-interview__slide.is-prev {
    transform: translate(
      calc(-50% - clamp(160px, 44vw, 475px)),
      calc(-50% + 8px)
    ) scale(0.82);
  }

  /* Staff Interview テキスト - 画像底からはみ出す配置 */
  .staff-interview__info {
    left: 0;
    right: 0;
  }
  .staff-interview__catch {
    display: block;
    font-size: 13px;
    padding: 10px 14px;
    line-height: 1.65;
  }
  .staff-interview__meta {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 10px 20px;
    gap: 6px;
  }
  .staff-interview__role {
    font-size: 10px;
    padding: 2px 7px;
    white-space: normal;
  }
  .staff-interview__name {
    font-size: 15px;
    color: var(--color-primary);
    text-shadow: none;
  }
  .staff-interview__link {
    margin-left: 0;
    font-size: 10px;
    padding: 5px 9px;
    color: var(--color-primary);
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.2);
  }
  .staff-interview__dots {
    margin-top: 8px;
  }

  /* Entry Form */
  .entry {
    padding-block: 48px 56px;
  }
  .entry__hd {
    margin-bottom: 32px;
  }
  .entry-form {
    border-top: none;
  }
  .form__row {
    grid-template-columns: 1fr;
    border-bottom: none;
  }
  .form__label-cell {
    padding: 16px 0 6px;
  }
  .form__input-cell {
    border-left: none;
    padding: 0 0 16px;
    align-items: flex-start;
  }

  /* Requirements */
  .requirements {
    padding-bottom: 32px;
  }
  .requirements__bg-text {
    font-size: clamp(40px, 10vw, 64px);
    margin-bottom: -16px;
  }

  /* Benefits */
  .benefits {
    padding-top: 32px;
  }
  .benefits__grid {
    grid-template-columns: 1fr;
  }
  .benefits__bg-text {
    font-size: clamp(40px, 10vw, 64px);
    margin-bottom: -16px;
  }
  .benefits__card {
    padding: 10px 8px 10px;
  }
  .benefits__icon {
    width: 28px;
    height: 28px;
    margin-bottom: 6px;
  }
  .benefits__card-title {
    font-size: 13px;
    margin-bottom: 4px;
  }
  .benefits__card-text {
    font-size: 13px;
    line-height: 1.6;
  }
  .benefits__note {
    display: none;
  }
}

/* ========================================
   CONTACT HERO SECTION
   ======================================== */
.contact-hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 560px;
  background-color: var(--color-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #060d18 0%,
    #060d18 22%,
    rgba(6, 13, 24, 0.92) 34%,
    rgba(6, 13, 24, 0.50) 46%,
    rgba(6, 13, 24, 0.12) 56%,
    transparent 65%
  );
  z-index: 2;
  pointer-events: none;
}

.contact-hero__inner {
  position: relative;
  z-index: 3;
  padding-top: var(--header-height);
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline-start: clamp(24px, 5vw, 72px);
}

.contact-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.50);
  margin-bottom: 32px;
}

.contact-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.50);
  transition: color 0.2s;
}

.contact-hero__breadcrumb a:hover {
  color: var(--color-text-light);
}

.contact-hero__breadcrumb-sep {
  color: rgba(255, 255, 255, 0.28);
}

.contact-hero__heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  white-space: nowrap;
}

.contact-hero__slash {
  color: var(--color-accent);
  margin-right: 4px;
  font-style: normal;
}

.contact-hero__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  margin-bottom: 30px;
}

.contact-hero__desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
}

.contact-hero__images {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  display: grid;
  grid-template-columns: 56fr 44fr;
  grid-template-rows: 57fr 43fr;
  row-gap: 3px;
  column-gap: 0;
  background: var(--color-primary);
  clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.contact-hero__img {
  overflow: hidden;
}

.contact-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero__img--top {
  grid-column: 1 / -1;
  grid-row: 1;
}

.contact-hero__img--bl {
  grid-column: 1 / -1;
  grid-row: 2;
  clip-path: polygon(0 0, calc(56% + 34px) 0, 56% 100%, 0 100%);
}

.contact-hero__img--bl img {
  width: calc(56% + 34px);
  object-position: center center;
}

.contact-hero__img--br {
  grid-column: 2;
  grid-row: 2;
  clip-path: polygon(34px 0, 100% 0, 100% 100%, 0 100%);
}

/* ========================================
   Responsive : Topics Page
   ======================================== */
@media screen and (max-width: 1024px) {
  .topics-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .topics-featured__link {
    grid-template-columns: 1fr;
  }

  .topics-featured__body {
    padding: 28px 32px 36px;
  }
}

@media screen and (max-width: 767px) {
  /* Topics Hero */
  .topics-hero {
    align-items: flex-start;
  }

  .topics-hero::before {
    background: linear-gradient(
      to bottom,
      rgba(6, 13, 24, 0.95) 0%,
      rgba(6, 13, 24, 0.80) 30%,
      rgba(6, 13, 24, 0.40) 58%,
      rgba(6, 13, 24, 0.10) 80%,
      transparent 100%
    );
  }

  .topics-hero__inner {
    width: 100%;
    padding-top: calc(var(--header-height) + 28px);
    padding-inline-start: var(--container-padding);
  }

  .topics-hero__images {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 52%;
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
  }

  .topics-hero__heading {
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95), 0 0 40px rgba(0, 0, 0, 0.85), 0 0 80px rgba(0, 0, 0, 0.6);
  }

  .topics-hero__desc {
    font-size: 13px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.95), 0 0 24px rgba(0, 0, 0, 0.85);
  }

  /* Topics List */
  .topics-list {
    padding-block: 72px 80px;
  }

  .topics-list__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .topics-filter {
    gap: 6px;
    margin-bottom: 32px;
  }

  .topics-filter__btn {
    padding: 7px 14px;
    font-size: 12px;
  }

  /* Topics Featured */
  .topics-featured {
    margin-bottom: 36px;
  }

  .topics-featured__body {
    padding: 24px 20px 28px;
  }

  /* Topics Detail */
  .topics-detail__hero {
    height: 45vw;
    min-height: 200px;
    max-height: 360px;
  }

  .topics-detail__article {
    padding-top: 40px;
    padding-bottom: 72px;
  }

  .topics-detail__nav {
    grid-template-columns: 1fr;
  }

  .topics-detail__nav-item--next {
    text-align: left;
    border-top: 1px solid var(--color-border);
  }

  .topics-detail__nav-item--next .topics-detail__nav-dir {
    justify-content: flex-start;
  }
}

/* ========================================
   CONTACT INFO SECTION
   ======================================== */
.contact-info {
  padding-block: 100px 120px;
  background: var(--color-bg-light);
}

.contact-info__hd {
  position: relative;
  margin-bottom: 60px;
}

.contact-info__bg-text {
  display: block;
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 900;
  color: #e0e5ee;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: -24px;
  pointer-events: none;
  user-select: none;
}

.contact-info__hd-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
}

.contact-info__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.22em;
  margin-bottom: 12px;
}

.contact-info__heading {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
}

.contact-info__heading-accent {
  color: var(--color-accent);
}

.contact-info__desc {
  font-size: 15px;
  line-height: 2.0;
  color: var(--color-text);
}

/* Cards */
.contact-info__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
}

.contact-card__hd {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-card__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
}

.contact-card__text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 16px;
}

.contact-card__tel {
  display: block;
  font-size: clamp(26px, 3.2vw, 32px);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  transition: opacity 0.2s;
}

.contact-card__tel:hover {
  opacity: 0.75;
}

.contact-card__hours {
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.contact-card__hours-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.06em;
}

.contact-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  margin-top: auto;
  background: var(--color-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.04em;
}

.contact-card__btn:hover {
  background: var(--color-accent-dark);
  transform: translateY(1px);
}

/* ========================================
   CONTACT FLOW SECTION
   ======================================== */
.contact-flow {
  padding-block: 40px 48px;
  background: var(--color-bg);
}

.contact-flow__hd {
  margin-bottom: 28px;
}

.contact-flow__bg-text {
  display: block;
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 900;
  color: #e0e5ee;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: -24px;
  pointer-events: none;
  user-select: none;
}

.contact-flow__label {
  position: relative;
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.22em;
  margin-bottom: 8px;
}

.contact-flow__title-row {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-flow__title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--color-primary);
}

.contact-flow__subtitle {
  font-size: 13px;
  color: var(--color-text-muted);
}

.contact-flow__steps {
  display: flex;
  align-items: stretch;
}

.contact-flow__step {
  flex: 1;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: 4px;
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
}

.contact-flow__step-hd {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-flow__step-num {
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  color: var(--color-accent);
  line-height: 1;
  flex-shrink: 0;
}

.contact-flow__step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
}

.contact-flow__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex: 1;
  min-height: 52px;
  margin-bottom: 14px;
}

.contact-flow__step-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text);
  text-align: center;
}

.contact-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  flex-shrink: 0;
  color: var(--color-accent);
}

/* ========================================
   CONTACT FAQ SECTION
   ======================================== */
.contact-faq {
  padding-block: 56px 64px;
  background: var(--color-bg-light);
}

.contact-faq__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
  align-items: start;
  width: 100%;
}

.contact-faq__title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 28px;
}

.contact-faq__item {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}

.contact-faq__q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
}

.contact-faq__q-badge {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
  flex-shrink: 0;
  width: 18px;
}

.contact-faq__q-text {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.5;
}

.contact-faq__toggle {
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  color: var(--color-text-muted, #999);
  cursor: pointer;
  transition: transform 0.25s ease, color 0.2s;
  line-height: 1;
}

.contact-faq__item.is-open .contact-faq__toggle {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.contact-faq__a {
  display: none;
  align-items: baseline;
  gap: 16px;
  padding: 16px 20px 20px;
  font-size: 14px;
  line-height: 1.9;
  color: #888;
  border-top: 1px solid #e0e0e0;
}

.contact-faq__item.is-open .contact-faq__a {
  display: flex;
}

.contact-faq__a-badge {
  font-size: 15px;
  font-weight: 700;
  color: #aaa;
  flex-shrink: 0;
  width: 18px;
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */
.contact-form-section {
  padding-block: 100px 120px;
  background: #fff;
}

.contact-form-inner {
  max-width: 860px;
  margin: 0 auto;
}

.contact-form-heading {
  text-align: center;
  margin-bottom: 56px;
}

.contact-form-heading__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.contact-form-heading__title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.contact-form-heading__desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-light);
}

.contact-form {
  border-top: 1px solid var(--color-border);
  max-width: 100%;
}

/* ========================================
   Responsive : Contact Page
   ======================================== */
@media screen and (max-width: 767px) {
  .contact-hero {
    align-items: flex-start;
  }

  .contact-hero::before {
    background: linear-gradient(
      to bottom,
      rgba(6, 13, 24, 0.95) 0%,
      rgba(6, 13, 24, 0.80) 30%,
      rgba(6, 13, 24, 0.40) 58%,
      rgba(6, 13, 24, 0.10) 80%,
      transparent 100%
    );
  }

  .contact-hero__inner {
    width: 100%;
    padding-top: calc(var(--header-height) + 28px);
    padding-inline-start: var(--container-padding);
  }

  .contact-hero__images {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 52%;
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
  }

  .contact-hero__heading {
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95), 0 0 40px rgba(0, 0, 0, 0.85), 0 0 80px rgba(0, 0, 0, 0.6);
  }

  .contact-hero__desc {
    font-size: 13px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.95), 0 0 24px rgba(0, 0, 0, 0.85);
  }

  /* Contact Info */
  .contact-info {
    padding-block: 72px 80px;
  }

  .contact-info__hd-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-info__bg-text {
    margin-bottom: -28px;
  }

  .contact-info__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card {
    padding: 28px 24px 32px;
  }

  .contact-card__tel {
    font-size: clamp(26px, 7vw, 32px);
  }

  /* Contact Flow */
  .contact-flow {
    padding-block: 40px 48px;
  }

  .contact-flow__hd {
    flex-wrap: wrap;
    gap: 8px;
  }

  .contact-flow__steps {
    flex-direction: column;
  }

  .contact-flow__arrow {
    width: 100%;
    height: 36px;
    transform: rotate(90deg);
  }

  /* Contact FAQ */
  .contact-faq {
    padding-block: 64px 72px;
  }

  .contact-faq__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }


  /* Contact Form */
  .contact-form-section {
    padding-block: 20px 40px;
  }

  .contact-form-heading {
    margin-bottom: 12px;
  }

  .form__input-cell {
    border-top: none;
  }

  .contact-form-heading__desc br {
    display: none;
  }
}

/* ========================================
   THANKS HERO SECTION
   ======================================== */
.thanks-hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 560px;
  background-color: var(--color-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.thanks-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #060d18 0%,
    #060d18 22%,
    rgba(6, 13, 24, 0.92) 34%,
    rgba(6, 13, 24, 0.50) 46%,
    rgba(6, 13, 24, 0.12) 56%,
    transparent 65%
  );
  z-index: 2;
  pointer-events: none;
}

.thanks-hero__inner {
  position: relative;
  z-index: 3;
  padding-top: var(--header-height);
  width: 100%;
  padding-inline-start: clamp(24px, 5vw, 72px);
}

.thanks-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.50);
  margin-bottom: 28px;
}

.thanks-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.50);
  transition: color 0.2s;
}

.thanks-hero__breadcrumb a:hover {
  color: var(--color-text-light);
}

.thanks-hero__breadcrumb-sep {
  color: rgba(255, 255, 255, 0.28);
}

.thanks-hero__breadcrumb-current {
  color: var(--color-accent);
}

.thanks-hero__heading {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.thanks-hero__heading-line1 {
  display: block;
  font-style: italic;
}

.thanks-hero__slash {
  color: var(--color-accent);
  margin-right: 4px;
  font-style: normal;
}

.thanks-hero__heading-line2 {
  display: block;
  color: var(--color-accent);
}

.thanks-hero__desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.7);
  max-width: 400px;
  margin-bottom: 12px;
}

.thanks-hero__countdown {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 36px;
}

.thanks-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--color-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}

.thanks-hero__btn:hover {
  background: var(--color-accent-dark);
}

.thanks-hero__btn:active {
  transform: scale(0.98);
}

.thanks-hero__images {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  display: grid;
  grid-template-columns: 56fr 44fr;
  grid-template-rows: 57fr 43fr;
  row-gap: 3px;
  column-gap: 0;
  background: var(--color-primary);
  clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.thanks-hero__img {
  overflow: hidden;
}

.thanks-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.thanks-hero__img--top {
  grid-column: 1 / -1;
  grid-row: 1;
}

.thanks-hero__img--bl {
  grid-column: 1;
  grid-row: 2;
}

.thanks-hero__img--br {
  grid-column: 2;
  grid-row: 2;
}

/* ========================================
   PRIVACY HERO SECTION
   ======================================== */
.privacy-hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 560px;
  background-color: var(--color-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.privacy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #060d18 0%,
    #060d18 22%,
    rgba(6, 13, 24, 0.92) 34%,
    rgba(6, 13, 24, 0.50) 46%,
    rgba(6, 13, 24, 0.12) 56%,
    transparent 65%
  );
  z-index: 2;
  pointer-events: none;
}

.privacy-hero__inner {
  position: relative;
  z-index: 3;
  padding-top: var(--header-height);
  width: 100%;
  padding-inline-start: clamp(24px, 5vw, 72px);
}

.privacy-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.50);
  margin-bottom: 32px;
}

.privacy-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.50);
  transition: color 0.2s;
}

.privacy-hero__breadcrumb a:hover {
  color: var(--color-text-light);
}

.privacy-hero__breadcrumb-sep {
  color: rgba(255, 255, 255, 0.28);
}

.privacy-hero__heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  white-space: nowrap;
}

.privacy-hero__slash {
  color: var(--color-accent);
  margin-right: 4px;
  font-style: normal;
}

.privacy-hero__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  margin-bottom: 30px;
}

.privacy-hero__desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.7);
  max-width: 420px;
}

.privacy-hero__images {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  display: grid;
  grid-template-columns: 56fr 44fr;
  grid-template-rows: 57fr 43fr;
  row-gap: 3px;
  column-gap: 0;
  background: var(--color-primary);
  clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.privacy-hero__img {
  overflow: hidden;
}

.privacy-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.privacy-hero__img--top {
  grid-column: 1 / -1;
  grid-row: 1;
}

.privacy-hero__img--bl {
  grid-column: 1;
  grid-row: 2;
}

.privacy-hero__img--br {
  grid-column: 2;
  grid-row: 2;
}

/* ========================================
   Responsive : Thanks Page
   ======================================== */
@media screen and (max-width: 767px) {
  .thanks-hero {
    align-items: flex-end;
    padding-bottom: 60px;
  }

  .thanks-hero__images {
    top: 0;
    width: 100%;
    height: 52%;
    clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
  }

  .thanks-hero__inner {
    padding-top: 0;
  }

  .thanks-hero__heading {
    font-size: clamp(28px, 7vw, 40px);
  }

  .thanks-hero__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   PRIVACY CONTENT SECTION
   ======================================== */
.privacy-content {
  padding-block: 100px 120px;
  background: #fff;
}

.privacy-content__inner {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content__lead {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 56px;
}

.privacy-section {
  margin-bottom: 48px;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.privacy-section__body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
}

.privacy-section__list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.privacy-section__list-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 16px;
}

.privacy-section__list-num {
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

.privacy-section__list-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.privacy-section__list-sub {
  font-size: 13px;
  color: var(--color-text-light);
  padding-left: 1em;
  position: relative;
}

.privacy-section__list-sub::before {
  content: '―';
  position: absolute;
  left: 0;
  color: var(--color-border);
}

.privacy-section__contact {
  margin-top: 20px;
  padding: 24px 28px;
  background: var(--color-bg-light);
  border-left: 3px solid var(--color-accent);
  font-size: 14px;
  line-height: 2.0;
  color: var(--color-text);
}

.privacy-section__contact strong {
  display: block;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

/* ========================================
   Responsive : Privacy Page
   ======================================== */
@media screen and (max-width: 767px) {
  .privacy-hero {
    align-items: flex-start;
  }

  .privacy-hero::before {
    background: linear-gradient(
      to bottom,
      rgba(6, 13, 24, 0.95) 0%,
      rgba(6, 13, 24, 0.80) 30%,
      rgba(6, 13, 24, 0.40) 58%,
      rgba(6, 13, 24, 0.10) 80%,
      transparent 100%
    );
  }

  .privacy-hero__inner {
    width: 100%;
    padding-top: calc(var(--header-height) + 28px);
    padding-inline-start: var(--container-padding);
  }

  .privacy-hero__images {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 52%;
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
  }

  .privacy-hero__heading {
    white-space: normal;
    font-size: clamp(24px, 6vw, 36px);
    text-shadow: 0 2px 16px rgba(0,0,0,0.95), 0 0 40px rgba(0,0,0,0.85), 0 0 80px rgba(0,0,0,0.6);
  }

  .privacy-hero__desc {
    font-size: 13px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.95), 0 0 24px rgba(0,0,0,0.85);
  }

  /* Privacy Content */
  .privacy-content {
    padding-block: 72px 80px;
  }

  .privacy-section__contact {
    padding: 20px;
  }
}


/* ========================================
   Interview Hero
   ======================================== */
.interview-hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 560px;
  background-color: #F5F0E8;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.interview-hero .hero__streams {
  display: none;
}

.interview-hero__inner {
  position: relative;
  z-index: 3;
  padding-top: var(--header-height);
  width: 100%;
  padding-inline-start: clamp(24px, 5vw, 72px);
}

.interview-hero__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(11, 27, 43, 0.45);
  margin-bottom: 32px;
}

.interview-hero__breadcrumb a {
  color: rgba(11, 27, 43, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.interview-hero__breadcrumb a:hover {
  color: var(--color-primary);
}

.interview-hero__breadcrumb-sep {
  color: rgba(11, 27, 43, 0.25);
}

.interview-hero__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  margin-bottom: 24px;
}

.interview-hero__catch {
  font-size: clamp(26px, 3.4vw, 52px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.65;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.interview-hero__desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 2.2;
  color: rgba(11, 27, 43, 0.6);
  max-width: 480px;
}

/* 右側：画像グリッド（上段全幅 + 下段2枚並び） */
.interview-hero__images {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  display: grid;
  grid-template-columns: 56fr 44fr;
  grid-template-rows: 57fr 43fr;
  row-gap: 3px;
  column-gap: 0;
  background: #F5F0E8;
  clip-path: url(#interview-hero-img-clip);
  z-index: 1;
}

.interview-hero__img {
  overflow: hidden;
}

.interview-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-hero__img--top {
  grid-column: 1 / -1;
  grid-row: 1;
}

.interview-hero__img--top img {
  object-position: center top;
}

.interview-hero__img--bl {
  grid-column: 1 / -1;
  grid-row: 2;
  clip-path: polygon(0 0, calc(56% + 34px) 0, 56% 100%, 0 100%);
}

.interview-hero__img--bl img {
  width: calc(56% + 34px);
  object-position: center center;
}

.interview-hero__img--br {
  grid-column: 2;
  grid-row: 2;
  clip-path: polygon(34px 0, 100% 0, 100% 100%, 0 100%);
}


/* ========================================
   Scroll Down Animation
   ======================================== */
.scroll_down {
  background: transparent;
  text-align: center;
  padding: 40px 0 24px;
  position: relative;
}

.scroll_down a {
  display: inline-block;
  position: relative;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding-bottom: 52px;
}

.scroll_down a::before {
  position: absolute;
  bottom: 13px;
  left: calc(50% - 6px);
  display: block;
  width: 12px;
  height: 12px;
  content: "";
  border: 2px solid var(--color-primary);
  border-width: 0 0 2px 2px;
  animation: scrollBounce 2s linear infinite;
}

.scroll_down a::after {
  position: absolute;
  bottom: 2px;
  left: calc(50% - 16px);
  width: 32px;
  height: 32px;
  border: 2px solid var(--color-primary);
  content: "";
  border-radius: 50%;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 70%, 80%, 100% {
    transform: rotate(-45deg) translateY(0);
  }
  40% {
    transform: rotate(-45deg) translateY(-6px);
  }
  60% {
    transform: rotate(-45deg) translateY(-3px);
  }
}


/* ========================================
   Interview Introduction
   ======================================== */
.interview-intro {
  position: relative;
  background: #ffffff;
  padding-top: 0;
  padding-bottom: 48px;
  z-index: 2;
}

.interview-intro::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: -2%;
  width: 104%;
  height: 80px;
  background: #ffffff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
}

.interview-intro__inner {
  max-width: 720px;
  margin: 0 auto;
  padding-inline: var(--container-padding);
  text-align: center;
}

.interview-intro__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.22em;
  margin-bottom: 16px;
}

.interview-intro__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.interview-intro__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 2.4;
  color: rgba(11, 27, 43, 0.65);
  text-align: left;
}


/* ========================================
   Interview Staff Hero
   ======================================== */
.interview-staff-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.interview-staff-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.interview-staff-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.interview-staff-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(11, 27, 43, 0.93) 0%,
    rgba(11, 27, 43, 0.82) 28%,
    rgba(11, 27, 43, 0.52) 50%,
    rgba(11, 27, 43, 0.12) 68%,
    rgba(11, 27, 43, 0) 80%
  );
}

.interview-staff-hero__name-en {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.10);
  letter-spacing: 0.04em;
  padding-inline: 10px;
  line-height: 1;
  display: flex;
  align-items: center;
  pointer-events: none;
  user-select: none;
}

.interview-staff-hero__content {
  position: relative;
  z-index: 3;
  padding-inline-start: clamp(72px, 9vw, 136px);
  padding-inline-end: clamp(24px, 4vw, 48px);
  max-width: 640px;
}

.interview-staff-hero__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.22em;
  margin-bottom: 20px;
}

.interview-staff-hero__catch {
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 28px;
  white-space: nowrap;
}

.interview-staff-hero__meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  border-left: 2px solid var(--color-accent);
  padding-left: 14px;
}

.interview-staff-hero__role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.70);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.interview-staff-hero__name {
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.interview-staff-hero__desc {
  font-size: 14px;
  line-height: 2.3;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}


/* ========================================
   Interview Content (Q&A)
   ======================================== */
.interview-content {
  background: #fff;
  padding-block: 88px 0;
}

.interview-content__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-inline: var(--container-padding);
  padding-bottom: 48px;
}

.interview-content__banner {
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.interview-content__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.interview-profile {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px;
  background: var(--color-bg-light);
  margin-bottom: 72px;
}

.interview-profile__photo {
  width: 130px;
  height: 160px;
  flex-shrink: 0;
  overflow: hidden;
}

.interview-profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.interview-profile__body {
  flex: 1;
  min-width: 0;
}

.interview-profile__name-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.interview-profile__name {
  display: inline-block;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
}

.interview-profile__name-en {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.interview-profile__divider {
  border: none;
  border-top: 1px dashed var(--color-border);
  margin-bottom: 20px;
}

.interview-profile__bio {
  font-size: 14px;
  line-height: 2.1;
  color: var(--color-text-muted);
}

.interview-qa {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.interview-qa__item {
  padding-block: 52px;
  border-bottom: 1px solid var(--color-border);
}

.interview-qa__item:first-child {
  padding-top: 0;
}

.interview-qa__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.6;
  letter-spacing: 0.02em;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.interview-qa__heading::before {
  content: '';
  display: block;
  width: 8px;
  height: 22px;
  background: var(--color-accent);
  flex-shrink: 0;
}

.interview-qa__text {
  font-size: 15px;
  line-height: 2.2;
  color: #4a4a4a;
}


/* ========================================
   Interview Section Header (shared)
   ======================================== */
.interview-section-hd {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 28px;
}

.interview-section-hd__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.interview-section-hd__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.03em;
}


/* ========================================
   Interview Work Style
   ======================================== */
.interview-workstyle {
  background: #fff;
  padding-block: 80px 56px;
}

.interview-workstyle__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-inline: var(--container-padding);
}

.interview-flow {
  display: flex;
  align-items: center;
  background: var(--color-bg-light);
  border-radius: 8px;
  padding: 32px 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.interview-flow__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 88px;
}

.interview-flow__icon {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
}

.interview-flow__icon svg {
  width: 100%;
  height: 100%;
}

.interview-flow__time {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.03em;
}

.interview-flow__text {
  font-size: 12px;
  color: rgba(11, 27, 43, 0.65);
  text-align: center;
  line-height: 1.65;
}

.interview-flow__arrow {
  font-size: 22px;
  color: var(--color-accent);
  flex-shrink: 0;
  padding-inline: 2px;
  line-height: 1;
  margin-bottom: 22px;
}


/* ========================================
   Interview Why Impact
   ======================================== */
.interview-why {
  background: #fff;
  padding-block: 0 88px;
}

.interview-why__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-inline: var(--container-padding);
}

.interview-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.interview-why__card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 18px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.interview-why__card-icon {
  width: 36px;
  height: 36px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.interview-why__card-icon svg {
  width: 100%;
  height: 100%;
}

.interview-why__card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.interview-why__card-text {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(11, 27, 43, 0.65);
}


/* ========================================
   Interview Members Navigation
   ======================================== */
.interview-members {
  background: var(--color-bg-light);
  padding-block: 80px;
}

.interview-members__inner {
  max-width: 960px;
  margin: 0 auto;
  padding-inline: var(--container-padding);
}

.interview-members__hd {
  text-align: center;
  margin-bottom: 48px;
}

.interview-members__label {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 8px;
}

.interview-members__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.04em;
}

.interview-members__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.interview-members__card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 2px solid transparent;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.interview-members__card:hover:not(.interview-members__card--active) {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.interview-members__card--active {
  border-color: var(--color-accent);
  pointer-events: none;
}

.interview-members__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.interview-members__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.interview-members__card:hover .interview-members__photo img {
  transform: scale(1.04);
}

.interview-members__info {
  padding: 14px 16px 16px;
}

.interview-members__role {
  font-size: 10px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  line-height: 1.5;
}

.interview-members__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.04em;
}

.interview-members__now {
  display: none;
  font-size: 10px;
  color: var(--color-accent);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.06em;
}

.interview-members__card--active .interview-members__now {
  display: block;
}

.interview-members__back {
  text-align: center;
}

.interview-members__back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.interview-members__back-link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}


/* ========================================
   Responsive : Interview Pages
   ======================================== */
@media screen and (max-width: 767px) {
  .interview-hero {
    align-items: flex-start;
  }

  .interview-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      #F5F0E8 0%,
      #F5F0E8 48%,
      rgba(245, 240, 232, 0.65) 62%,
      transparent 78%
    );
  }

  .interview-hero__inner {
    width: 100%;
    padding-top: calc(var(--header-height) + 28px);
    padding-inline-start: var(--container-padding);
  }

  .interview-hero__images {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 55%;
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
  }

  .interview-hero__img--bl,
  .interview-hero__img--br {
    clip-path: none;
  }

  .interview-hero__img--bl img {
    width: 100%;
  }

  .interview-hero__catch {
    text-shadow:
      0 0 16px rgba(245, 240, 232, 1),
      0 0 32px rgba(245, 240, 232, 0.9),
      0 2px 8px rgba(245, 240, 232, 0.8);
  }

  .interview-hero__desc {
    text-shadow:
      0 0 12px rgba(245, 240, 232, 1),
      0 0 24px rgba(245, 240, 232, 0.9);
  }

  .scroll_down {
    padding: 4px 0 8px;
  }

  .interview-staff-hero {
    height: auto;
    min-height: 480px;
    align-items: flex-end;
    padding-bottom: 24px;
  }

  .interview-staff-hero__bg img {
    object-position: 70% 25%;
  }

  .interview-staff-hero__overlay {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 40%,
      rgba(11, 27, 43, 0.50) 60%,
      rgba(11, 27, 43, 0.85) 80%,
      rgba(11, 27, 43, 0.95) 100%
    );
  }

  .interview-staff-hero__name-en {
    font-size: clamp(36px, 10vw, 56px);
    opacity: 0.6;
  }

  .interview-staff-hero__content {
    padding-inline-start: 28px;
    padding-inline-end: 28px;
    max-width: 100%;
  }

  .interview-staff-hero__catch {
    font-size: clamp(20px, 5.5vw, 28px);
  }

  .interview-profile {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }

  .interview-profile__photo {
    width: 150px;
    height: 185px;
  }

  .interview-content {
    padding-block: 48px 0;
  }

  .interview-content__inner {
    padding-bottom: 24px;
  }

  .interview-content__banner {
    height: 220px;
  }

  .interview-qa__item {
    padding-block: 32px;
  }

  .interview-qa__item {
    border-bottom: none;
  }

  .interview-qa__heading {
    font-size: 14px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: none;
  }

  .interview-qa__text {
    font-size: 13px;
  }

  .interview-workstyle {
    padding-block: 64px 56px;
  }

  .interview-section-hd {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
  }

  .interview-flow {
    flex-direction: column;
    overflow-x: visible;
    padding: 24px 0;
    gap: 0;
  }

  .interview-flow__item {
    width: 100%;
    min-width: unset;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    text-align: left;
  }

  .interview-flow__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .interview-flow__time {
    font-size: 13px;
    min-width: 44px;
  }

  .interview-flow__text {
    text-align: left;
    font-size: 12px;
    color: var(--color-primary);
  }


  .interview-flow__arrow {
    transform: rotate(90deg);
    display: block;
    text-align: center;
  }

  .interview-why__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .interview-members {
    padding-block: 40px;
  }

  .interview-members__role {
    font-size: 9px;
  }

  .interview-members__hd {
    margin-bottom: 24px;
  }

  .interview-members__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
  }
}
