.faq {
  padding-bottom: 10rem;
  padding-top: 4rem;
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-item {
  border: 0.1rem solid #b9ada4;
  background: #4e3f35;
  color: #fff;
}
.faq-item + .faq-item {
  margin-top: 2.4rem;
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 5.6rem 1fr 5.6rem;
  align-items: center;
  gap: 1.6rem;
  padding: 2rem 1.6rem;
  background: transparent;
  color: inherit;
  border: 0;
  cursor: pointer;
  text-align: left;
  background-color: #1D2A55;
}
@media (max-width: 767px) {
  .faq-question {
    grid-template-columns: 3rem 1fr 2rem;
  }
}

.faq-q,
.faq-a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 0.4rem;
  background: #fff;
  color: #4e3f35;
  font-weight: 700;
  font-size: 3rem;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .faq-q,
  .faq-a {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2rem;
  }
}

.faq-q {
  color: #1D2A55;
}

.faq-question-text {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .faq-question-text {
    font-size: 1.4rem;
  }
}

.faq-toggle {
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.8rem;
  height: 0.2rem;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  background: #fff;
  color: #3b2f28;
  border-left: 0.1rem solid #b9ada4;
  border-right: 0.1rem solid #b9ada4;
  border-bottom: 0.1rem solid #b9ada4;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}

.faq-answer-inner {
  display: grid;
  grid-template-columns: 5.6rem 1fr;
  gap: 1.6rem;
  padding: 2rem 1.6rem;
}
@media (max-width: 767px) {
  .faq-answer-inner {
    grid-template-columns: 2rem 1fr;
  }
}

.faq-answer-text p {
  margin: 0 0 1em;
  font-size: 1.6rem;
  line-height: 1.6;
}
.faq-answer-text p a {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .faq-answer-text p {
    font-size: 1.4rem;
  }
}

.faq-answer-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .faq-question-text {
    font-size: 1.6rem;
  }
}/*# sourceMappingURL=faq.css.map */