body {
	display: flex;
	flex-direction: column;
	/* min-height: 100vh; */
	/* 화면 전체 높이 확보 */
	height: 100%;
	overflow-x: hidden;
}

body:has(.container_map) footer {
	padding-bottom: 90px;
}

/* body:has(.wrap:not(.nodimmed) .con_right.expand) { */
/* 	overflow-y : hidden; */
/* 	height: 100vh;	 */
/* } */

.wrap {
	width: 100%;
}

/* .wrap:has(.con_right.expand):not(.nodimmed):before{ */
/* 	content:''; */
/* 	position: absolute; */
/*     left: 0; */
/*     top: 0; */
/*     width: 100%; */
/*     height: 100%; */
/*     background: rgba(0, 0, 0, 0.5); */
/*     z-index: 6; */
/* } */

main {
	flex: 1;
	min-height: 80vh;
	padding-top: 108px;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    border: 0;
    padding: 0;
    margin-right: 8px;
    cursor: pointer;
    -webkit-appearance: none;
    background: none;
    background-color: #fff;
	border: 1px solid #000000;
	border-radius: 4px;
}

input:not(:disabled):checked[type="checkbox"] {
	background-image: url("/ecoenv/img/eco/ctzn/ico/ico_checkbox.svg");
    background-repeat: no-repeat;
    background-position: center;
	background-size: calc(100% + 2px) auto;
}


/** Header */
.header_main {
	display: block;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 8;
}

.header_nav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 6px #00000029;
	z-index: 3;
	padding-right: 14px;
}

.header_nav .logo_img,
.header_nav .logo_img img {
	height: 100%;
}

.header_nav .logo_img > a {
	display : block;
	height : 100%;
	overflow : hidden;
}

.header_nav .logo_img img {
	margin-top : 4px;
}


.header_nav .sitemap {
	display: flex;
	width: 33px;
	height: 100%;
}

.header_nav .sitemap>a {
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 7px 0;
	position: relative;
}

.header_nav .sitemap>a span {
	display: inline-block;
	width: 33px;
	height: 2px;
	background-color: #707070;
	transition: 0.5s;
}

.header_main:has(.sitemap_nav.show) .sitemap>a span:nth-child(2) {
	opacity: 0;
}

.header_main:has(.sitemap_nav.show) .sitemap>a span:first-child {
	transform-origin: 25% 50%;
	transform: rotate(45deg) translate(15%, 0%);
}

.header_main:has(.sitemap_nav.show) .sitemap>a span:last-child {
	transform-origin: 25% 50%;
	transform: rotate(-45deg) translate(15%, 25%);
}

/**사이트맵*/
.sitemap_nav {
	background-color: #ffffff;
	height: calc(100vh - 60px);
	transition: all 0.5s ease;
	transform: translateX(-100%);
	visibility: hidden;
	position: absolute;
	width: 100%;
	top: 60px;
	z-index: 2;
	padding-top : 30px;
}

.sitemap_nav.show {
	transform: translateX(0);
	visibility: visible;
}

.sitemap_item {
	width: 100%;
	text-align: center;
	padding : 27px 30px;
}

.sitemap_depth1 {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	padding: 32px 0;
	text-align : center;
	border : 1px solid #2A44A7;
	color : #2A44A7;
	border-radius : 6px;
	box-shadow: 0px 3px 6px #00000029;
}


.sitemap_item.on .sitemap_depth1{
	border-color : #F84C11;
	color : #F84C11;
}

/* 
.sitemap_depth1:after {
	content: '';
	width: 14px;
	height: 14px;
	display: inline-block;
	background-image: url("/ecoenv/img/eco/ctzn/ico/ico_more_thin.svg");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	right: 35px;
	top: calc(50% - 7px);
	transform: rotate(-180deg);
	transition: 0.5s;
}
 */
.sitemap_depth1.close:after {
	transform: rotate(0deg);
}

.sitemap_depth2 {
	font-size: 18px;
	font-weight: 400;
}

.sitemap_depth2 a {
	display: block;
	color: #131C59;
	padding: 7px 0;
}

.sitemap_depth2.active a {
	color: #F98B12;
	font-weight: 600;
}

.more_btn {
	position: absolute;
	right: 35px;
	top: 50%;
	transform: rotate(180deg);
}

.more_btn.active {
	transform: rotate(0deg);
	transition: 0.1s;
}


/** pc - 내비게이션 */
.nav {
	display: none;
	width: 50%;
	margin: 0 auto;
}

.gnb {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	height: 100%;
}

.gnbli {
	position: relative;
}

.gnbli>a {
	font-weight: 500;
	font-size: 18px;
	line-height: 57px;
	display: block;

	min-width: 200px;
	text-align: center;
}

.gnbli>a.on::after {
	content: "";
	display: block;
	clear: both;
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
	height: 4px;
	background: #FF674A 0% 0% no-repeat padding-box;
}

.menu {
	position: relative;
	display: none;
	z-index: 1;

}

.menuli {
	cursor: pointer;
}

