.faq .mv_mainCnt {
  margin: 0.7rem auto 0;
}

.faq_link,
.faq_link:hover {
  text-decoration: underline;
}

/* faq_tabs */
.faq_wrapper {
  padding: 15rem 0;
}
@media screen and (max-width: 767px) {
  .faq_wrapper {
    padding: 4rem 0 9.4rem;
  }
}

.faq_tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* faq */
.faq_content {
  margin-top: 2.3rem;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.faq_top::before {
  display: inline-block;
  position: absolute;
  top: 4.7rem;
  left: 7rem;
  content: "Q";
  font-size: 4rem;
  font-family: "Anton", sans-serif;
  color: #F4A000;
  line-height: 0.8;
}
@media screen and (max-width: 767px) {
  .faq_top::before {
    font-size: 3rem;
    left: 2rem;
    top: 2.4rem;
  }
}

.faq_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .faq_top {
    padding-left: 4rem;
  }
}

.faq_topBox {
  background-color: #EFF1F4;
  padding: 4.7rem 4.2rem 2.9rem 11.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq_topBox {
    padding: 2.4rem 2rem 1.3rem;
  }
}

.faq_topBox .cta-faq {
  cursor: unset;
}

.faq_answer {
  background-color: #EFF1F4;
  padding: 0rem 11.8rem 4.8rem 11.8rem;
  line-height: 1.625;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .faq_answer {
    padding: 0 2rem 2.4rem;
    font-size: 1.4rem;
    text-align: justify;
  }
}

.faq_question {
  margin-top: 1.8rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .faq_question {
    margin-top: 1.4rem;
    font-size: 1.6rem;
  }
}

.faq_icon {
  position: relative;
  top: 50%;
  right: 2.8rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq_icon {
    right: 1.7rem;
  }
}

.faq_icon:before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 0;
  width: 2.6rem;
  height: 0.4rem;
  background-color: #F4A000;
}
@media screen and (max-width: 767px) {
  .faq_icon:before {
    top: 0.75rem;
    left: 0;
    width: 2rem;
    height: 0.3rem;
  }
}

.faq_icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1.1rem;
  width: 0.4rem;
  height: 2.6rem;
  background-color: #F4A000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .faq_icon::after {
    left: 0.75rem;
    width: 0.3rem;
    height: 2rem;
  }
}

.faq_icon.is-active::after {
  opacity: 1;
}

.faq_section {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .faq_section {
    margin-top: 3.8rem;
  }
}