/* section
================================================== */
.section {
  padding: 100px 0;
}
.section--faq, .section--pdf {
  padding-top: 60px;
  background: #f2f4f6;
}
.section--faq .section__title, .section--pdf .section__title {
  margin-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .section--faq, .section--pdf {
    padding-top: 9.33333vw;
    padding-left: 15px;
    padding-right: 15px;
  }
  .section--faq .section__title, .section--pdf .section__title {
    margin-bottom: 4.66667vw;
  }
}

/* faq
================================================== */
.faq__item {
  background: #fff;
}
.faq__item + .faq__item {
  margin-top: 10px;
}
.faq__item__title {
  position: relative;
  display: flex;
  align-items: center;
  padding: 25px 80px 25px 30px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}
.faq__item__title > span:nth-child(1) {
  margin-right: 1em;
  color: #459dca;
}
.faq__item__title > i {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 20px;
}
.faq__item__title > i::before, .faq__item__title > i::after {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #459dca;
}
.faq__item__title > i::after {
  transition: transform .1s ease-in;
  transform: rotate(90deg);
}
.faq__item__title.is-open > i::after {
  transform: rotate(0);
}
.faq__item__body {
  display: none;
  padding: 10px 30px 35px;
  font-size: 16px;
  line-height: 1.625;
}
@media only screen and (max-width: 767px) {
  .faq__item + .faq__item {
    margin-top: 2.66667vw;
  }
  .faq__item__title {
    padding: 25px 50px 25px 15px;
    align-items: flex-start;
    font-size: 4.53333vw;
  }
  .faq__item__title > i {
    right: 15px;
  }
  .faq__item__body {
    padding: 10px 15px 30px;
    font-size: 4vw;
    line-height: 1.45;
  }
}