.menuli>a {
	display: block;
	font-weight: 500;
	font-size: 18px;
	text-align: center;
	padding: 20px 0;
}

.menuli:hover>a,
.menuli.active>a {
	color: #F84410;
}

.menu_bg {
	position: absolute;
	display: none;
	left: 0;
	top: 60px;
	width: 100%;
	height: 200px;
	background: white;
	box-shadow: 0px 3px 6px #00000029;
	z-index : 1;
}

.menu_depth {
	display: none;
	width: 45%;
	float: right;
	font-weight: 500;
	font-size: 16px;
	color: #000000;
	opacity: 0.5;
	text-align: right;
}




/* 날씨, 발령 주의보 */
.header_info {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	height: 48px;
	padding: 0px 10px;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border-bottom: 1px solid #DBDBDB;
}

.header_info .weather_info {
	position: relative;
	display: flex;
	gap: 0 6px;
	align-items: center;
	font-size: 12px;
	font-weight: 500;
}

#todayWeather {
	display: none;
}

.header_info .alarm_info {
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	text-align: right;
	width : 45%;
	height : 100%;
	overflow : hidden;
/* 	cursor : pointer; */
	line-height : 1;
}

.header_info .alarm_info .swiper-slide { 
	padding : 0 2px;
	display: flex;
    justify-content: end;
    align-items: center;
}

.header_info .tp_info {
	margin-left: 30px;
}

.header_info .weather_icon {
	font-size: 0;
	background-color: #fff;
	position: relative;
	top: 0px;
	animation: weather_animation 1.5s linear infinite;
}

.slick-initialized .slick-slide{
	display:inline-block!important;
}
.slick-slide {
	width:400px;
}

@keyframes weather_animation {
	0% {
		top: 0px;
	}
	
	25% {
		top: -2px;
	}

	75% {
		top: 2px;
	}

	99% {
		top: 0px;
	}
}

.header_info .alarm_type::before {
	content: "";
	display: block;
	clear: both;
	width: 6px;
	height: 6px;
	border-radius: 100%;
	background: #FF674A;
	position: absolute;
	left: -12px;
	top: calc(50% - 3px);
	transition: 0.2s;
}

.header_info .alarm_type {
	color: #FF0000;
	position: relative;
	font:normal normal normal 12px/24px Noto Sans CJK KR;
}

.header_info .alarm_type > a {
	width : 15px;
	height : 15px; 
	font-size : 0;
	vertical-align : sub;
	margin-left: 6px;
}

.header_info .alarm_type >a img {
	width : 100%;
}

.header_info .alarm_date {
	display: none;
}


/** Footer */
.footer_wrap {
	/* display: none; */
	width: 100%;
	min-height: 78px;
	background: transparent linear-gradient(90deg, #0766AB 0%, #1C336F 100%) 0% 0% no-repeat padding-box;
	padding: 25px 27px 44px 27px;
	box-sizing: border-box;
}

.footer_logo {
	font-size: 0;
}

.footer_info {
	padding: 16px 0
}

.footer_wrap p {
	color: white;
	font: normal normal normal 12px/27px Noto Sans CJK KR;
	line-height: 1;
}

.footer_wrap p span {
	color: #fff;
}

.footer_wrap p+p {
	margin-top: 10px;
	line-height: 2.4;
}

.copyright {
	margin-left: auto;
	margin-right: 0;
}


/* 태블릿 (768px ~ 1023px) */
@media (min-width: 768px) {

	.footer_wrap p br {
		display: none;
	}

	.footer_wrap p span {
		margin-left: 16px;
	}


}

/* 데스크탑 이상  - 1024px 이상*/
@media (min-width : 1024px) {
	body:has(.container_map) {
		padding-bottom: 0;
	}

	/* header */
	.header_nav {
		align-items: normal;
		padding: 0px 50px;
	}

	.sitemap {
		display: none;
	}

	.header_info {
		padding: 0px 50px;
	}

	.header_nav .sitemap {
		display: none;
	}

	.sitemap_nav {
		display: none !important;
	}

	.header_info .weather_info {
		font-size: 14px;
		gap: 0 8px;
	}

	.header_info .weather_icon {
		margin-left: 25px
	}

	.header_info .alarm_info {
		font-size: 20px;
		display: flex;
		align-items: center;
	}

	.header_info .alarm_type::before {
		width: 8px;
		height: 8px;
		left: -14px;
		top : calc(50% - 3px);
	}

	.header_info .alarm_info .alarm_date {
		display: inline-block;
		font: normal normal normal 12px/24px Noto Sans CJK KR;
		opacity: 0.5;
		margin-left:10px;
	}

	/* footer */
	.footer_wrap {
		display: flex;
		gap: 0 46px;
		align-items: center;
		padding: 18px 50px 16px 50px;
	}

	body:has(.container_map) footer {
		padding-bottom: 16px;
	}

	.footer_logo img {
		max-height: 78px;
	}

	.footer_wrap p+p {
		margin-top: 16px;
		line-height: 1;
	}
}