@charset "UTF-8";
/*
 * FAQアコーディオン 共通パーツ（2026.08）
 * もとは page-faq.php にインラインで書いていたものを、
 * TOPページ（front-page.php）と /question/ の両方で使うため切り出した。
 * ページ固有の枠（.faq-page-section / .faq-nav / .faq-group など）は page-faq.php 側に残してある。
 */
.faq {
  border-bottom: 1px solid #eee;
}
.faq__head {
  display: flex;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  transition: opacity 0.3s;
}
.faq__head:hover {
  opacity: 0.7;
}
.faq__left {
  width: 40px;
  flex-shrink: 0;
}
.faq__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f29600;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: "Titillium Web", sans-serif;
  border-radius: 50%;
}
.faq__right {
  flex: 1;
}
.faq__que {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #16243f;
}
.faq__body {
  display: none;
  padding: 0 0 22px;
}
.faq.open .faq__body {
  display: flex;
}
.faq__ans {
  font-size: 14px;
  color: #666;
  line-height: 2;
}

@media screen and (max-width: 758px) {
  .faq__que {
    font-size: 14px;
  }
}
