@charset "UTF-8";
/* ==============================
      FAQ ページ
============================== */
.faq {
  padding-top: 72px;
}

/* ==============================
      見出しセクション
============================== */
.faq__heading {
  padding: 64px 80px;
}

.faq__title {
  font-family: var(--font-family-cormorant);
  font-size: 80px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-primary);
}

.faq__description {
  font-family: var(--font-family-zen);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 3.2px;
  color: var(--color-primary);
}

/* ==============================
      FAQリスト
============================== */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 160px 80px;
}

/* ==============================
      FAQアイテム
============================== */
.faq-item {
  border: 1px solid #f6d0d0;
  padding: 24px 40px;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-item__icon {
  font-family: var(--font-family-cormorant);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-primary);
  flex-shrink: 0;
}

.faq-item__text {
  flex: 1;
  font-family: var(--font-family-zen);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.72px;
  color: var(--color-primary);
  margin-left: 24px;
  margin-right: 24px;
}

/* トグルアイコン（+/−） */
.faq-item__toggle {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.faq-item__toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 2px;
  background-color: var(--color-primary);
  transform: translateY(-50%);
}
.faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 16px;
  background-color: var(--color-primary);
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
}

/* 開いているとき → 「−」に変化 */
.faq-item--open .faq-item__toggle::after {
  opacity: 0;
}

/* ==============================
      アコーディオン アニメーション
      grid-template-rows で高さを 0fr ↔ 1fr
============================== */
.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item--open .faq-item__body {
  grid-template-rows: 1fr;
}

.faq-item__answer {
  overflow: hidden;
  padding-left: 64px;
}
.faq-item__answer p {
  font-family: var(--font-family-zen);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 1.12px;
  color: var(--color-primary);
  padding-top: 24px;
}
.faq-item__answer a {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* ==============================
      同意書セクション
============================== */
.faq__consent {
  background-color: #f2f2f2;
  border-radius: 8px;
  padding: 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq__consent-text {
  font-family: var(--font-family-zen);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 1.28px;
  color: var(--color-primary);
}

.faq__consent-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.faq__consent-label {
  font-family: var(--font-family-zen);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.64px;
  color: #000;
  width: 120px;
  flex-shrink: 0;
}

.faq__consent-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  background-color: var(--color-secondary);
  color: #fff;
  font-family: var(--font-family-zen);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.2px;
  text-decoration: none;
}

/* ==============================
      レスポンシブ（SP）
============================== */
@media (max-width: 768px) {
  .faq__heading {
    padding: 56px 24px;
  }
  .faq__title {
    font-size: 40px;
  }
  .faq__list {
    padding: 0 24px 80px;
  }
  .faq-item {
    padding: 24px 10px;
  }
  .faq-item .faq-item__question {
    position: relative;
    flex-wrap: wrap;
    row-gap: 24px;
  }
  .faq-item .faq-item__question .faq-item__toggle {
    width: 100%;
  }
  .faq-item .faq-item__question .faq-item__toggle::after {
    left: 8px;
  }
  .faq-item__text {
    margin-left: 24px;
    margin-right: 0;
  }
  .faq-item__answer {
    padding-left: 0;
  }
  .faq__consent {
    padding: 48px 30px;
  }
  .faq__consent-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .faq__consent-label {
    text-align: center;
  }
}/*# sourceMappingURL=page-faq.css.map */