.faq-contents {
  padding: 0 70px;
}
@media (max-width: 1119px) {
  .faq-contents {
    padding: 0;
  }
}
.faq-contents__section {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .faq-contents__section {
    padding-top: 56px;
  }
}
.faq-contents__section + .faq-contents__section {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .faq-contents__section + .faq-contents__section {
    margin-top: 24px;
  }
}
.faq-contents__heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-bottom: 26px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .faq-contents__heading {
    font-size: 20px;
    padding-bottom: 18px;
  }
}
.faq-contents__heading:after {
  content: "";
  width: 16px;
  height: 2px;
  margin-left: -8px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
}
.faq-list {
  margin-top: 40px;
  border-top: 1px solid #ddd2c6;
}
@media (max-width: 767px) {
  .faq-list {
    margin-top: 32px;
  }
}
.faq-list__item {
  border-bottom: 1px solid #ddd2c6;
  font-size: 16px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .faq-list__item {
    font-size: 14px;
  }
}
.faq-list__question {
  padding: 46px 80px 46px 88px;
  font-weight: 700;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .faq-list__question {
    padding: 42px 40px 42px 48px;
  }
}
.faq-list__question:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .faq-list__question:hover {
    opacity: 1;
  }
}
.faq-list__question:before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../../img/faq/icon_q.svg) no-repeat center center;
  background-size: 40px 40px;
  display: block;
  position: absolute;
  left: 24px;
  top: 40px;
}
@media (max-width: 767px) {
  .faq-list__question:before {
    width: 32px;
    height: 32px;
    background: url(../../img/faq/icon_q.svg) no-repeat center center;
    background-size: 32px 32px;
    left: 0;
  }
}
.faq-list__question:after {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url(../../img/faq/icon_open.svg) no-repeat center center;
  background-size: 16px 16px;
  display: block;
  position: absolute;
  right: 24px;
  top: 50%;
  transition: all 0.5s 0s ease;
}
@media (max-width: 767px) {
  .faq-list__question:after {
    right: 0;
  }
}
.faq-list__question.is-open:after {
  background: url(../../img/faq/icon_close.svg) no-repeat center center;
  background-size: 16px 16px;
}
.faq-list__answer {
  padding: 30px 24px 30px 88px;
  margin-bottom: 40px;
  background: #ddd2c6;
  position: relative;
  border-radius: 6px;
  display: none;
  transition: none;
}
@media (max-width: 767px) {
  .faq-list__answer {
    padding: 16px 24px 16px 72px;
  }
}
.faq-list__answer:before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../../img/faq/icon_a.svg) no-repeat center center;
  background-size: 40px 40px;
  display: block;
  position: absolute;
  left: 24px;
  top: 24px;
}
@media (max-width: 767px) {
  .faq-list__answer:before {
    width: 32px;
    height: 32px;
    background: url(../../img/faq/icon_a.svg) no-repeat center center;
    background-size: 32px 32px;
  }
}
.faq-list__answer p + p {
  margin-top: 1rem;
}
.faq-list__answer a {
  font-weight: 700;
  color: #0065e9;
  text-decoration: underline;
}
.faq-list__answer a:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  .faq-list__answer a:hover {
    text-decoration: underline;
  }
}