.sub-title-box{
	display : flex;
	align-items : center;
	justify-content : center;
	width : 100%;
	height : 432px;
	overflow : hidden;
	position : relative;
	padding-top : 150px;
}
.sub-title-bg {
	width : 100%;
	height : 100%;
	position : absolute;
	left : 0;
	top : 0;
}
.sub-title-bg > img{
	width : 100%;
	height : 100%;
	object-fit : cover;
	object-position : center;
	animation : sub-title-bg 2s both;
}
@keyframes sub-title-bg {
	0%{
		transform : scale(1.2)
	}
	100%{
		transform : scale(1)
	}
}
.sub-title-inner{
	width : 100%;
	max-width : 1440px;
	position : relative;
}
.sub-title{
	color : #fff;
	font-size : 47px;
	line-height : 51px;
	font-weight : 400;
	margin-bottom: 20px;
	animation : sub-title 1.2s both 1s;
}
@keyframes sub-title{
	0%{
		transform : translateX(-50px);
		opacity : 0;
	}
	100%{
		transform : translateX(0px);
		opacity : 1;
	}
}
.sub-title > span{
	font-family: Mansory;
}
.sub-title > b{
	font-weight : 500
}
.sub-title-logo{
	animation : sub-title-logo 1.2s both 1s;
}
@keyframes sub-title-logo{
	0%{
		transform : translateY(50px);
		opacity : 0;
	}
	100%{
		transform : translateY(0px);
		opacity : 1;
	}
}
.sub-menu-box{
	display : flex;
	justify-content : center;
	width : 100%;
	height : 53px;
	border-bottom : 1px solid #379EA3;
}
.sub-menu-inner{
	display: flex;
	width : 100%;
	max-width : 1200px;
}
.sub-menu{
	display : flex;
	align-items : center;
	min-width : 120px;
	position : relative;
	height : 100%;
	padding : 0 37px 0 24px;
}
.sub-menu::after{
	position : absolute;
	content : '';
	width : 5px;
	height : 5px;
	border-top : 1px solid #0A0A0A;
	border-right : 1px solid #0A0A0A;
	transform : rotate(45deg);
	right : 18px;
}
.sub-menu > ul{
	display : none;
	position : absolute;
	top : calc(100%);
	z-index : 1;
	background : #fff;
	left : 0;
	min-width : 100%;
	border : 1px solid #ddd;
	border-bottom : none;
}
.sub-menu:hover > ul{
	display : block;
}
.sub-menu > ul > li{
}
.sub-menu > ul > li > a{
	display : block;
	padding : 7px 27px;
	white-space : nowrap;
	border-bottom : 1px solid #ddd;
}
.sub-menu > ul > li > a:hover{
	background : #f5f5f5;
}
.sub-content-box{
	padding : 40px 0 100px;
	animation : sub-content-box 1.2s both .5s;
}
@keyframes sub-content-box {
	0%{opacity : 0}
	100%{opacity : 1}
}
.sub-content-img{
	margin : 0 auto;
}
.sub-content-title{
	display : flex;
	flex-direction : column;
	align-items : center;
	gap : 13px;
	padding-bottom : 40px;
	font-size : 34px;
	font-weight : 500;
	color : #0A0A0A;
}
.sub-content-title > span{
	width : 1px;
	height : 50px;
	background : #9E9E9F;
}