/* =========================================
   ジョブリール (JobReel) - Main Stylesheet
   接客・飲食業界 動画求人ポータル MVP
   ========================================= */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #FF4D6D;
  --primary-dark: #d63553;
  --primary-light: #ff8099;
  --accent: #FF9A3C;
  --accent2: #7C3AED;
  --dark: #0F0F1A;
  --dark2: #1a1a2e;
  --card-bg: #1e1e2e;
  --card-border: rgba(255,255,255,0.08);
  --text-primary: #f5f5f7;
  --text-secondary: #a0a0b0;
  --text-muted: #606070;
  --bg-main: #0f0f1a;
  --bg-section: #151525;
  --bg-card: #1e1e2e;
  --border-color: rgba(255,255,255,0.1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Poppins', sans-serif;
  --header-h: 60px;
  --transition: 0.25s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-jp);
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.container-sm {
  max-width: 720px;
}

.pc-only {
  display: none;
}

@media (min-width: 768px) {
  .pc-only { display: initial; }
  .container { padding: 0 24px; }
}

/* ==========================================
   HEADER
   ========================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(15, 15, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: background var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-icon {
  font-size: 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
}

.nav-link i {
  font-size: 18px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(255, 77, 109, 0.1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white !important;
  border-radius: var(--radius-sm);
  padding: 6px 12px;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--primary-dark), #e07800) !important;
  color: white;
}

@media (min-width: 768px) {
  .nav-link {
    flex-direction: row;
    gap: 6px;
    font-size: 13px;
    padding: 8px 14px;
  }
  .nav-link i { font-size: 14px; }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 4px 15px rgba(255, 77, 109, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 77, 109, 0.5);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-glass {
  background: rgba(255,255,255,0.15);
  color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.25);
  color: white;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
}

.btn-block {
  width: 100%;
}

/* ==========================================
   HERO
   ========================================== */
.hero-section {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 26, 0.5) 0%,
    rgba(15, 15, 26, 0.7) 60%,
    rgba(15, 15, 26, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px 80px;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 77, 109, 0.15);
  border: 1px solid rgba(255, 77, 109, 0.4);
  color: var(--primary-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(32px, 7vw, 56px);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 16px 24px;
  backdrop-filter: blur(10px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.stat-num {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.stat-unit {
  font-size: 14px;
}

.stat-label {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-secondary);
  font-size: 20px;
  animation: bounce 2s infinite;
  z-index: 1;
}

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

/* ==========================================
   FLOATING SEARCH BAR (ヘッダー内 スクロール時表示)
   ========================================== */
.header-search-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  max-width: calc(100vw - 260px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translate(-50%, calc(-50% + 6px));
}

.site-header.scrolled .header-search-bar {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.header-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search-input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 8px 36px 8px 36px;
  color: var(--text-primary);
  font-size: 13px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
  backdrop-filter: blur(8px);
}

.header-search-input::placeholder {
  color: rgba(255,255,255,0.35);
}

.header-search-input:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.12);
}

.header-search-icon {
  position: absolute;
  left: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  pointer-events: none;
}

.header-search-clear {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  cursor: pointer;
  display: none;
  padding: 4px;
}

.header-search-clear.visible { display: block; }

/* スクロール時はロゴをコンパクトに */
.site-header.scrolled .logo-text {
  display: none;
}

@media (max-width: 767px) {
  .header-search-bar {
    display: none; /* スマホはヘッダー内検索バー非表示 */
  }
  .site-header.scrolled .logo-text {
    display: block; /* スマホはロゴテキスト維持 */
  }
}

/* ==========================================
   SEARCH & FILTER
   ========================================== */
.search-section {
  background: var(--bg-section);
  padding: 32px 0 24px;
  border-bottom: 1px solid var(--border-color);
  /* stickyを外して通常フローに戻す */
  position: relative;
  z-index: 1;
}

.search-bar-wrapper {
  margin-bottom: 16px;
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  font-size: 16px;
  pointer-events: none;
}

.search-input {
  width: 100%;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 50px;
  padding: 14px 48px;
  color: var(--text-primary);
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
}

.search-input::placeholder { color: var(--text-muted); }

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 77, 109, 0.15);
}

