@charset "utf-8";

/******************************  공통 영역  ******************************/
#wrap, .container { width: 100%; min-width: 1400px; }
#wrap {
	margin-bottom: 135px;
}
.container {
}
.contents {
	min-height: 700px;
}
.sector,.sub_sector { position: relative; width: 1364px; height: inherit; margin: 0 auto; }

@media screen and (max-width:1000px) {
	#wrap, .container { min-width: 0; }
	#wrap{ margin-bottom: 60px; }
	.sector,.sub_sector { width: 88%; }
	.contents { min-height: 140vw; }
}


/******************************  헤더  ******************************/
#header {
	/* position: fixed; */
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: #fff;
	z-index: 99999;
}

#header .logo {
	float: left;
	width: 197px;
	height: 39px;
	margin-top: 21px;
	background: url('../images/logo.png') no-repeat center center / contain;
}

#header .top_call_ico {
	float: left;
	width: 200px;
	margin-top: 45px;
	margin-left: 20px;
}

#header .gnb {
	float: right;
}

#header .gnb > li {
	position: relative;
	float: left;
	margin-left: 115px;
	font-size: 22px;
	font-weight: bold;
	line-height: 80px;
	color: var(--main-color);
}

#header .gnb > li .gnb_sub_list {
	display:none;
	position: absolute;
	top: 124px;
	/* left: 0; */
	width: 200px;
	padding: 15px 0;
	border-top: 2px solid var(--main-color);
	background: #fff;
	z-index:9999;
}

#header .gnb > li .gnb_sub_list > li {
	line-height: 2;
	text-align: center;
}

#header .gnb > li .gnb_sub_list > li a {
	font-size: 20px;
	/* line-height: 44px; */
	color: #000;
}

#header .sitemap_btn {
	float: right;
}

@media screen and (max-width:1000px) {
	#header {
		height: 17vw;
		border-bottom: 1px solid #aaa;
	}

	#header .logo {
		width: 36.2vw;
		height: 7.152vw;
		margin-top: 5vw;
		background-image: url('../images/m_logo.png');
	}
	
	#header .top_call_ico {
		width: 40vw;
		margin-top: 6.5vw;
		margin-left: 3vw;
	}

	#header .gnb {
		display: none;
	}

	#header .sitemap_btn {
		float: right;
		width: 6vw;
		margin-top: 6vw;
		background: none;
	}
}


/******************************  푸터  ******************************/
#footer {
	position: relative;
	z-index: 1;
	padding: 50px 0;
	background: var(--main-color);
}

#footer::after {
	display: block;
	clear: both;
	content: "";
}

#footer .sector {
	display: flex;
	align-items: center;
}

.ft_logo {
	float: left;
	width: 197px;
	height: 39px;
	background: url('../images/logo_footer.png') no-repeat center center / contain;
}

.ft_info {
	float: left;
	margin-left: 160px;
	font-size: 14px;
	line-height: 1.5;
	color: #fff;
}

.ft_term {
	display: block;
	float: left;
	width: 100%;
	margin-bottom: 35px;
}

@media screen and (max-width:1000px) {
	#footer {
		padding: 13vw 0;
	}

	#footer .sector {
		display: block;
	}

	.ft_logo {
		position: relative;
		float: left;
		width: 34.8vw;
		height: 6.871vw;
	}

	.ft_info {
		margin-left: 0;
		font-size: 2.3vw;
		line-height: 1.2;
	}
	
	.ft_term {
		margin-top: 7vw;
		margin-bottom: 7vw;
	}

}

/******************************  사이트맵  ******************************/
#sitemap_area { display: none; }

