/* FAQページ専用CSS */
.page-header {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(26, 26, 26, 1));
}

.page-header__title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.page-header__description {
  font-size: 16px;
  color: var(--color-light-gray);
  line-height: 1.9;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex: 1;
}

.faq-toggle {
  font-size: 28px;
  font-weight: 300;
  color: var(--color-light-gray);
  transition: var(--transition-smooth);
  width: 30px;
  text-align: center;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 30px 25px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-light-gray);
}

.cta {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.cta__description {
  font-size: 16px;
  color: var(--color-light-gray);
  margin-bottom: 40px;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .page-header {
    min-height: 50vh;
    padding: 100px 20px 60px;
  }

  .page-header__title {
    font-size: 36px;
  }

  .faq-question {
    padding: 20px 20px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
  }

  .cta__title {
    font-size: 28px;
  }
}
