.slider {
  height: 45vw;
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
  width: 90%;
border-radius:20px;
	position: absolute;
	top: 50%;
    left:2%;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
}
.slick-img img {
  width: 100%;
}
.slick-img img:nth-of-type(2) {
 display: none;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

@media screen and (max-width:1280px) {
	
	.slider {
  height:50vw;

  width: 95%;
border-radius:20px;
	position: absolute;
	
}
	
}



@media screen and (max-width:428px) {
	
	.slider {
  height:70vh;
  width: 95%;

	
}
	.slick-img img:nth-of-type(1) {
 display: none;
}
	.slick-img img:nth-of-type(2) {
 display: inherit;
		}

}

@media screen and (max-width:375px) {
	
	.slider {
  height:70vh;
  width: 95%;

	
}
	.slick-img img:nth-of-type(1) {
 display: none;
}
	.slick-img img:nth-of-type(2) {
 display: inherit;
		}

}