@charset "utf-8";

#treeMap{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* logo */
.logo{
    width: 86px;
    height: 99px;
}

/* gnb */
.gnb_txt{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.gnb_txt h5{
    font-size: 1.25rem ;
    font-weight: 600;
}
.gnb_box{
    position: relative;
    width: calc(100% - 106px);
    display: flex;
    justify-content: space-between;
}
.gnb_box .gnb{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.gnb ul{
    position: relative;
    display: flex;
    gap: 30px;
    align-items: center;
}
.gnb ul li {
    display: flex;
    align-items: center;
}
.gnb ul li a:hover {
    color: #0c6000;
}
.gnb ul li::after{
    content: '';
    display: inline-block;
    width: 1px;
    height: 20px;
    background-color: #cbcbcb;
    margin-left: 30px;
}
.gnb ul li:last-child::after{
    display: none;
}
.gnb_box .gnb ul li.on a{
    font-weight: 600;
    color: #0c6000;
}
/* .gnb_box .log.out .login{
    display: none;
} 
.gnb_box .log.in .logout{
    display: none;
}*/
.gnb_box .log{
    margin-top: auto;
}

/* header */
header{
    position: relative;
    width: 100%;
    box-shadow: 1px 1px 2px 0px #dadada;
    z-index: 1
}
header .header_wrap {
    display: flex;
    position: relative;
    padding: 20px 0;
    flex-direction: row;
    gap: 20px;
    height: 140px;
    margin: auto;
    max-width: 1200px;
}
header a{
    font-size: 1.1rem;
}
header a:hover {
    color: #0c6000;
}

/* container */
.container{
    position: relative;
    width: 100%;
    height: 100%;
}

/* main */
main{
    position: relative;
    width: 100%;
    height: calc(100% - 140px);
}

/* sub_page */
#sub_page{
	overflow-x: hidden;
    overflow-y: auto;
    background-color: #f5f5f5;
}
#sub_page .sub{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#sub_page .sub_main{
    position: relative;
    background-color: #fff;
    width: 1200px;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    flex: 1 0;
    flex-basis: 0;
    padding: 40px 0;
}
.sub_main.bg{
    background: url('../../images/assets/img_intro_bg.png') right 50px bottom 40px no-repeat;
    background-color: #fff;
}

/* main_wrap */
.main_wrap{
    position: relative;
    width: 900px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}
.main_wrap .title {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.main_wrap .title h2{
    font-size: 1.8rem;
    font-weight: 550;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
.main_wrap .title::after{
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background-color: #a8d868;
}

/* map_list */
.map_list{
    position: absolute;
    width: 510px;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #cbcbcb;
    border-top: 1px solid #cbcbcb;
    box-sizing: border-box;
    z-index: 999;
    transition: all 0.5s;
}
.map_list.off{
    left: -512px;
    transition: all 0.3s;
}


/* content_wrap */
.content_wrap{
    position: relative;
    width: 100%;
    flex: 1 0;
    flex-basis: 0;
    padding: 30px 15px;
    overflow-y: auto;
}
.cont_box{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.cont_box .contStats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.content_info_box{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* map_container */
.map_container{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url('../../images/data_loading.gif') 50% 50% no-repeat;
    background-size: inherit;
    background-color: rgb(0 0 0 / 10%);
}

/* popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;  /* display 속성은 한 번만 선언 */
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
.popup_box.w300 {
    min-width: 300px;
}
.popup_box.w600 {
    min-width: 600px;
}
.popup_box.w800 {
    min-width: 800px;
}
.popup_cont {
    display: flex;
    padding: 30px;
    position: relative;
    flex-direction: column;
    width: 100%;
    justify-content: center;
}
.popup_box{
    position: relative;
    align-items: center;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #dedede;
    background-color: #fff;
    border-radius: 5px;
}
.popup_tit{
    position: relative;
    width: 100%;
    text-align: center;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup_tit::before{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #cbcbcb;
    position: absolute;
    bottom: 0;
    margin: 0 auto;
}
.popup_tit h3{
    font-size: 1.15rem;
    font-weight: 600;
    width: 100%;
}
.popup_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.popup_btn button{
    padding: 10px;
    width: 100%;
}
.popup_btn button{
    padding: 10px 30px;
    width: 100%;
}
.popup_btn {
    position: relative;
    margin-top: 30px;
    bottom: 0;
    background-color: #fff;
    z-index: 8;
}
.popup_btn .btn_act{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-left: auto;
}

/* paging */
.paging{
    position: relative;
    width: 100%;
}

.paging p{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.paging span a{
    border: 1px solid #cbcbcb;
    border-radius: 3px;
    padding: 5px 10px;
}

.paging span a.on{
    border: 1px solid #50802c;
    background-color: #50802c;
    color: #fff;
}
.paging span a:not(.on):hover {
    color: #0c6000;
}




