/* ========================================
   FAQ - ページ固有スタイル
   ======================================== */

/* Accordion Styles */
.faq-item {
  border-bottom: 1px solid #1A1A1A;
}
.faq-question {
  padding: 32px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}
.faq-question:hover {
  color: #B8B8B8;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  color: #B8B8B8;
}
.faq-item.active .faq-answer {
  max-height: 2000px;
  transition: max-height 1s ease-in-out;
  padding-bottom: 40px;
}
.faq-icon {
  transition: transform 0.4s ease;
  font-weight: 200;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.guide-table td {
  padding: 16px 0;
  border-bottom: 1px solid #1A1A1A;
  font-size: 14px;
  font-weight: 300;
}
