.top_wrapper {
  padding-top: 65px;
}
.top_wrapper img {
  width: 100%;
}
.slider_wrapper {
	position: relative;
	width: 100%;
  margin: 0 auto;
}
.slide {
  width: 100%;
	aspect-ratio: 600 / 406;
  overflow: hidden;
}

.slide_image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
	aspect-ratio: 600 / 406;
  opacity: 0;
  animation: slider-1 16s linear infinite;
 
}

.slide_image:nth-child(1) {
  background-image: url(../images/slide_sp1.png);
  /* animation-delay: -2s; */
  animation-delay: 0s; 
  
}

.slide_image:nth-child(2) {
  background-image: url(../images/slide_sp2.png);
  /* animation-delay: 6s; */
  animation-delay: 4s; 
}

.slide_image:nth-child(3) {
  background-image: url(../images/slide_sp3.png);
  /* animation-delay: 14s; */
  animation-delay: 8s; 
}

.slide_image:nth-child(4) {
  background-image: url(../images/slide_sp4.png);
  animation-delay: 12s; 
}

@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}



@media screen and (min-width: 601px) {
    .top_wrapper {
      display: grid;
      grid-template-columns: 673fr 926fr;
      padding-top: 82px;
    }
    .slide {
      aspect-ratio: 926 / 475;
    }
    .slide_image {
      aspect-ratio: 926 / 475;
    }
    
    .slide_image:nth-child(1) {
      background-image: url(../images/slide_pc1.png);
      
    }
    
    .slide_image:nth-child(2) {
      background-image: url(../images/slide_pc2.png);
    }
    
    .slide_image:nth-child(3) {
      background-image: url(../images/slide_pc3.png);
    }
    
    .slide_image:nth-child(4) {
      background-image: url(../images/slide_pc4.png);
    }
}