/* ========================================
   CIS 採用ページ - カスタムスタイル
   ======================================== */

/*
  目次 (Table of Contents)
  ----------------------------------------
  1. ベース
     - アイコン
     - カラー変数
     - ベーススタイル

  2. レイアウト
     - ヘッダー（通常・展開モード）
     - ヒーローセクション
     - セクション共通
     - フッター

  3. コンポーネント
     - ボタン
     - カード（職種・Note・マガジン・リンク）
     - フォーム
     - テーブル
     - ローディング

  4. ページ固有
     - 技術スタックセクション
     - 数字で見るセクション
     - 開発文化セクション
     - CTAセクション
     - 職種詳細ページ

  5. ユーティリティ
     - テキスト
     - マージン・パディング
     - Flexbox・Grid
     - その他

  6. レスポンシブ
     - タブレット (max-width: 1024px)
     - モバイル (max-width: 768px)
  ----------------------------------------
*/

/* ========================================
   1. ベース - アイコン
   ======================================== */

/* Lucide Icons スタイル */
.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  stroke-width: 2;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-md {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-xl {
  width: 2rem;
  height: 2rem;
}

.icon-2xl {
  width: 2.5rem;
  height: 2.5rem;
}

.icon-primary {
  color: var(--color-primary);
}

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

.icon-white {
  color: white;
}

.icon-muted {
  color: var(--color-text-light);
}

/* ========================================
   1. ベース - カラー変数
   ======================================== */
:root {
  --color-primary: #f97316;       /* オレンジ */
  --color-primary-dark: #ea580c;
  --color-primary-light: #fed7aa;
  --color-accent: #3b82f6;        /* ブルー - 技術的な印象 */
  --color-accent-light: #dbeafe;
  --color-accent-dark: #1d4ed8;
  --color-success: #10b981;       /* グリーン */
  --color-text: #1f2937;
  --color-text-light: #6b7280;
  --color-text-muted: #9ca3af;
  --color-bg: #ffffff;
  --color-bg-gray: #f9fafb;
  --color-bg-dark: #111827;
  --color-border: #e5e7eb;

  /* グラデーション */
  --gradient-primary: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  --gradient-hero: linear-gradient(135deg, #1f2937 0%, #111827 100%);

  /* シャドウ */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, 0.15);

  /* アニメーション */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========================================
   1. ベース - ベーススタイル
   ======================================== */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: var(--color-text);
  line-height: 1.8;
}

.sp-only {
  display: none;
}

/* ========================================
   2. レイアウト - ヘッダー
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* モバイル専用リンク・ボタン（PC時は非表示） */
.nav-privacy-link,
.mobile-menu-close {
  display: none;
}

.nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--color-primary);
}

/* エントリーボタン */
.btn-entry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
}

.btn-entry:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px -2px rgba(249, 115, 22, 0.4);
}

.btn-entry-label {
  font-weight: 700;
  letter-spacing: 0.05em;
}

.btn-entry-text {
  position: relative;
  z-index: 1;
}

/* もっと見るボタン */
.btn-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: white;
  color: var(--color-primary);
  font-weight: 600;
  border: 2px solid var(--color-primary);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-load-more:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px -2px rgba(249, 115, 22, 0.4);
}

/* ========================================
   ヘッダー展開モード（Hero状態）
   ======================================== */
.header--hero {
  position: absolute;
  top: 24px;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}

.header--hero .header-inner {
  height: 120px;
  padding: 0 2.5rem;
  max-width: 1400px;
}

/* ロゴ 2倍サイズ */
.header--hero .logo img {
  height: 72px;
  transition: height var(--transition-base);
}

/* 通常状態のロゴ */
.header:not(.header--hero) .logo img {
  height: 36px;
  transition: height var(--transition-base);
}

/* ナビメニュー - 展開時 */
.header--hero .nav-menu {
  gap: 1rem;
  align-items: flex-start;
}

/* ナビリンク - リッチデザイン（洗練されたスタイル） */
.header--hero .nav-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.header--hero .nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 100px;
}

.header--hero .nav-link:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 40px rgba(249, 115, 22, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: var(--color-primary);
}

.header--hero .nav-link:hover::before {
  opacity: 0.08;
}

.header--hero .nav-link:hover .nav-link-icon {
  transform: scale(1.15) rotate(-5deg);
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.header--hero .nav-link:hover .nav-link-text {
  color: var(--color-primary-dark);
}

.header--hero .nav-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #fff5eb 0%, #ffe4cc 100%);
  border-radius: 14px;
  color: var(--color-primary);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.header--hero .nav-link-icon svg {
  width: 22px;
  height: 22px;
}

.header--hero .nav-link-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
  white-space: nowrap;
}

