@charset "utf-8";
/*hero*/
.hero{display:flex;height:495px;}

.hero_img{width:53.21%;}
.hero_img img{width:100%;height:100%;object-fit:cover;display:block;}

.hero_box{display:flex;align-items:center;width:46.79%;background-color:#2A2A2A;padding-left:60px;}
.hero_box > div{max-width:616px;position:relative;}
.hero_title{color:#FFDEC5;font-size:27px;font-weight:600;line-height:1;text-transform:uppercase;}
.hero_note{color:#9A9B99;font-size:22px;font-weight:500;line-height:1;margin-top:15px;}

@media(max-width:1480px){
	.hero_box{padding-left:43px;}
}

@media(max-width:1050px){
	.hero_title{font-size:25px;}
	.hero_note{font-size:19px;margin:15px 0 30px;}
}

@media(max-width:840px){
	.hero{flex-wrap:wrap;height:auto;}
	.hero_img, .hero_box{width:100%;}
	.hero_img{height:200px;}
	
	.hero_box{padding:50px 20px;}
	.hero_box > div{max-width:unset;}
	.hero_title{font-size:27px;}
	.hero_note{margin:25px 0 30px;}
}
/*-*/