/*
Theme Name: RecruitPro
Description: 運送・物流業界向け採用サイト専用WordPressテーマ。コード編集不要で誰でも管理できる高機能採用サイトを構築できます。Google しごと検索自動連携、応募者管理機能搭載。
Author: BJEX Development Team
Version: 1.0.2
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: recruitpro
Domain Path: /languages
Tags: recruitment, logistics, transportation, business, custom-post-type, block-editor-ready, responsive

RecruitPro is a specialized WordPress theme for recruitment sites in the logistics and transportation industry.
統合版: フロントページとヘッダースタイル統合
*/

:root {
  /* Primary Colors - 物流業界らしい信頼感のある色 */
  --primary-blue: #2563EB;
  --primary-navy: #1E40AF;
  --accent-orange: #F97316;
  --accent-green: #059669;
  --accent-teal: #0D9488;
  
  /* Text Colors */
  --text-primary: #1E293B;
  --text-secondary: #475569;
  --text-light: #64748B;
  --text-white: #FFFFFF;
  
  /* Background Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-light: #F1F5F9;
  --bg-accent: #EFF6FF;
  --bg-dark: #111827;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-navy) 100%);
  --gradient-hero: linear-gradient(135deg, #2563EB 0%, #1D4ED8 50%, #1E40AF 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-orange) 0%, #EA580C 100%);
  --gradient-light: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-toast: 1080;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layout */
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover,
a:focus {
  color: var(--primary-navy);
  text-decoration: underline;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: var(--font-size-base);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn:hover,
.btn:focus {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  border-color: var(--primary-blue);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-navy);
  color: var(--text-white);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--primary-blue);
  color: var(--text-white);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--text-white);
  border-color: var(--accent-orange);
}

.btn-accent:hover,
.btn-accent:focus {
  background: #EA580C;
  color: var(--text-white);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.btn-large {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--font-size-lg);
}

.btn-small {
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: var(--font-size-sm);
}

/* ==========================================================================
   HEADER & NAVIGATION STYLES
   ========================================================================== */

/* ヘッダー基本スタイル */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) var(--spacing-sm);
  min-height: 70px;
  transition: min-height var(--transition-normal);
}

.site-header.scrolled .header-container {
  min-height: 60px;
}

/* サイトブランディング */
.site-branding {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* カスタムロゴの調整 */
.custom-logo-link {
  display: block;
  line-height: 0;
}

.custom-logo {
  max-height: 40px;
  width: auto;
  transition: max-height var(--transition-normal);
}

.site-header.scrolled .custom-logo {
  max-height: 35px;
}

.site-title {
  margin: 0;
  font-size: var(--font-size-xl);
  font-weight: 700;
  line-height: 1.2;
}

.site-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.site-title a:hover {
  color: var(--primary-blue);
}

.site-description {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ヘッダーユーティリティ */
.header-utilities {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.header-cta.desktop-only {
  display: none;
}

@media (min-width: 768px) {
  .header-cta.desktop-only {
    display: block;
  }
}

/* モダンハンバーガーメニューボタン */
.menu-btn {
  position: relative;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.menu-btn:hover {
  background: rgba(37, 99, 235, 0.1);
  transform: scale(1.05);
}

.menu-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-normal);
}

.menu-btn-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  line-height: 1;
}

.menu-btn:hover .menu-btn-text {
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.menu-btn-icon {
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: all var(--transition-normal);
}

.menu-btn-line {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all var(--transition-normal);
  transform-origin: center;
}

.menu-btn:hover .menu-btn-line {
  background: var(--primary-blue);
}

.menu-btn:hover .menu-btn-line:nth-child(1) {
  transform: translateY(1px) rotate(5deg);
}

.menu-btn:hover .menu-btn-line:nth-child(2) {
  transform: scaleX(0.8);
}

.menu-btn:hover .menu-btn-line:nth-child(3) {
  transform: translateY(-1px) rotate(-5deg);
}

/* アクティブ状態（メニューが開いている時） */
.menu-btn.active {
  background: var(--primary-blue);
  transform: scale(1.1);
}

.menu-btn.active .menu-btn-text {
  color: white;
}

.menu-btn.active .menu-btn-icon {
  transform: rotate(180deg);
}

.menu-btn.active .menu-btn-line {
  background: white;
}

.menu-btn.active .menu-btn-line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-btn.active .menu-btn-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-btn.active .menu-btn-line:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* オーバーレイメニュー */
.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--gradient-primary);
  z-index: var(--z-modal-backdrop);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.overlay-menu.active {
  opacity: 1;
  visibility: visible;
}

.overlay-menu-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 100px 100px, 80px 80px;
  animation: patternFloat 20s infinite linear;
}

@keyframes patternFloat {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-20px, -20px) rotate(360deg); }
}

.overlay-menu-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.overlay-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-sm) 0;
}

.menu-site-title {
  color: white;
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin: 0;
}

.menu-close-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.menu-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.overlay-menu-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menucontent {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  width: 100%;
  max-width: 900px;
}

.l-sitemap__cell {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-normal);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.l-sitemap__cell:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.l-sitemap__cell__parent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-xs);
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  text-align: left;
  width: 100%;
  padding: 0;
  margin-bottom: var(--spacing-md);
  transition: all var(--transition-fast);
}

