@charset "UTF-8";
/*g-mixin*/
.p-faq__main {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-faq__main {
    padding-top: 48px;
  }
}
.p-faq__main:last-child {
  padding-bottom: 168px;
}
@media screen and (max-width: 768px) {
  .p-faq__main:last-child {
    padding-bottom: 112px;
  }
}

.p-faq__li {
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (max-width: 768px) {
  .p-faq__li {
    line-height: 2.2rem;
  }
}

.p-faq__question {
  position: relative;
  padding: 38px 90px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-faq__question {
    padding: 25px 30px 25px 70px;
  }
}
@media screen and (max-width: 500px) {
  .p-faq__question {
    padding: 22px 30px 22px 50px;
  }
}
.p-faq__question::before {
  content: "Q";
  position: absolute;
  top: 26%;
  left: 2%;
  font-family: "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
  font-weight: bold;
  color: #C91D1D;
  font-size: 2.2rem;
  padding: 7px 12px;
  border-radius: 50%;
  border: 1px solid #C91D1D;
}
@media screen and (max-width: 768px) {
  .p-faq__question::before {
    top: 24%;
    left: 3%;
    font-size: 1.6rem;
    padding: 4px 8px;
  }
}
.p-faq__question p {
  font-weight: bold;
}
.p-faq__question .p-faq__btn {
  position: absolute;
  top: 50%;
  right: 2%;
  width: 24px;
  height: 2px;
  background: #777777;
}
@media screen and (max-width: 768px) {
  .p-faq__question .p-faq__btn {
    width: 15px;
  }
}
.p-faq__question .p-faq__btn::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #777777;
  transform: rotate(90deg);
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .p-faq__question .p-faq__btn::after {
    width: 15px;
  }
}

.p-faq__question.open .p-faq__btn::after {
  transform: rotate(0);
}

.p-faq__answer {
  display: none;
  position: relative;
  padding: 38px 90px;
  background: #F8F7F3;
}
@media screen and (max-width: 768px) {
  .p-faq__answer {
    padding: 22px 30px 22px 50px;
  }
}
.p-faq__answer::before {
  content: "A";
  position: absolute;
  top: 18%;
  left: 2%;
  font-family: "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
  font-weight: bold;
  color: #fff;
  font-size: 2.2rem;
  padding: 7px 13px;
  border-radius: 50%;
  border: 1px solid #C91D1D;
  background: #C91D1D;
}
@media screen and (max-width: 768px) {
  .p-faq__answer::before {
    top: 24%;
    left: 3%;
    font-size: 1.6rem;
    padding: 4px 9px;
  }
}

.p-faq__sub {
  padding-top: 104px;
  padding-bottom: 168px;
}
@media screen and (max-width: 768px) {
  .p-faq__sub {
    padding-top: 52px;
    padding-bottom: 112px;
  }
}