@charset "utf-8";

:root {
	/* color */
    --hscity-white: #fff;

    --hscity-gray-5: #F8F8F8;
    --hscity-gray-10: #F0F0F0;
    --hscity-gray-20: #E4E4E4;
    --hscity-gray-30: #D8D8D8;
    --hscity-gray-40: #C6C6C6;
    --hscity-gray-50: #8E8E8E;
    --hscity-gray-60: #717171;
    --hscity-gray-70: #555555;
    --hscity-gray-80: #2D2D2D;
    --hscity-gray-90: #1D1D1D;

    --body-color-1: #4d4d4f;
    --body-color-2: #231f20;
    --body-color-3: #949599;
    --body-color-4: #6c6d73;

	--point-color-1: #0055a6;
	--point-color-2: #f36f23;

	/* list 사이즈 */
	--gap-size-8: 8px;
	--gap-size-10: 10px;
	--gap-size-20: 20px;
	--gap-size-44: 44px;
	--columns-1: 1;
	--columns-2: 2;
	--columns-3: 3;
	--columns-4: 4;
	--columns-5: 5;
	--columns-6: 6;
	--columns-7: 7;
	--columns-8: 8;
	--columns-9: 9;
}


/****************************************************************************** 텍스트 색상 */
.point_color1 {color: var(--point-color-1) !important;}
.point_color2 {color: var(--point-color-2) !important;}

.default_color1 {color: var(--body-color-1);}
.default_color2 {color: var(--body-color-2);}
.default_color3 {color: var(--body-color-3);}
.default_color4 {color: var(--body-color-4);}

