.front_faq__container {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-color: #fff;
}
@media only screen and (max-width: 834px) {
  .front_faq__container {
    padding-top: 6rem;
  }
}
.front_faq__inner {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  overflow: hidden;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .front_faq__inner {
    flex-direction: column;
  }
}
.front_faq__head {
  margin: 0;
  align-items: flex-start;
  text-align: left;
  max-width: 55rem;
  width: calc(50% - 2rem);
}
@media only screen and (max-width: 1024px) {
  .front_faq__head {
    width: 100%;
    max-width: none;
  }
}
@media only screen and (max-width: 834px) {
  .front_faq__head {
    align-items: center;
  }
}
.front_faq__subtitle * {
  font-size: 20px;
}
@media (max-width: 1356px) {
  .front_faq__subtitle * {
    font-size: calc(16px + 4 * (100vw - 375px) / 981);
  }
}
.front_faq__list {
  max-width: 64rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 1024px) {
  .front_faq__list {
    max-width: 100%;
  }
}
.front_faq__list__item {
  padding: 2rem 3.2rem;
  border-radius: 6rem;
  border: 1px solid #161F28;
}
@media only screen and (max-width: 576px) {
  .front_faq__list__item {
    border-radius: 4rem;
    padding: 1.6rem 2.4rem;
  }
}
.front_faq__list__item.active .front_faq__list__item_head svg {
  transform: rotate(90deg);
}
.front_faq__list__item.active .front_faq__list__item_content {
  margin-top: 2rem;
}
.front_faq__list__item_head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  cursor: pointer;
}
.front_faq__list__item_head svg {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  transition: all ease-in-out 0.35s;
}
@media only screen and (max-width: 576px) {
  .front_faq__list__item_head svg {
    width: 2rem;
    height: 2rem;
  }
}
.front_faq__list__item_content {
  color: #454545;
  font-size: 1.8rem;
  max-height: 0;
  overflow: hidden;
  transition: all ease-in-out 0.35s;
}
@media only screen and (max-width: 576px) {
  .front_faq__list__item_content {
    font-size: 1.6rem;
  }
}
.front_faq__button {
  margin-top: 3.2rem;
  margin-left: auto;
}