.kv__title {
  display: none;
  overflow: visible;
  width: calc(100vw - 160px);
  position: absolute;
  top: 42.5%;
  z-index: 20;
  transform: translateY(-50%);
  user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .kv__title {
    top: 50%;
    transform: translateY(-115%);
  }
}
.kv__title.move .kv__title__item::before {
  display: none;
}
.kv__title.move .kv__title__item:nth-child(odd) {
  animation: MoveLeft 48s -24s infinite linear;
}
.kv__title.move .kv__title__item:nth-child(even) {
  animation: MoveLeft2 48s infinite linear;
}
.kv__title__item {
  display: flex;
  position: relative;
  z-index: 20;
  width: auto;
  height: 160px;
}
@media screen and (max-width: 768px) {
  .kv__title__item {
    height: 128px;
  }
}
.kv__title__item--img {
  width: auto;
  height: 100%;
}
.kv__title__item::before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 21;
  animation: cover-out var(--title-show) forwards linear;
}

@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes cover-out {
  from {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
  }
}
.kv__swiper {
  user-select: none;
  overflow: visible;
}
.kv__swiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(1, 0, 0.5, 0.7);
}
.kv__swiper .swiper-slide {
  width: 200vw;
  height: 100svh;
  position: relative;
}
.kv__swiper .swiper-slide .kv__swiper__contents {
  opacity: 0;
}
.kv__swiper .swiper-slide.swiper-slide-active .kv__swiper__contents {
  opacity: 1;
  animation: fade 1s forwards linear;
  animation-delay: var(--fade-time);
}
.kv__swiper .swiper-slide.swiper-slide-active .kv__swiper__text,
.kv__swiper .swiper-slide.swiper-slide-active .kv__swiper__sub,
.kv__swiper .swiper-slide.swiper-slide-active .kv__swiper__button {
  animation: cover-in var(--change-speed) forwards ease-in-out;
  animation-delay: calc(var(--swipe-change-speed) + var(--change-speed));
}
.kv__swiper .swiper-slide.swiper-slide-active .kv__swiper__text::before,
.kv__swiper .swiper-slide.swiper-slide-active .kv__swiper__sub::before,
.kv__swiper .swiper-slide.swiper-slide-active .kv__swiper__button::before {
  animation: cover-out var(--change-speed) forwards ease-in-out;
  animation-delay: calc(var(--swipe-change-speed) + var(--change-speed) * 2);
}
.kv__swiper .swiper-slide.swiper-slide-active .kv__title {
  display: flex;
}
.kv__swiper .swiper-slide.swiper-slide-prev {
  opacity: 1;
}
.kv__swiper .swiper-slide.swiper-slide-prev .kv__title {
  display: flex;
  animation: fade calc(var(--change-speed) * 3) forwards ease-in;
}
.kv__swiper__bg {
  position: relative;
  z-index: 10;
}
.kv__swiper__bg--wrapper {
  display: flex;
}
.kv__swiper__bg--one {
  width: 100vw;
  height: 100svh;
  position: relative;
}
.kv__swiper__bg--one.oh {
  overflow: hidden;
}
.kv__swiper__bg--img {
  display: block;
  width: 110%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
}
.kv__swiper__bg--img.slide-0 {
  transform: translate(-50%, -62.5%);
}
@media screen and (max-width: 768px) {
  .kv__swiper__bg--img.slide-0 {
    width: 200%;
    transform: translate(-50%, -42.5%);
  }
}
.kv__swiper__bg--img.slide-1 {
  transform: translate(-50%, -37.5%);
}
@media screen and (max-width: 768px) {
  .kv__swiper__bg--img.slide-1 {
    width: 200%;
    transform: translate(-50%, -30%);
  }
}
.kv__swiper__bg--img.slide-2 {
  transform: translate(-45%, -85%);
}
@media screen and (max-width: 768px) {
  .kv__swiper__bg--img.slide-2 {
    width: 200%;
    transform: translate(-50%, -80%);
  }
}
.kv__swiper__bg--img.add-1 {
  overflow: hidden;
  width: 100%;
  transform: translate(-50%, -50%) rotate(54.9deg);
}
@media screen and (max-width: 768px) {
  .kv__swiper__bg--img.add-1 {
    background-color: #fff;
  }
}
.kv__swiper__bg--img.add-2 {
  width: 100%;
  transform: translate(-50%, -100%) rotate(-73.8deg);
}
@media screen and (max-width: 768px) {
  .kv__swiper__bg--img.add-2 {
    background-color: #fff;
  }
}
.kv__swiper__contents {
  position: absolute;
  left: 0;
  bottom: 84px;
  overflow: hidden;
  z-index: 101;
}
@media screen and (max-width: 768px) {
  .kv__swiper__contents {
    bottom: 7%;
  }
}
.kv__swiper__text {
  margin: 0 0 24px 0;
  position: relative;
  color: #17171a;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 50px;
  font-weight: 400;
  text-align: left;
  position: relative;
  overflow: hidden;
  transform: translateX(-101%);
}
.kv__swiper__text .accent {
  color: #6bb7e8;
}
@media screen and (max-width: 1440px) {
  .kv__swiper__text {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  .kv__swiper__text {
    font-size: 37px;
  }
}
.kv__swiper__text::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0273b6, #0ea8dc);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.kv__swiper__sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 12px 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.96px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transform: translateX(-101%);
}
.kv__swiper__sub::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0273b6, #0ea8dc);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 1440px) {
  .kv__swiper__sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .kv__swiper__sub {
    font-size: 15px;
    line-height: 21.72px;
    letter-spacing: 0.2em;
  }
}
.kv__swiper__button {
  position: relative;
  overflow: hidden;
  transform: translateX(-101%);
  display: inline-flex;
  margin-bottom: 12px;
}
.kv__swiper__button::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0273b6, #0ea8dc);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.kv__swiper__button--a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "sofia-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 17px 30px;
  width: 250px;
  background-color: #ece550;
  border-radius: 100px;
  font-size: 16px;
  color: #0273b6;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .kv__swiper__button--a {
    width: 156px;
    padding: 12.5px 24px;
    font-size: 13px;
  }
}
.kv__swiper__button--line {
  width: 35px;
  position: relative;
}
.kv__swiper__button--line::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1px;
  background-color: #0273b6;
  position: absolute;
  left: 0;
  top: 50%;
  right: calc(100% - 25px);
  transform: translateY(-50%);
  right: calc(100% - 25px);
  border-radius: 0;
}
.kv__swiper__button--line.active::before {
  animation-name: lineforwards;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.kv__swiper__button--line.disactive::before {
  animation-name: linebackwards;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.kv__swiper__button--line::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #0273b6;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
}
.kv__swiper__lottie {
  opacity: 0;
  position: absolute;
  width: 150%;
  height: 150%;
  top: 50%;
  left: -37.5%;
  transform: translateY(-50%);
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .kv__swiper__lottie {
    width: 125%;
    height: 125%;
  }
}
.kv__swiper__lottie.start {
  animation: fade-in var(--change-speed) forwards ease-in-out;
  animation-delay: calc(var(--swipe-change-speed) + var(--change-speed) * 2 + var(--change-speed));
}
@media screen and (max-width: 768px) {
  .kv__swiper__lottie#lottie-0 {
    left: -30%;
    transform: translateY(-60%);
  }
}
.kv__swiper__lottie#lottie-1 {
  left: 50%;
  transform: translateY(-75%) translateX(-65%);
}
@media screen and (max-width: 768px) {
  .kv__swiper__lottie#lottie-1 {
    left: -32.5%;
    transform: translateY(-79.5%);
  }
}
.kv__swiper__lottie#lottie-2 {
  transform: translateY(-25%);
}
@media screen and (max-width: 768px) {
  .kv__swiper__lottie#lottie-2 {
    display: none;
  }
}
.kv__swiper__lottie#lottie-2-sp {
  display: none;
  left: -50%;
  transform: translateY(-60%);
}
@media screen and (max-width: 768px) {
  .kv__swiper__lottie#lottie-2-sp {
    display: block;
  }
}
.kv__swiper__lottie canvas {
  position: relative;
  z-index: 1000;
}

