.l-faqs__faq {
  border-bottom: 1px solid #ededed;
}
.l-faqs__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  min-height: 100px;
  font-family: "Inter", sans-serif;
  font-size: 1.25em;
  line-height: 1.3;
  color: #4a4a4a;
  cursor: pointer;
  padding: 10px;
}
@media (max-width: 1649.98px) {
  .l-faqs__question {
    font-size: 1em;
    min-height: 80px;
  }
}
@media (max-width: 1199.98px) {
  .l-faqs__question {
    font-size: 16px;
  }
}
.faq-active .l-faqs__question {
  font-weight: bold;
}
.l-faqs__icon {
  position: relative;
  width: 34px;
  height: 34px;
  min-width: 34px;
}
@media (max-width: 1649.98px) {
  .l-faqs__icon {
    width: 27.2px;
    height: 27.2px;
    min-width: 27.2px;
  }
}
@media (max-width: 1649.98px) {
  .l-faqs__icon {
    width: 19.2px;
    height: 19.2px;
    min-width: 19.2px;
  }
}
.l-faqs__icon::before, .l-faqs__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 4px;
  background-color: #b9b9b9;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.l-faqs__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-active .l-faqs__icon::before, .faq-active .l-faqs__icon::after {
  background-color: #000000;
}
.faq-active .l-faqs__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.faq-active .l-faqs__icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-faqs__answer {
  display: none;
  padding: 0 90px 64px 90px;
  font-size: 1em;
  line-height: 1.75;
  font-family: "Inter", sans-serif;
}
@media (max-width: 1649.98px) {
  .l-faqs__answer {
    font-size: 0.875em;
  }
}
@media (max-width: 1199.98px) {
  .l-faqs__answer {
    font-size: 0.75em;
    padding: 0 20px 10px 20px;
  }
}