.page-faq__overview {
  padding-top: 43px;
  padding-bottom: 80px;
  background-color: #F1F1F1;
}
@media screen and (min-width: 1024px) {
  .page-faq__overview {
    padding-top: 120px;
    padding-bottom: 180px;
  }
}

.page-faq__category {
  cursor: pointer;
  font-weight: 500;
  font-size: 0.625rem;
  line-height: 1;
  padding: 4px 20px;
  border-radius: 100vw;
  color: #1C2A48;
  border: 1px solid #1C2A48;
  display: inline-block;
  transition: all 0.3s;
}
@media screen and (min-width: 1024px) {
  .page-faq__category {
    font-size: 1rem;
    padding: 9px 24px;
  }
}
.page-faq__category.is-current, .page-faq__category:hover {
  background-color: #1C2A48;
  color: #fff;
}

.page-faq__category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width: 1024px) {
  .page-faq__category-list {
    gap: 20px;
  }
}

.page-faq__block-title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  border-bottom: 1px solid #222;
  margin-bottom: 10px;
  padding-bottom: 5px;
  color: #1C2A48;
}
@media screen and (min-width: 1024px) {
  .page-faq__block-title {
    font-size: 1.25rem;
    line-height: 2;
    padding-bottom: 10px;
    margin-bottom: 24px;
  }
}

.page-faq__block {
  margin-top: 40px;
}

.faq-list__item {
  background-color: #ab8f50;
}

.faq-list__item-question {
  background-color: #1c2a48;
  cursor: pointer;
  display: flex;
  gap: 0.25rem;
  padding: 10px 60px 10px 30px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .faq-list__item-question {
    padding: 19px 80px 19px 40px;
  }
}

.faq-list__item-question::before,
.faq-list__item-question::after {
  background-color: #fff;
  content: "";
  height: 1px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  width: 11px;
}
@media screen and (min-width: 1024px) {
  .faq-list__item-question::before,
  .faq-list__item-question::after {
    height: 2px;
    width: 16px;
  }
}

.faq-list__item-question.is-open::after {
  transform: rotate(0deg);
}

.faq-list__item-question::after {
  transform: rotate(90deg);
}

.faq-list__item-question span {
  color: #fff;
  display: inline-block;
  font-size: 0.75rem;
}
@media screen and (min-width: 1024px) {
  .faq-list__item-question span {
    font-size: 1rem;
  }
}

.faq-list__item-question span:nth-of-type(1) {
  font-weight: 700;
  letter-spacing: 0.2em;
}

.faq-list__item-question span:nth-of-type(2) {
  font-weight: 500;
}

.faq-list__item-answer {
  background-color: #fff;
  position: relative;
  padding: 10px 30px;
}
@media screen and (min-width: 1024px) {
  .faq-list__item-answer {
    padding: 19px 40px;
  }
}

.faq-list__item:first-of-type .faq-list__item-answer {
  display: block;
}

.faq-list__item:not(:first-of-type) .faq-list__item-answer {
  display: none;
}

.faq-list__item-answer-inner {
  display: flex;
  gap: 0.25rem;
}

.faq-list__item-answer span {
  display: inline-block;
  font-size: 0.75rem;
}
@media screen and (min-width: 1024px) {
  .faq-list__item-answer span {
    font-size: 1rem;
  }
}

.faq-list__item-answer span:nth-of-type(1) {
  font-weight: 700;
  letter-spacing: 0.2em;
}

.faq-list__item-answer span:nth-of-type(2) {
  font-weight: 500;
}

.service-detail___faq-list {
  display: grid;
  gap: 20px;
}/*# sourceMappingURL=page-faq.css.map */