.tc_white {color:var(--hscity-white) !important;}
.tc_blue {color: #0055a6 !important;}
.tc_orange {color: #f36f23 !important;}
.tc_gray {color: #6c6d73 !important;}
.tc_666 {color: #666 !important;}

/****************************************************************************** 버튼 색상 */
.btn {display: inline-flex; min-width: 80px; align-items: center; justify-content: center; border: 1px solid transparent;}
.btn > span {display: flex; flex-direction: row; gap:0.6rem; align-items: center; justify-content: center; /* flex-shrink: 1; */}

.btn_xlg {padding: 0 10px; font-size: 1.6rem; height: 5.8rem; border-radius: 1.0rem;}
.btn_lg {padding: 0 10px; font-size: 1.6rem; height: 4.8rem; border-radius: 1.0rem;}
.btn_md {padding: 0 10px; font-size: 1.6rem; height: 4.0rem; border-radius: 0.4rem;}
.btn_sm {padding: 0 10px; font-size: 1.6rem; height: 3.6rem; border-radius: 0.4rem;}
.btn_xs {padding: 0 10px; font-size: 1.3rem; height: 3.2rem; border-radius: 0.3rem;}
.btn_xx {padding: 0 10px; font-size: 1.2rem; height: 2.6rem; border-radius: 0.2rem;}
@media (max-width: 420px) {
	.btn_xlg {font-size: 1.5rem; height: 5.0rem; border-radius: 0.8rem;}
	.btn_lg {font-size: 1.5rem; height: 4.0rem; border-radius: 0.8rem;}
	.btn_md {font-size: 1.5rem; height: 3.6rem;}
	.btn_sm {font-size: 1.4rem;}
}

.btn_black {background: #4d4d4f !important; color: var(--hscity-white) !important;}
.btn_blue {background: var(--point-color-1) !important; color: var(--hscity-white) !important;}
.btn_orange {background: var(--point-color-2) !important; color: var(--hscity-white) !important;}

.btn_line_white {border-color: var(--hscity-white) !important; color: #4d4d4f !important; background: var(--hscity-white) !important;}
.btn_line_black {border-color: #4d4d4f !important; color: #4d4d4f !important; background: var(--hscity-white) !important;}
.btn_line_blue {border-color: var(--point-color-1) !important; color: var(--point-color-1) !important; background: var(--hscity-white) !important;}
.btn_line_orange {border-color: var(--point-color-2) !important; color: var(--point-color-2) !important; background: var(--hscity-white) !important;}

.btn_disable {background: #f1f1f1 !important; color: #949599! important; border-color: #cccccc !important; cursor: default;}

/****************************************************************************** 테이블 관련 5가지 버튼 종류 */
.st_tempsave {width: 100px; color:#FFDD66; border-color: #ccc; background: var(--hscity-white); border-radius: 1.0rem;} /* 대기중 */
.st_need {width: 100px; color:#f36f23; border-color: #ccc; background: var(--hscity-white); border-radius: 1.0rem;} /* 후속조치, 계도요망 */
.st_rcv {width: 100px; color:#cc8009; border-color:#ccc; background: var(--hscity-white); border-radius: 1.0rem;}/* 진행중, 지역이관요청 */
.st_end {width: 100px; color:#1f8927; border-color:#ccc; background: var(--hscity-white); border-radius: 1.0rem;} /* 답변완료, 지역이관완료 */
.st_close {width: 100px; color:#B0B0B0; border-color:#ccc; background: var(--hscity-white); border-radius: 1.0rem;} /* 폐쇄(종료) */
.st_rec {width: 100px; color:#0055a6; border-color:#ccc; background: var(--hscity-white); border-radius: 1.0rem;} /* 접수중 */
.st_recend {width: 100px; color:#0078d9; border-color:#ccc; background: var(--hscity-white); border-radius: 1.0rem;} /* 처리완료, 정상처리 */

.st_label {
	display: inline-block;
	height: 3.6rem;
	line-height: 3.4rem;
	padding: 0 10px;
	color: #666;
	border-radius: 0.4rem;
	border: 1px solid #ccc;
	min-width: 150px;
	align-items: center;
	text-align: left;
}
.st_label.label_bg1 {border-color: #00b0f0; color: #00b0f0;}
.st_label.label_bg2 {border-color: #00b050; color: #00b050;}
.st_label.label_bg3 {border-color: #ff9933; color: #ff9933;}


/****************************************************************************** 아이콘 + 사이즈 */
.ico {
    display: inline-block; 
    width: calc(2.4rem + 4px); 
    height: calc(2.4rem + 4px); 
    vertical-align: middle; 
    background-size: 2.4rem auto;
    background-repeat: no-repeat;
    background-position: center center;
}
.ico.top {vertical-align:top;}
.ico.x32 {width: 3.2rem; height: 3.2rem; background-size: 3.2rem auto;}
.ico.x24 {width: 2.4rem; height: 2.4rem; background-size: 2.4rem auto;}
.ico.x22 {width: 2.2rem; height: 2.2rem; background-size: 2.2rem auto;}
.ico.x20 {width: 2.0rem; height: 2.0rem; background-size: 2.0rem auto;}
.ico.x19 {width: 1.9rem; height: 1.9rem; background-size: 1.9rem auto;}
.ico.x16 {width: 1.6rem; height: 1.6rem; background-size: 1.6rem auto;}
.ico.x14 {width: 1.4rem; height: 1.4rem; background-size: 1.4rem auto;}
.ico.x12 {width: 1.2rem; height: 1.2rem; background-size: 1.2rem auto;}
.ico em {overflow: hidden; position: absolute; clip: rect(1px, 1px, 1px, 1px); text-indent: -9999px; white-space: nowrap;}

.ico.login {background-image: url('../../assets/images/common/head_login.png');}
.ico.logout {background-image: url('../../assets/images/common/head_logout.png');}
.ico.calendar {background-image: url('../../assets/images/icon/icon_calendar.png');}
.ico.close {background-image: url('../../assets/images/common/icon_close.svg');}
.ico.download {background-image: url('../../assets/images/icon/icon_download.svg');}
.ico.refresh_bk {background-image: url('../../assets/images/icon/ico_refresh_bk.svg');}
.ico.print {background-image: url('../../assets/images/icon/ico_print.svg');}
.ico.icngo {background-image: url('../../assets/images/icon/icon_go.svg');}
.ico.login2 {background-image: url('../../assets/images/icon/icon_staff.svg');}
.ico.hp_w {height: 2.4rem; background-image: url('../../assets/images/icon/icon_hp_w.png');}

/****************************************************************************** 버튼위치 */
.btn_rtxt {
	display: flex;
    flex-direction: row;
    gap: 8px;
}
.btn_rtxt .btn {
	flex-shrink: 0;
	height: auto;
}

.s_btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
	gap: 6px;
	text-align: center;
}
.s_btn.type_lr {
    justify-content: space-between;
}
.s_btn.type_lr .right {
	display: flex;
	margin-left: auto;
    flex-direction: row;
	gap: 6px;
}
.input_group1 {
	display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
    width: 100%;
    max-width: 220px;
}
.input_group1 .text,
.input_group1 select {width: 100% !important;}
.input_group1 .btn {
	flex-shrink: 0;
	min-width: 70px !important;
}
@media (max-width: 1000px) {
	.input_group1 {max-width: none;}
}

/* 양쪽정렬 */
.justify_area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.justify_area .left {
	display: flex;
    flex-direction: row;
	gap: 6px;
    width: 50%;
}
.justify_area .right {
	display: flex;
    flex-direction: row;
	gap: 6px;
	margin-left: auto;
}
.justify_area select,
.justify_area input.text,
.justify_area .btn {
	width: auto;
	min-width: auto;
}
.justify_area.item_end {
	align-items: end;
}
.justify_area.colTy1 .left {width: 63%;}

@media (max-width: 1000px) {
	.justify_area.moblie {
    	flex-direction: column;
    	gap: 10px;
	}
	.justify_area.moblie .left {
		width: 100%;
	}
	.justify_area.moblie .right {
	    flex-direction: column;
		gap: 10px;
		width: 100%;
	}
	.justify_area.moblie .btn_n2 {
	    flex-direction: row;
		gap: 6px;
	}
	.justify_area.moblie .right.btn_n2 .btn {width: 50%;}
}

/****************************************************************************** 타이틀 */
[class^="s_title"] {position: relative; display: block; color: var(--body-color-2); font-weight: 700;}
[class^="s_title"].fw_bnone {font-weight: normal;}
.s_title01 {font-size: 3.2rem;}
.s_title02 {font-size: 2.8rem;}
.s_title03 {font-size: 2.5rem;}
.s_title04 {font-size: 2.2rem;}
.s_title05 {font-size: 2.0rem;}
.s_title06 {font-size: 1.9rem;}
.s_title07 {font-size: 1.8rem;}
.s_title08 {font-size: 1.7rem;}
.s_title09 {font-size: 1.6rem;}

@media all and (max-width: 1000px) {
	.s_title01 {font-size: 2.8rem;}
	.s_title02 {font-size: 2.4rem;}
	.s_title03 {font-size: 2.1rem;}
	.s_title04 {font-size: 1.8rem;}
	.s_title05 {font-size: 1.6rem;}
	.s_title06 {font-size: 1.4rem;}
	.s_title07 {font-size: 1.4rem;}
	.s_title08 {font-size: 1.4rem;}
	.s_title09 {font-size: 1.4rem;}
}
@media all and (max-width: 767px) {
	.s_title01 {font-size: 2.8rem;}
	.s_title02 {font-size: 2.4rem;}
	.s_title03 {font-size: 2.1rem;}
	.s_title04 {font-size: 1.8rem;}
	.s_title05 {font-size: 1.6rem;}
	.s_title06 {font-size: 1.4rem;}
	.s_title07 {font-size: 1.4rem;}
	.s_title08 {font-size: 1.4rem;}
	.s_title09 {font-size: 1.4rem;}
}
@media all and (max-width: 420px) {
	.s_title01 {font-size: 1.8rem;}
	.s_title02 {font-size: 1.8rem;}
	.s_title03 {font-size: 1.7rem;}
	.s_title04 {font-size: 1.6rem;}
	.s_title04.pd_l30 {padding-left: 23px !important;}
	.s_title05 {font-size: 1.5rem;}
	.s_title06 {font-size: 1.4rem;}
	.s_title07 {font-size: 1.4rem;}
	.s_title08 {font-size: 1.4rem;}
	.s_title09 {font-size: 1.4rem;}
}

.ft_size12 {font-size: 1.2rem;}
.ft_size13 {font-size: 1.3rem;}
.ft_size14 {font-size: 1.4rem;}
.ft_size15 {font-size: 1.5rem;}
.ft_size16 {font-size: 1.6rem;}
.ft_size17 {font-size: 1.7rem;}
.ft_size18 {font-size: 1.8rem;}
.ft_size20 {font-size: 2.0rem;}

/****************************************************************************** 타이틀 아이콘 */
[class^="s_ico_"] {position: absolute; left: 0; top: 0; display: inline-block;}
.s_ico_rud_org {top: 4px; width: 22px; height: 22px; border-radius: 50%; border: 6px solid var(--point-color-2);}

.tit_bullet_1 {position: relative; padding-left: 1.6rem; margin-bottom: 1.5rem;}
.tit_bullet_1:before {content: ''; position: absolute; left: 0; top: 6px; display: block; width: 8px; height: 8px; border-radius: 50%; background-color: #6483b2;}

@media all and (max-width: 1000px) {
	.s_ico_rud_org {top: 1px; width: 19px; height: 19px; border: 5px solid var(--point-color-2);}
}
@media all and (max-width: 420px) {
	.s_ico_rud_org {top: 2px; width: 16px; height: 16px; border: 0.44rem solid var(--point-color-2);}
}

/****************************************************************************** 서브 텍스트 */
[class^="s_text_"] {position:relative; display:block; padding:2px 0;}
.s_text_11 {font-size: 1.1rem; line-height: 1.9rem;}
.s_text_12 {font-size: 1.2rem; line-height: 2.0rem;}
.s_text_13 {font-size: 1.3rem; line-height: 2.1rem;}
.s_text_14 {font-size: 1.4rem; line-height: 2.2rem;}
.s_text_15 {font-size: 1.5rem; line-height: 2.3rem;}
.s_text_16 {font-size: 1.6rem; line-height: 2.4rem;}

@media all and (max-width: 1000px) {
	.s_text_16 {font-size: 1.5rem; line-height: 2.3rem;}
}


/****************************************************************************** 리스트 */
[class^="s_list_"] {}
[class^="s_list_"] li {position: relative; padding-left: 1.6rem; text-align: left;}
[class^="s_list_"] li + li {margin-top: 4px;}
[class^="s_list_"] li:before {content: ''; display: inline-block; position: absolute; left: 0;}
[class^="s_list_"].dot > li:before {width: 4px; height: 4px; border-radius: 100%; background-color: var(--body-color-1);}
[class^="s_list_"].dot2 > li:before {width: 8px; height: 8px; border-radius: 100%; background-color: #6483b2;}
[class^="s_list_"].bar > li:before {width: 4px; height:1px; background-color: var(--body-color-1);}
[class^="s_list_"].star > li:before {content: '*'; top: 0;}
[class^="s_list_"].string > li {padding-left: 2.2rem;}
[class^="s_list_"].string > li:before {display: none;}
[class^="s_list_"].string > li .sl_txt {display: inline-block; position: absolute; left: 0; top: 0;}
[class^="s_list_"] > li.icn_no:before {display: none;}

[class^="s_list_"].tc_gray.dot > li:before {background-color: var(--body-color-4);}
[class^="s_list_"].tc_gray.bar > li:before {background-color: var(--body-color-4);}

.s_list_12 {font-size: 1.2rem; line-height: 2.0rem;}
.s_list_12.bar > li:before {top: 9px;}
.s_list_12.dot > li:before {top: 8px;}
.s_list_12.dot2 > li:before {top: 6px;}
.s_list_12.star > li:before {top: 3px;}

.s_list_13 {font-size: 1.3rem; line-height: 2.1rem;}
.s_list_13.bar > li:before {top: 10px;}
.s_list_13.dot > li:before {top: 8px;}
.s_list_13.dot2 > li:before {top: 6px;}
.s_list_13.star > li:before {top: 3px;}

.s_list_14 {font-size: 1.4rem; line-height: 2.2rem;}
.s_list_14.bar > li:before {top: 11px;}
.s_list_14.dot > li:before {top: 10px;}
.s_list_14.dot2 > li:before {top: 7px;}
.s_list_14.star > li:before {top: 3px;}

.s_list_15 {font-size: 1.5rem; line-height: 2.3rem;}
.s_list_15.bar > li:before {top: 11px;}
.s_list_15.dot > li:before {top: 10px;}
.s_list_15.dot2 > li:before {top: 8px;}
.s_list_15.star > li:before {top: 3px;}

.s_list_16 {font-size: 1.6rem; line-height: 2.4rem;}
.s_list_16.bar > li:before {top: 12px;}
.s_list_16.dot > li:before {top: 10px;}
.s_list_16.dot2 > li:before {top: 8px;}
.s_list_16.star > li:before {top: 3px;}

@media all and (max-width: 1000px) {
	.s_list_15 {font-size: 1.5rem; line-height: 2.3rem;}
	.s_list_16 {font-size: 1.5rem; line-height: 2.3rem;}
}



/****************************************************************************** box */
.box_b_line {
	border: 1px solid var(--hscity-gray-30); 
	padding: 2.4rem 3.0rem;
}
.box_b_line.type_icn {
	position: relative;
}
.box_b_line.type_icn:before {
	content: '';
	display: block;
	position: absolute;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
}
.box_b_line.type_icn.bg1_1 {padding-right: 180px;}
.box_b_line.type_icn.bg1_1:before {
	right: 30px;
	bottom: 0;
	width: 136px;
	height: 82px;
	background-image: url('../../assets/images/sub/bg1_01.png');
}
.box_b_line.type_icn.bg1_2 {padding-right: 240px;}
.box_b_line.type_icn.bg1_2:before {
	right: 0;
	bottom: 0;
	width: 182px;
	height: 146px;
	background-image: url('../../assets/images/sub/bg1_02.png');
}
.box_b_line.type_icn.bg1_3 {padding-right: 255px;}
.box_b_line.type_icn.bg1_3:before {
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	width: 191px;
	height: 61px;
	background-image: url('../../assets/images/sub/bg1_03.png');
}
.box_b_line.type_icn.bg1_4 {padding-right: 220px;}
.box_b_line.type_icn.bg1_4:before {
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	width: 123px;
	height: 70px;
	background-image: url('../../assets/images/sub/bg1_04.png');
}
.box_b_line.type_icn.bg1_5 {padding-right: 280px;}
.box_b_line.type_icn.bg1_5:before {
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	width: 219px;
	height: 51px;
	background-image: url('../../assets/images/sub/bg1_05.png');
}

.box_blue_line {
	border: 1px solid #0055a6; 
	padding: 2.4rem 3.0rem;
}

.box_w {
	overflow: hidden;
	position: relative;
	padding: 3.0rem;
	background: #fff;
	border-radius: 1.8rem;
}

.gray_box {
	overflow: hidden;
	padding: 2.4rem 3.0rem;
	background: #eef2f7;
	border-radius: 1.8rem;
}
.gray_box.type_icn {
	position: relative;
	padding-left: 8.0rem;
	letter-spacing: -0.8px;
}
.gray_box.type_icn:before {
	content: '';
	display: block;
	position: absolute;
	left: 3.0rem;
	top: 2.8rem;
	background-repeat: no-repeat;
	background-position: center;
}
.gray_box.type_icn.icon_notice1:before {
	width: 36px;
	height: 36px;
	background-image: url('../../assets/images/icon/icon_notice1.png');
}
.gray_box.type_icn.mid:before {
	top: 50%;
	transform: translateY(-50%);
}
@media all and (max-width: 999px) {
	.box_b_line.type_icn.bg1_1 {padding-right: 110px;}
	.box_b_line.type_icn.bg1_1:before {
		right: 10px;
		width: 100px;
		height: 60px;
	}
	.box_b_line.type_icn.bg1_2 {padding-right: 110px;}
	.box_b_line.type_icn.bg1_2:before {
		width: 100px;
		height: 80px;
	}
}
@media all and (max-width: 767px) {
	.box_b_line {
		padding: 2.0rem 2.6rem;
	}
	.box_b_line.type_icn.bg1_1 {padding-right: 2.6rem;}
	.box_b_line.type_icn.bg1_1:before {display: none;}
	.box_b_line.type_icn.bg1_2 {padding-right: 2.6rem;}
	.box_b_line.type_icn.bg1_2:before {display: none;}
	.box_b_line.type_icn.bg1_3 {padding-right: 2.6rem;}
	.box_b_line.type_icn.bg1_3:before {display: none;}
	.box_b_line.type_icn.bg1_4 {padding-right: 2.6rem;}
	.box_b_line.type_icn.bg1_4:before {display: none;}
	.box_b_line.type_icn.bg1_5 {padding-right: 2.6rem;}
	.box_b_line.type_icn.bg1_5:before {display: none;}

	.gray_box {padding: 2.4rem 3.0rem;}
	.gray_box.type_icn {padding-left: 3.0rem;}
	.gray_box.type_icn.icon_notice1:before {display: none;}
}

@media all and (max-width: 420px) {
	.box_b_line {
		padding: 1.5rem;
	}
	.box_b_line.type_icn {
		padding: 1.5rem !important;
	}
	.gray_box {
		padding: 1.5rem;
		border-radius: 1.5rem;
	}
	.gray_box.type_icn {padding-left: 1.5rem;}
}


/****************************************************************************** 탭 */
[data-ui="tab"] .tab_conts_wrap .tab_conts {display: none;}
[data-ui="tab"] .tab_conts_wrap .tab_conts.active {display: block;}
[data-ui="tab_flex"] .tab_conts_wrap .tab_conts {display: none;}
[data-ui="tab_flex"] .tab_conts_wrap .tab_conts.active {display: flex;}

.tab_area .ui_tab {
    position: relative;
    display: flex;
    margin-bottom: 4.0rem;
}
.tab_area .ui_tab:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% - 1px);
    z-index: -1;
    width: 100%;
    height: 1px;
    background-color: #e1e3e6;
}
.tab_area .ui_tab > li {
    width: 100%;
}
.tab_area .ui_tab > li .btn_tab {
	display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	width: 100%;
	height: 4.8rem;
	padding: 0 10px;
	font-size: 1.7rem;
    font-weight: 700;
    color: var(--body-color-1);
}
.tab_area .ui_tab > li.active .btn_tab {
    border-radius: 10px;
    color: var(--hscity-white);
    background-color: #6483b2;
}
.tab_area .ui_tab.item2 > li {width: calc(100% / 2);}
.tab_area .ui_tab.item3 > li {width: calc(100% / 3);}
.tab_area .ui_tab.item4 > li {width: calc(100% / 4);}
.tab_area .ui_tab.item5 > li {width: calc(100% / 5);}
@media (max-width: 999px) {
	.tab_area .ui_tab > li .btn_tab {
		font-size: 1.6rem;
	}
}
@media (max-width: 420px) {
	.tab_area .ui_tab > li .btn_tab {
		font-size: 1.5rem;
	}
}

/****************************************************************************** div 테이블 */
.f_btnbox1 {max-width: 70%;}

.f_tbl {display: table;}
.f_tbl > li {display: table-cell; table-layout: fixed; vertical-align: middle;}
.f_tbl > li + li {padding-left: 8px;}
.f_tbl + .f_tbl {margin-top: 8px;}
.f_tbl > li.w_auto {width: auto !important;}
.f_tbl > li.bar {width: auto !important; padding: 0 8px; text-align: center;}
.f_tbl > li.bar + li {padding-left: 0 !important;}

.f_tbl.w100p {display: block;}
.f_tbl.w100p > li {display: block; width: 100%; padding-left: 0;}
.f_tbl.w100p > li + li {margin-top: 8px;}

.f_tbl.w140 > li {width: 140px;}
.f_tbl.w150 > li {width: 150px;}
.f_tbl.w180 > li {width: 180px;}
.f_tbl.w200 > li {width: 200px;}
@media (max-width: 1023px) {
	.f_btnbox1 {max-width: 100%;}
	.f_tbl {display: block; width: 100%}
	.f_tbl > li {display: block; width: 100%}
	.f_tbl > li + li {padding-left: 0; margin-top: 8px;}
}

.dl_ckbox {display: table; table-layout: fixed; width: 100%;}
.dl_ckbox > div {display: table-cell; vertical-align: middle;}
.dl_ckbox > .dt {width: 100px; text-align: left;}
.dl_ckbox > .dt > span {position: relative; display: inline-block; padding-left: 10px;}
.dl_ckbox > .dt > span:before {content: ''; position: absolute; left: 0; top: 9px; display: inline-block; width:3px; height: 3px; border-radius: 100%; background-color: var(--body-color-1);}
.dl_ckbox > .dd {width: auto; padding-left: 20px;}

@media (max-width: 999px) {
	.dl_ckbox {display: block;}
	.dl_ckbox > div {display: block; width: 100%;}
	.dl_ckbox > div + div {padding-left: 0; margin-top: 8px;}
	.dl_ckbox > .dd {width: 100%; padding-left: 0;}
}

.f_cklist {display: flex; gap: 10px 15px; width: 100%;  flex-flow: row wrap; align-items: center;}

div.f_chkbx label {vertical-align: middle;}

/****************************************************************************** 파일첨부 */
.upload_area .txt {display: inline-block; line-height: 4.0rem; margin-left: 1.0rem; vertical-align: middle;}
.upload_area .txt .undline {color: var(--point-color-1); text-decoration: underline;}
.upload_area .upload_file {overflow: hidden; position: relative; display: inline-block; max-width: 29.0rem; padding-left: 9.6rem; vertical-align: middle;}
.upload_area .upload_file .text[readonly] {width: 100%; padding: 0; border-radius: 0 !important; background-color: var(--hscity-white) !important; border: none;}
.upload_area .upload_file .btn_file {overflow: hidden; position: absolute; left: 0; top: 0; width: 8.6rem; height: 100%; font-size: 1.6rem; background-color: var(--hscity-white); }
.upload_area .upload_file .btn_file input {position: absolute; top: 0; left: 0; width:1000px; height: 100%; cursor: pointer; opacity: 0;}

/****************************************************************************** 이미지 파일첨부 */
.upload_list {display: flex; gap: 1.0rem;}
.upload_list > li {width: 86px;}
.upload_pic2 .btn_file {
	overflow: hidden;
	position: relative;
	width: 86px;
	height: 86px;
	border: 1px solid #cdcdcd;
	border-radius: 4px;
	background: url('../../assets/images/icon/icon_upload_pic.png') no-repeat center center;
}
.upload_pic2 .btn_file input {
	position: absolute;
	top: 0;
	left: -90px;
	width: 1000px;
	height: 100% !important;
	opacity: 0;
	cursor: pointer !important;
}
.upload_pic2 .file_name {
	width: 100%;
	height: 40px;
	border:0;
	font-size: 14px;
	border-radius: 0 !important;
	background-color: #fff !important;
	border-color: #fff !important;
	border-bottom: 1px solid #52a0d0 !important;
	color: var(--point-color-1) !important;
}
.upload_pic2 .upload_box {
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background-color: #fff;
}
.upload_pic2 .upload_box > img {
	width: 100%;
	height: 100%;
}
.upload_pic2 .upload_box .btn_del {
	overflow: hidden;
	position: absolute;
	right: 7px;
	top: 7px;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	background-image: url('../../assets/images/icon/icon_upload_close1.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
}

/****************************************************************************** 테이블 */
.table_form > table {
	table-layout: fixed;
	width: 100%;
	font-size: 1.6rem;
	color: var(--body-color-1);
	border-top: 2px solid #4d4d4f;
	border-collapse: separate;
}
.table_form > table th,
.table_form > table td {
	text-align: left;
	border-bottom: 1px solid #e1e3e6;
	height: 6.0rem;
	padding: 1.2rem;
	vertical-align: middle;
}
.table_form > table th {
	color: var(--body-color-4);
}
.table_form input.text {height: 3.6rem;}
.table_form select {height: 3.6rem;}
.table_form .txt1 {line-height: 3.6rem;}

.table_last_ckbox {
	padding: 1.2rem;
	text-align: center;
	border-bottom: 1px solid #e1e3e6;
}

@media (max-width: 999px) {
	.table_form input.text {height: 4.2rem;}
	.table_form select {height: 4.2rem;}
	.table_form .btn_sm {height: 4.2rem;}
	.table_form .txt1 {line-height: 4.2rem;}
	.table_form > table colgroup {
		display: none;
	}
	.table_form > table tr,
	.table_form > table th,
	.table_form > table td {
		display: block;
		width: 100%;
		height: auto;
		border-bottom: 0;
	}
	.table_form > table td {
		padding: 0 1.2rem;
	}
	.table_form > table tr + tr,
	.table_form > table td + th {
		margin-top: 8px;
	}
	.table_last_ckbox {
		margin-top: 12px;
		border-top: 1px solid #e1e3e6;
	}
}

.table > table {
	width: 100%;
	table-layout: fixed;
    text-align: center;
	color: #4d4d4f;
	border-top: 2px solid #4d4d4f;
    line-height: normal;
	border-collapse: separate;
}
.table > table th,
.table > table td {
    vertical-align: middle;
}
.table > table > thead > tr > th,
.table > table > thead > tr > td {
    height: 46px;
	color: #231f20;
    background-color: #eef2f7;
    border-bottom: 1px solid #e1e3e6;
    border-right: 1px solid #e1e3e6;
}
.table > table > thead > tr:first-child > th:last-child,
.table > table > thead > tr:first-child > td:last-child {
    border-right: none;
}
.table > table > thead > tr > td:last-child,
.table > table > thead > tr.subtotal td:last-child {
    border-right: none;
}
.table > table > tbody > tr > th,
.table > table > tbody > tr > td {
    height: 48px;
    padding: 6px 5px;
    border-bottom: 1px solid #e1e3e6;
    border-right: 1px solid #e1e3e6;
}
.table > table > tbody > tr:first-child > th:last-child,
.table > table > tbody > tr:first-child > td:last-child {
    border-right: none;
}
.table > table > tbody > tr > td:last-child,
.table > table > tbody > tr.subtotal td:last-child {
    border-right: none;
}
.table > table > tbody > tr td:only-child {
    border-right: none;
}

.table .tfoot {background-color: #ffeadf;}
.table .tfoot:hover {background-color: #ffeadf !important;}
.table > table > tfoot > tr {
	background-color: #ffeadf;
}
.table > table > tfoot > tr > th,
.table > table > tfoot > tr > td {
    height: 48px;
    padding: 6px 5px;
    border-bottom: 1px solid #e1e3e6;
    border-right: 1px solid #e1e3e6;
}
.table > table > tfoot > tr > th:first-child, 
.table > table > tfoot > tr > td:first-child {
    border-left: 0;
}
.table > table > tfoot > tr:first-child > th:last-child,
.table > table > tfoot > tr:first-child > td:last-child {
    border-right: none;
}
.table > table > tfoot > tr td:only-child {
    border-right: none;
}
.table > table > tfoot > tr > td:last-child,
.table > table > tfoot > tr.subtotal td:last-child {
    border-right: none;
}

.table .bg_th1 {color: #231f20; background-color: #eef2f7;}
.table .bg_th2 {background-color: #f1f1f1;}
.table .line_rt {border-right: 1px solid #e1e3e6 !important;}
.table .ta_l {text-align: left !important;}
.table .ta_c {text-align: center !important;}
.table .ta_r {text-align: right !important;}
.table .ver_m {vertical-align: middle;}
.table .ver_t {vertical-align: top;}
.table .ver_b {vertical-align: bottom;}
.table .no_data {
	width: 100%;
	padding: 8.0rem 0 !important;
	text-align: center !important;
}

.table.type_line > table {border-right: 1px solid #e1e3e6;}
.table.type_line > table thead th,
.table.type_line > table thead td,
.table.type_line > table tbody th,
.table.type_line > table tbody td {border-left: 1px solid #e1e3e6;}

.table.pd1212 > table > tbody > tr > th,
.table.pd1212 > table > tbody > tr > td {
    padding: 12px;
}

.table.type_row > table th,
.table.type_row > table td {
	text-align: left;
	padding: 6px 20px;
    height: 48px;
}
.table.type_row > table tbody th {
	color: #231f20;
	background-color: #eef2f7;
}
@media (max-width: 767px) {
	.table.type_row > table th,
	.table.type_row > table td {
		padding: 6px 10px;
	}
	.table.type_row > table colgroup {
		display: none;
	}
	.table.type_row > table tbody th {
		width: 22%;
	}
}
@media (max-width: 480px) {
	.table.type_row > table tbody th {
		width: 28%;
	}
}

.table.tb_hover > table tbody tr:hover {background: #fff9f0;}

.table.tb_scroll {overflow-x: auto !important; padding-bottom:5px;}
.table.tb_scroll > table {min-width: 927px;}


.table.tb_resize > table .th,
.table.tb_resize > table .header_cell {display: none;}
.table.tb_resize > table > tbody > tr > th,
.table.tb_resize > table > tbody > tr > td {
	height: auto;
	padding: 12px;
}
.table.tb_resize.ver_t  > table > tbody > tr > th,
.table.tb_resize.ver_t  > table > tbody > tr > td {
	vertical-align: top;
}

@media (max-width: 1000px) {
	.table.tb_resize > table > colgroup, 
	.table.tb_resize > table > thead {
		display: none;
	}
	.table.tb_resize > table {text-align: left;}
	.table.tb_resize .line_rt {border-right: 0 !important;}
	.table.tb_resize > table > tbody > tr {
		display: flex;
		flex-direction: column;
	}
	.table.tb_resize > table > tbody > tr + tr {
		margin-top: 2.0rem;
		border-top: 1px solid #e1e3e6;
	}
	.table.tb_resize > table > tbody > tr > .header_cell,
	.table.tb_resize > table > tbody > tr > td {
		display: flex;
		flex-direction: row;
		width: 100%;
		padding: 0;
		border-right: 0;
	}
	.table.tb_resize > table .th,
	.table.tb_resize > table .td {
		display: flex;
		padding: 10px;
	}
	.table.tb_resize > table .th {
		width: 20%;
        min-width: 130px;
		background-color: #eef2f7;
	}
	.table.tb_resize > table .td {
		width: calc(100% - 130px);
	}
	.table.tb_resize > table .list_moblie_1 > li {text-indent: -8px; padding-left:8px;}
	.table.tb_resize.m_w150 > table .th {
        min-width: 150px;
	}
	.table.tb_resize.m_w150 > table .td {
		width: calc(100% - 150px);
	}
}


.ul_table_list {
	display: flex;
	width: 100%;
    flex-direction: row;
    margin-top: 0.8rem;
    color: #4d4d4f;
    border-top: 2px solid #4d4d4f;
    flex-wrap: wrap;
    justify-content: space-between;
}
.ul_table_list > li {
	display: flex;
	width: 100%;
	padding: 0.6rem 1.2rem;
	align-items: center;
	border-bottom: 1px solid #e1e3e6;
	gap: 1.6rem;
}
.ul_table_list > li.no_data {
	padding: 8.0rem 0;
	justify-content: center;
	text-align: center;
}
.ul_table_list > li > div {
	display: flex;
	gap: 0.8rem;
}
.ul_table_list > li .header_cell {
	display: none;
}

/* 페이징 */
.pagination {
	position: relative;
	text-align: center;
	margin-top: 3.0rem;
}
.pagination .pg_left {
	position: absolute;
	left: 0;
	top: 0;
	line-height: 32px;
}
.pagination .in {
	display: inline-block;
	vertical-align: top;
}
.pagination .in > .prev {background-image: url('../../assets/images/icon/paging-prev.png');}
.pagination .in > .next {background-image: url('../../assets/images/icon/paging-next.png');}
.pagination .in > .first {background-image: url('../../assets/images/icon/paging-first.png');}
.pagination .in > .last {background-image: url('../../assets/images/icon/paging-last.png');}

.pagination .in > a,
.pagination .in > button {
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center;
	text-indent: -9999px;
}
.pagination .in a,
.pagination .in button,
.pagination .in strong {
	display: inline-block;
	width: 32px;
	height: 32px;
    line-height: 32px;
    margin: 0 4px;
    vertical-align: top;
	border-radius: 1.2rem;
	font-family: 'Pretendard';
}
.pagination .in a, 
.pagination .in button, 
.pagination .in strong, 
.pagination .in .page {
    float: left;
}
.pagination .in .page {
	margin: 0 1px;
}
.pagination .in strong {
	color: #fff;
	background-color: #4d4d4f;
}
.pagination .in .page > a:hover,
.pagination .in .page > button:hover {
	background-color: #f1f1f1;
}
@media all and (max-width: 767px) {
	.pagination .in a,
	.pagination .in button,
	.pagination .in strong {
		width: 30px;
		height: 30px;
	    line-height: 28px;
	    margin: 0 2px;
	    font-size: 1.3rem;
	}
	.pagination .in .page * {
		display: none;
	}
	.pagination .in .page *:nth-child(1), 
	.pagination .in .page *:nth-child(2), 
	.pagination .in .page *:nth-child(3) {
	    display: block !important;
	}
}

/****************************************************************************** common */
body {
	min-width: 320px;
}
#wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-top: 157px;
	overflow: hidden;
}
.inner {
	width: 100%;
    max-width: 128rem;
	margin: 0 auto;
}
@media all and (max-width: 1260px) {
	.inner {width: calc(100% - 20px);}
}
.right_box {
	display: inline-flex;
    margin-left: auto;
    gap: 1.5rem;
    align-items: center;
}

#wrap.sub #container {
	margin: 6.5rem 0;
}
@media all and (max-width: 1200px) {
	#wrap {
	    padding-top: 71px;
	}
	#wrap.sub #container {
		margin: 3.0rem 0 5.0rem;
	}
}
@media all and (max-width: 420px) {
	#wrap.sub #container {
		margin: 2.0rem 0 3.0rem;
	}
}

/****************************************************************************** header */
#header {	
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 11;
    background-color: #fff;
}
#header.active::after {
    content: "";
    clear: both;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10000%;
    background-color: rgba(0, 0, 0, .4);
    z-index: 52;
}
#header .btn_sitemap {
	overflow: hidden;
	position: relative;
	display: block;
	width: 4.0rem;
    height: 100%;
    text-indent: -99999em;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('../../assets/images/common/head_navi_all.png');
}
#header .header_top {
	padding-top: 1.5rem;
    border-bottom: 1px solid #d8d8d8;
    transition: all .3s;
}
#header .header_top > .inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 8.0rem;
    /*
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
    */
}
#header .header_top .logo {
	display: inline-flex;
	width: 278px;
	height: 37px;
}
#header .header_top .logo > a {
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-indent: -9999em;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
	background-image: url('../../assets/images/common/header_logo.png');
}
#header .header_top .right_box {
	gap: 1.2rem;
    align-items: center;
}
#header .header_top .right_box .btn > span {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--body-color-2);
}

#header .header_gnb > .inner {
    display: flex;
    flex-direction: row;
}
#header .header_gnb::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 0;
    border-bottom: 1px solid #d8d8d8;
    transform: translateX(-50%);
}

#header #gnb {
    display: flex;
}
#header #gnb > li > a {
    position: relative;
    display: flex;
	padding: 0 1.4rem;
	color: #555;
	font-size: 1.9rem;
    line-height: 6.1rem;
    font-weight: 700;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
	transition: all .4s;
}
#header #gnb > li > a::after {
    content: "";
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    background: url('../../assets/images/common/head_gnb_arr.svg') no-repeat 0 center;
    background-size: contain;
	transition: all .4s;
}
#header #gnb > li.active > a::after {
    transform: rotate(-180deg);
}
#header #gnb > li > a::before, 
#header #gnb > li > a:hover::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.3rem;
    background-color: #093C8B;
	transition: all .5s;
}
#header #gnb > li.active > a::before, 
#header #gnb > li > a:hover::before {
    width: 100%;
}

#header #gnb .gnb_submenu {
	display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 55;
    width: 100%;
    padding: 2.8rem 0;
    font-size: 1.6rem;
    background: var(--hscity-white);
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2);
}
#header #gnb .gnb_submenu .depth2 {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    gap: 1.6rem 2rem;
}
#header #gnb .gnb_submenu .depth2 > li {
    width: calc(25% - 1.6rem);
}
#header #gnb .gnb_submenu .depth2 > li > div {
	overflow: hidden;
    background-color: var(--hscity-white);
    border: 1px solid #d8d8d8;
    border-radius: 1rem;
}
#header #gnb .gnb_submenu .depth2 > li > div > a {
    position: relative;
    display: flex;
    height: 5.6rem;
    padding-right: 4.4rem;
    padding-left: 1.6rem;
    align-items: center;
}
#header #gnb .gnb_submenu .depth2 > li > div:not(.no_sub) > a::after {
	content: '';
	position: absolute;
	right: 1.5rem;
	top: 50%;
	margin-top: -1rem;
    width: 2rem;
    height: 2rem;
    background: url('../../assets/images/common/head_gnb_arr.svg') no-repeat 0 center;
    background-size: contain;
	transition: all .4s;
}
#header #gnb .gnb_submenu .depth2 > li > div:not(.no_sub).active > a::after {transform: rotate(-180deg);}
#header #gnb .gnb_submenu .depth2 > li > div .depth3 {
	display: none;
    margin: 0 1.6rem;
    padding: 0.8rem 0;
    border-top: 1px dashed #d8d8d8;
}
#header #gnb .gnb_submenu .depth2 > li > div .depth3 > li {
	position: relative;
	padding-left: 12px;
}
#header #gnb .gnb_submenu .depth2 > li > div .depth3 > li:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 14px;
	width: 4px;
	height: 1px;
	background-color: #555;
}
#header #gnb .gnb_submenu .depth2 > li > div .depth3 > li > a {
    display: block;
    padding: 0.4rem 0;
}
#header #gnb .gnb_submenu .depth2 > li > div a:hover {text-decoration: underline;}

