#header{
    width: 100%;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
}

#header.scroll .h02{
    position: fixed;
    top: 0;
    left: 0;
    border-bottom: 1px solid #d7d7d7;
}

.h01{
    width: 100%;
    height: 95px;
    box-sizing: border-box;
    background-color: #fff;
}

.h01 .center{
    height: 100%;
    position: relative;
}

.h01 .center>a{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.user_lang{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

ul.user{
    display: flex;
}

ul.user li{
    padding: 0 20px;
    font-size: 14px;
    line-height: 14px;
    font-family: 'Pretendard-Medium', sans-serif;
    border-right: 1px solid #999;
    cursor: pointer;
}

ul.user li:last-child{
    border-right: 0;
}

ul.lang{
    display: flex;
    align-items: center;
}

ul.lang li{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.h02{
    width: 100%;
    position: relative;
    background-color: #fff;
}

.main_menu{
    width: 100%;
    height: 55px;
}

.main_menu .center{
    height: 100%;
}

.main_menu ul{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.main_menu ul li{
    height: 100%;
    font-size: 18px;
    font-family: 'Pretendard-Bold', sans-serif;
    color: #111;
    cursor: pointer;
    position: relative;
}

.menu_contain{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_menu ul li.hover_t:hover{
    color: #fe5382;
}

.main_menu ul li.hover_t.hov{
    color: #fe5382;
}

ul.sub_menu li.hov{
    color: #fe5382;
    list-style-type: disc;
}

.main_menu ul li.point_li{
    width: 135px;
}

.motion_menu{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.motion_menu span{
    position: absolute;
    display: block;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(255, 40, 108, 0.1);
    animation: full_width infinite 2s ease-in-out;
}

@keyframes full_width{
    0%{
        width: 0;
        opacity: 0;
        left: 0;
    }

    50%{
        width: 100%;
        opacity: 1;
    }

    100%{
        width: 0%;
        opacity: 0;
        left: initial;
        right: 0;
    }
}

.motion_menu img{
    position: absolute;
}

.motion_menu p{
    position: absolute;
    font-size: 14px;
    color: #ff286c;
    font-family: 'Pretendard-ExtraBold', sans-serif;
    top: 10px;
    left: 13px;
    transform: rotate(-25deg);
}

img.menu_p1{
    top: 4px;
    left: 4.5px;
    opacity: 0;
    animation: twinkle infinite .7s linear;
}

@keyframes twinkle{
    0%{
        opacity: 0;
    }

    20%{
        opacity: 0.3;
    }

    50%{
        opacity: 0.7;
    }

    80%{
        opacity: 1;
    }

    100%{
        opacity: 0.5;
    }
}

img.menu_p2{
    top: 6px;
    right: 23px;
    animation: twinkle infinite .7s linear;
}

.under_box{
    position: absolute;
    width: 0;
    height: 7px;
    opacity: 0;
    bottom: 8px;
    left: 18px;
    overflow: hidden;
    animation: img_width infinite 2s ease-in-out;
}

@keyframes img_width{
    0%{
        width: 0;
        opacity: 0;
    }

    50%{
        width: 100px;
        opacity: 1;
    }

    100%{
        width: 100px;
        opacity: 0;
    }
}

img.menu_p3{
    top: 0;
    left: 0;
}

.sub_menubox{
    height: 50px;
    display: none;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}

.main_menu ul li:first-child .sub_menubox{
    left: 0;
    transform: none;
}

.main_menu ul li:nth-child(2) .sub_menubox{
    left: 0;
    transform: translateX(-130px);
}

.main_menu ul li:nth-child(3) .sub_menubox{
    left: 0;
    transform: translateX(-335px);
}

.main_menu ul li:last-child .sub_menubox{
    left: auto;
    right: 0;
    transform: none;
}

ul.sub_menu{
    width: max-content;
    height: 50px;
    display: flex;
}

ul.sub_menu li{
    height: 100%;
    font-size: 15px;
    font-family: 'Pretendard-Medium', sans-serif;
    line-height: 50px;
    margin-right: 46.5px;
    cursor: pointer;
    position: relative;
}

ul.sub_menu li.menu_3{
    width: 65px;
}

ul.sub_menu li:last-child{
    margin-right: 0;
}

ul.sub_menu li:hover{
    color: #fe5382;
    list-style-type: disc;
}

ul.sub_menu li::marker{
    color: #fe5382;
    font-size: 14px;
}

ul.sub_menu li>p{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

.sub_menu2box{
    display: none;
    position: absolute;
    top: 50px;
}

ul.sub_menu2{
    width: max-content;
    display: flex;
}

.h03{
    width: 100%;
    height: 50px;
    display: none;
}

.h04{
    width: 100%;
    height: 50px;
    display: none;
}

.m_header,
.m_menubox{
    display: none;
}


































/* mobile */
@media screen and (max-width: 767px){

    .pc_header{
        display: none;
    }

    .m_header{
        display: block;
        width: 100%;
        height: 45px;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        transition: box-shadow .3s;
    }

    .m_header.scroll{
        box-shadow: 3px 0 10px rgba(0, 0, 0, 0.2);
    }

    .m_menu_icon{
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        left: 5%;
        transform: translateY(-50%);
    }

    .m_menu_icon i{
        color: #111;
        font-size: 28px;
    }

    .m_header a{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .m_talk_tel{
        display: flex;
        position: absolute;
        top: 50%;
        right: 5%;
        transform: translateY(-50%);
    }

    .m_talk,
    .m_tel{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .m_talk{
        margin-right: 13px;
        width: 30px;
    }
    
    .m_talk img{
        width: 100%;
    }
    
    .m_tel{
        width: 30px;
    }

    .m_tel img{
        width: 100%;
    }

    .m_menubox{
        display: flex;
        width: 100%;
        position: fixed;
        top: 45px;
        left: 0;
        z-index: 9999;
        border-top: 1px solid #d7d7d7;
        border-bottom: 1px solid #d7d7d7;
        background-color: #f8f8f8;
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s, visibility .3s;
    }

    .m_menubox.show{
        opacity: 1;
        visibility: visible;
    }

    .mb_left{
        width: 55%;
        border-right: 1px solid #d7d7d7;
        box-sizing: border-box;
        background-color: #fff;
    }

    .mb_l_top1{
        width: 100%;
    }

    .mb_l_top1 ul{
        display: flex;
    }

    .mb_l_top1 ul li{
        font-size: 12px;
        color: #111;
        font-family: 'Pretendard-Regular', sans-serif;
        line-height: 10px;
    }

    .mb_l_top1 ul li:first-child{
        border-right: 1px solid #555;
        padding-right: 10px;
    }

    .mb_l_top1 ul li:last-child{
        padding-left: 10px;
    }

    .mb_l_top1{
        width: 100%;
        padding: 15px 15px 0 20px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mb_close{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mb_close i{
        font-size: 18px;
        color: #333;
    }

    .mb_l_top2{
        width: 100%;
        padding: 5px 15px 8px;
        box-sizing: border-box;
        border-bottom: 1px solid #d7d7d7;
    }

    .mb_l_top2 ul{
        display: flex;
    }

    .mb_l_top2 ul li{
        /*width: 35px;*/
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mb_l_top2 ul li img{
        width: 100%;
    }

    .m_main_menubox{
        width: 100%;
    }

    .m_main_menubox ul{
        width: 100%;
    }

    .m_main_menubox ul li{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 10px 15px 20px;
        box-sizing: border-box;
        font-size: 14px;
        color: #111;
        font-family: 'Pretendard-Bold', sans-serif;
        border-bottom: 1px solid #d7d7d7;
    }

    .m_main_menubox ul li.on{
        background-color: #f8f8f8;
    }

    .m_main_menubox ul li i{
        font-size: 16px;
        color: #777;
    }

    .mb_l_bottom{
        width: 100%;
        padding: 10px 20px;
        box-sizing: border-box;
    }

    .mb_l_bottom ul{
        display: flex;
    }

    .mb_l_bottom ul li{
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 5px;
    }

    .mb_l_bottom ul li img{
        width: 100%;
    }

    .mb_right{
        width: 45%;
    }

    .m_sub_menubox{
        width: 100%;
        display: none;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .m_sub_menubox.on{
        display: block;
    }

    ul.sm_1{
        width: 100%;
    }

    ul.sm_1>li{
        width: 100%;
        border-bottom: 1px solid #d7d7d7;
        padding: 13px 8px;
        box-sizing: border-box;
    }

    ul.sm_1>li a{
        font-size: 11px;
        color: #111;
        font-family: 'Pretendard-Medium', sans-serif;
        display: block;
    }

    ul.sm_2{
        width: 100%;
    }

    ul.sm_2 li{
        width: 100%;
        margin-top: 10px;
        font-size: 11px;
        color: #111;
        font-family: 'Pretendard-Medium', sans-serif;
    }

    .close{
        font-size: 14px;
        color: #111;
        font-family: 'Pretendard-Regular', sans-serif;
        position: absolute;
        bottom: 15px;
        right: 20px;
        z-index: 9999;
    }

}



































/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

    .pc_header{
        display: none;
    }

    .m_header{
        display: block;
        width: 100%;
        height: 45px;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        transition: box-shadow .3s;
    }

    .m_header.scroll{
        box-shadow: 3px 0 10px rgba(0, 0, 0, 0.2);
    }

    .m_menu_icon{
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
    }

    .m_menu_icon i{
        color: #111;
        font-size: 28px;
    }

    .m_header a{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .m_talk_tel{
        display: flex;
        position: absolute;
        top: 50%;
        right: 10%;
        transform: translateY(-50%);
    }

    .m_talk,
    .m_tel{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .m_talk{
        margin-right: 13px;
    }

    .m_menubox{
        display: flex;
        width: 100%;
        position: fixed;
        top: 45px;
        left: 0;
        z-index: 9999;
        border-top: 1px solid #d7d7d7;
        border-bottom: 1px solid #d7d7d7;
        background-color: #f8f8f8;
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s, visibility .3s;
    }

    .m_menubox.show{
        opacity: 1;
        visibility: visible;
    }

    .mb_left{
        width: 55%;
        border-right: 1px solid #d7d7d7;
        box-sizing: border-box;
        background-color: #fff;
    }

    .mb_l_top1{
        width: 100%;
    }

    .mb_l_top1 ul{
        display: flex;
    }

    .mb_l_top1 ul li{
        font-size: 10px;
        color: #111;
        font-family: 'Pretendard-Regular', sans-serif;
        line-height: 10px;
    }

    .mb_l_top1 ul li:first-child{
        border-right: 1px solid #555;
        padding-right: 10px;
    }

    .mb_l_top1 ul li:last-child{
        padding-left: 10px;
    }

    .mb_l_top1{
        width: 100%;
        padding: 15px 15px 0 20px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mb_close{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mb_close i{
        font-size: 18px;
        color: #333;
    }

    .mb_l_top2{
        width: 100%;
        padding: 5px 15px 8px;
        box-sizing: border-box;
        border-bottom: 1px solid #d7d7d7;
    }

    .mb_l_top2 ul{
        display: flex;
    }

    .mb_l_top2 ul li{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .m_main_menubox{
        width: 100%;
    }

    .m_main_menubox ul{
        width: 100%;
    }

    .m_main_menubox ul li{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 10px 15px 20px;
        box-sizing: border-box;
        font-size: 14px;
        color: #111;
        font-family: 'Pretendard-Bold', sans-serif;
        border-bottom: 1px solid #d7d7d7;
    }

    .m_main_menubox ul li.on{
        background-color: #f8f8f8;
    }

    .m_main_menubox ul li i{
        font-size: 16px;
        color: #777;
    }

    .mb_l_bottom{
        width: 100%;
        padding: 10px 20px;
        box-sizing: border-box;
    }

    .mb_l_bottom ul{
        display: flex;
    }

    .mb_l_bottom ul li{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 5px;
    }

    .mb_right{
        width: 45%;
    }

    .m_sub_menubox{
        width: 100%;
        display: none;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .m_sub_menubox.on{
        display: block;
    }

    ul.sm_1{
        width: 100%;
    }

    ul.sm_1>li{
        width: 100%;
        border-bottom: 1px solid #d7d7d7;
        padding: 13px 8px;
        box-sizing: border-box;
    }

    ul.sm_1>li a{
        font-size: 11px;
        color: #111;
        font-family: 'Pretendard-Medium', sans-serif;
        display: block;
    }

    ul.sm_2{
        width: 100%;
    }

    ul.sm_2 li{
        width: 100%;
        margin-top: 10px;
        font-size: 11px;
        color: #111;
        font-family: 'Pretendard-Medium', sans-serif;
    }

    .close{
        font-size: 14px;
        color: #111;
        font-family: 'Pretendard-Regular', sans-serif;
        position: absolute;
        bottom: 15px;
        right: 20px;
        z-index: 9999;
    }

}












