/* Slide Show */
.slideBox {
  position: relative;
  width: 100%;
  padding-top: 54%;
  overflow: hidden;
  background-color: #c6c6c6;
}

/* imgのみ */
.item1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  opacity: 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;
}

/* ふわっとアニメーション */
@keyframes anime {
  0% {
    opacity: 0;
  }
  7% {
    opacity: 1;
  }
  22% {
    opacity: 1;
  }
  28% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  7% {
    opacity: 1;
  }
  22% {
    opacity: 1;
  }
  28% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

.container{
  padding: 0 15px;
  margin: 0 auto 0;
}

@media only screen and (min-width: 769px) {
  .container{
    max-width: 980px;
    width: 100%;
    padding: 0 0;
    /*
    padding: 0 30px;
    margin: 50px auto 70px;
    */
  }
}
