@charset "UTF-8";
.faq-banner {
  position: relative;
  background-image: url("../images/faq/banner-pc.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 0;
  padding-bottom: calc(320 / 1920 * 100%);
}
@media screen and (max-width: 767px) {
  .faq-banner {
    background-image: url("../images/faq/banner-sp.png");
    padding-bottom: calc(200 / 375 * 100%);
  }
}
.faq-banner .banner-content {
  display: flex;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  justify-content: flex-start;
  align-items: center;
}