#banner,
#banner .item {
	overflow: hidden;
	position: relative;
	background: #fff;
	z-index: 100;

}

#banner .item {
	display: flex;
	justify-content: center;
}

#banner .item a {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgb(31 31 31 / .3);
	top: 0;
	left: 0;
	z-index: 2;
}

#banner .info {
	position: absolute;
	width: min(90%, 1440px);
	top: 45%;
	z-index: 3;
}

#banner .info>* {
	-webkit-transition-duration: .5s;
	-moz-transition-duration: .5s;
	-ms-transition-duration: .5s;
	-o-transition-duration: .5s;
	transition-duration: .5s;
}

#banner .info h3 {
	display: flex;
	line-height: 110%;
	font-size: max(4 * (1vw + 1vh) / 2, 34px);
	font-weight: 700;
	color: #fff;
	-webkit-transform: translateY(-30px);
	transform: translateY(-30px);
	opacity: 0;
	flex-direction: column;
}

#banner .info h3:before {
	content: "";
	position: absolute;
	bottom: -3px;
	width: 600px;
	height: 1px;
	background: rgb(255 255 255 / 65%);
}

#banner .info h3 span {
	font-size: max(4 * (1vw + 1vh) / 2, 32px);
	line-height: 130%;
	letter-spacing: 0.05em;
}

#banner .info h3 span.tt02 {
	margin-left: 44px;
}

#banner .info p {
	margin-top: 30px;
	line-height: 160%;
	font-weight: 400;
	font-size: max(2.5 * (1vw + 1vh) / 2, 20px);
	color: #fff;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	transition-delay: .5s;
	opacity: 0;
}

#banner .img {
	position: relative;
	width: 100vw;
	height: 94vh;
	background: no-repeat 50% / cover;
}

#banner .img video,
#banner .img iframe {
	position: absolute;
	width: 100vw;
	top: 0;
	left: 0;
	object-fit: cover;
	height: 100%;
}

#banner,
#banner * {
	-webkit-transition: all 0s ease-out;
	-moz-transition: all 0s ease-out;
	-ms-transition: all 0s ease-out;
	-o-transition: all 0s ease-out;
	transition: all 0s ease-out;
}

#banner {
	background: #363a43;
}

#banner .contJ {
	z-index: 500;
	margin-top: -35px;
}

#banner .papabar {
	position: relative;
	display: flex;
	justify-content: space-between;
}

#banner .papabar p {
	width: 166px;
	aspect-ratio: 10/2;
	background: #887f82;
	padding: 12px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: max(1.8*(1vw + 1vh) / 2, 18px);
}

#banner .papabar p:before {
	content: "";
	position: absolute;
	left: -19%;
	background: #d94927;
	width: 20%;
	height: 100%;
	z-index: -1;
}

#banner #scrollBtn {
	display: flex;
	width: 50px;
	padding: 8px;
	border-radius: 50%;
	background: #d94925;
	aspect-ratio: 1/1;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-right: -25px;
	border: #363a43 2px solid;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

#banner #scrollBtn:hover {
	background: #223b72;
	border: #eeeeee 2px solid;
}

#banner #scrollBtn svg {
	width: 30px;
	aspect-ratio: 1/1;
	fill: white;
}

#banner .slick-active .img {
	-webkit-transform: scale(1);
	transform: scale(1);
}

#banner .slick-active .info>* {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

@-webkit-keyframes banerBg {
	0% {
		-webkit-transform: scale(1);
	}

	100% {
		-webkit-transform: scale(1.1);
	}
}

@keyframes banerBg {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.1);
	}
}

@media screen and (max-width: 1470px) {
	#banner .info {
		width: min(86%, 1160px);
	}

	#banner #scrollBtn {
		width: 40px;
	}

	#banner #scrollBtn svg {
		width: 22px;
	}
}

@media screen and (max-width: 768px) {
	#banner .info h3 {}

	#banner .info p {
		margin-top: 12px;
	}

	#banner .papabar {
		display: none;
	}

	#banner .img {
		height: 400px;
	}

	#banner .info {
		top: auto;
		bottom: 66px;
	}
}
@media screen and (max-width: 480px) {
	#banner .img{
    height: 317px;
}
	#banner .info h3 span.tt02{
    margin-left: 0;
}
	#banner .info h3:before{
    width: 290px;
}
}