@charset "UTF-8";
/*slider*/

.slideBox {
    width: 950px;
    height: 490px;
    overflow: hidden;
    position: relative;
}

.title {
    width: 400px;
  z-index: 11;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.item {
  z-index: 10;
  opacity: 0;
  width: 100%;
  height: 490px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 20s 0s infinite;
  animation: anime 20s 0s infinite;
}

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

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

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


@keyframes anime {
0% {
opacity: 0;
}
30% {
opacity: 1;
}
40% {
opacity: 0;
z-index: 9;
}
100% {
opacity: 0;
}
}