.search-clear {
  position: absolute;
  right: 16px;
  color: var(--text-muted);
  font-size: 14px;
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.search-clear.visible { display: block; }

.filter-section {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.filter-section::-webkit-scrollbar { display: none; }

.filter-scroll {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: max-content;
  padding-bottom: 4px;
}

@media (min-width: 768px) {
  .filter-scroll {
    min-width: auto;
  }
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.filter-label {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: 600;
  min-width: 60px;
  flex-shrink: 0;
}

.filter-chips {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.filter-chips::-webkit-scrollbar { display: none; }

.chip {
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.chip:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
}

.chip.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  color: white;
  box-shadow: 0 2px 8px rgba(255, 77, 109, 0.3);
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.results-count {
  font-size: 13px;
  color: var(--text-secondary);
}

.results-count span {
  font-weight: 700;
  color: var(--primary-light);
  font-size: 16px;
}

.sort-select {
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  cursor: pointer;
  outline: none;
}

.sort-select:focus {
  border-color: var(--primary);
}

/* ==========================================
   JOBS GRID / CARD
   ========================================== */
.jobs-section {
  padding: 32px 0 60px;
  min-height: 60vh;
}

.featured-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255,77,109,0.1), rgba(255,154,60,0.1));
  border: 1px solid rgba(255, 77, 109, 0.3);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 20px;
  color: var(--primary-light);
  font-size: 13px;
  font-weight: 600;
}

.featured-banner i {
  color: var(--accent);
}

.jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 480px) {
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 768px) {
  .jobs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1100px) {
  .jobs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.jobs-grid-sm {
  grid-template-columns: repeat(2, 1fr) !important;
}

@media (min-width: 768px) {
  .jobs-grid-sm {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* --- Job Card --- */
.job-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 77, 109, 0.3);
}

.job-card.featured {
  border-color: rgba(255, 154, 60, 0.4);
}

.card-featured-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--accent), #ff6a00);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  z-index: 2;
}

.card-thumb-wrap {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--dark2);
}

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

.job-card:hover .card-thumb {
  transform: scale(1.05);
}

.card-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  transition: background var(--transition);
}

.job-card:hover .card-play-btn {
  background: rgba(0, 0, 0, 0.15);
}

.play-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 77, 109, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  padding-left: 3px;
  box-shadow: 0 4px 20px rgba(255,77,109,0.5);
  transition: all var(--transition);
}

.job-card:hover .play-icon {
  transform: scale(1.1);
  background: var(--primary);
}

.card-category-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(15, 15, 26, 0.8);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}

.card-body {
  padding: 14px;
}

.card-wage {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 6px;
}

.card-wage .wage-unit {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-shop {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-shop i {
  font-size: 10px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}

.card-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 50px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
}

.card-area {
  font-size: 11px;
  color: var(--text-muted);
}

.card-detail-link {
  text-decoration: none;
  transition: color var(--transition);
}

.card-detail-link:hover {
  color: var(--primary-light);
}

.card-apply-btn {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition);
}

.card-apply-btn:hover {
  transform: scale(1.05);
  color: white;
}

/* --- Loading --- */
.loading-spinner {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

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

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

/* --- No Results --- */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}

.no-results i {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.4;
}

.no-results h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.no-results p {
  font-size: 14px;
  margin-bottom: 24px;
}

/* --- Load More --- */
.load-more-wrap {
  text-align: center;
  padding: 32px 0;
}

.btn-load-more {
  min-width: 200px;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-section {
  background: var(--bg-section);
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-title {
  text-align: center;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  margin-bottom: 48px;
  color: var(--text-primary);
}

.title-accent {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: rgba(255, 77, 109, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255,77,109,0.15), rgba(255,154,60,0.15));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ==========================================
   FOR SHOPS
   ========================================== */
.for-shops-section {
  padding: 80px 0;
}

.for-shops-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .for-shops-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.badge-label {
  display: inline-block;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: #a78bfa;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.for-shops-text h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.4;
}

.for-shops-text p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.8;
}

.shop-benefits {
  margin-bottom: 28px;
}

.shop-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 6px 0;
  color: var(--text-secondary);
}

.shop-benefits li i {
  color: #4ade80;
  font-size: 16px;
}

.shop-benefits strong {
  color: var(--accent);
}

.for-shops-image img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 300px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .for-shops-image img { height: 400px; }
}

/* ==========================================
   VIDEO MODAL
   ========================================== */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.video-modal.open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}

.modal-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 100dvh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: background var(--transition);
  backdrop-filter: blur(8px);
}

.modal-close:hover {
  background: rgba(255, 77, 109, 0.5);
}

.modal-video-wrap {
  position: relative;
  width: min(360px, 90vw);
  aspect-ratio: 9/16;
  background: #000;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.modal-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-mute-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  cursor: pointer;
  z-index: 5;
  transition: background var(--transition);
  backdrop-filter: blur(6px);
}