/* エントリーボタン - 円形デザイン */
.header--hero .btn-entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  padding: 0;
  border-radius: 50%;
  font-weight: 700;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 40px rgba(249, 115, 22, 0.4),
    0 0 0 4px rgba(249, 115, 22, 0.1),
    inset 0 2px 0 rgba(255, 255, 255, 0.25);
  animation: entryFloat 3s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header--hero .btn-entry::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.header--hero .btn-entry::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 255, 255, 0.2) 60deg,
    transparent 120deg
  );
  animation: entryRotate 4s linear infinite;
}

.header--hero .btn-entry:hover {
  transform: scale(1.1);
  box-shadow:
    0 16px 60px rgba(249, 115, 22, 0.5),
    0 0 0 6px rgba(249, 115, 22, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.header--hero .btn-entry .btn-entry-label {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin-top: 0.75rem;
}

.header--hero .btn-entry .btn-entry-text {
  position: relative;
  z-index: 2;
  font-size: 0.625rem;
  font-weight: 600;
  margin-top: 0;
  padding: 0.2rem 0.5rem;
  background: #fff;
  color: var(--color-primary);
  border-radius: 9999px;
}

@keyframes entryFloat {
  0%, 100% {
    transform: translateY(0);
    box-shadow:
      0 8px 40px rgba(249, 115, 22, 0.4),
      0 0 0 4px rgba(249, 115, 22, 0.1),
      inset 0 2px 0 rgba(255, 255, 255, 0.25);
  }
  50% {
    transform: translateY(-6px);
    box-shadow:
      0 16px 50px rgba(249, 115, 22, 0.45),
      0 0 0 6px rgba(249, 115, 22, 0.12),
      inset 0 2px 0 rgba(255, 255, 255, 0.25);
  }
}

@keyframes entryRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 通常状態（縮小時）のナビリンク */
.header:not(.header--hero) .nav-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  min-width: auto;
}

.header:not(.header--hero) .nav-link::before {
  display: none;
}

.header:not(.header--hero) .nav-link-icon {
  display: none;
}

.header:not(.header--hero) .nav-link-text {
  font-size: 1rem;
}

/* 通常状態のエントリーボタン */
.header:not(.header--hero) .btn-entry {
  width: auto;
  height: auto;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  animation: none;
}

.header:not(.header--hero) .btn-entry::before,
.header:not(.header--hero) .btn-entry::after {
  display: none;
}

.header:not(.header--hero) .btn-entry .btn-entry-label {
  display: none;
}

.header:not(.header--hero) .btn-entry .btn-entry-text {
  background: transparent;
  color: #fff;
  padding: 0;
  margin-top: 0;
  font-size: inherit;
}

/* ヘッダー全体のトランジション */
.header {
  transition:
    background var(--transition-base),
    backdrop-filter var(--transition-base),
    border-color var(--transition-base),
    position 0s;
}

.header-inner {
  transition: height var(--transition-base), padding var(--transition-base);
}

/* 固定ヘッダー出現アニメーション */
.header--slide-in {
  animation: headerSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* アニメーション中は内部のトランジションを無効化 */
.header--slide-in,
.header--slide-in .header-inner,
.header--slide-in .logo img,
.header--slide-in .nav-link,
.header--slide-in .nav-link-icon,
.header--slide-in .btn-entry {
  transition: none !important;
}

@keyframes headerSlideIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* モバイルメニューボタン */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 24px;
  height: 24px;
}

.mobile-menu-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s;
}

.mobile-menu-label {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
  line-height: 1;
}

/* モバイルヘッダーアクション（ENTRY + MENU） */
.mobile-header-actions {
  display: none;
  align-items: center;
  gap: 0;
}

/* モバイルエントリーボタン */
.mobile-entry-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0.5rem;
  background: none;
  border: none;
  text-decoration: none;
  color: var(--color-primary);
}

.mobile-entry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.mobile-entry-icon svg {
  width: 24px;
  height: 24px;
}

.mobile-entry-label {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  line-height: 1;
}

/* ========================================
   2. レイアウト - ヒーローセクション
   ======================================== */
.hero {
  padding-top: 70px;
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #F7F9FC 0%, #FFFFFF 100%);
  position: relative;
  overflow-x: hidden;
}

