/* よくある質問页面 */
.faq-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: #f7f7f7;
  border-radius: 20px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 24px 24px 24px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-q-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff3600;
  border-radius: 50%;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
}

.faq-q-text {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: #191919;
  letter-spacing: 1px;
}

.faq-toggle {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.faq-item-open .faq-toggle {
  /* transform: rotate(45deg); */
}

.faq-answer {
  padding: 0 24px 24px 71px;
  overflow: hidden;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer p {
  font-size: 16px;
  font-weight: 500;
  color: #191919;
  line-height: 2.1;
  letter-spacing: 1px;
  margin: 0;
}

@media (max-width: 900px) {
  .faq-answer {
    padding-left: 24px;
    padding-top: 0;
  }

  .faq-question {
    padding-right: 48px;
  }

  .faq-toggle {
    position: absolute;
    right: 24px;
  }

  .faq-question {
    position: relative;
  }
}

@media (max-width: 600px) {
  .faq-q-text {
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}