@media all and (max-width: 1200px) {
    #header .header_top {
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        z-index: 10;
        background-color: #fff;
    	padding-top: 0;
    }
    #header .header_top .inner {
        height: 7.0rem;
    }
	#header .header_top .right_box .btn_sitemap {
		display: block;
	}
	#header .header_gnb {
		display: none;
	}
	#header #gnb > li > a {
		padding: 0 1.4rem;
		font-size: 1.7rem;
	}
}
@media all and (max-width: 767px) {
	#header .header_top .logo {
		width: 200px;
		height: 27px;
	}
}
@media (max-width: 400px) {
	#header .header_top .right_box {
		gap: 0;
	}
    #header .header_top .right_box .btn_logout {
    	width: 32px;
    	height: 20px;
    	min-width: auto;
    	background-size: 19px auto;
	    background-repeat: no-repeat;
	    background-position: center center;
	    background-image: url('../../assets/images/common/head_logout.png');
    }
    #header .header_top .right_box .btn_logout > span {
    	display: none;
    }
}


/****************************************************************************** footer */
#footer {
	padding: 4.0rem 0;
	border-top: 1px solid #e1e1e1;
	background-color: #f6f6f6;
}
#footer > .inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
#footer .footer_cnt {
	display: flex;
}
#footer .footer_cnt .logo {
	display: inline-block;
	vertical-align: top;
	line-height: 0;
	font-size: 0;
	margin-right: 8.0rem;
}
#footer .footer_cnt .logo > span {
    overflow: hidden;
	display: inline-block;
	width: 234px;
    height: 56px;
    text-indent: -9999em;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
	background-image: url('../../assets/images/common/footer_logo.png');
}
#footer .footer_cnt .address_area {
	display: inline-block;
	vertical-align: top;
}
#footer .footer_cnt .f_link > a {
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--body-color-1);
}
#footer .footer_cnt .f_link > a:hover {
	text-decoration: underline;
}
#footer .footer_cnt .f_link > a + a {
	margin-left: 2.6rem;
}
#footer .footer_cnt .address {
	margin-top: 6px;
	font-size: 1.5rem;
	line-height: 24px;
}
#footer .footer_cnt .copyright {
	font-size: 1.5rem;
	line-height: 24px;
}
#footer .family_link {
	position: relative;
	display: inline-block;
	width: 24.4rem;
	height: 3.6rem;
	padding-right: 4.4rem;
	border-radius: 0.3rem;
	background-color: var(--hscity-white);transition: all .3s;
}
#footer .family_link > select {
	border-radius: 0;
	border: 0;
	cursor: pointer;
	border-right: 1px solid #e1e3e6;
}
#footer .family_link > button {
	position: absolute;
	right: 0;
	top: 0;
	border-radius: 0;
	width: 4.4rem;
	height: 100%;
}

