@charset "UTF-8";
video {
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.bold {
  font-weight: bold;
}

small {
  font-size: 11px;
}
@media screen and (max-width: 414px) {
  small {
    font-size: 9px;
  }
}
small.sup {
  vertical-align: super;
}

.footnote {
  font-size: 11px;
}
@media screen and (max-width: 414px) {
  .footnote {
    font-size: 9px;
  }
}
.footnote.right {
  text-align: right;
}

ol.footnote {
  list-style-type: none;
  margin-top: 10px;
  padding-left: 0;
  display: table;
  font-size: 0.6rem;
  text-align: left;
}
ol.footnote.right {
  margin-left: auto;
}
ol.footnote li {
  display: table-row;
  counter-increment: table-ol;
}
ol.footnote li:before {
  content: "*" counter(table-ol);
  display: table-cell;
  padding-right: 1em;
  width: 1em; /*Firefox用*/
}
ol.footnote li:after {
  content: "";
  display: block;
  margin-bottom: 0.5em;
}

html {
  font-size: 22px;
}
@media screen and (max-width: 414px) {
  html {
    font-size: 20px;
  }
}

body, html {
  height: 100%;
}

* {
  box-sizing: border-box;
}

.container {
  max-width: 750px;
  margin: 0 auto;
}
.container img, .container video {
  display: block; /* 縦配置画像の隙間対策 */
  width: 100%;
}
.container section .cta__offer_bottom {
  position: relative;
}
.container section .cta__offer_bottom .btn_cv {
  position: absolute;
  bottom: 20px;
  left: 0;
}
.container .btn_cv {
  text-align: center;
}
.container .btn_cv > img {
  display: inline-block;
  width: 90%;
  filter: drop-shadow(3px 5px 5px rgba(0, 0, 0, 0.3));
}
.container .btn_ani {
  animation: hopping 3s ease-in-out infinite;
}
@keyframes hopping {
  0%, 10%, 20%, 100% {
    transform: translateY(0);
  }
  5%, 15% {
    transform: translateY(-10px);
  }
}
.container footer {
  margin-top: 50px;
  text-align: center;
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 12px;
}
.container footer ul.footer__links {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.container footer .footer__copyright {
  margin: 2em 0 0;
  padding-bottom: 1em;
}
.container #floating_btn {
  display: none;
  position: fixed;
  bottom: 10px;
  text-align: center;
  z-index: 9999;
}
.container #floating_btn.is-show {
  display: block;
  opacity: 0;
  animation: fadeIn 2s forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #333;
  margin: 0 8px;
}
.swiper .swiper-button-prev, .swiper .swiper-button-next {
  color: #fff;
  background: #aaa;
  border-radius: 50%;
  width: min(8vw, 40px);
  height: min(8vw, 40px);
  opacity: 0.8;
}
.swiper .swiper-button-prev::after, .swiper .swiper-button-next::after {
  font-size: 0.7em;
}
.swiper .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 0px);
}
.swiper .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 0px);
}/*# sourceMappingURL=style.css.map */