@charset "utf-8";
/* CSS Document */

.slide {
  position: relative;
  width: 100%;
  padding-top: 62.5%;
  overflow: hidden;
  background-color: #c6c6c6;

}
.s_center{
	margin:0 auto;
} 
@keyframes slideshow {
  35% {
    opacity: 1;
  }
 
 
  45% {
    opacity: 1;
  }
 
  55% {
    opacity: 1;
  }
   75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
 
.slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  opacity: 0;
  animation: slideshow 24s linear infinite;
}
 

.slide img:nth-child(even){
animation-duration: 1s
  animation-delay: 16s;
} 
.slide img:last-child {

  animation-delay: 16s;
}
@media (max-width: 480px) {
.slide {
  position: relative;
  width: 100%;
  padding-top: 63%;
  overflow: hidden;
  background-color: #c6c6c6;
  max-width:370px;
  max-height:230px;	
}
}