@media all and (max-width: 1200px) {
	#footer {
		padding: 2.4rem 0;
	}
	#footer .inner {
		flex-direction: column;
		gap: 2.0rem;
	}
	#footer .right_box {
		display: flex;
		width: 100%;
	}
	#footer .family_link {
		display: block;
		width: 100%;
	}
	#footer .footer_cnt .address_area {
		display: block;
		margin-top: 1.0rem;
	}
}
@media all and (max-width: 767px) {
	#footer .footer_cnt {
		display: block;
	}
	#footer .footer_cnt .logo {
		display: block;
		width: 100%;
		margin: 0;
		text-align: center;
	}
	#footer .footer_cnt .logo > span {
		width: 188px;
		height: 45px;
	}
	#footer .footer_cnt .address_area {
		text-align: center;
		margin-top: 2.0rem;
	}
	#footer .footer_cnt .address,
	#footer .footer_cnt .copyright {
		font-size: 1.3rem;
		line-height: 20px;
	}
}

/****************************************************************************** 로그인팝업 */
#layerLoginFrm .layer_header {
	padding: 15px 50px;
}
#layerLoginFrm .layer_header > img {
	height: 50px;
}
#layerLoginFrm .layer_content {
    width: 450px;
}
#layerLoginFrm .layer_content > div {
	padding-bottom: 30px;
}
#layerLoginFrm .layer_conts {
	overflow: hidden;
	padding: 0 50px;
}

