/* ================================================
   job_registration.css — 会員登録案内ページ
================================================ */

/* ── ページヒーロー ────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #1E3A5F 0%, #2563EB 100%);
  color: #fff;
  padding: 64px 0 56px;
  text-align: left;
}
.page-hero .page-hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.3;
}
.page-hero p {
  font-size: 15px;
  opacity: .85;
  max-width: 520px;
  margin: 0;
  line-height: 1.7;
}

/* ── セクション共通 ────────────────────────── */
.section {
  padding: 64px 0;
  background: #F6F8FB;
}
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header { margin-bottom: 32px; }
.section-title {
  font-size: 22px;
  font-weight: 700;
  color: #1E293B;
  margin: 0 0 8px;
  padding-bottom: 12px;
  border-bottom: 3px solid #2563EB;
  display: inline-block;
}
.section-subtitle {
  font-size: 14px;
  color: #64748B;
  margin: 8px 0 0;
  line-height: 1.7;
}

/* ── 登録メリット ────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.benefit-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow .15s, transform .15s;
}
.benefit-card:hover {
  box-shadow: 0 4px 16px rgba(37,99,235,.1);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #EFF6FF;
  color: #2563EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.benefit-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #1E293B;
}
.benefit-card p {
  font-size: 13px;
  color: #64748B;
  margin: 0;
  line-height: 1.7;
}

/* ── 登録ステップ ────────────────────────────── */
.guide-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 40px 0;
  position: relative;
}
/* ステップ間の矢印ライン */
.guide-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.6% + 20px);
  right: calc(16.6% + 20px);
  height: 2px;
  background: linear-gradient(90deg, #2563EB, #93C5FD);
  z-index: 0;
}
.guide-step {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 32px 24px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin: 0 12px;
  transition: box-shadow .15s;
}
.guide-step:first-child { margin-left: 0; }
.guide-step:last-child  { margin-right: 0; }
.guide-step:hover { box-shadow: 0 4px 16px rgba(37,99,235,.1); }

.guide-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(37,99,235,.3);
}
.guide-step h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #1E293B;
}
.guide-step p {
  font-size: 13px;
  color: #64748B;
  line-height: 1.7;
  margin: 0;
}

/* ── CTAバナー ──────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1E3A5F, #2563EB);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
  color: #fff;
  margin: 56px 0;
  box-shadow: 0 8px 32px rgba(37,99,235,.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  isolation: isolate;
}
.cta-banner h2 {
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 12px;
  letter-spacing: -.01em;
  display: block;
}
.cta-banner p {
  font-size: 15px;
  opacity: .85;
  margin: 0 0 32px;
  line-height: 1.7;
  display: block;
}
.cta-banner .btn-white {
  background: #fff;
  color: #2563EB;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  transition: opacity .15s, transform .15s;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.cta-banner .btn-white:hover {
  opacity: .95;
  transform: translateY(-2px);
}

/* ── FAQ ─────────────────────────────────────── */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .15s;
}
.faq-item:hover { box-shadow: 0 2px 8px rgba(15,23,42,.06); }
.faq-question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
}
.q-icon {
  width: 28px;
  height: 28px;
  background: #EFF6FF;
  color: #2563EB;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.q-text {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: #1E293B;
  line-height: 1.5;
}
.q-toggle {
  color: #94A3B8;
  font-size: 13px;
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item.open .q-toggle { transform: rotate(180deg); }
.faq-item.open .q-icon { background: #2563EB; color: #fff; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-answer-inner {
  padding: 0 20px 18px 62px;
  font-size: 14px;
  color: #475569;
  line-height: 1.8;
}

.faq-cta {
  text-align: center;
  padding: 40px 24px;
  background: #F8FAFF;
  border: 1px solid #DBEAFE;
  border-radius: 12px;
  margin-top: 32px;
}
.faq-cta h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1E293B;
  margin: 0 0 8px;
}
.faq-cta p {
  font-size: 14px;
  color: #64748B;
  margin: 0 0 20px;
}
.faq-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563EB;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
}
.faq-cta .btn:hover { background: #1D4ED8; }

/* ── レスポンシブ ────────────────────────────── */
@media (max-width: 991px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-steps   { grid-template-columns: 1fr; gap: 16px; }
  .guide-steps::before { display: none; }
  .guide-step { margin: 0; }
}
@media (max-width: 767px) {
  .page-hero { padding: 48px 0 40px; }
  .page-hero h1 { font-size: 24px; }
  .page-hero p  { font-size: 14px; }
  .section { padding: 48px 0; }
  .section-title { font-size: 19px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 14px; }
  .cta-banner { padding: 36px 20px; }
  .cta-banner h2 { font-size: 22px; }
  .cta-banner .btn-white { padding: 12px 28px; font-size: 15px; }
  .faq-answer-inner { padding-left: 20px; }
}
@media (max-width: 375px) {
  .page-hero h1 { font-size: 20px; }
  .cta-banner h2 { font-size: 18px; }
}