/* CSS Document */
.p-faq {
  padding-bottom: 50px;
}
@media screen and (min-width: 992px) {
  .p-faq {
    padding-bottom: 120px;
  }
}
.p-faq__list li {
  padding: 30px 0;
  border-bottom: 1px solid #d8d8d8;
}
@media screen and (min-width: 992px) {
  .p-faq__list li {
    padding: 50px 0;
  }
}
.p-faq__list li:first-of-type .question::after {
  background: url(../../img/common/icon_close.png) no-repeat center/contain;
}
.p-faq__list li:first-of-type .question.active::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
      -ms-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
  background: url(../../img/common/icon_open.png) no-repeat center/contain;
}
.p-faq__list li:first-of-type .answer {
  display: block;
}
.p-faq__list li .question {
  cursor: pointer;
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding-left: 40px;
  font-weight: 500;
  padding-right: 20px;
  line-height: 1.35714286;
}
@media screen and (min-width: 992px) {
  .p-faq__list li .question {
    padding-left: 70px;
  }
}
.p-faq__list li .question::before {
  position: absolute;
  left: 0;
  top: -6px;
  width: 30px;
  height: 30px;
  content: "";
  display: block;
  background: url(../../img/common/icon_q.png) no-repeat center/contain;
}
@media screen and (min-width: 992px) {
  .p-faq__list li .question::before {
    width: 50px;
    top: -14px;
    height: 50px;
  }
}
.p-faq__list li .question::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../../img/common/icon_open.png) no-repeat center/cover;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.p-faq__list li .question.active::after {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  background: url(../../img/common/icon_close.png) no-repeat center/contain;
}
.p-faq__list li .answer {
  display: none;
  padding-left: 40px;
  margin-top: 25px;
  position: relative;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .p-faq__list li .answer {
    margin-top: 50px;
    padding-left: 70px;
  }
}
.p-faq__list li .answer::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  content: "";
  display: block;
  background: url(../../img/common/icon_a.png) no-repeat center/cover;
}
@media screen and (min-width: 992px) {
  .p-faq__list li .answer::before {
    width: 50px;
    top: -8px;
    height: 50px;
  }
}