.login_frm {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.login_frm .login_frm_input {
	overflow: hidden;
	border-radius: 0.6rem;
	background-color: #fff;
	border: 1px solid #ccc;
}
.login_frm .login_frm_input > li + li {
	border-top: 1px solid #ccc;
}
.login_frm .login_frm_input .text {
	height: 52px;
	padding: 10px 18px;
	border-radius: none;
	border: none;
}
.login_frm .btn {
	display: block;
	height: 60px;
	line-height: 60px;
	padding: 0;
	font-weight: bold;
	font-size: 17px;
	border-radius: 0.6rem;
	text-align: center;
	color: #fff;
	background-color: #4d4d4f;
}

/****************************************************************************** 사이트맵 */
#layerSitemap .layer_content {
	max-width: 128rem;
}
#layerSitemap .layer_content > div {
	padding-bottom: 0;
}
#layerSitemap .layer_header {
	background-color: #fff;
}
#layerSitemap .layer_body {
	position: relative;
	overflow: hidden;
	width: 100%;
    min-height: 405px;
	padding: 0;
    border-top: 1px solid #d8d8d8;
}
#layerSitemap .layer_body:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 170px;
    height: 100%;
    min-height: 405px;
    background-color: #edf1f5;
    border-right: 1px solid #d8d8d8;
}
#layerSitemap .layer_body ul {
	position: relative;
}
#layerSitemap .layer_body .list_sitemap {
	height: 100%;
}
#layerSitemap .list_sitemap > li a:hover {
	text-decoration: underline;
	color: #537db5;
}
#layerSitemap .list_sitemap > li > a {
	display: flex;
    align-items: center;
    width: 170px;
	height: 60px;
	padding-left: 16px;
	font-size: 1.7rem;
	line-height: 20px;
    font-weight: 700;
	color: var(--body-color-2);
	word-break: break-word;
}
#layerSitemap .list_sitemap > li.active > a {
	background-color: #fff;
}
#layerSitemap .list_sitemap > li .submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 170px;
    right: 0;
	bottom: 0;
    width: calc(100% - 170px);
    padding: 16px;
    overflow-y: auto;
}
#layerSitemap .list_sitemap > li.active .submenu {
	display: block;
}
#layerSitemap .list_sitemap > li .depth2 {
	overflow: hidden;
	width: 100%;
}
#layerSitemap .list_sitemap > li .depth2 > li {
	float: left;
	width: 25%;
	padding: 0 8px;
}
#layerSitemap .list_sitemap > li .depth2 > li > span,
#layerSitemap .list_sitemap > li .depth2 > li > a {
    display: flex;
    width: 100%;
    height: 56px;
    padding: 0 16px;
    align-items: center;
	font-size: 1.7rem;
	border: 1px solid #d8d8d8;
	border-radius: 10px;
	word-break: break-word;
}
#layerSitemap .list_sitemap > li .depth3 > li {
	margin-top: 10px;
}
#layerSitemap .list_sitemap > li .depth3 > li > a {
	position: relative;
	display: block;
	padding: 4px;
	padding-left: 20px;
}
#layerSitemap .list_sitemap > li .depth3 > li > a:before {
	content: '';
    position: absolute;
    top: 11px;
    left: 10px;
    display: inline-block;
    width: 3px;
    height: 3px;
    background-color: #333;
    border-radius: 100%;
}

