.fade-swiper {
  width: 100%;
	height: 100vh;
	position: relative;
}
.fade-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fade-swiper .swiper-slide.slideimg02 img {
  object-position: 68% 50%;
}
.main_v_text {
	width: 60%;
	max-width: 800px;
	position: absolute;
	left: 3%;
	/*top: 50%;*/
	transform: translateY(-50%);
	z-index: 1;
	animation: .5s fadeintxt linear forwards;
	opacity: 0;
}
.main_v_text img {
	filter: drop-shadow(0 0 3px rgba(0, 60, 114, 0.7))  drop-shadow(0 0 14px rgba(0, 60, 114, 0.3));
}
@media screen and (max-width: 768px) {
	.main_v_text {
		width: 80%;
	}
}

/* 画像のズームイン */
  .zoomout img {
    transform: scale(1.1);
    transition: transform 2s ease;
  }
  .zoomout.swiper-slide-active img {
    transform: scale(1.0);
  }

/* 文字動き */
@keyframes fadeintxt {
	0% {
		top: 53%;
  }
	100% {
		top: 50%;
		opacity: 1;
  }
}