.sitemap_header { height: 90px; border-bottom: 1px solid #e0e0e0; background: #fff; text-align: center; }
.sitemap_header .sector { position: relative; }
.sitemap_header .logo { position: absolute; display: inline-block; z-index: 1; }

@media screen and (max-width:1000px) {
	#sitemap_area { display: block; position: fixed; top: 0; right: -100%; /* right: 0; */ width: 100%; height: 100%; background: #fff; z-index: 999999; }

	.sitemap_header { height: 17vw; }
	.sitemap_header .logo { top: 5vw; left: 0; width: 36.2vw; height: 7.152vw; background: url('../images/m_logo.png') no-repeat center center / contain; }

	#sitemap_area .sitemap_gnb dt, #sitemap_area .sitemap_gnb dd { padding: 0 6vw; font-size: 4.4vw; }
	#sitemap_area .sitemap_gnb dt { border-bottom: 1px solid #ddd; line-height: 18.2vw; font-weight: bold; }
	#sitemap_area .sitemap_gnb dt.no_snb { background: none; }
	#sitemap_area .sitemap_gnb dt + dd { padding-top: 6vw; }
	#sitemap_area .sitemap_gnb dd { display: none; padding-bottom: 6vw; background: #E8E8E8; }

	.close_btn { display: block; position: absolute; top: 5.5vw; right: 0; width: 6vw; z-index: 1; background: none; }
}

/******************************  메인 공통  ******************************/
.main_title {
	padding-top: 65px;
	font-size: 55px;
	font-weight: 500;
	text-align: center;
}

.main_intro {
	padding-top: 10px;
	margin-bottom: 60px;
	font-size: 18px;
	line-height: 1.15;
	text-align: center;
	color: #777777;
}

.main_btn_area {
	margin-top: 75px;
	text-align: center;
}

.main_btn_area .main_btn {
	padding: 10px 60px;
	border-radius: 50px;
	background: var(--main-color);
	font-size: 18px;
	font-weight: bold;
	color: #fff;
}

@media screen and (max-width:1000px) {
	.main_title {
		padding-top: 11vw;
		font-size: 7vw;
	}

	.main_intro {
		padding-top: 3.6vw;
		margin-bottom: 10vw;
		font-size: 4.4vw;
		line-height: 1.2;
	}
	
	.main_btn_area {
		margin-top: 2vw;
	}

	.main_btn_area .main_btn {
		margin-bottom: 3vw;
		padding: 1.2vw 5.7vw;
		border-radius: 5vw;
		font-size: 4.4vw;
	}
}


/******************************  서브 배너  ******************************/
#subbanner_area {
	position: relative;
	display: flex;
	height: 460px;
	align-items: center;
	justify-content: center;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

#subbanner_area.brand { background: url('/images/brand_banner.png') no-repeat center center / cover; }
#subbanner_area.menu { background: url('/images/menu_banner.png') no-repeat center center / cover; }
#subbanner_area.store { background: url('/images/store_banner.png') no-repeat center center / cover; }
#subbanner_area.start { background: url('/images/start_banner.png') no-repeat center center / cover; }

#subbanner_area .submenu_title {
	display: block;
	font-size: 80px;
	line-height: 1.25;
	text-align: center;
	color: #fff;
}

#subbanner_area .submenu_title > img {
	display: block;
	margin-top: 25px;
}

@media screen and (max-width:1000px) {
	#subbanner_area {
		height: 140vw;
	}
	
	#subbanner_area.brand { background-image: url('/images/m_brand_banner.png'); }
	#subbanner_area.menu { background-image: url('/images/m_menu_banner.png'); }
	#subbanner_area.store { background-image: url('/images/m_store_banner.png'); }
	#subbanner_area.start { background-image: url('/images/m_start_banner.png'); }
	
	#subbanner_area .submenu_title {
		font-size: 12vw;
	}

	#subbanner_area .submenu_title > img {
		margin-top: 7vw;
	}
}


/******************************  서브메뉴  ******************************/
#submenu_area { /* background: #f9f9f9; */ border-bottom: 1px solid #ccc; }

#submenu_area .submenu_box { max-width: 1346px; height: 55px; margin: 0 auto; }

#submenu_area .submenu_box .submenu_name { font-size: 18px; line-height: 55px; }

