@charset "UTF-8";
.fv_slider { position: relative; height: 47vw; min-height: 525px; overflow: hidden; }
.fv_item { height: 100%; position: absolute; width: 0; top: 0; left: 0; overflow: hidden; }
.fv_item img { width: 100vw; max-width: inherit; min-width: 1100px;  }
.fv_item.slide1 { animation: mv-1 2s forwards; }
.fv_item.slide2 { animation: mv-2 8s infinite; animation-delay: 4s; }
.fv_item.slide3 { animation: mv-3 8s infinite; animation-delay: 8s; }


@keyframes mv-1 {
  100% {
    width: 100%;
  }
}

@keyframes mv-2 {
  0% {
    width: 0;
  }
  25% {
    width: 100%;
  }
  75% {
    width: 100%;
  }
  76% {
    width: 0%;
  }
  100% {
    width: 0%;
  }
}

@keyframes mv-3 {
  0% {
    width: 0;
    opacity: 1;
  }
  25% {
    width: 100%;
    opacity: 1;
  }
  26% {
    opacity: 1;
  }
  27% {
    width: 100%;
    opacity: 0;
  }
  99% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 0;
    opacity: 1;
  }
}

/* ------------------------------------------------------------ mobile */
@media only screen and (max-width:640px){

.fv_slider { min-height: inherit; height: 129vw; }
.fv_item img { min-width: inherit; }

}










