/* ============================================
   UPROアルバイト - FAQページ専用スタイル
   ============================================ */

.nav-link-active { color: var(--fg); text-decoration-color: var(--fg); }

.faq-category-title {
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary);
  padding: 0.25rem 0 0.25rem 1rem;
  font-weight: 700;
}

@media (min-width: 1024px) { .faq-category-title { font-size: 1.125rem; } }

.faq-item { border-bottom: 1px solid rgba(229,229,229,0.6); padding: 0.25rem 0; }

.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}

.faq-question-inner { display: flex; align-items: flex-start; gap: 0.75rem; }

.faq-badge-q {
  margin-top: 2px;
  display: flex;
  width: 1.5rem; height: 1.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
}

.faq-badge-a {
  margin-top: 2px;
  display: flex;
  width: 1.5rem; height: 1.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted-fg);
}

.faq-question-text { font-size: 0.875rem; font-weight: 500; }

@media (min-width: 1024px) { .faq-question-text { font-size: 1rem; } }

.faq-chevron {
  margin-top: 0.25rem;
  flex-shrink: 0;
  color: var(--muted-fg);
  transition: transform 0.2s;
}

.faq-chevron svg { width: 1.25rem; height: 1.25rem; }

.faq-chevron.is-open { transform: rotate(180deg); }

.faq-answer {
  display: none;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
}

.faq-answer.is-open { display: flex; }

.faq-answer-text { font-size: 0.875rem; line-height: 1.75; color: var(--muted-fg); }

.faq-categories { display: flex; flex-direction: column; gap: 2.5rem; }

.faq-cta { background: #1e293b; padding: 4rem 0; }

@media (min-width: 1024px) { .faq-cta { padding: 5rem 0; } }

.faq-cta-inner { max-width: 48rem; margin: 0 auto; text-align: center; padding: 0 1rem; }

.faq-cta-title { margin-bottom: 1rem; font-size: 1.5rem; font-weight: 700; color: #f8fafc; }

@media (min-width: 1024px) { .faq-cta-title { font-size: 1.875rem; } }

.faq-cta-desc { margin-bottom: 2rem; font-size: 1rem; line-height: 1.75; color: #94a3b8; }