#submenu_area .submenu_box .submenu_home, #submenu_area .submenu_box .gnb_big, #submenu_area .submenu_box .snb_big { position: relative; float: left; cursor: pointer; }
#submenu_area .submenu_box .gnb_big, #submenu_area .submenu_box .snb_big { position: relative; width: 210px; padding: 0 20px; /* background: url('../images/m_news_arrow_up.png') no-repeat right 20px center / 15px; */ }
#submenu_area .submenu_box .gnb_big::before, 
#submenu_area .submenu_box .snb_big::before {display:block;position:absolute;top:calc(50% - 2px);right:27px;width:8px;height:2px;background:#000;transform:rotate(-45deg);content:"";}
#submenu_area .submenu_box .gnb_big::after, 
#submenu_area .submenu_box .snb_big::after {display:block;position:absolute;top:calc(50% - 2px);right:32px;width:8px;height:2px;background:#000;transform:rotate(45deg);content:"";}
#submenu_area .submenu_box .gnb_big .gnb_small, #submenu_area .submenu_box .snb_big .snb_small { display: none; position: absolute; top: 56px; left: 0; width: 100%; z-index: 999; }
#submenu_area .submenu_box .gnb_big .gnb_small li, #submenu_area .submenu_box .snb_big .snb_small li { width: 250px; padding: 0 20px; border: 1px solid #ddd; border-top: 0; background: #fff; box-sizing: border-box; font-size: 18px; line-height: 3.5; /* text-align: center; */ }
#submenu_area .submenu_box .snb_mini { font-size: 16px; }
#submenu_area .submenu_box .gnb_big .gnb_small li:hover, #submenu_area .submenu_box .snb_big .snb_small li:hover { background: #f4f4f4; }

#submenu_area .submenu_box .submenu_home { padding-right: 23px; border-right: 1px solid #DEDEDE; }
#submenu_area .submenu_box .submenu_home img { margin-top: -5px; }

#submenu_area .submenu_box .gnb_big { border-right: 1px solid #DEDEDE; }
#submenu_area .submenu_box .gnb_big .gnb_small {}
#submenu_area .submenu_box .gnb_big .gnb_small li {}

#submenu_area .submenu_box .snb_big { border-right: 1px solid #DEDEDE; }
#submenu_area .submenu_box .snb_big.no-arrow { background: none; }
#submenu_area .submenu_box .snb_big .snb_small {}
#submenu_area .submenu_box .snb_big .snb_small li {}

@media screen and (max-width:1000px) {
	#submenu_area { display: none; }
}

/******************************  게시판 서브메뉴  ******************************/
#sub_menu_area {
	margin-top: 60px;
}

#sub_menu_area > button {
	float: left;
	width: calc(20% - 12px);
	margin-right: 15px;
	padding: 18px 0;
	border: 1px solid #ddd;
	background: #fff;
	box-sizing: border-box;
	font-size: 18px;
}

#sub_menu_area > button:last-child {
	margin-right: 0;
}

#sub_menu_area > button.on {
	border: 1px solid var(--main-color);
	background: #F8E8E4;
	color: var(--main-color);
}

@media screen and (max-width:1000px) {
	#sub_menu_area {
		margin-top: 14vw;
	}

	#sub_menu_area > button {
		width: calc(50% - 1vw);
		height: 16vw;
		margin-right: 2vw;
		margin-bottom: 2vw;
		padding: 0;
		font-size: 4.4vw;
		line-height: 1.35;
	}

	#sub_menu_area > button.big {
		width: 100%;
	}

	#sub_menu_area > button:nth-child(odd) {
		margin-right: 0;
	}
}


/* 퀵메뉴 시작 */
/* #quick_area { position: fixed; bottom: 170px; right: 90px; z-index: 999999; } */
#quick_area { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 999999; }
#quick_area .quick_box { position: absolute; bottom: 170px; right: 90px; z-index: 999999;}
#quick_area .quick_box li { /* border-bottom: 1px solid rgba(255,255,255,0.5); */ text-align: center; /* line-height: 90px; */ margin-bottom: -10px;}
#quick_area .quick_box li:last-child { /* border-bottom: none; */ /* line-height: 60px; */ }
#quick_area .quick_box li .top_btn { width: 93px; height: 93px; background: transparent; /* border: 2px solid var(--main-color); */ border-radius: 50%; font-size: 22px; font-weight: bold; /* color: #fff; */ }

@media screen and (max-width:1000px) {
	#quick_area .quick_box { bottom: 23vw; right: 3vw; }
	#quick_area .quick_box li { margin-bottom: -2vw; }
	#quick_area .quick_box li input[type="image"] { max-width: 100%; }
	#quick_area .quick_box li .top_btn { width: 15vw; height: 15vw; /* font-size: 4vw; */ }
}

/******************************  상담 신청 영역  ******************************/
#quick_form {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 135px;
	background: #fff;
	z-index: 99;
	box-shadow: 0px -10px 20px rgba(0,0,0,0.07);
}