@keyframes fade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes cover-in {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes cover-out {
  to {
    transform: translateX(105%);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes lineforwards {
  0% {
    width: 25px;
  }
  25% {
    width: 35px;
    right: 0;
    left: 0;
  }
  49% {
    height: 1px;
    width: 5px;
    left: calc(100% - 5px);
    border-radius: 0;
  }
  50% {
    height: 5px;
    width: 5px;
    right: 0;
    left: calc(100% - 5px);
    border-radius: 100%;
  }
  100% {
    width: 10px;
    height: 10px;
    right: -2.5px;
    left: calc(100% - 7.5px);
    border-radius: 100%;
    left: auto;
  }
}
@keyframes linebackwards {
  0% {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    left: calc(100% - 10px);
  }
  50% {
    height: 2px;
    width: 5px;
    left: calc(100% - 5px);
    right: -10px;
    border-radius: 0%;
  }
  75% {
    width: 35px;
    right: -5px;
    left: 0;
  }
  100% {
    width: 25px;
  }
}
.swiper-pagination {
  position: absolute;
  text-align: left;
  bottom: 48px !important;
}
@media screen and (max-width: 768px) {
  .swiper-pagination {
    bottom: 4% !important;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  width: 128px;
  height: 4px;
  border-radius: 4px;
  background-color: #d7d7d7;
  opacity: 1;
  position: relative;
  overflow: hidden;
}
.swiper-pagination .swiper-pagination-bullet[aria-current=true]::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #0273b6;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  animation: move var(--auto-play-ms) forwards linear;
}
@media screen and (max-width: 768px) {
  .swiper-pagination .swiper-pagination-bullet {
    width: 72px;
    height: 2px;
  }
}

@keyframes move {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
.kv {
  margin: 0;
  font-family: "Noto Sans";
}

:root {
  --auto-play-ms: 10000ms;
  --fade-time: 9000ms;
  --title-show: 1000ms;
  --title-move-start: 1500ms;
  --change-speed: 500ms;
  --swipe-change-speed: 1500ms;
}

.kv {
  width: 100%;
  height: 100svh;
  padding: 0 80px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .kv {
    width: 100%;
    padding: 0 16px;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