.video-mute-btn:hover {
  background: rgba(0,0,0,0.7);
}

.video-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 70%, transparent 100%);
}

.overlay-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.overlay-tag {
  background: rgba(255,77,109,0.25);
  border: 1px solid rgba(255,77,109,0.4);
  color: var(--primary-light);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 50px;
}

.overlay-title {
  font-size: 15px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
  line-height: 1.4;
}

.overlay-shop {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.overlay-meta {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.meta-badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge-wage {
  background: rgba(255, 77, 109, 0.2);
  border: 1px solid rgba(255, 77, 109, 0.4);
  color: var(--primary-light);
  font-weight: 700;
}

.badge-area {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}

.overlay-actions {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.btn-apply-modal {
  padding: 12px 20px;
  font-size: 13px;
}

.btn-detail-modal {
  padding: 10px 20px;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.modal-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background var(--transition);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.modal-nav.prev { top: 16px; }
.modal-nav.next { bottom: 16px; }

.modal-nav:hover {
  background: rgba(255, 77, 109, 0.4);
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: var(--dark2);
  border-top: 1px solid var(--border-color);
  padding: 48px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 200px 1fr;
  }
}

.footer-brand .logo-text {
  font-size: 20px;
}

.footer-brand p {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 16px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 11px;
  color: var(--text-muted);
}

/* ==========================================
   BREADCRUMB
   ========================================== */
.breadcrumb-wrap {
  padding: calc(var(--header-h) + 12px) 0 12px;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

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

.bc-sep {
  font-size: 10px;
  color: var(--text-muted);
  opacity: 0.5;
}

/* ==========================================
   DETAIL PAGE
   ========================================== */
.detail-main {
  padding: 32px 0 100px;
  min-height: 60vh;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 900px) {
  .detail-layout {
    grid-template-columns: 1fr 340px;
    align-items: start;
  }
}

.detail-video-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #000;
  max-width: 380px;
  margin: 0 auto;
}

.detail-video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}

.video-badge-wrap {
  position: absolute;
  top: 12px;
  left: 12px;
}

.video-badge {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}

.detail-header {
  margin-top: 24px;
}

.detail-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 77, 109, 0.1);
  border: 1px solid rgba(255, 77, 109, 0.3);
  color: var(--primary-light);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.detail-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.4;
}

.detail-shop-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.shop-logo-placeholder {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.shop-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.shop-address {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.detail-key-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .detail-key-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

.key-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.key-info-card.highlight-card {
  border-color: rgba(255, 77, 109, 0.4);
  background: rgba(255, 77, 109, 0.05);
}

.ki-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.ki-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.highlight-card .ki-value {
  color: var(--primary-light);
  font-size: 20px;
  font-family: var(--font-en);
}

.appeal-section,
.desc-section,
.tags-section {
  margin-bottom: 28px;
}

.appeal-section h3,
.desc-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}

.appeal-section h3 i { color: var(--accent); }
.desc-section h3 i { color: var(--primary); }

.appeal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.appeal-tag {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #4ade80;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.appeal-tag i {
  font-size: 11px;
}

.desc-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.9;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border-color);
  white-space: pre-line;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.job-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 50px;
}

.stats-row {
  display: flex;
  gap: 16px;
  color: var(--text-muted);
  font-size: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border-color);
}

.stats-row i {
  margin-right: 4px;
}

/* Apply Card (Sidebar) */
.apply-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.apply-card-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.apply-card-wage {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-light);
}

.apply-card-type {
  font-size: 12px;
  color: var(--text-secondary);
  background: var(--bg-section);
  padding: 3px 10px;
  border-radius: 50px;
}

.apply-card-shop {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.apply-card-points {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.apply-card-points li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.apply-card-points li i {
  color: #4ade80;
  font-size: 12px;
}

.btn-apply-main {
  width: 100%;
  margin-bottom: 12px;
}

.apply-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}

.apply-card-share {
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.apply-card-share p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.share-btns {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  color: white;
}

.share-btn.twitter { background: #1da1f2; }
.share-btn.line { background: #06c755; }
.share-btn.copy { background: var(--text-muted); }

.share-btn:hover { opacity: 0.8; transform: scale(1.1); }

/* SP 固定応募バー */
.sp-apply-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark2);
  border-top: 1px solid var(--border-color);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 500;
  backdrop-filter: blur(16px);
}

.sp-apply-wage {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-light);
}

.btn-apply-sp {
  padding: 12px 24px;
  font-size: 14px;
}

@media (min-width: 900px) {
  .sp-apply-bar { display: none; }
}

/* Related Section */
.related-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

/* ==========================================
   APPLY PAGE
   ========================================== */
.apply-main {
  padding: 32px 0 60px;
  min-height: 80vh;
}

.apply-job-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 24px;
  overflow: hidden;
}