.l-sitemap__cell__parent__en {
  font-size: var(--font-size-lg);
  font-weight: 300;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.l-sitemap__cell__parent__ja {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  line-height: 1.2;
}

.l-sitemap__cell__children {
  flex: 1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all var(--transition-normal);
}

.l-sitemap__cell__parent[aria-expanded="true"] + .l-sitemap__cell__children {
  max-height: 300px;
  opacity: 1;
}

.l-sitemap__cell__children ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.l-sitemap__cell__children a {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  font-weight: 500;
}

.l-sitemap__cell__children a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateX(8px);
}

.c-icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  opacity: 0.8;
}

/* ==========================================================================
   FRONT PAGE STYLES
   ========================================================================== */

.front-page {
  background: var(--bg-primary);
}

/* ヒーローセクション */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-hero);
  color: white;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(30, 64, 175, 0.8) 100%);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 300px 300px, 200px 200px, 150px 150px;
  animation: particleFloat 25s infinite linear;
}

@keyframes particleFloat {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  50% { opacity: 0.8; }
  100% { transform: translate(-100px, -100px) rotate(360deg); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 var(--spacing-lg);
  max-width: 900px;
}

.hero-title {
  margin-bottom: var(--spacing-2xl);
}

.hero-title-main {
  display: block;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  animation: heroSlideUp 1s ease-out;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-title-sub {
  display: block;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  opacity: 0.95;
  animation: heroSlideUp 1s ease-out 0.2s both;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.7;
  margin-bottom: var(--spacing-2xl);
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: heroSlideUp 1s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
  animation: heroSlideUp 1s ease-out 0.6s both;
}

.hero-btn-primary,
.hero-btn-accent {
  min-width: 220px;
  font-size: var(--font-size-lg);
  padding: var(--spacing-md) var(--spacing-2xl);
  border-radius: 50px;
  font-weight: 700;
  transition: all var(--transition-normal);
}

.hero-btn-primary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-blue);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-primary:hover {
  background: white;
  color: var(--primary-navy);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-btn-accent {
  background: var(--gradient-accent);
  color: white;
  border: 2px solid rgba(249, 115, 22, 0.5);
}

.hero-btn-accent:hover {
  background: #EA580C;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

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

/* 共通セクションスタイル */
.section-padding {
  padding: var(--spacing-2xl) 0;
}

.bg-light {
  background: var(--bg-light);
}

.section-header {
  margin-bottom: var(--spacing-2xl);
}

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

.section-title {
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.section-title-en {
  display: block;
  font-size: var(--font-size-base);
  color: var(--primary-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: var(--spacing-sm);
  opacity: 0.8;
}

.section-title-ja {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.section-description {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ビジョンセクション */
.vision-section {
  background: var(--bg-secondary);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-2xl);
}

.vision-card {
  text-align: center;
  padding: var(--spacing-2xl);
  background: var(--bg-primary);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.vision-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
}

.vision-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--spacing-xl);
  background: var(--gradient-hero);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
  transition: transform var(--transition-normal);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
}

.vision-card:hover .vision-icon {
  transform: scale(1.15) rotate(5deg);
}

.vision-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
}

.vision-text {
  font-size: var(--font-size-lg);
  line-height: 1.8;
  color: var(--text-secondary);
}

/* 統計・数字セクション */
.statistics-section {
  background: var(--bg-primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-2xl);
}

.stat-card {
  background: var(--bg-primary);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-2xl);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.stat-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--spacing-xl);
  background: var(--gradient-hero);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.stat-number {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: var(--spacing-xs);
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-unit {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-blue);
}

.stat-label {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: var(--spacing-sm);
}

/* 基本カードスタイル */
.job-card,
.interview-card,
.benefit-card {
  background: var(--bg-primary);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  border: 1px solid rgba(37, 99, 235, 0.08);
  overflow: hidden;
}

.job-card:hover,
.interview-card:hover,
.benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
}

/* バッジ */
.badge {
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 50px;
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-primary {
  background: var(--gradient-hero);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Screen Reader Text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
}

/* Utility Classes */
.hidden { display: none; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

/* Responsive */
@media (max-width: 768px) {
  html { font-size: 14px; }
  
  .custom-logo {
    max-height: 35px;
  }
  
  .site-header.scrolled .custom-logo {
    max-height: 30px;
  }
  
  .site-title {
    font-size: var(--font-size-lg);
  }
  
  .hero-section {
    height: 90vh;
    min-height: 600px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn-primary,
  .hero-btn-accent {
    width: 100%;
    max-width: 300px;
    min-width: auto;
  }
  
  .menucontent {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
  
  .vision-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .custom-logo {
    max-height: 30px;
  }
  
  .site-header.scrolled .custom-logo {
    max-height: 25px;
  }
  
  .site-title {
    font-size: var(--font-size-base);
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .section-padding {
    padding: var(--spacing-xl) 0;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero-particles,
  .bg-pattern {
    animation: none;
  }
}

/* Focus Styles */
:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent-orange);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .hero-section {
    background: white !important;
    color: black !important;
  }
  
  .btn {
    border: 2px solid black !important;
    color: black !important;
    background: white !important;
  }
  
  .overlay-menu,
  .hero-particles,
  .hero-overlay {
    display: none !important;
  }
}