@charset "utf-8";
/* CSS Document */

header{
	height: auto !important;
}

.header_new {
	width: 100%;
	border-bottom: 1px solid #d9d9d9;
	}


/************************ top_bar 영역 *************************/
.header_new .top_bar{
	background-color:#f9f9f9; 
	border-bottom: 1px solid #ebebeb;
}

.header_new .top_bar_area {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 20px;
	}

.header_new .top_bar h1 img{
	height: 44px;
	width: auto;
	}

.header_new .top_bar .top_link ul{	
	display: flex;
	align-items: center;
	}

.header_new .top_bar .top_link ul li{
	display: flex;
	align-items: center;
	}

.header_new .top_bar .top_link ul li a{
	position: relative;
	display: block;
	padding: 2px 14px 2px 12px;
	font-size: 14px;
	color: #444444;
	line-height: 40px;
}
.header_new .top_bar .top_link ul li a:hover{
	color: #101010;
}

.header_new .top_bar .top_link ul li a:after{
	display: block;
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -5px;
    background: #000000;
    opacity: .2;
    height: 12px;
    width: 1px;
	}

.header_new .top_bar .top_link ul li:nth-child(3) a:after,.header_new .top_bar .top_link ul li.btn_security a:after{
    content: '';
    background: transparent;
    opacity: .0;
    height: 0px;
    width: 0px;
	}

.header_new .top_bar .top_link ul li.btn_security a{
	width: 80px;
	color: #ffffff;
	padding-left: 30px;
	padding-right: 0px;
	background-image: url("../../images/main_new/icon_login.svg");
	background-position: left 0.7em center;
	background-size: 16px 16px;
	background-repeat: no-repeat;
	background-color: #444444;
	box-sizing: border-box;
}

.header_new .top_bar .top_link ul li.btn_security a:hover{
	color: #ffffff;
	background-color: #101010;
	transition: all .3s;
}


.header_new .top_bar .top_link ul li.btn_logout a{
	padding: 2px 0px;
	background-image: none !important;
	text-align: center;
}


/************************ GNB 영역 *************************/

.header_new .gnb {
	position: relative;
	text-align: center;
}

/* 1depth 메뉴 */
.header_new .gnb .gnb_menu{
  position: relative;
  display: flex;
  justify-content:normal /*space-between*/;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 16px;
  padding: 0 120px 0 20px;
  box-sizing: border-box;
  text-align: left;
}

.header_new .gnb .gnb_menu > li {
  position: relative;
  /*flex: 1;*/
  display: inline-block;
  text-align: left;
}

.header_new .gnb .gnb_menu > li > a {
  display: block;
  padding: 19px 0px; 
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  white-space: normal;
  word-break: keep-all; 
  overflow-wrap: break-word;
	
}

.header_new .gnb .gnb_menu01{width: 12.0%;}
.header_new .gnb .gnb_menu02{width: 13.1%;}
.header_new .gnb .gnb_menu03{width: 19.7%;}
.header_new .gnb .gnb_menu04{width: 13.1%;}
.header_new .gnb .gnb_menu05{width: 10.5%;}
.header_new .gnb .gnb_menu06{width: 10.2%;}
.header_new .gnb .gnb_menu07{width: 14.2%;}
.header_new .gnb .gnb_menu08{width: 7.2%;}

.btn_history{
	position: absolute;
	z-index: 5;
	top:45px;
	right:20px;
}

.btn_history a{
	display: block;
	width: 80px;
	color: #ffffff;
	padding: 30px 0px 10px 0px;
	background-image: url("../../images/main_new/icon_login.svg");
	background-position: top 0.7em center;
	background-size: 16px 16px;
	background-repeat: no-repeat;
	background-color: #ffa800;
	box-sizing: border-box;
	font-size: 14px;
	text-align: center;
	font-weight: 400;
	transition:.3s
}

.btn_history a:hover{
	color: #ffffff;
	background-color: #f39800;
	transition: all .3s;
}