.ajc-loading {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.ajc-content {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ajc-thumb {
  width: 70px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.ajc-category {
  font-size: 11px;
  color: var(--primary-light);
  font-weight: 600;
}

.ajc-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 4px 0;
  line-height: 1.4;
}

.ajc-shop {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.ajc-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ajc-meta span {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.ajc-meta i { color: var(--primary); }

/* Steps */
.apply-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-card);
}

.step.active .step-num,
.step.completed .step-num {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.step-label {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

.step.active .step-label {
  color: var(--primary-light);
  font-weight: 600;
}

.step-line {
  width: 40px;
  height: 2px;
  background: var(--border-color);
  margin-bottom: 12px;
}

/* Form */
.apply-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
}

.form-section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  margin: 24px 0 16px;
}

.form-section-title:first-child { margin-top: 0; }

.form-section-title i { color: var(--primary); }

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-label.required::after {
  content: " *";
  color: var(--primary);
}

.form-control {
  width: 100%;
  background: var(--bg-section);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
}

.form-control::placeholder { color: var(--text-muted); }

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 77, 109, 0.12);
}

.form-control.error {
  border-color: #ff4444;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23606070' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

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

.char-count {
  display: block;
  text-align: right;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-error {
  display: block;
  font-size: 11px;
  color: #ff6b6b;
  margin-top: 4px;
}

.form-agree {
  margin: 24px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--transition);
}

.checkbox-label input:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input:checked + .checkmark::after {
  content: '✓';
  color: white;
  font-size: 12px;
}

.agree-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.agree-text a {
  color: var(--primary-light);
}

/* Confirm */
.confirm-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
}

.confirm-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}

.confirm-title i { color: var(--primary); }

.confirm-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.confirm-table tr {
  border-bottom: 1px solid var(--border-color);
}

.confirm-table th {
  text-align: left;
  padding: 12px 0;
  width: 40%;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  vertical-align: top;
}

.confirm-table td {
  padding: 12px 0;
  font-size: 14px;
  color: var(--text-primary);
}

.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* Complete */
.complete-box {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 48px 24px;
}

.complete-icon {
  font-size: 64px;
  color: #4ade80;
  margin-bottom: 20px;
}

.complete-box h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.complete-msg {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 24px;
}

.complete-msg strong { color: var(--accent); }

.complete-info {
  background: var(--bg-section);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: left;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.complete-info strong { color: var(--text-primary); }

.complete-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   RECRUIT PAGE
   ========================================== */
.recruit-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.recruit-hero-bg {
  position: absolute;
  inset: 0;
}

.recruit-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.recruit-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,26,0.8), rgba(15,15,26,0.6));
}

.recruit-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 20px;
  max-width: 700px;
}

.recruit-hero-content h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
}

.recruit-hero-content p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Benefits */
.recruit-benefits {
  padding: 80px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,77,109,0.3);
}

.benefit-num {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 900;
  color: rgba(255, 77, 109, 0.2);
  line-height: 1;
  margin-bottom: 8px;
}

.benefit-icon {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 12px;
}

.benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* How it Works */
.how-section {
  padding: 80px 0;
}

.how-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}

.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
}

.how-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255,77,109,0.3);
}

.how-step-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.how-step-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.how-connector {
  color: var(--text-muted);
  font-size: 20px;
  padding: 8px 0;
}

/* Recruit Form Section */
.recruit-form-section {
  padding: 80px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border-color);
}

.recruit-form-header {
  text-align: center;
  margin-bottom: 32px;
}

.recruit-form-header h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.recruit-form-header p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* FAQ */
.faq-section {
  padding: 80px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: color var(--transition);
  gap: 12px;
}

.faq-question:hover { color: var(--primary-light); }

.faq-question i {
  font-size: 14px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ==========================================
   TOAST
   ========================================== */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border-color);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 9999;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.success { border-color: #4ade80; color: #4ade80; }
.toast.error { border-color: #ff6b6b; color: #ff6b6b; }

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 480px) {
  .hero-stats {
    padding: 12px 16px;
  }
  .stat-num { font-size: 22px; }
  .stat-item { padding: 0 12px; }

  .apply-form {
    padding: 20px 16px;
  }

  .confirm-table th,
  .confirm-table td {
    font-size: 12px;
    padding: 10px 0;
  }

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