/* Canvasアニメーション背景 */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ブラーしたblob背景 - オレンジ＆青緑 */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* blob - 右上オレンジ */
.hero-blob-orange {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 45vw;
  height: 45vw;
  max-width: 550px;
  max-height: 550px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, rgba(249, 115, 22, 0.15) 35%, rgba(249, 115, 22, 0.05) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* blob - 左上青（オレンジの補色） */
.hero-blob-teal {
  position: absolute;
  top: 10%;
  left: 0%;
  width: 40vw;
  height: 40vw;
  max-width: 450px;
  max-height: 450px;
  background: radial-gradient(circle, rgba(22, 144, 249, 0.18) 0%, rgba(22, 144, 249, 0.08) 35%, rgba(22, 144, 249, 0.03) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* blob - 中央下オレンジ（小さめ） */
.hero-blob-accent {
  position: absolute;
  bottom: 15%;
  left: 35%;
  width: 28vw;
  height: 28vw;
  max-width: 320px;
  max-height: 320px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, rgba(234, 88, 12, 0.08) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(45px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* ウェーブ - 下端区切り */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,80 L0,80 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.hero-inner--impact {
  max-width: 100%;
  padding: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero-content {
  max-width: 700px;
}

.hero-content--topleft {
  max-width: none;
  padding: 3rem;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-content--topleft .hero-subtitle {
  text-align: center;
  margin: 0 auto;
}

.hero-content--topleft .hero-cta {
  justify-content: center;
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 2rem;
}

.scroll-indicator--inline {
  position: static;
  transform: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease forwards;
  /* オレンジグラデーションテキスト */
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #f97316 0%, #ea580c 50%, #f97316 100%);
  background-size: 200% 100%;
  animation: fadeInUp 0.6s ease forwards, shimmer 3s ease-in-out infinite;
}

.hero-badge .badge-icon {
  display: flex;
  gap: 4px;
}

.hero-badge .badge-icon::before,
.hero-badge .badge-icon::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge .badge-icon::before {
  background: #f97316;
}

.hero-badge .badge-icon::after {
  background: #ea580c;
  animation-delay: 0.5s;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #0B1B2B;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero-title--xlarge {
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 1.15;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.hero-title--fullwidth {
  /* 横幅いっぱいに表示（改行なし） */
  font-size: 5.8vw;
  line-height: 1.3;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hero-title-line {
  display: block;
}

.hero-subtitle--visible {
  opacity: 1;
  animation: fadeInUp 0.6s ease 0.3s forwards;
}

.hero-title .highlight {
  background: linear-gradient(90deg, #f97316 0%, #ea580c 50%, #f97316 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 4s ease-in-out infinite;
}

@keyframes textShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #4B5563;
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.8;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(11, 27, 43, 0.1);
  margin-top: 3rem;
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0B1B2B;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat-value span {
  font-size: 1.5rem;
  color: #f97316;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(11, 27, 43, 0.5);
}

/* スクロール誘導 */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(11, 27, 43, 0.5);
  font-size: 0.75rem;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
}

/* ボタンバリエーション */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: #0B1B2B;
  font-weight: 600;
  border: 2px solid rgba(11, 27, 43, 0.3);
  border-radius: 9999px;
  text-decoration: none;
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  background: rgba(11, 27, 43, 0.05);
  border-color: rgba(11, 27, 43, 0.5);
}

/* ========================================
   2. レイアウト - セクション共通
   ======================================== */
.section {
  padding: 5rem 1.5rem;
}

.section-gray {
  background: var(--color-bg-gray);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 3rem;
}

/* ========================================
   3. コンポーネント - カード
   ======================================== */

/* カードグリッド */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Noteカードグリッド（4カラム） */
.note-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* マガジンカードグリッド（トップページ用・2カラム横並び） */
.magazine-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* 職種カード（横長一列レイアウト） */
.job-card {
  background: white;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.job-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary-light);
  background: #fffbf7;
}

.job-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 280px;
}

.job-card-title::after {
  content: none;
}

.job-card-desc {
  font-size: 0.875rem;
  color: var(--color-text-light);
  flex: 1;
  margin: 0;
  line-height: 1.4;
}

.job-card::after {
  content: '→';
  color: var(--color-primary);
  font-size: 1.25rem;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.job-card:hover::after {
  transform: translateX(4px);
}

/* シンプルな職種カード（タイトルのみ、他の募集職種用） */
.job-card-simple {
  padding: 1rem 1.5rem;
}

.job-card-simple .job-card-title {
  min-width: auto;
  flex: 1;
}

/* マガジンカード（トップページ用） */
.magazine-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.magazine-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.magazine-card img {
  width: 100%;
  height: auto;
  display: block;
}

.magazine-card-body {
  padding: 1.25rem;
}

.magazine-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.magazine-card-desc {
  color: var(--color-text-light);
  font-size: 0.875rem;
  margin: 0;
}

/* Noteカード */
.note-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.note-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.1);
}

.note-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-bg-gray);
}

.note-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.note-card:hover .note-card-image img {
  transform: scale(1.05);
}

.note-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.note-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.note-card-date {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: auto;
}

/* リンクカード */
.link-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-decoration: none;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary-light);
}

.link-card-icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.link-card-content {
  flex: 1;
}

.link-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.link-card-desc {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.link-card-arrow {
  color: var(--color-primary);
  font-size: 1.5rem;
  transition: transform 0.2s;
}

.link-card:hover .link-card-arrow {
  transform: translateX(4px);
}

/* ========================================
   3. コンポーネント - 選考フロー
   ======================================== */
.flow-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: 1rem 0;
}

.flow-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 140px;
}