/* 메뉴 hover 시 글자 강조 */
.header_new .gnb .gnb_menu > li:hover > a,.header_new .gnb .gnb_menu > li.active > a{
	color: #0081e2;
	transition: .3s;
}

.header_new .gnb .gnb_menu > li:hover > a::before,.header_new .gnb .gnb_menu > li.active > a::before{
	content: '';
	position: absolute;
	top: 9px;
	left:5px;
	width: 5px;
	height: 5px;
	border-radius: 2.5px;
	background: #00a0e9;
}

.header_new .gnb .gnb_menu > li:hover > a::after,.header_new .gnb .gnb_menu > li.active > a::after{
	content: '';
	position: absolute;
	top: 9px;
	left:18px;
	width: 5px;
	height: 5px;
	border-radius: 2.5px;
	background: #fabe00;
}

.header_new .gnb .gnb_2depth {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	background: #0081e2;
	padding: 12px 0px;
	display: none;
	z-index: 10;	
	transition: .3s;
}

/* 1depth 메뉴 hover 시 전체 2depth 펼침 */
.header_new .gnb:hover .gnb_2depth {
	display: block;
	transition:.3s;
}

.header_new .gnb .gnb_2depth > ul {
	display: flex;
	justify-content: normal /*space-between*/;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	font-size: 16px;
	padding: 0 120px 0 20px;
	box-sizing: border-box; 
}

.header_new .gnb .gnb_2depth > ul > li {
	/*flex: 1;*/
	text-align: left;
}


.header_new .gnb .gnb_2depth ol > li a{
	color: #ffffff;
	font-size: 14px;
	line-height: 16px;
	font-weight: 400;
	transition:.3s;
	padding-top: 7px;
	padding-bottom: 7px;
	display: block;
	white-space: normal;
	word-break: keep-all; 
	overflow-wrap: break-word;
}

.header_new .gnb .gnb_2depth ol > li a:hover,.header_new .gnb .gnb_2depth ol > li a.active{
	color: #fabe00;
	font-weight: bold;
}





/************************ container 영역 공통 *************************/
.main_container h2.main_h2{
	font-size: 42px;
	font-weight: bold;
	line-height: 52px;
	color: #000000;
	text-align: center;
}

.main_container h2.main_h2 .main_h2_text{
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	color: #0068b7;
	display: block;
	margin-bottom: 8px;
}

.main_container h2.main_h2 .main_h2_text span{
	color: #00a0e9;
}

.main_container h3.main_h3{
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	color: #000000;
	text-align: center;
}


.main_container .main_tab{
	padding: 4px;
	background: #ffffff;
	border-radius: 6px;
}

.main_container .main_tab ul{
	display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
    padding: 0;
    box-sizing: border-box;
	gap:4px;
}

.main_container .main_tab ul li{
	flex: 1;
    text-align: center;
}

.main_container .main_tab ul li a{
	display: block;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #666666;
	padding: 11px;
	text-align: center;
}

.main_container .main_tab ul li a:hover,.main_container .main_tab ul li a.active{
	font-weight: 500;
	color: #ffffff;
	background: #222222;
	border-radius: 6px;
	transition: .3s;
}



.hidden{
	position: absolute;
	top: -100000px;
	left: -100000px;
	display: none !important;
	width: 1px;
	height: 1px;
	margin: -10px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}





/************************ main_map *************************/
.main_container .main_map{
	width: 100%;
	padding: 48px 0px;
	background: linear-gradient(180deg, #FFF 0%, #E9F5FE 50%);
}

.main_map h2.main_h2{
	text-align: left;
	max-width: 1280px;
    padding-left: 20px;
    margin: 0 auto;
    box-sizing: border-box;
}
.main_map .main_h2 p{
	text-align: left;
}

.main_map .main_map_area{
	width: 100%;
    max-width: 1280px;
    padding: 0 20px;
    margin: 48px auto 0;
    box-sizing: border-box;
}

.main_map .main_tab{
	width: 50%;
	box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.08);
}

.main_map .main_map_con .main_map_tit{
	position: relative;
}