@media all and (max-width: 1200px) {
	#layerSitemap .layer_header {
		padding: 20px 16px;
	}
	#layerSitemap .layer_content > div .btn_close {
		right: 16px;
		top: 17px;
	}
	#layerSitemap .layer_content {
		position: fixed;
		left: 0;
		top: 0;
		transform: none;
		width: 100%;
		height: 100%;
		max-height: 100%;
		border-radius: 0;
	}
	#layerSitemap .layer_body {
		min-height: auto;
		height: 100%;
	}
	#layerSitemap .layer_body:before {
    	width: 160px;
	    min-height: auto;
	}
	#layerSitemap .list_sitemap {
		height: 100%;
	}
	#layerSitemap .list_sitemap > li > a {
		width: 160px;
		padding-left: 10px;
		padding-right: 5px;
		font-size: 1.6rem;
	}
	#layerSitemap .list_sitemap > li .submenu {
    	left: 160px;
    	width: calc(100% - 160px);
		padding: 15px;
	}
	#layerSitemap .list_sitemap > li.active .submenu {
		bottom: 15px;
	}
	#layerSitemap .list_sitemap > li .depth2 > li {
		float: none;
		width: 100%;
		padding: 0;
	}
	#layerSitemap .list_sitemap > li .depth2 > li + li {
		margin-top: 20px;
	}
	#layerSitemap .list_sitemap > li .depth2 > li > span, 
	#layerSitemap .list_sitemap > li .depth2 > li > a {
		display: block;
		height: auto;
		padding: 0;
		border: 0;
		font-size: 1.6rem;
	}
}


