/*플로팅메뉴*/
.floating_menu, .floating_menu_n{
    position: fixed;
    top: 670px;
    right: 50px;
    width: 109px;
    height: 109px;
    background: url(/images/icon/floating_menu.png);
    z-index: 9999;
    cursor: pointer;
}
.floating_menu_n {
    background: url(/images/icon/floating_menu_n.png);
}
.floating_menu_kakao{
    position: fixed;
    top: 780px;
    right: 50px;
    width: 109px;
    height: 109px;
    background: url(/images/icon/floating_kakao.png);
    z-index: 9999;
    cursor: pointer;
}

/*헤더*/
.header {
    width: 100%; height: 115px;
    color: #111;
    box-sizing: border-box;
    transition: all 0.8s;
    background: #fff;
    border-bottom: 1px solid #ccc;
}

.header_inner:hover ~ .lnb,
.lnb:hover {
    height: 315px;
}

.header_inner {
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.logo {
    width: 100px; height: 83px;
    background: url(/images/icon/ci_logo.svg);
    background-size: cover;
    margin-top: 15px;
}

.gnb_user {
    width: calc(100% - 100px);
}

.user_menu {
    text-align: right;
    margin: 15px 0 27px 0;
}

.user_menu li {
    font-size: 15px;
    color: #666;
    display: inline-block;
}

.user_menu .join {
    margin: 0 0 0 21px;
}

.gnb_search {
    display: flex;
}

.gnb {
    width: fit-content;
    margin: 0 auto;
}

.gnb li {
    display: inline-block;
    font-size: 19px;
    margin: 0 25px;
}

.gnb li:hover,
.gnb li.hover {
    font-weight: 500;
}

.search {
    width: 21px; height: 21px;
    background: url(/images/icon/search.svg);
    background-size: cover;
    cursor: pointer;
}

.lnb {
    position: relative;
    width: 100%; height: 0px;
    background: rgba(53, 183, 173, 0.90);
    color: #fff;
    transition: all 0.3s;
    margin-bottom: 20px;
    font-size: 15px;
    z-index: 9;
}

.lnb_inner {
    height: 100%;
    padding-left: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lnb ul {
    width: 80px;
    height: 100%;
    padding: 30px 15px 0 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.20);
}

.lnb ul:hover,
.lnb ul.hover {
	background: rgba(53, 183, 153);
}

.lnb .lnb_long {
    padding: 20px 55px 0 25px;
}

.lnb li {
    margin-bottom: 10px;
}

.lnb li:hover {
    cursor: pointer;
    font-weight: 700;
}

.ham_btn {
    display: none;
    width: 26px;
    height: 22px;
    background: url(/images/icon/ham_btn.svg);
    background-size: cover;
    margin-right: 20px;
}

#ham_chk {display: none;}
#ham_chk:checked ~ .mo_menu {left : 0;}

.mo_menu {
    position: fixed;
    top: 0; left: -100%;
    width: 100%; height: 100vh;
    background: #2AB69B;
    z-index: 99999999999999999;
    transition: all 0.3s;
    overflow-y: scroll;
    color: #fff;
}

.logo_close {
    height: 80px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.logo_img_wh {
    width: 25px; height: 30px;
    background: url(../../images/logo_white.svg);
    background-size: cover;
}

.close_btn {
    width: 20px; height: 22px;
    background: url(/images/icon/close_btn.svg);
    background-size: cover;
}

.logo_wh {
    width: 66px;
    height: 55px;
    background: url(/images/icon/ci_wh.svg);
    background-size: cover;
    margin: 0 auto;
}

.mo_user_menu {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 45px 0;
}

.mo_user_menu li {
    height: 33px;
    border: 1px solid #FFF;
    box-sizing: border-box;
    text-align: center;
    line-height: 33px;
    font-size: 15px;
    width:100%;
    margin-right:10px;
}
.mo_gnb_list {
    border-bottom: 1px solid rgba(255, 255, 255, 0.40);
    text-align: center;
}
.mo_gnb_list .child {
    display: none;
}
.mo_gnb_list_top {
    border-top: 1px solid rgba(255, 255, 255, 0.40);
}

.mo_gnb_list ul {
    border-top: 1px solid rgba(255, 255, 255, 0.40);
    padding: 15px 0;
    background: #2C9890;
}

.mo_gnb_list p {
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
}

.mo_gnb_list li {
    font-size: 15px;
    line-height: 35px;
}

.mo_menu_contact_us {
    width: 100%; height: 50px;
    background: #222;
    color: #FFF;
    font-weight: 600;
    text-align: center;
    line-height: 50px;
    margin: 50px 0;
}

/*반응형쿼리*/
@media screen and (max-width:1220px) {
    .gnb li {
        margin: 0 10px;
    }
}

@media screen and (max-width:1024px) {
    .header {
        height: 80px;
    }

    .header_inner {
        align-items: center;
    }

    .gnb, .user_menu, .lnb {display: none;}

    .ham_btn {display: block;}

    .logo {
        width: 66px;
        height: 55px;
        margin-top: 0;
    }

    .gnb_user {
        width: unset;
    }
}

@media screen and (max-width:768px) {
    .floating_menu,.floating_menu_kakao  {
        display: none;
    }
}

@media screen and (max-width:356px) {
    .mo_user_menu li {
        font-size:13px;
        margin-right:5px;
    }
}