@charset "utf-8";

.slideBox {
  height: 172px;
  width: 230px;
  overflow: hidden;
  position: relative;
  border-width:1px;
  border-color: #F2F2F2;
  border-style: outset;
}

/* imgのみ */
.item1 {
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 42s 0s infinite;
  animation: anime 42s 0s infinite;
}

.item1:nth-of-type(2) {
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}

.item1:nth-of-type(3) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}

.item1:nth-of-type(4) {
  -webkit-animation-delay: 21s;
  animation-delay: 21s;
}

.item1:nth-of-type(5) {
  -webkit-animation-delay: 28s;
  animation-delay: 28s;
}


.item1:nth-of-type(6) {
  -webkit-animation-delay: 35s;
  animation-delay: 35s;
}



/* アニメーション */
@keyframes anime {
  0% {
    opacity: 0;
  }
  8.3% {
    opacity: 1;
  }
  16.7% {
    opacity: 1;
  }
  25% {
    opacity: 0;
    z-index: 9;
  }
  100% { 
    opacity: 0;
  }
}

@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  8.3% {
    opacity: 1;
  }
  16.7% {
    opacity: 1;
  }
  25% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}