.quick_form {
	height: 135px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.quick_form .quick_form_title {
	margin-right: 60px;
	font-size: 25px;
	color: var(--main-color);
}

.quick_form .quick_form_title b {
	font-size: 30px;
	font-weight: bold;
}

.quick_form .quick_form_input {}

.quick_form .quick_form_input .quick_form_text {
	height: 50px;
	width: 220px;
	margin-right: 8px;
	padding: 0 20px;
	border-radius: 5px;
	font-size: 20px;
}

.quick_form .quick_form_label {
	position: relative;
	top: 2px;
	font-size: 18px;
	text-decoration: underline;
	margin-right: 30px;
}

.quick_form .quick_form_checkbox {
	position: relative;
	top: -1px;
	width: 20px;
	height: 20px;
	margin-right: 8px;
	margin-left: 20px;
}

.quick_form .quick_form_input .quick_form_submit {
	height: 60px;
	width: 200px;
	border: 0;
	background: var(--main-color);
	border-radius: 100px;
	font-size: 20px;
	font-weight: bold;
	color: #FFFFFF;
}

.quick_form .quick_form_open_btn {
	display: none;
}

.quick_form_input_wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width:1400px) {
	.quick_form .quick_form_title {
		margin-right: 20px;
		font-size: 20px;
	}

	.quick_form .quick_form_title b {
		font-size: 25px;
	}

	.quick_form .quick_form_input .quick_form_text {
		height: 45px;
		width: 150px;
		margin-right: 5px;
		padding: 0 15px;
		font-size: 18px;
	}

	.quick_form .quick_form_label {
		margin-right: 15px;
		font-size: 16px;
	}

	.quick_form .quick_form_checkbox {
		width: 17px;
		height: 17px;
		margin-left: 5px;
	}

	.quick_form .quick_form_input .quick_form_submit {
		height: 50px;
		width: 160px;
		font-size: 18px;
	}
}


@media screen and (max-width:1000px) {
	#quick_form {
		height: auto;
		box-shadow: none;
	}

	.quick_form {
		height: inherit;
		display: block;
	}

	.quick_form .quick_form_title {
		margin-top: 6vw;
		margin-right: 0;
		margin-bottom: 5vw;
		font-size: 6vw;
		text-align: center;
	}

	.quick_form .quick_form_title b {
		font-size: 8vw;
		position: relative;
		top: 0.8vw;
		margin-left: 3.5vw;
	}

	.quick_form .quick_form_input {
		width: 88vw;
		margin: 0 auto;
	}

	.quick_form .quick_form_input .quick_form_text {
		width: 100%;
		height: 12vw;
		margin-right: 0;
		margin-bottom: 2.4vw;
		padding: 0 4vw;
		border-radius: 0;
		font-size: 5vw;
	}

	.quick_form .quick_form_label {
		display: inline-block;
		top: 0;
		font-size: 4.4vw;
		margin-right: 0;
		margin-top: 3.5vw;
	}

	.quick_form .quick_form_checkbox {
		top: -0.5vw;
		width: 5.4vw;
		height: 5.4vw;
		margin-right: 2.5vw;
		margin-left: 0;
		margin-top: 0;
	}

	.quick_form .quick_form_input .quick_form_submit {
		margin-top: 10vw;
		height: 60px;
		width: 100%;
		border: 0;
		background: var(--main-color);
		border-radius: 100px;
		font-size: 20px;
		font-weight: bold;
		color: #FFFFFF;
	}
	
	.quick_form_input_wrapper {
		display: none;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.quick_form_input_wrapper.show {
		display: block;
		opacity: 1;
	}


	/* 버튼 기본 상태 (닫힌 상태) */
	.quick_form .quick_form_open_btn {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 60px;
		background: var(--main-color);
		color: white;
		font-size: 5vw;
		border: none;
		border-radius: 0;
		font-weight: bold;
		transition: all 0.3s ease;
		z-index: 100;
	}

	/* 버튼 열린 상태 (폼 열렸을 때) */
	.quick_form .quick_form_open_btn.open {
		bottom: 10vw;
		left: 6%;
		width: 88vw;
		border-radius: 100px;
	}
	
	.quick_form_input_wrapper.show {
		display: block;
	}
}