.faq {
  max-width: var(--width474);
  margin: auto;
  padding-top: 30px;
  padding-bottom: 0;
}
.faq .page-ttl {
  font-size: 1em;
  margin-bottom: 45px;
  text-align: center;
  line-height: var(--lineHeightRate);
}
.faq .faq-box:not(:last-child) {
  margin-bottom: 45px;
}
.faq .faq-box__dt {
  margin-bottom: var(--spacing15);
  line-height: var(--lineHeightRate);
  text-transform: uppercase;
}
.faq .faq-box .qa-list .qa:not(:last-child) {
  margin-bottom: var(--spacing15);
}
.faq .faq-box .qa-list .qa__q {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.faq .faq-box .qa-list .qa__q:before {
  content: "";
  display: block;
  background: url(/assets/front/img/icon/ico-down.svg) no-repeat;
  background-size: contain;
  width: 8px;
  min-width: 8px;
  height: 4px;
  margin-right: var(--spacing15);
}
.faq .faq-box .qa-list .qa__q:hover {
  font-weight: bold;
}
.faq .faq-box .qa-list .qa__q:hover:before {
  background: url(/assets/front/img/icon/ico-down-bold.svg) no-repeat;
  background-size: contain;
}
.faq .faq-box .qa-list .qa__q.on {
  font-weight: bold;
}
.faq .faq-box .qa-list .qa__q.on:before {
  background: url(/assets/front/img/icon/ico-up-bold.svg) no-repeat;
  background-size: contain;
}
.faq .faq-box .qa-list .qa__a {
  display: none;
  margin-top: var(--spacing15);
  padding-left: 23px;
}
.faq .faq-box .qa-list .qa__a.show {
  display: block;
}
