/*******************************************************************************
faq__list
*******************************************************************************/
.faq__list {
  margin-bottom: 114px;
  font-weight: bold;
}
@media screen and (max-width: 896px) {
  .faq__list {
    margin-bottom: 18px;
  }
}
.faq__list li {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-transition: opacity .6s;
  transition: opacity .6s;
  letter-spacing: 0.05em;
}
.faq__list _:lang(x)::-ms-backdrop,
.faq__list li {
  padding: 6px 0 0 30px;
}
.faq__list li:hover {
  opacity: .5;
}
.faq__list li::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 22px;
  height: 22px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/sub/arrow_buttom.svg) center center/cover no-repeat;
}
.faq__list li:not(:last-child) {
  margin-bottom: 8px;
}

/*******************************************************************************
faqMain > section
*******************************************************************************/
.faqMain > section {
  margin-top: 96px;
}
@media screen and (max-width: 896px) {
  .faqMain > section {
    margin-top: 0;
    padding-top: 96px;
  }
}

/*******************************************************************************
faq__item
*******************************************************************************/
.faq__item__title {
  font-size: 24px;
  font-weight: bold;
  border-bottom: 1px solid #979797;
  padding-bottom: 8px;
  margin-bottom: 64px;
  letter-spacing: 0.1em;
}

.faq__item__list:not(:last-child) {
  margin-bottom: 64px;
}

.faq__item__list__q,
.faq__item__list__a {
  position: relative;
}

.faq__item__list__q::before,
.faq__item__list__a::before {
  position: absolute;
  left: 0;
  top: 0;
}

.faq__item__list__q {
  padding-left: 24px;
  margin-bottom: 32px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.faq__item__list__q::before {
  content: "Q.";
}

.faq__item__list__a {
  margin-left: 256px;
  padding-left: 24px;
  width: 576px;
  text-align: justify;
}
@media screen and (max-width: 896px) {
  .faq__item__list__a {
    margin-left: 0;
    width: 100%;
  }
}
.faq__item__list__a::before {
  content: "A.";
  font-weight: bold;
}
