
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUp 12s linear 0s normal both;
}

@media screen and (min-width: 640px) {
	.swiper-slide img {
		width: 100%;
		height: 780px;
		object-fit: cover;
	}

	.swiper-slide .swiper_caption h2 {
		z-index: 100;
		top: 38%;
		left: calc(50% - 400px);
		width: 780px;
		position: absolute;	
		color: #fff;
		font-size: 2rem;
		font-weight: 500;
		text-shadow: 3px 3px 5px rgba(0, 0, 0, .8);
		font-family: 'M PLUS Rounded 1c', sans-serif;
		line-height: 180%;
		text-align: center;
	}
}

@media screen and (max-width: 640px) {
	.swiper-slide img {
		width: 100%;
		height: 460px;
		object-fit: cover;
	}

	.swiper-slide .swiper_caption h2 {
		z-index: 100;
		top: 38%;
		left: calc(10%);
		width: 75%;
		position: absolute;	
		color: #fff;
		font-size: 1rem;
		font-weight: 500;
		text-shadow: 3px 3px 5px rgba(0, 0, 0, .8);
		font-family: 'M PLUS Rounded 1c', sans-serif;
		line-height: 180%;
		text-align: center;
	}
}



@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}