.flow-step-number {
  --flow-number-size: 28px;
  width: var(--flow-number-size);
  height: var(--flow-number-size);
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 0.625rem;
  box-shadow:
    0 4px 12px rgba(249, 115, 22, 0.35),
    0 0 0 3px rgba(249, 115, 22, 0.1);
  position: relative;
  z-index: 2;
}

.flow-step-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.625rem;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1.5px solid var(--color-primary-light);
  color: var(--color-primary);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.flow-step-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 12px;
}

.flow-step-item:hover .flow-step-icon {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 12px 28px rgba(249, 115, 22, 0.25),
    0 4px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: var(--color-primary);
}

.flow-step-item:hover .flow-step-icon::before {
  opacity: 0.08;
}

.flow-step-icon svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.flow-step-item:hover .flow-step-icon svg {
  transform: scale(1.1);
}

.flow-step-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.flow-step-item:hover .flow-step-label {
  color: var(--color-primary-dark);
}

/* コネクターライン */
.flow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  margin-top: 46px;
  position: relative;
}

.flow-connector-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    var(--color-primary) 0%,
    var(--color-primary-light) 50%,
    var(--color-primary) 100%);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.flow-connector-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.8) 50%,
    transparent 100%);
  animation: flowShine 2s ease-in-out infinite;
}

@keyframes flowShine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.flow-connector-arrow {
  position: absolute;
  right: -3px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid var(--color-primary);
}

/* 縦コネクター（モバイル用） */
.flow-connector-vertical {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 36px;
  position: relative;
}

.flow-connector-vertical .flow-connector-line {
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg,
    var(--color-primary) 0%,
    var(--color-primary-light) 50%,
    var(--color-primary) 100%);
}

.flow-connector-vertical .flow-connector-line::before {
  animation: flowShineVertical 2s ease-in-out infinite;
}

@keyframes flowShineVertical {
  0% { top: -100%; left: 0; }
  100% { top: 100%; left: 0; }
}

.flow-connector-vertical .flow-connector-arrow {
  right: auto;
  bottom: -3px;
  top: auto;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--color-primary);
  border-bottom: none;
}

/* ========================================
   3. コンポーネント - フォーム
   ======================================== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-label .required {
  color: #ef4444;
  margin-left: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

/* Choices.js カスタムスタイル */
.job-choices {
  max-width: 100%;
}

