/* JOB SCOUT Landing — THINK DESIGN シリーズ共通テーマ(LOCATION MASTER 準拠) */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #2d7dd2;
  --primary-dark: #1e5fa0;
  --dark: #1a2a3e;
  --text: #374151;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f0f6fc;
}

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

/* ---- ヘッダー ---- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
}
.header-container {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  color: var(--dark);
  letter-spacing: .06em;
}
.logo .light { color: var(--primary); margin-left: .2em; }
nav ul { display: flex; list-style: none; gap: 1.4rem; }
nav a { color: var(--text); font-size: 14px; font-weight: 500; transition: color .2s; }
nav a:hover { color: var(--primary); }
.mobile-menu-toggle { display: none; background: none; border: none; color: var(--dark); font-size: 1.5rem; cursor: pointer; }

/* ---- ボタン ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: opacity .15s, transform .1s, background .15s;
  white-space: nowrap;
  background: var(--primary);
  color: #fff;
  border: 1px solid transparent;
}
.btn:hover { opacity: .88; }
.btn:active { transform: scale(.97); }
.btn-outline {
  background: none;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--bg); opacity: 1; }

/* ---- ヒーロー ---- */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eaf2fc 0%, #f0f6fc 100%);
  padding: 56px 24px;
}
.hero-inner {
  max-width: 1080px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-text { text-align: left; }
.hero-text h1 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--dark);
  letter-spacing: .02em;
  margin-bottom: 18px;
}
.hero-text h1 .light { color: var(--primary); }
.hero-lead {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.5;
}
.hero-sub { font-size: 15px; color: var(--muted); margin-bottom: 28px; line-height: 1.9; }
.hero-image img { width: 100%; height: auto; animation: heroFloat 4s ease-in-out infinite; }
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- セクション共通 ---- */
.section { padding: 80px 24px; }
.section--white { background: #fff; }
.section.alt, .section--bg { background: var(--bg); }
.inner { max-width: 1080px; margin: 0 auto; }
.section-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.section-lead { text-align: center; color: var(--muted); font-size: 15px; max-width: 700px; margin: 0 auto 40px; line-height: 1.9; }
.note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 12px; }

/* ---- 特徴カード ---- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.section.alt .card { background: #fff; }
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(45,125,210,0.12); }
.card .ic { font-size: 36px; margin-bottom: 16px; }
.card h3 { color: var(--dark); font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ---- ステップ ---- */
.steps { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}
.section.alt .step { background: var(--bg); }
.step .num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step p { margin: 0; color: var(--text); padding-top: 5px; font-size: 14.5px; }
.step code { background: #e0ecfa; color: var(--primary-dark); padding: 2px 6px; border-radius: 4px; font-size: .9em; }

/* ---- FAQ ---- */
.faq-item {
  max-width: 760px;
  margin: 0 auto 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
}
.section.alt .faq-item { background: var(--bg); }
.faq-item h4 { color: var(--dark); font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.faq-item p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.8; }

/* ---- フッター ---- */
footer { background: var(--dark); color: #fff; padding: 40px 24px; }
.footer-container {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-logo { font-size: 20px; font-weight: 800; letter-spacing: .06em; }
.footer-logo .light { color: var(--primary); margin-left: .2em; }
.footer-links { display: flex; gap: 8px 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: #9ca3af; font-size: 13px; }
.footer-links a:hover { color: #fff; }
.copyright { color: #6b7280; font-size: 12px; }
.copyright a { color: #9ca3af; }

/* ---- スクロールアップ ---- */
.scroll-up {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 90;
}
.scroll-up:hover { background: var(--primary-dark); }

/* ---- レスポンシブ ---- */
@media (max-width: 768px) {
  .mobile-menu-toggle { display: block; }
  nav ul {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 24px;
    gap: 1rem;
  }
  nav ul.show { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-image { order: -1; max-width: 360px; margin: 0 auto; }
  .hero-text { text-align: center; }
  .cta { justify-content: center; }
  .cards { grid-template-columns: 1fr; }
  .section { padding: 56px 20px; }
}
