/*-----------------------------------------
Color
------------------------------------------*/
.faq .a_under {
  text-decoration: underline;
}
.faq__head {
  position: relative;
}
.faq__head::before, .faq__head::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
}
.faq__head::before {
  bottom: 0;
  height: 1px;
  background-color: #ccc;
}
.faq__head::after {
  bottom: -3px;
  height: 3px;
  background-color: #ededed;
}
.faq__question {
  position: relative;
  padding: 0 0 20px 35px;
  margin: 0 0 20px;
}
.faq__question::before {
  position: absolute;
  content: "Q";
  color: #f583a1;
  font-size: 2.2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  width: 10%;
  top: -0.8rem;
  left: 8px;
}
.faq__answer {
  position: relative;
  padding: 0 0 0 35px;
  margin: 0 0 30px;
  line-height: 1.8;
}
.faq__answer::before {
  position: absolute;
  content: "A";
  color: #2cc0fe;
  font-size: 2.2rem;
  width: 10%;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  top: -1rem;
  left: 8px;
}
.faq__button {
  text-align: right;
  margin-bottom: 40px;
}
@media screen and (min-width: 990px) {
  .faq__question {
    font-size: 1.7rem;
    font-weight: bold;
    padding: 0 0 20px 45px;
    margin: 0 0 20px;
  }
  .faq__question::before {
    font-size: 2.8rem;
  }
  .faq__answer {
    padding: 0 0 0 45px;
    margin: 0 0 40px;
  }
  .faq__answer::before {
    font-size: 2.8rem;
  }
}