@charset "utf-8";

body {
	box-sizing: border-box;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.swiper-wrap {
	margin: 0;
	max-width: 100%;
	height: 100svh;
	position: relative;
	overflow: hidden;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.swiper-wrap::-webkit-scrollbar{
	display:none;
}
@keyframes zoom-in {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
	animation: zoom-in 7s linear 0s normal both;
}
.slide-text{
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 3vw;
	font-family: serif;
	font-weight: bold;
	text-shadow: 2px 2px 8px #000;
	color: #fff;
	transform: translate(-50%,-50%);
}
.slide-img img{
	object-fit: cover;
	height: 100svh;
	width: 100%;
}
.main_copy {
	position: absolute;
	bottom: 46%;
	right: 0;
	left: 0;
	margin: 0 auto 0 -20px;
	align-items: bottom;
	width: 100%;
	height: auto;
	z-index: 8;
	text-align: center;
	animation: fadein 3.4s ease-out;
}
.main_copy img {
	width: 38%;
	height: auto;
}
.main_copy2 {
	position: absolute;
	bottom: 43%;
	right: 0;
	left: 0;
	margin: 0 auto;
}
.main_copy2 img {
	width: 15%;
	height: auto;
}
.main_copy.fadeIn {
	animation-name: fadeInAnime;
	animation-duration: 1.6s;
	animation-fill-mode:forwards;
}
@keyframes fadeInAnime{
	0% {
		opacity: 0;
	}
	60% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.main_copy2.fadeIn2 {
	animation-name: fadeInAnime2;
	animation-duration: 3.2s;
	animation-fill-mode:forwards;
}
@keyframes fadeInAnime2{
	0% {
		opacity: 0;
	}
	60% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@media only screen and (max-width: 767px){


.swiper-wrap {
	margin: 0 auto;
	max-width: 100%;
	height: 100svh;
}
.main_copy {
	position: absolute;
	bottom: 47%;
	right: 0;
	left: 0;
	margin: 0 auto 0 -14px;
	align-items: bottom;
	width: 100%;
	height: auto;
	z-index: 8;
	text-align: center;
	animation: fadein 3.4s ease-out;
}
.main_copy img {
	width: 72%;
	height: auto;
}
.main_copy2 {
	position: absolute;
	bottom: 43%;
	right: 0;
	left: 0;
	margin: 0 auto;
}
.main_copy2 img {
	width: 40%;
	height: auto;
}

}