body {
  color: #262B36;
}

/*===========================================================================*/
/*  faq  */
/*===========================================================================*/
.p-faq {
  padding: 110px 0 130px;
  background-color: #F7F8F8;
}

.p-faq__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.38;
  text-align: center;
  margin-bottom: 46px;
  padding-bottom: 35px;
  position: relative;
}

.p-faq__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 58px;
  height: 4px;
  background: #482DB5;
  left: 50%;
  transform: translateX(-50%);
}

.p-faq__title.function {
  margin-top: 120px;
}

.p-faq__item {
  margin-bottom: 15px;
}

.p-faq__item:last-child {
  margin-bottom: 0;
}

.p-faq__questionBox {
  max-width: 879px;
  margin: 0 auto;
  background-color: #fff;
  cursor: pointer;
  border-radius: 8px;
  transition: box-shadow .5s 0s cubic-bezier(.44, .14, .09, 1.02);
}

.p-faq__questionBox:hover {
  box-shadow: 8px 8px 28px 0px rgba(0, 0, 0, 0.22);
}

.p-faq__questionBox--text {
  background-color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  padding: 25px 35px 27px 72px;
  width: 100%;
  position: relative;
  border-radius: 8px;
}

.p-faq__questionBox--text::before {
  content: "";
  width: 32px;
  height: 32px;
  background: url(../img/faq/question_icon.svg) no-repeat center center/contain;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.p-faq__questionBox--text::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/faq/open_icon.svg) no-repeat center center/contain;
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}

.p-faq__questionBox--text.toggle-arrow::after {
  content: "";
  width: 14px;
  height: 2px;
  background: url(../img/faq/close_icon.svg) no-repeat center center/contain;
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}

.p-faq__answerBox {
  max-width: 879px;
  margin: 0 auto;
  background-color: #fff;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.1s ease;
}

.p-faq__answerBox.is-open {
  max-height: 10000px;
}

.p-faq__answerBox--text {
  background-color: #F7F8F8;
  padding: 23px 0 35px 72px;
  width: 100%;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.64;
  letter-spacing: 0.03em;
}

.p-faq__answerBox--text::before {
  content: "";
  width: 32px;
  height: 32px;
  background: url(../img/faq/answer_icon.svg) no-repeat center center/contain;
  position: absolute;
  left: 25px;
  top: 20px;
}

@media screen and (max-width: 900px) {
  .p-faq {
    padding: 50px 20px 60px;
  }

  .p-faq__inner {
    max-width: 375px;
    margin: 0 auto;
  }

  .p-faq__item {
    padding: 0 20px;
  }

  .p-faq__title {
    padding-bottom: 25px;
    margin-bottom: 20px;
    font-size: 26px;
  }

  .p-faq__title.function {
    margin-top: 60px;
  }

  .p-faq__questionBox:hover {
    box-shadow: none;
  }

  .p-faq__questionBox--text {
    padding: 18px 34px 18px 45px;
    font-size: 15px;
  }

  .p-faq__questionBox--text::before {
    content: "";
    width: 25px;
    height: 25px;
    left: 10px;
  }

  .p-faq__questionBox--text::after {
    content: "";
    width: 12px;
    right: 10px;
  }

  .p-faq__questionBox--text.toggle-arrow::after {
    width: 12px;
    height: 12px;
    right: 10px;
  }

  .p-faq__answerBox {
    max-width: 879px;
    margin: 0 auto;
    background-color: #fff;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.1s ease;
  }

  .p-faq__answerBox--text {
    padding: 15px 0 15px 45px;
    font-size: 14px;
  }

  .p-faq__answerBox--text::before {
    width: 25px;
    height: 25px;
    left: 10px;
    top: 15px;
  }
}

/*# sourceMappingURL=faq.css.map */