@charset "utf-8";
/* CSS Document */
/*SMP表示*/
@media screen and (max-width: 600px) {
.slideBox {
    height: 460px;
    overflow: hidden;
    position: relative;
}}
/*pc表示*/
@media screen and (min-width: 599px) {	
.slideBox {
  height: 975px;
  overflow: hidden;
  position: relative;
	}	
}

/* imgのみ */
.item1 {
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 24s 0s infinite;
  animation: anime 24s 0s infinite;
}

.item1:nth-of-type(2) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

.item1:nth-of-type(3) {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}

.item1:nth-of-type(4) {
  -webkit-animation-delay: 18s;
  animation-delay: 18s;
}
		
/*.item1:nth-of-type(5) {
  -webkit-animation-delay: 24s;
  animation-delay: 24s;
}		*/

/* ふわっとアニメーション */
@keyframes anime {
 0% {
   opacity: 0;
   }

   7% {
   opacity: 1;
   }

   18% {
   opacity: 1;
   }

   25% {
   opacity: 0;
   }

   100% {
   opacity: 0;
   }
}

@-webkit-keyframes anime {
 0% {
   opacity: 0;
   }

   7% {
   opacity: 1;
   }

   18% {
   opacity: 1;
   }

   25% {
   opacity: 0;
   }

   100% {
   opacity: 0;
   }
}
	