@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.m-sp {
  display: none;
}
@media (max-width: 768px) {
  .m-sp {
    display: block;
  }
}

.m-tab {
  display: none;
}
@media (max-width: 820px) {
  .m-tab {
    display: block;
  }
}

.m-tab_m {
  display: none;
}
@media (max-width: 1024px) {
  .m-tab_m {
    display: block;
  }
}

.m-tab_l {
  display: none;
}
@media (max-width: 1200px) {
  .m-tab_l {
    display: block;
  }
}

.m-pc {
  display: block;
}
@media (max-width: 768px) {
  .m-pc {
    display: none;
  }
}

.m-pc_inline {
  display: inline;
}
@media (max-width: 768px) {
  .m-pc_inline {
    display: none;
  }
}

.m-strong {
  font-weight: bold;
}

.m-narrow {
  letter-spacing: -0.1em;
}

.m-br {
  margin-top: 1em;
  display: block;
  content: "";
}

.m-sup {
  vertical-align: super;
  font-size: 10px;
  display: inline-block;
  transform: scale(0.9);
  transform-origin: left bottom;
}

.m-link {
  text-decoration: none;
  color: inherit;
  transition: 0.3s all;
}

.m-event_none {
  pointer-events: none;
}

.m-inner {
  width: 1200px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .m-inner {
    width: 89.3333333333vw;
    max-width: 100%;
  }
}

.m-fadein {
  opacity: 0;
  transition: 0.6s ease;
  transform: translateY(60px);
}
@media (max-width: 768px) {
  .m-fadein {
    transform: translateY(16vw);
  }
}
.m-fadein.is_show {
  opacity: 1;
  transform: translateY(0);
}

.m-fadein_delay {
  opacity: 0;
  transition: 0.6s ease;
  transform: translateY(60px);
}
@media (max-width: 768px) {
  .m-fadein_delay {
    transform: translateY(16vw);
  }
}
.is_show .m-fadein_delay {
  opacity: 1;
  transform: translateY(0);
}
.m-fadein_delay-01 {
  transition-delay: 0s;
}
.m-fadein_delay-02 {
  transition-delay: 0.2s;
}
.m-fadein_delay-03 {
  transition-delay: 0.4s;
}
.m-fadein_delay-04 {
  transition-delay: 0.6s;
}
.m-fadein_delay-05 {
  transition-delay: 0.8s;
}

.m-split_txt > span {
  opacity: 0;
  transform: rotateY(0deg);
  transition: 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
  display: inline-block;
}
.m-split_txt > span:nth-child(1) {
  transition-delay: 0.05s;
}
.m-split_txt > span:nth-child(2) {
  transition-delay: 0.1s;
}
.m-split_txt > span:nth-child(3) {
  transition-delay: 0.15s;
}
.m-split_txt > span:nth-child(4) {
  transition-delay: 0.2s;
}
.m-split_txt > span:nth-child(5) {
  transition-delay: 0.25s;
}
.m-split_txt > span:nth-child(6) {
  transition-delay: 0.3s;
}
.m-split_txt > span:nth-child(7) {
  transition-delay: 0.35s;
}
.m-split_txt > span:nth-child(8) {
  transition-delay: 0.4s;
}
.m-split_txt > span:nth-child(9) {
  transition-delay: 0.45s;
}
.m-split_txt > span:nth-child(10) {
  transition-delay: 0.5s;
}
.m-split_txt > span:nth-child(11) {
  transition-delay: 0.55s;
}
.m-split_txt > span:nth-child(12) {
  transition-delay: 0.6s;
}
.m-split_txt > span:nth-child(13) {
  transition-delay: 0.65s;
}
.m-split_txt > span:nth-child(14) {
  transition-delay: 0.7s;
}
.m-split_txt > span:nth-child(15) {
  transition-delay: 0.75s;
}
.m-split_txt > span:nth-child(16) {
  transition-delay: 0.8s;
}
.m-split_txt > span:nth-child(17) {
  transition-delay: 0.85s;
}
.m-split_txt > span:nth-child(18) {
  transition-delay: 0.9s;
}
.m-split_txt > span:nth-child(19) {
  transition-delay: 0.95s;
}
.m-split_txt > span:nth-child(20) {
  transition-delay: 1s;
}
.m-split_txt.is_show > span, .is_show .m-split_txt > span {
  opacity: 1;
  transform: rotateY(360deg);
}

.m-ttl {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.425;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .m-ttl {
    font-size: 6.9333333333vw;
  }
}
.m-ttl:before {
  content: "";
  display: block;
  width: 55px;
  aspect-ratio: 110/112;
  background-image: url(../img/common/icn_ttl.webp);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  padding-bottom: 8px;
  margin-right: 11px;
  opacity: 0;
  transition: 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 768px) {
  .m-ttl:before {
    width: 10.6666666667vw;
    padding-bottom: 2.1333333333vw;
    margin-right: 2.6666666667vw;
  }
}
.m-ttl.is_show:before {
  opacity: 1;
}

.m-subTtl {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4666666667;
  padding-bottom: 31px;
  border-bottom: 1px solid #707070;
}
@media (max-width: 768px) {
  .m-subTtl {
    font-size: 5.8666666667vw;
    padding-bottom: 4.2666666667vw;
  }
}

/*# sourceMappingURL=module.css.map */