/****************************************************************************** 사이트맵2 */
#layerSitemap2 .layer_content {
	max-width: 128rem;
}
#layerSitemap2 .layer_content > div {
	padding-bottom: 0;
}
#layerSitemap2 .layer_header {
	padding-bottom: 20px;
	background-color: #fff;
}
#layerSitemap2 .layer_body {
	position: relative;
	width: 100%;
	padding: 0;
	overflow-y: auto;
	/*
    min-height: 405px;
	overflow: hidden;
	padding: 0;
    border-top: 1px solid #d8d8d8;
    */
}

#layerSitemap2 .list_sitemap > li {
	position: relative;
	min-height: 91px;
	border-top: 1px solid #d8d8d8;
}
#layerSitemap2 .list_sitemap > li a:hover {
	text-decoration: underline;
	color: #537db5;
}
#layerSitemap2 .list_sitemap > li .depth1 {
	position: absolute;
	left: 20px;
	top: 20px;
	display: inline-block;
	text-align: center;
    width: 170px;
    padding: 15px 5px;
	line-height: 20px;
    font-weight: 700;
	color: var(--body-color-2);
	word-break: break-word;
	background-color: #d8f2ff;
	border-radius: 10px;
}
#layerSitemap2 .list_sitemap > li .depth1 .br {display: none;}
#layerSitemap2 .list_sitemap > li .submenu {
    padding: 35px 20px 20px;
	padding-left: 220px;
}
#layerSitemap2 .list_sitemap > li .depth2 {
	overflow: hidden;
	width: 100%;
}
#layerSitemap2 .list_sitemap > li .depth2 > li {
	float: left;
	width: 25%;
	padding: 0 7.5px;
}
#layerSitemap2 .list_sitemap > li .depth2 > li > span,
#layerSitemap2 .list_sitemap > li .depth2 > li > a {
	position: relative;
	display: inline-block;
	padding-left: 12px;
}
#layerSitemap2 .list_sitemap > li .depth2 > li > span:before,
#layerSitemap2 .list_sitemap > li .depth2 > li > a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	display: block;
	width: 3px;
	height: 10px;
	background-color: #0055a6;
}
#layerSitemap2 .list_sitemap > li .depth3 > li {
	margin-top: 10px;
}
#layerSitemap2 .list_sitemap > li .depth3 > li > a {
	position: relative;
	display: block;
	padding: 4px;
	padding-left: 20px;
}
#layerSitemap2 .list_sitemap > li .depth3 > li > a:before {
	content: '';
    position: absolute;
    top: 11px;
    left: 10px;
    display: inline-block;
    width: 3px;
    height: 3px;
    background-color: #0055a6;
    border-radius: 100%;
}
@media all and (max-width: 1200px) {
	#layerSitemap2 .layer_header {
		padding: 20px 15px;
	}
	#layerSitemap2 .layer_content > div .btn_close {
		right: 15px;
		top: 17px;
	}
	#layerSitemap2 .layer_content {
		position: fixed;
		left: 0;
		top: 0;
		transform: none;
		width: 100%;
		height: 100%;
		max-height: 100%;
		border-radius: 0;
	}
	#layerSitemap2 .layer_body {
		min-height: auto;
		height: 100%;
	}
	#layerSitemap2 .list_sitemap > li .submenu {
		padding-top: 20px;
	}
	#layerSitemap2 .list_sitemap > li .depth2 > li {
		width: 50%;
		margin-top: 10px;
	}
	#layerSitemap2 .list_sitemap > li .depth2 > li:nth-child(1),
	#layerSitemap2 .list_sitemap > li .depth2 > li:nth-child(2) {
		margin-top: 0;
	}
}
@media all and (max-width: 610px) {
	#layerSitemap2 .list_sitemap > li .depth1 {
		top: 15px;
		left: 15px;
		width: 130px;
	}
	#layerSitemap2 .list_sitemap > li {
		min-height: 95px;
	}
	#layerSitemap2 .list_sitemap > li .depth1 .br {display: block;}
	#layerSitemap2 .list_sitemap > li .submenu {
		padding: 15px;
		padding-left: 160px;
	}
	#layerSitemap2 .list_sitemap > li .depth2 > li {
		float: none;
		width: 100%;
		margin-top: 15px;
	}
	#layerSitemap2 .list_sitemap > li .depth2 > li:nth-child(1) {
		margin-top: 0;
	}
	#layerSitemap2 .list_sitemap > li .depth2 > li:nth-child(2) {
		margin-top: 15px;
	}
	#layerSitemap2 .list_sitemap > li .depth3 > li + li {
		margin-top: 6px;
	}
}