.main_map .main_map_con .main_map_tit .tit{
	font-size: 24px;
	font-weight: bold;
	line-height: 32px;
	color: #0793e9;
	letter-spacing: -1px;
	text-align: left;
}

.main_map .main_map_con .main_map_tit > dl{
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 2px;
	margin-left: 2px;
}

.main_map .main_map_con .main_map_tit > dl dt{
	color: #000000;
	font-size: 16px;
	line-height: 32px;
	font-weight: bold;
	min-height: 32px;
}

.main_map .main_map_con .main_map_tit > dl dd span{padding-left: 16px;}
.main_map .main_map_con .main_map_tit > dl .up {color: #f34f4f;}
.main_map .main_map_con .main_map_tit > dl .down {color: #00a0e9;}

.main_map .main_map_con .main_map_tit > dl .up span{
	background: url("../../images/main_new/icon_up.svg") left center / 14px 14px;
	background-repeat: no-repeat;
}

.main_map .main_map_con .main_map_tit > dl .down span{
	background: url("../../images/main_new/icon_down.svg") left top 6px / 14px 14px;
	background-repeat: no-repeat;
}

.main_map .main_map_tit .btn_more{
	position: absolute;
	top: 0px;
	right: 0;
	background: none;
	border: none;
	cursor: pointer;
}

.main_map .main_map_tit .btn_more span{
	position: relative;
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	color: #222222;
	padding: 8px 36px 8px 8px;
	display: block;
}


.main_map .main_map_tit .btn_more span::after{
	content: '';
	position: absolute;
	top:6px;
	right: 8px;
	width:20px;
	height: 20px;
	background: url("../../images/main_new/btn_more.svg") center center / 20px 20px;
	background-repeat: no-repeat;
}


.main_map .main_chart > div{
	display: block;
	padding: 28px 20px;
	border-radius: 24px;
	background: #f9fdff;
	text-align: center;
	margin-top: 20px;
}

.main_map .main_chart .main_chart_tit{
	display: inline-block;
	font-size: 15px;
	font-weight: 400;
	color: #000000;
	padding-left: 28px;
	margin-bottom: 12px;
}

.main_map .main_chart01 .main_chart_tit{
	background: url("../../images/main_new/icon_high.svg") left center / 24px 24px;
	background-repeat: no-repeat;

}
.main_map .main_chart01 .main_chart_tit span{
	font-weight: bold;
	color: #f26c4f;
}

.main_map .main_chart02{margin-top: 16px;}

.main_map .main_chart02 .main_chart_tit{
	background: url("../../images/main_new/icon_low.svg") left center / 24px 24px;
	background-repeat: no-repeat;

}
.main_map .main_chart02 .main_chart_tit span{
	font-weight: bold;
	color: #0081e2;
}

.main_map .main_chart .main_chart_box{
	display: block;
	text-align: center;
}

.main_map .main_chart .main_chart_box img{
	max-width: 502px;
	height: auto;
}


.main_map .main_map_con{
    display: flex;
	align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

.main_map_con > div{
	position: relative;
    flex: 1;
    text-align: center;
	width: 50%;
	margin-top: 24px;
}

.main_map_con .main_map_left{
	padding-right: 40px;
	box-sizing: border-box;
}

.main_map_con .main_map_right{
	margin-top: -160px;
	max-height: 770px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.main_map_con .main_map_box img{
	width: 100%;
	max-width: 640px; 
	height: auto;
}

/* 
.main_map_con .main_map_item li{display: none; padding-top: 40px;}
.main_map_con .main_map_item li.active{display: block !important;} 
*/

.main_map_con .main_map_item li { 
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    position: absolute;
}
.main_map_con .main_map_item li.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    height: auto;
}


.main_map_con .main_map_item .main_item_box{
    display: flex;
	position: absolute;
	top: 0px;
	left: 20px;
}

.main_map_con .main_map_item .main_item_box .map_tit{
    line-height: 36px;
    font-size: 16px;
    padding-left: 16px;
	font-weight: bold;
	color: #222222;
}

.main_map_con .main_map_item .main_item_box .map_tit span{
    line-height: 36px;
    font-size: 16px;
    padding-left: 10px;
	font-weight: 500;
	color: #444444;
}

.main_map_con .main_map_item .btn_prev{
	width: 36px;
	height: 36px;
	background: rgba(0, 0, 0, 0.3) url("../../images/main_new/btn_prev.svg") center center / 32px 32px;
	background-repeat: no-repeat;
	border-radius: 18px;
	border: none;
	cursor: pointer;
	
}

.main_map_con .main_map_item .btn_prev::after{
	content: '';
	position: absolute;
	top:6px;
	right: 8px;
	width:20px;
	height: 20px;
}








/************************ main_link *************************/
.main_container .main_link{
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 80px 20px;
}

.main_link .main_link_area{
	display: flex;
    justify-content: space-between;
	margin-top: 48px;
    width: 100%;
	gap:32px;
}


.main_link .main_link_area > div{
	flex: 1;
	border-radius:20px;
	padding: 32px 24px;
	text-align: center;
}


.main_link_box .img{
	position: relative;
	width: 124px; 
	height: 124px;
	margin: 0 auto;
	background: #FFFFFF;
	border-radius: 50%;
}

.main_link_box .tit{
	margin-top: 20px;
	font-size: 20px;
	font-weight: 700;
	line-height: 32px;
	color: #000000;
}


.main_link_box .txt{
	font-size: 15px;
	line-height: 22px;
	color: #444444;
	margin-top: 12px;
	margin-bottom: 20px;
}


.main_link_box .btn_area{
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	max-width: 420px;
	justify-content: center; 
	margin: 0 auto; 
}

.main_link_box .btn_area .btn_main_link{
  flex: 0 0 calc(50% - 4px);
  display: flex;
  align-items: center;
  justify-content: space-between; 
}


.main_link_box .btn_main_link{
	width: 180px;
	max-width: 168px;
	font-size: 14px;
	line-height: 16px;
	font-weight: 700;
	color: #ffffff;
	padding: 12px 32px 12px 16px;
	background: #ddd url("../../images/main_new/btn_arr.svg") right 0.8em center / 20px 20px;
	background-repeat: no-repeat;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	box-sizing: border-box;
	text-align: left;
    transition:.3s;
}


.main_link_box .btn_main_link span{
	width: 110px;
	text-align: left;
}


.main_link_box.main_link_blue{background: #e6f6fd;}
.main_link_box.main_link_blue .btn_main_link{background-color: #0793e9;}
.main_link_box.main_link_blue .btn_main_link:hover{
	background-color: #0081e2;
	box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.22);
}


.main_link_box.main_link_green{background: #e6fdf0;}
.main_link_box.main_link_green .btn_main_link{background-color: #44a633;}
.main_link_box.main_link_green .btn_main_link:hover{
	background-color: #188705;
	box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.22);
}


.main_link_box.main_link_org{background: #fdf8e6;}
.main_link_box.main_link_org .btn_main_link{background-color: #ffa800;}
.main_link_box.main_link_org .btn_main_link:hover{
	background-color: #f38e00;
	box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.22);
}





/************************ main_issue *************************/

.main_container .main_issue{
	width: 100%;
	padding: 80px 0px;
	background: #f5f7f9;	
}

.main_issue .main_issue_area{
	width: 100%;
	max-width: 1280px;
	padding: 0 20px;
	margin: 48px auto 0;
	box-sizing: border-box;
}

.main_issue_con .main_h3{
	padding:24px 0px;
}

.main_issue_con .main_issue_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.main_issue_con .issue_item {
	padding: 0px; 
	text-align: left; 
	display: flex; 
	gap: 12px 28px;
	flex-direction: column; 
	flex-wrap: wrap;
	height: 380px;
    overflow-y: auto;
}


.main_issue_con .issue_item li {
	display: flex; 
	font-size: 16px; 
	justify-content: space-between; 
	gap: 8px; 
	align-items: center;
}

.main_issue_con .issue_item li .num{
	font-size: 12px;
	font-weight: bold;
	line-height: 24px;
	color: #666666;
	font-family: 'Malgun Gothic', '맑은 고딕','Noto Sans KR', sans-serif;
	width: 24px;
	height: 24px;
	text-align: center;
	background: #ebebeb;
	border-radius: 12px;
	letter-spacing: -1px;
}

.main_issue_con .issue_item li:nth-child(1) .num,
.main_issue_con .issue_item li:nth-child(2) .num,
.main_issue_con .issue_item li:nth-child(3) .num{
	color: #ffffff;
	background: #ffa800;
}

.main_issue_con .issue_item li .text{
	flex: 1;
	font-size: 15px;
	line-height: 24px;
	color: #444444;
	margin-right: 8px;
	min-width: 100px;
}

.main_issue_con .issue_item li .state{
	font-size: 12px;
	font-weight: bold;
	line-height: 16px;
	padding: 4px 10px 4px 24px;
	border-radius: 4px
}

.main_issue_con .issue_item li .state.up{
	color: #f34f4f;
	background: #f5e7e9 url("../../images/main_new/icon_up.svg") left 6px center / 14px 14px;
	background-repeat: no-repeat;
}

.main_issue_con .issue_item li .state.down{
	color: #00a0e9;
	background: #ddeff8 url("../../images/main_new/icon_down.svg") left 6px center / 14px 14px;
	background-repeat: no-repeat;
}




/************************ popup *************************/
.popup_wrap {
  position: fixed;
  inset: 0; 
  z-index: 1000;
}

/* 배경 딤 */
.popup_wrap .deemed {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 9999;
}

/* 팝업 박스 */
.popup_wrap .popup {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 24px;
  padding: 10px 15px 10px;
  width: 530px;
  max-width: calc(100% - 40px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  z-index: 11000;
}

.popup_header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.popup_header > div {
  flex: 1;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.popup_header .btn_closelayer {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
}

/* X 아이콘 (before / after로 만들기) */
.popup_header .btn_closelayer::before,
.popup_header .btn_closelayer::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #333;
  transform-origin: center;
}

.popup_header .btn_closelayer::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.popup_header .btn_closelayer::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}


.popup_container {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 18px;
  border-bottom: 1px solid #eee;
  padding-bottom: 16px;
}


.check_today_new {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: #666;
}

.check_today_new label{
	flex: 1;
	align-items: center;
	display: block;
	margin-right: 5px;
	cursor: pointer;
}

.check_today_new label input[type=checkbox]{
	display: none;
}

.popup_checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.popup_checkbox_show {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 4px;
	border: 1px solid #d0d3d9;
	background: #fff;
	vertical-align: middle;
	position: relative;
	margin-right: 10px;
}

.popup_checkbox:checked + .popup_checkbox_show {
  background: #000;
  border-color: #000;
}

.popup_checkbox:checked + .popup_checkbox_show::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 7px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.btn_close {
  min-width: 72px;
  padding: 8px 18px;
  border-radius: 6px;
  border: none;
  background: #222222;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}






@media (max-width: 1023px) {
	.main_container .main_map{
	background: linear-gradient(180deg, #FFF 0%, #E9F5FE 30%);
}
	
	.header_new .gnb .gnb_menu > li > a {
    font-size: 14px;
	letter-spacing: -1px;
	}
	
	.header_new .gnb .gnb_2depth ol > li a{
	font-size: 12px;
	letter-spacing: -1px;	
	}
	
	
	.main_map .main_map_con{
    display: block;
    align-items: flex-end;
    justify-content: space-between;
	}
	
	.main_map h2.main_h2{text-align: center;}
	.main_map .main_h2 p{text-align: center;}
	.main_map .main_tab {width: 100%; box-sizing: border-box;}
	.main_map_con > div{width:100%;}
	.main_map_con .main_map_left {padding-right: 0px;}
	.main_map_con .main_map_right {margin-top: 60px;}
	.main_link .main_link_area {gap: 20px;}
}

@media (max-width: 854px) {
	
	.btn_history a{
		padding-bottom: 21px;
	}
	
}
