.wrap-faq {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 2rem;
  word-wrap: break-word;
}
.wrap-faq .hide {
  display: none;
}
.wrap-faq a:hover {
  color: #fabc3d;
}
.wrap-faq ul, .wrap-faq ol {
  padding-left: 20px;
}
.wrap-faq dt {
  position: relative;
  margin-bottom: 20px;
  margin-left: 26px;
  font-size: 19px;
  color: #9a9a9a;
  cursor: pointer;
}
.wrap-faq dt:before {
  position: absolute;
  left: -30px;
  top: 5px;
  content: "";
  width: 25px;
  height: 25px;
  background: url(icons/icon-question.svg) no-repeat;
}
.wrap-faq dt:after {
  position: absolute;
  right: 20px;
  top: 5px;
  content: "";
  width: 25px;
  height: 25px;
  background: url(icons/icon-faq-arrow.svg) no-repeat;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.wrap-faq dt.active:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.wrap-faq .faq-bg {
  width: 100%;
  padding: 20px 20px 0 40px;
  margin: 20px 0 30px 0;
  background: #fdfcfa;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.wrap-faq .faq-bg p {
  margin: 0;
}