.faq-section .faq-title {
  font-weight: 700;
  color: #2c3544;
  text-align: center;
}

.faq-section .faq-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.faq-section .faq-question {
  color: #fff;
  background-color: #2c3544;
  display: flex;
  cursor: pointer;
  position: relative;
}

.faq-section .faq-question::before,
.faq-section .faq-question::after {
  content: "";
  position: absolute;
  background-color: #fff;
}

.faq-section .faq-question::after {
  transform: rotate(90deg);
  transition: all .3s ease;
}

.faq-section .faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-section .question-title {
  font-weight: 700;
  color: #fff;
}

.faq-section .question-title span {
  display: block;
}

.faq-section .question-symbol,
.faq-section .answer-symbol {
  font-family: "Zen Maru Gothic", serif;
  flex-shrink: 0;
  line-height: 1;
}

.faq-section .faq-answer {
  background-color: #f5f5f6;
  color: #2c3544;
  display: none;
}

.faq-section .answer-wrapper {
  display: flex;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 100px 0;
  }

  .faq-section .faq-item {
    margin-bottom: 20px;
  }

  .faq-section .faq-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .faq-section .faq-question {
    padding: 15px 60px 15px 25px;
    border-radius: 20px;
  }

  .faq-section .question-title {
    font-size: 18px;
    margin-top: 12px;
  }

  .faq-section .question-symbol,
  .faq-section .answer-symbol {
    font-size: 40px;
    width: 45px;
    margin-right: 15px;
  }

  .faq-section .faq-answer {
    border-radius: 20px;
    margin-top: 10px;
    padding: 25px 30px 33px;
  }

  .faq-section .answer-detail {
    margin-top: 8px;
  }

  .faq-section .faq-question::before,
  .faq-section .faq-question::after {
    width: 30px;
    height: 2px;
    right: 20px;
    top: 39px;
  }
}

@media (max-width: 767px)  {
  .faq-section {
    padding: 120rem 0;
  }

  .faq-section .faq-item {
    margin-bottom: 46rem;
  }

  .faq-section .faq-title {
    font-size: 40rem;
    margin-bottom: 50rem;
  }

  .faq-section .faq-question {
    padding: 25rem 100rem 39rem 40rem;
    border-radius: 30rem;
  }

  .faq-section .question-title {
    font-size: 32rem;
    margin-top: 17rem;
    line-height: 1.6;
  }

  .faq-section .question-symbol,
  .faq-section .answer-symbol {
    font-size: 80rem;
    width: 92rem;
    margin-right: 20rem;
  }

  .faq-section .faq-answer {
    border-radius: 20px;
    margin-top: 20rem;
    padding: 32rem 40rem 52rem;
  }

  .faq-section .answer-detail {
    margin-top: 20rem;
    font-size: 26rem;
  }

  .faq-section .faq-question::before,
  .faq-section .faq-question::after {
    width: 45rem;
    height: 4rem;
    right: 20px;
    top: 50%;
  }
}