/****************************************************************************** sub : 시작 */

/* lnb */
#container .in_between {
	display: flex;
	gap: 6.3rem;
	justify-content: space-between;
}
#container .lnb_area {
	width: 26.2rem;
}
@media (max-width: 1200px) {
	#container .in_between {
		display: block;
	}
	#container .lnb_area {
		display: none;
	}
}

#container .lnb_area .lnb_title {
	height: 7.0rem;
	font-size: 2.6rem;
	line-height: 3.4rem;
	font-weight: 700;
	color: var(--body-color-2);
	border-bottom: 1px solid #4d4d4f;
}
#container #lnb_menu > ul > li {
	border-bottom: 1px solid #d8d8d8;
}
#container #lnb_menu > ul > li > a {
	position: relative;
	display: flex;
	height: 6.0rem;
    align-items: center;
	font-size: 1.7rem;
	font-weight: 700;
	color: var(--body-color-2);
}
#container #lnb_menu > ul > li > a:before {
	content: '';
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 10px;
	height: 8px;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('../../assets/images/common/lnb_navi_dw.png');
}
#container #lnb_menu > ul > li.active > a {
	color: var(--point-color-1);
}
#container #lnb_menu > ul > li.active > a:before {
	background-image: url('../../assets/images/common/lnb_navi_up.png');
}
#container #lnb_menu > ul > li.no_sub > a:before {
	display: none;
}
#container #lnb_menu > ul > li .depth2 {
	display: none;
}
#container #lnb_menu > ul > li .depth2 > ul > li > a {
	position: relative;
	display: flex;
	height: 4.4rem;
	padding: 0 2.2rem;
    color: var(--body-color-1);
    align-items: center;
}
#container #lnb_menu > ul > li .depth2 > ul > li > a:before {
	content: '';
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 6px;
	height: 2px;
	background-color: #d5d5d5;
}
#container #lnb_menu > ul > li .depth2 > ul > li.active > a {
	border-radius: 1.0rem;
	color: var(--hscity-white);
    background-color: var(--point-color-1);
}
#container #lnb_menu > ul > li .depth2 > ul > li.active > a:before {
	display: none;
}

/* 콘텐츠 */
#container .contents {
	flex: 1;
	width: 100%;
}
#container .table,
#container .table_boxline,
#container .table_form {
	margin-top: 0.8rem;
}
#container .table_boxline + .s_btn {
	margin-top: 4.0rem;
}
#container .tit_group > .s_title04 {
	margin-bottom: 2.5rem;
}
#container .tit_group + .tit_group {
	margin-top: 4.0rem;
}
#container .tit_group > .justify_area {
	margin-bottom: 2.5rem;
}

#container .tit_linebox {
	padding: 1.6rem 3.0rem;
	background: #eef2f7;
	border: 1px solid #e1e3e6;
	margin-bottom: 2.5rem;
}

#container .tit_group2 {
	border: 1px solid #e1e3e6;
}
#container .tit_group2 > .tBox {
	display: flex;
	padding: 1.6rem 3.0rem;
	background: #eef2f7;
	border-bottom: 1px solid #e1e3e6;
	align-items: center;
}
#container .tit_group2 > .tBox .right {
	margin-left: auto;
}
#container .tit_group2 > .cBox {
	padding: 2.0rem 3.0rem;
}
@media (max-width: 767px) {
	#container .tit_group2 > .tBox {
		padding: 1.2rem;
	}
	#container .tit_group2 > .cBox {
		padding: 1.2rem;
	}
}
@media (max-width: 420px) {
	#container .tit_group.mg_t40 {margin-top: 30px !important;}
	#container .tit_group + .tit_group {
		margin-top: 3.0rem;
	}
	#container .tit_group > .s_title04 {
		margin-bottom: 1.5rem;
	}
	#container .tit_group > .justify_area {
		margin-bottom: 1.5rem;
	}
	#container .tit_group2 .tBox .s_title04 {
		font-size: 1.5rem;
	}
}


/* 로케이션 */
.page_title {	
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    align-self: stretch;
    flex-direction: row-reverse;
    margin-bottom: 3.8rem;
}
.page_title .s_title01 {
	color: var(--body-color-2);
}
.page_title .page_nav {
    display: flex;
    align-items: center;
}
.page_title .page_nav {
	line-height: normal;
}
.page_title .page_nav > li {
	position: relative;
	display: inline-block;
	vertical-align: top;
	padding-left: 1.5rem;
	margin-left: 1.0rem;
	line-height: 2.1rem;
}
.page_title .page_nav > li > a,
.page_title .page_nav > li > span {
	display: inline-block;
	vertical-align: top;
	color: var(--body-color-1);
	font-size: 1.4rem;
}
.page_title .page_nav > li + li:after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 5px;
	height: 9px;
    background: url('../../assets/images/common/location_arr.png') no-repeat center center;
}
.page_title .page_nav > li:first-child {
	padding-left: 0;
	margin-left: 0;
}
.page_title .page_nav > li:first-child > a {
	overflow: hidden;
	display: inline-block;
	text-indent: -9999999em;
	width: 1.6rem;
	height: 2.1rem;
    background: url('../../assets/images/common/location_home.png') no-repeat center center;
}

@media all and (max-width: 800px) {
	.page_title {	
	    flex-direction: column;
	    gap: 3.2rem;
	    margin-bottom: 3.2rem;
	}
}
@media all and (max-width: 420px) {
	.page_title {
	    gap: 2.0rem;
	    margin-bottom: 2.0rem;
	}
	.page_title .page_nav > li > a,
	.page_title .page_nav > li > span {
		font-size: 1.3rem;
	}
}

.photo img {
	width: 210px;
	height: 220px;
	border: 1px solid #ccc;
}
/****************************************************************************** sub : 끝 */