@charset "utf-8";
/* CSS Document */

html,
body {
	background-color: transparent!important;
}
.slide{
  	position: absolute;
	top: 0px;
	left: 0px;
  	width: 100%;
  	height: 100VH;
	z-index: -1;
}
.wrapper {
  	width: 100%;
  	height: 100VH;
	z-index: 999;
}
.slide ul{
  position: relative;
  width: 100%;
  height: 100VH;
  overflow: hidden;
}
.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 32s linear infinite;
}
@media screen and (min-width: 737px) {
#PC------------------------{}
    .slide-image {
      background-position: center top 0px;
        background-size: 1920px;
    }
    .slide-image:nth-child(1) {
      	background-image: url("../img/bg1.jpg");
      	animation-delay: -2s;
    }

    .slide-image:nth-child(2) {
      	background-image: url("../img/bg2.jpg?v=1");
      	animation-delay: 6s;
    }

    .slide-image:nth-child(3) {
      	background-image: url("../img/bg3.jpg");
      	animation-delay: 14s;
    }

    .slide-image:nth-child(4) {
      	background-image: url("../img/bg4.jpg");
      	animation-delay: 22s;
    }
	
    .slide-image:nth-child(5) {
      	background-image: url("../img/bg5.jpg");
      	animation-delay: 22s;
    }
}
	
@media screen and (max-width: 736px) {
#SMP------------------------{}
    .slide-image {
		background-position: center top;
    	/*background-size: 100VW;*/
    }
    .slide-image:nth-child(1) {
      	background-image: url("../img/bg1_sp.jpg?v=0");
      	animation-delay: -2s;
		background-size: contain;
    }

    .slide-image:nth-child(2) {
      	background-image: url("../img/bg2_sp.jpg?v=0");
      	animation-delay: 6s;
		background-size: contain;
    }

    .slide-image:nth-child(3) {
      	background-image: url("../img/bg3_sp.jpg?v=0");
      	animation-delay: 14s;
		background-size: contain;
    }

    .slide-image:nth-child(4) {
      	background-image: url("../img/bg4_sp.jpg?v=0");
      	animation-delay: 22s;
		background-size: contain;
    }

    .slide-image:nth-child(5) {
      	background-image: url("../img/bg5_sp.jpg?v=0");
      	animation-delay: 22s;
		background-size: contain;
    }
}

@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
  	opacity: 0;
  }
}