.job-choices .choices__inner {
  background: #fafafa;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.625rem 1rem;
  min-height: auto;
  font-size: 1rem;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.job-choices .choices__inner:hover {
  background: #fff;
  border-color: var(--color-primary-light);
}

.job-choices.is-open .choices__inner,
.job-choices.is-focused .choices__inner {
  background: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.job-choices .choices__list--single {
  padding: 0;
}

.job-choices .choices__list--single .choices__item {
  color: var(--color-text);
}

.job-choices .choices__list--single .choices__placeholder {
  color: var(--color-text-muted);
  opacity: 1;
}

/* ドロップダウン */
.job-choices .choices__list--dropdown {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-top: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.job-choices .choices__list--dropdown .choices__item {
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  transition: all 0.15s ease;
}

/* グループに属するオプションをインデント */
.job-choices .choices__item[data-group-id] {
  padding-left: 2.5rem !important;
}

/* ホバーアニメーション */
.job-choices .choices__list--dropdown .choices__item--selectable.is-highlighted {
  background: #f5f5f5;
  color: var(--color-text);
}

.job-choices .choices__list--dropdown .choices__item--selectable:hover {
  background: #f5f5f5;
}

/* optgroup（グループラベル） - 左端に配置 */
.job-choices .choices__group .choices__heading {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  background: linear-gradient(135deg, #fff7ed 0%, #fef3e2 100%);
  padding: 0.5rem 1rem;
  padding-left: 1rem !important;
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 矢印アイコン */
.job-choices::after {
  border-color: var(--color-text-light) transparent transparent transparent;
  right: 1rem;
  transition: transform 0.2s ease;
}

.job-choices.is-open::after {
  border-color: var(--color-primary) transparent transparent transparent;
  transform: rotate(180deg);
  margin-top: -5px;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-file {
  padding: 2rem;
  border: 2px dashed var(--color-border);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.form-file:hover {
  border-color: var(--color-primary);
  background: #fff7ed;
}

.form-file input {
  display: none;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 0.25rem;
  accent-color: var(--color-primary);
}

.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.form-radio:hover {
  background: #fff7ed;
}

.form-radio:has(input:checked) {
  background: #fff7ed;
}

.form-radio input {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.form-radio input:checked {
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.form-radio input:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.form-radio span {
  font-size: 1rem;
  font-weight: 500;
}

.form-note {
  background: var(--color-bg-gray);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  padding: 1rem 2rem;
  background: var(--color-primary);
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
}

.btn-submit:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px -2px rgba(249, 115, 22, 0.4);
}

.btn-submit:disabled {
  background: #d1d5db;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ========================================
   3. コンポーネント - テーブル
   ======================================== */
.job-detail-table {
  width: 100%;
  border-collapse: collapse;
}

.job-detail-table th,
.job-detail-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.job-detail-table th {
  width: 150px;
  background: var(--color-bg-gray);
  font-weight: 600;
  vertical-align: top;
}

.job-detail-table td ul {
  margin: 0;
  padding-left: 1.25rem;
}

.job-detail-table td li {
  margin-bottom: 0.25rem;
}

/* ========================================
   2. レイアウト - フッター
   ======================================== */
.footer {
  background: #f3f4f6;
  color: #374151;
  padding: 3rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-company {
  font-size: 5rem;
  font-weight: 700;
  color: #f97316;
  margin: 0;
  line-height: 1;
}

.footer-title {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  background: #f97316;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  margin: 0;
  letter-spacing: 0.35em;
}

.footer-address {
  font-size: 0.875rem;
  color: #6b7280;
  text-align: left;
  margin-left: -2rem;
}

.footer-address p {
  margin: 0;
  line-height: 1.6;
}

.footer-nav {
  /* ナビゲーション */
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links li::before {
  content: '●';
  color: #f97316;
  font-size: 0.5rem;
}

.footer-link {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.9375rem;
}

.footer-link:hover {
  color: #f97316;
}

.footer-entry-btn {
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.footer-entry-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.footer-entry-label {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

.footer-entry-text {
  font-size: 0.5rem;
  font-weight: 600;
  margin-top: 0;
  padding: 0.15rem 0.4rem;
  background: #fff;
  color: var(--color-primary);
  border-radius: 9999px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.footer-privacy {
  color: #6b7280;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-privacy:hover {
  color: #f97316;
}

.footer-copyright {
  color: #9ca3af;
  font-size: 0.875rem;
  margin: 0;
}

/* ========================================
   3. コンポーネント - ローディング・アニメーション
   ======================================== */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* スクロールアニメーション用クラス */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ========================================
   4. ページ固有 - 技術スタックセクション
   ======================================== */
.tech-stack-section {
  background: var(--color-bg-dark);
  color: white;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.tech-stack-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 40%);
}

.tech-stack-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tech-stack-header {
  text-align: center;
  margin-bottom: 4rem;
}

.tech-stack-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.tech-stack-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
}

.tech-category {
  margin-bottom: 3rem;
}

.tech-category-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tech-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tech-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-weight: 500;
  transition: all var(--transition-base);
}

.tech-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.tech-item-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-item-icon img,
.tech-item-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ========================================
   4. ページ固有 - 数字で見るセクション
   ======================================== */
.numbers-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, var(--color-bg-gray) 0%, white 100%);
}

.numbers-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.numbers-header {
  text-align: center;
  margin-bottom: 4rem;
}

.numbers-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.numbers-subtitle {
  color: var(--color-text-light);
  font-size: 1.125rem;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.number-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.number-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.number-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: var(--color-primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.number-card-icon.accent {
  background: var(--color-accent-light);
  color: var(--color-primary);
}

.number-card-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.number-card-value span {
  font-size: 1.5rem;
  color: var(--color-text-light);
}

.number-card-label {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* ========================================
   4. ページ固有 - 開発文化セクション
   ======================================== */
.culture-section {
  padding: 6rem 1.5rem;
  background: white;
}

.culture-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.culture-header {
  text-align: center;
  margin-bottom: 4rem;
}

.culture-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.culture-subtitle {
  color: var(--color-text-light);
  font-size: 1.125rem;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.culture-card {
  background: var(--color-bg-gray);
  border-radius: 16px;
  padding: 2rem;
  transition: all var(--transition-base);
}

.culture-card:hover {
  background: white;
  box-shadow: var(--shadow-lg);
}

.culture-card-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.culture-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.culture-card-desc {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ========================================
   3. コンポーネント - 特徴リスト
   ======================================== */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--color-text-light);
}

.feature-list li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
}

/* ========================================
   3. コンポーネント - セクションタイトル
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title-lg {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--color-text-light);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* パンくずリスト */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.875rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item a {
  color: var(--color-text-light);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--color-primary);
}

.breadcrumb-separator {
  color: var(--color-text-light);
}

/* ページヘッダー */
.page-header {
  padding-top: 70px;
  padding-bottom: 40px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* page-header blob背景 - 右上オレンジ＆左青（補色） */
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 85% 20%, rgba(249, 115, 22, 0.25) 0%, rgba(249, 115, 22, 0.1) 30%, transparent 60%),
    radial-gradient(ellipse 45% 70% at 10% 40%, rgba(22, 144, 249, 0.15) 0%, rgba(22, 144, 249, 0.05) 30%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 50% 90%, rgba(249, 115, 22, 0.12) 0%, rgba(234, 88, 12, 0.04) 35%, transparent 60%);
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
  will-change: transform;
}

/* page-header ウェーブ - 下端区切り */
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 C360,40 720,0 1080,20 C1260,30 1380,25 1440,20 L1440,40 L0,40 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 0;
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
}

/* ========================================
   4. ページ固有 - CTAセクション
   ======================================== */
.cta-section {
  background: var(--gradient-primary);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  color: var(--color-primary);
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: white;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  text-decoration: none;
  transition: all var(--transition-base);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* ========================================
   3. コンポーネント - 職種カード（強化版）
   ======================================== */
.job-card-featured {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  display: block;
}

.job-card-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.job-card-featured .job-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.job-card-featured .job-card-desc {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.job-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.job-tag {
  padding: 0.25rem 0.75rem;
  background: var(--color-bg-gray);
  color: var(--color-text-light);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}

.job-tag.primary {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

/* ========================================
   5. ユーティリティクラス
   ======================================== */

/* テキスト色 */
.text-light { color: var(--color-text-light); }
.text-primary { color: var(--color-primary); }
.text-white { color: white; }

/* テキストサイズ */
.text-sm { font-size: 0.875rem; }
.text-md { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

/* テキスト配置 */
.text-center { text-align: center; }

/* フォントウェイト */
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* テキスト変換 */
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.1em; }

/* マージン (top) */
.mt-xs { margin-top: 0.125rem; }
.mt-sm { margin-top: 0.5rem; }
.mt-md { margin-top: 1rem; }
.mt-lg { margin-top: 1.5rem; }
.mt-xl { margin-top: 3rem; }
.mt-2xl { margin-top: 4rem; }

/* マージン (bottom) */
.mb-sm { margin-bottom: 0.5rem; }
.mb-md { margin-bottom: 1rem; }
.mb-lg { margin-bottom: 2rem; }
.mb-xl { margin-bottom: 1.5rem; }

/* パディング */
.p-lg { padding: 2rem; }
.pt-lg { padding-top: 2rem; }

/* Flexbox */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.flex-shrink-0 { flex-shrink: 0; }

/* Grid */
.grid { display: grid; }

/* Gap */
.gap-xs { gap: 0.5rem; }
.gap-sm { gap: 0.75rem; }
.gap-md { gap: 1rem; }

/* ボーダー */
.rounded-md { border-radius: 8px; }
.rounded-lg { border-radius: 16px; }
.border-top { border-top: 1px solid var(--color-border); }

/* シャドウ */
.shadow-md { box-shadow: var(--shadow-md); }

/* その他 */
.overflow-hidden { overflow: hidden; }

/* 幅制限 */
.max-w-900 { max-width: 900px; }

/* レスポンシブ表示切替 */
.hide-desktop { display: none; }

/* ========================================
   4. ページ固有 - 職種詳細ページ
   ======================================== */

/* 使用技術ボックス */
.tech-box {
  background: var(--color-bg-dark);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  color: white;
}

.tech-box-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tech-box-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 0.875rem;
}

/* テーブルカード */
.card-white {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 2rem;
}

/* テーブル内の補足テキスト */
.table-note {
  font-size: 0.875rem;
}

.table-note-primary {
  color: var(--color-primary);
  font-size: 0.875rem;
}

/* 職種の魅力ボックス */
.attraction-box {
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--color-primary-light);
}

.attraction-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.attraction-list {
  display: grid;
  gap: 1rem;
}

.attraction-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.attraction-item-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.attraction-desc {
  color: var(--color-text-light);
  font-size: 0.875rem;
  margin: 0.25rem 0 0;
}

/* CTAエリア */
.cta-box {
  text-align: center;
  margin-top: 3rem;
}

.btn-entry-lg {
  font-size: 1.125rem;
  padding: 1rem 3rem;
}

.cta-note {
  margin-top: 1rem;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* 他の募集職種セクション */
.related-jobs {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.related-jobs-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* ========================================
   6. レスポンシブ - タブレット (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
  .note-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

/* ========================================
   6. レスポンシブ - モバイル (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .hide-desktop { display: inline; }

  .note-card-grid {
    grid-template-columns: 1fr;
  }

  .magazine-card-grid {
    grid-template-columns: 1fr;
  }

  /* モバイルでもスクロールに応じたヘッダー切り替えを有効化 */
  .header--hero {
    position: fixed;
    top: 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
  }

  /* スクロール後のヘッダー（モバイル） */
  .header:not(.header--hero) {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
  }

  .header--hero .header-inner {
    height: 70px;
    padding: 0 1.5rem;
  }

  .header--hero .logo img {
    height: 36px;
  }

  /* モバイルナビメニュー内のリンクスタイル（シンプル・中央寄せ統一） */
  .header--hero .nav-link,
  .header:not(.header--hero) .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  .header--hero .nav-link::before,
  .header:not(.header--hero) .nav-link::before {
    display: none;
  }

  .header--hero .nav-link-icon,
  .header:not(.header--hero) .nav-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: transparent;
    border-radius: 0;
    color: var(--color-primary);
    flex-shrink: 0;
  }

  /* モバイルではホバー時のアイコン色変更を無効化 */
  .header--hero .nav-link:hover .nav-link-icon,
  .header:not(.header--hero) .nav-link:hover .nav-link-icon {
    transform: none;
    background: transparent;
    color: var(--color-primary);
    box-shadow: none;
  }

  .header--hero .nav-link-icon svg,
  .header:not(.header--hero) .nav-link-icon svg {
    width: 20px;
    height: 20px;
  }

  .header--hero .nav-link-text,
  .header:not(.header--hero) .nav-link-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
  }

  .header--hero .btn-entry,
  .header:not(.header--hero) .btn-entry {
    width: auto;
    height: auto;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    animation: none;
    flex-direction: row;
    gap: 0.5rem;
    align-self: stretch;
    box-sizing: border-box;
  }

  .header--hero .btn-entry::before,
  .header--hero .btn-entry::after,
  .header:not(.header--hero) .btn-entry::before,
  .header:not(.header--hero) .btn-entry::after {
    display: none;
  }

  .header--hero .btn-entry .btn-entry-label,
  .header:not(.header--hero) .btn-entry .btn-entry-label {
    display: none;
  }

  .header--hero .btn-entry .btn-entry-text,
  .header:not(.header--hero) .btn-entry .btn-entry-text {
    background: transparent;
    color: #fff;
    padding: 0;
    margin-top: 0;
    font-size: 1rem;
  }

  .nav-menu,
  .header--hero .nav-menu,
  .header:not(.header--hero) .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active,
  .header--hero .nav-menu.active,
  .header:not(.header--hero) .nav-menu.active {
    display: flex;
  }

  .mobile-header-actions {
    display: flex;
  }

  .mobile-header-actions .mobile-menu-btn,
  .mobile-header-actions .mobile-entry-btn {
    display: flex;
  }

  /* プライバシーポリシーリンク（モバイルメニュー内） */
  .nav-privacy-link {
    display: block;
    color: var(--color-text-light);
    font-size: 0.75rem;
    text-decoration: none;
    text-align: center;
    padding: 0.5rem;
    margin-top: 0.5rem;
  }

  .nav-privacy-link:hover {
    color: var(--color-text);
  }

  /* 閉じるボタン（モバイルメニュー内） */
  .mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0.5rem auto 0;
    background: none;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
  }

  .mobile-menu-close:hover {
    background: var(--color-bg-light);
    border-color: var(--color-text-light);
  }

  .mobile-menu-close span {
    position: absolute;
    width: 16px;
    height: 2px;
    background: var(--color-text-light);
  }

  .mobile-menu-close span:first-child {
    transform: rotate(45deg);
  }

  .mobile-menu-close span:last-child {
    transform: rotate(-45deg);
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    align-items: stretch;
  }

  .hero-inner.hero-inner--impact {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .hero-content.hero-content--topleft {
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 1rem;
  }

  .hero-bottom {
    flex: 0;
    margin-top: auto;
    padding-bottom: 2rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .sp-only {
    display: inline;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-title--xlarge {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 2rem;
  }

  .hero-title--fullwidth {
    font-size: 8vw;
    white-space: normal;
  }

  .hero-content--topleft {
    padding: 2rem 1rem;
  }

  .hero-content--topleft .hero-subtitle {
    font-size: 0.9rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-bottom {
    gap: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 2rem;
    margin-top: 2rem;
  }

  .hero-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .hero-stat-value {
    font-size: 2rem;
    order: 2;
  }

  .hero-stat-label {
    order: 1;
  }

  .scroll-indicator {
    display: none;
  }

  /* blob背景 - モバイル調整 */
  .hero-blob-orange {
    top: -5%;
    right: -15%;
    width: 70vw;
    height: 70vw;
    filter: blur(40px);
  }

  .hero-blob-teal {
    top: 0;
    left: -20%;
    width: 60vw;
    height: 60vw;
    filter: blur(50px);
  }

  .hero-blob-accent {
    bottom: 15%;
    left: 20%;
    width: 50vw;
    height: 50vw;
    filter: blur(40px);
  }

  /* ウェーブ - モバイル調整 */
  .hero::after {
    height: 50px;
  }

  /* page-header - モバイル軽量化（blur無効） */
  .page-header::before {
    filter: none;
    opacity: 0.7;
  }

  .page-header::after {
    height: 30px;
  }

  .section {
    padding: 3rem 1rem;
  }

  /* 数字セクション */
  .numbers-section {
    padding: 4rem 1rem;
  }

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

  .number-card {
    padding: 1.5rem 1rem;
  }

  .number-card-value {
    font-size: 2rem;
  }

  .number-card-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  /* 技術スタックセクション */
  .tech-stack-section {
    padding: 4rem 1rem;
  }

  .tech-stack-title {
    font-size: 1.75rem;
  }

  .tech-item {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  /* 開発文化セクション */
  .culture-section {
    padding: 3rem 1rem;
  }

  .culture-header {
    margin-bottom: 2rem;
  }

  .culture-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .culture-card {
    padding: 1.25rem;
  }

  .culture-card-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 44px;
  }

  .culture-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0;
  }

  .culture-card-icon .icon-2xl {
    width: 1.5rem;
    height: 1.5rem;
  }

  .culture-card-title {
    font-size: 1rem;
    margin: 0;
    line-height: 1.3;
  }

  .culture-card-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 0.75rem;
  }

  .culture-title {
    font-size: 1.75rem;
  }

  /* CTAセクション */
  .cta-section {
    padding: 4rem 1rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  /* セクションタイトル */
  .section-title-lg {
    font-size: 1.75rem;
  }

  .link-card {
    flex-direction: column;
    text-align: center;
  }

  .job-detail-table {
    table-layout: fixed;
  }

  .job-detail-table th,
  .job-detail-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .job-detail-table th {
    border-bottom: none;
    padding-bottom: 0.5rem;
  }

  .job-detail-table td {
    padding-top: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .job-detail-table td ul {
    padding-left: 1rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-info {
    align-items: center;
  }

  .footer-address {
    text-align: center;
    margin-left: 0;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-nav {
    display: none;
  }

  .footer-privacy {
    display: none;
  }

  .footer-entry-btn {
    width: 110px;
    height: 110px;
  }

  .footer-entry-label {
    font-size: 1.125rem;
    margin-top: 0.5rem;
  }

  .footer-entry-text {
    font-size: 0.5rem;
    padding: 0.15rem 0.4rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  /* 選考フロー（縦表示・各ステップは横並び） */
  .flow-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: fit-content;
    margin: 0 auto;
  }

  .flow-step-item {
    flex-direction: row;
    max-width: none;
    width: auto;
    gap: 2rem;
  }

  .flow-step-number {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .flow-step-icon {
    margin-bottom: 0;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .flow-step-icon svg {
    width: 20px;
    height: 20px;
  }

  .flow-step-label {
    text-align: left;
    white-space: nowrap;
  }

  .flow-step-label br {
    display: none;
  }

  .flow-step-label span {
    display: inline;
    font-size: inherit !important;
    color: inherit !important;
  }

  .flow-step-label span::before {
    content: '（';
  }

  .flow-step-label span::after {
    content: '）';
  }

  .flow-connector {
    display: none;
  }

  .flow-connector-vertical {
    display: flex;
    height: 28px;
    margin-left: 13px;
  }

  /* モバイル時の職種カード */
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .job-card-title {
    min-width: auto;
    white-space: normal;
  }

  .job-card::after {
    display: none;
  }
}
