.slide {
  position: relative;
  width: 100%;
	/* max-width: 1200px; */
	aspect-ratio: 430/271;
  overflow: hidden;
  border: 2px solid #fff;  /* 境界線隠し */
}

.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
	/* max-width: 1200px; */
	aspect-ratio: 430/271;
  opacity: 0;
  animation: slider-1 16s linear infinite;
 
}

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

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

.slide-image:nth-child(3) {
  background-image: url(../images/slider03.png);
  /* animation-delay: 14s; */
  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.2); */
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
  }
}

.slider_wrapper {
	position: relative;
	width: 100%;
	/* max-width: 1200px; */
	aspect-ratio: 430/271;
  margin: 0 auto 20px;
}
/* .frame {
	z-index: 8000;
	position: absolute;
	top: 0;
}
.frame img {
	width: 100%;
	max-width: 1200px;
	aspect-ratio: 430/271;
} */

.slide_deco_wrapepr {
  position: relative;
}

.slide_above {
  z-index: 9000;
  position: absolute;
  top: -5%;
  right: 1%;
  left: auto;
  width: 30%;
  max-width: 280px;
}
.slide_above img {
  width: 100%;
}

.slide_bar {
  z-index: 9000;
  position: absolute;
  bottom: 0;
}
.slide_bar img {
	width: 60vw;
	max-width: 800px;
}

@media screen and (min-width: 600px) {
    .slider_wrapper {
      margin: 0 auto 20px;
    }
}