/* FAQアコーディオン専用スタイル */
.faq-section {
  max-width: 900px;
  margin: 24px auto;
}
.section-title {
  margin: 0 auto 20px;
  text-align: center;
}
.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  background: #e6f0e8;
  padding: 16px 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  display: inlin3e-block;
  content: "▼";
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;

  padding: 0 20px;
  background: #fff;
}
.faq-item.active .faq-answer {
  padding: 16px 20px;
}
.faq-answer p {
  margin-bottom: 12px;
  line-height: 1.6;
}
.faq-answer a {
  color: var(--link);
  text-decoration: underline;
}
.faq-answer a:hover {
  color: #2f5d3a;
}

/*
  ▼ミドルサイズ（タブレット）=============================================================================
*/
@media (max-width: 1059px) {
  .faq-question {
    font-size: 1.1rem;
    font-weight: 500;
  }
  .faq-answer p {
    font-weight: 1rem;
  }
}
/*▲ミドルサイズ ここまで    =============================================================================*/

/*
  ▼スモールサイズ（スマホ）=============================================================================
*/
@media (max-width: 700px) {
  .faq-question {
    font-size: 1.1rem;
    font-weight: 500;
  }
  .faq-answer p {
    font-weight: 1rem;
  }
}
/*▲スモールサイズ ここまで ============================================================================*/
