/*플로팅메뉴*/
.fab {
    position: fixed;
    right: 30px; top: 60%;
    z-index: 999999;
    animation-name: fab;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
.fab p{
    color:#555;
}
@keyframes fab {
    0% {top: 59%;}
    50% {top: 60%;}
    100% {top: 59%;}
}

.inquiry_btn {
    display: block;
    width: 60px;
    height: 60px;
    background: url(/images/icon/inquiry_btn.svg);
    background-size: cover;
    margin: 0 auto;
    margin-bottom: 5px;
    cursor: pointer;
}

.fab:hover .inquiry_btn {
    background: url(/images/icon/inquiry_btn_on.svg) center center no-repeat;
}

@media screen and (max-width:600px) {
    .fab {
        display: none;
    }

}

/*헤더*/
.header {
    position: relative;
    background: #fff;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.10);
}

.header_inner {
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo_bl {
    width: 266px; height: 49px;
    background: url(/images/logo_bl.png);
}

.search_box {
    width: 405px;
    height: 46px;
    padding: 12px 10px 12px 28px;
    box-sizing: border-box;
    border: 2px solid #222;
    border-radius: 50px;
}

.search_txt {
    width: calc(100% - 40px);
    float: left;
    background: none;
    border: none;
    outline: none;
    font-family: Pretendard;
    color: #888;
    font-size: 15px;
}

.search_btn {
    float: right;
    width: 25px;
    height: 26px;
    border: none;
    background: url(/images/icon/search.svg);
    cursor: pointer;
    margin-top: -4px;
}

.user_blog {
    display: flex;
    align-items: center;
}

.user_menu li {
    display: inline-block;
}

.user_menu .login {
    margin-left: 16px;
}

.blog {
    display: block;
    width: 72px; height: 27px;
    background: url(/images/icon/blog.svg);
    margin-left: 20px;
}

.lnb {
    position: absolute;
    bottom: -60px;
    width: 100%;
    background: #333;
    z-index: 910;
    overflow: hidden;
    transition: all 0.3s;
}

.lnb:hover {
    bottom: -263px;
}

.lnb:hover .lnb_memu_box {
    height: 263px;
}

.lnb_memu_box {
    height: 60px;
    display: flex;
    justify-content: center;
    color: #FFF;
    font-size: 20px;
    text-align: center;
    transition: all 0.3s;
}

.lnb_memu_box li {
    cursor: pointer;
}

.lnb_memu {
    margin-right: 100px;
    line-height: 60px;
}

.lnb_memu > a:hover {
    color: #B877DC;
    font-weight: 600;
}

.lnb_memu .on {
    color: #B877DC;
    font-weight: 600;
}

.lnb_memu:last-child {
    margin-right: 0;
}

.lnb_sub_memu_box {
    font-size: 16px;
}

.lnb_sub_memu_box li {
    line-height: 40px;
}

.lnb_sub_memu_box li:hover {
    line-height: 40px;
    color: #B877DC;
    font-weight: 600;
}

/*모바일헤더*/
#search_chk, #ham_chk {display: none;}
#search_chk:checked ~ .mo_search_box {height: 80px;}
#search_chk:checked ~ .mo_header_box .mo_search_btn {
    width: 16px;
    height: 16px;
    background: url(/images/icon/mo_search_btn_on.svg);
}
#ham_chk:checked ~ .mo_nav_box {right: 0;}
.mo_search_box {
    width: 100%;
    position:absolute;
    top:50px;
    height: 0px;
    background: #fff;
    z-index: 9999999;
    transition: all 0.3s;
    overflow: hidden;
}
.mo_header_box {
    position: relative;
    z-index: 9999999999999999;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.10);
}

.mo_header_inner {
    display: none;
}

.mo_header {
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mo_logo_bl {
    width: 110px;
    height: 20px;
    background: url(/images/mo_logo_bl.png);
}

.mo_logo_bl img {
    width: 100%; height: 100%;
}

.mo_search_btn {
    float: left;
    width: 16px; height: 16px;
    background: url(/images/icon/mo_search_btn.svg);
    margin: 0 17px 0 0;
}

.ham_btn {
    float: right;
    width: 20px; height: 14px;
    background: url(/images/icon/ham_btn.svg);
}



.mo_search {
    width: calc(100% - 40px);
    height: 40px;
    border-radius: 20px;
    border: 1.5px solid #222;
    background: #FFF;
    padding: 12px 20px;
    box-sizing: border-box;
    margin: 20px;
}

.mo_search .mo_search_txt {
    width: calc(100% - 16px);
    float: left;
    background: none;
    border: none;
    outline: none;
    font-family: Pretendard;
    color: #888;
    font-size: 14px;
}

.mo_search .mo_search_btn {
    float: right;
    width: 16px; height: 16px;
    background: url(/images/icon/mo_search_btn.svg);
    border: none;
    cursor: pointer;
    margin: 0;
}

.mo_user_blog {
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.mo_nav_box {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100vh;
    z-index: 99999999999999999;
    transition: all 0.3s;
    overflow-y: scroll;
}

.mo_nav_top {
    position: relative;
    text-align: center;
    height: 50px; line-height: 50px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
    background: #fff;
}

.back_btn {
    position: absolute;
    left: 20px; top: 50%;
    margin-top: -12px;
    width: 24px; height: 24px;
    background: url(/images/icon/back_btn.svg);
}

.mo_menu_box {
    padding: 20px 0 200px 0;
    background: #333;
    color: #FFF;
}

.mo_menu_list {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 500;
}

.mo_nav_mg_b {
    margin-bottom: 12px;
}

.mo_menu_list_sub {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    /* justify-content: space-between; */
}

.mo_menu_list_sub li {
    width: calc(50% - 20px);
    font-size: 16px;
    font-weight: 400;
}

@media screen and (max-width:1024px) {
    .header_inner, .lnb {display: none;}
    .mo_header_inner {display: block;}
}