/* ==================================================
  hero
================================================== */

.hero {
  position: relative;
}
.hero_media {
  overflow: hidden;
  position: absolute;
}
.hero_media img {
  object-fit: cover;
}
.hero_content_inner {
  padding: 40px 0 calc(75px + 40px);
}
.hero .badge {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}
.hero .badge a:hover img {
  opacity: 1;
}

@media (max-width: 767px) {
  .hero_media {
    bottom: 0;
    left: 0;
  }
  .hero_media img {
    object-position: right;
    width: 80%;
    height: 75px;
  }
}

@media (min-width: 768px) {
  .hero_media {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .hero_media img {
    width: 100%;
    height: 100%;
  }
  .hero .section {
    position: relative;
  }
  .hero_content_inner {
    width: 60%;
    padding: 80px 0 50px;
  }
}





/* ==================================================
  よくある質問
================================================== */

.ws_faq {
  padding: 40px 0 50px;
}

@media (min-width: 768px) {
  .ws_faq {
    padding: 60px 0 100px;
  }
}



/* ----------------------------------------
  ws_faq_list
---------------------------------------- */

* + .ws_faq_list {
  margin-top: 25px;
}
.ws_faq_list .acco_trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}
.ws_faq_list .acco_trigger::after {
  content: "";
  flex-shrink: 0;
  width: 12px;
  height: 6px;
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6"><path d="m455.465 769.707-1.847-.974 3.478-5.054-3.475-4.989 1.841-.983 4.156 5.966z" transform="rotate(90 611.663 158.045)"></path></svg>');
}
.ws_faq_list .acco_trigger.acco_open::after {
  transform: rotate(180deg);
}
.ws_faq_list .acco_content {
  padding-bottom: 40px;
}
.ws_faq_list .acco_content * + * {
  margin-top: 20px;
}
.ws_faq_list .list_basic > li + li {
  margin-top: 16px;
}
.ws_faq_list .list_child {
  list-style-type: circle;
  list-style-position: outside;
  padding-left: 2em;
  margin-top: 16px;
}
.ws_faq_list .list_child > li + li {
  margin-top: 0;
}

@media (min-width: 768px) {
  .ws_faq_list .acco_content {
    font-size: 18px;
  }
}
