@charset "UTF-8";
/* ==========================================
   FAQ ページ
   ========================================== */
/* カテゴリごとの白カード */
.faq-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .faq-card {
    padding: 30px 20px;
  }
}
@media (max-width: 480px) {
  .faq-card {
    padding: 24px 16px;
  }
}

/* Q&Aアイテム */
.faq-item {
  display: flex;
  gap: 16px;
}
.faq-item__side {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 32px;
}
.faq-item__icon {
  font-size: 28px;
  font-weight: 700;
  color: #e67e3c;
  line-height: 1;
  margin-bottom: 12px;
}
.faq-item__line {
  display: block;
  width: 1px;
  flex: 1;
  background: #e0e0e0;
}
.faq-item__body {
  flex: 1;
  min-width: 0;
}
.faq-item__title {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 12px;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .faq-item__title {
    font-size: 16px;
  }
}
.faq-item__text {
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
  margin: 0;
}
.faq-item {
  /* 質問間の区切り線（sub-heading風） */
}
.faq-item__divider {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 24px 0;
}
.faq-item__divider img {
  width: 21px;
  height: 14px;
  flex-shrink: 0;
}
.faq-item__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #eeddd3;
  margin-left: 5px;
}

/*# sourceMappingURL=faq.css.map */
