.search_box{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
}

.search_box.show{
    opacity: 1;
    visibility: visible;
}

.search_box_inner{
    width: 100%;
    height: 63%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search_input{
    width: 80%;
    height: 45px;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #fff;
}

.search_input input{
    width: 95%;
    height: 100%;
    padding: 0;
    border: 0;
    background-color: transparent;
    color: #fff;
    font-size: 24px;
    font-family: 'Pretendard-Light', sans-serif;
}

.search_input input::placeholder{
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    font-family: 'Pretendard-ExtraLight', sans-serif;
}

.search_input i{
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

i.search_close{
    color: rgba(255, 255, 255, 0.6);
    font-size: 40px;
    position: absolute;
    top: 40px;
    right: 40px;
    cursor: pointer;
}

.menu_box{
    display: none;
}








































/* mobile */
@media screen and (max-width: 767px){
    
    .search_box_inner{
        height: 25%;
    }
    
    .search_input{
        width: 85%;
        height: 35px;
        max-width: 85%;
        border-bottom: 1px solid #fff;
    }
    
    .search_input input{
        font-size: 14px;
    }
    
    .search_input input::placeholder{
        font-size: 14px;
    }
    
    .search_input i{
        font-size: 18px;
        cursor: inherit;
    }
    
    i.search_close{
        font-size: 23px;
        top: 15px;
        right: 15px;
        cursor: inherit;
        color: #fff;
    }

    .menu_box{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background-color: #000;
        z-index: 1000;
        padding: 0 18%;
        box-sizing: border-box;
        transform: translateX(-100%);
        transition: transform .8s;
    }

    .menu_box.show{
        transform: translateX(0);
    }

    .m_menu_con{
        width: 100%;
        margin-bottom: 30px;
    }

    .m_menu_con:nth-child(4){
        margin-bottom: 0;
    }

    .main_title{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .main_title>span{
        color: #fff;
        font-size: 18px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
    }

    .pm{
        width: 10px;
        height: 10px;
        position: relative;
    }

    .pm span{
        background-color: #fff;
        display: block;
        position: absolute;
    }

    .pm span:first-child{
        width: 100%;
        height: 2px;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .pm span:last-child{
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .m_menu_con.on .pm span:last-child{
        opacity: 0;
    }

    ul.m_sub_menu{
        width: 100%;
        margin-top: 10px;
        display: none;
    }

    ul.m_sub_menu>li{
        width: 100%;
        margin-bottom: 13px;
        font-size: 14px;
        color: #fff;
        font-family: 'Pretendard-Light', sans-serif;
    }

    ul.m_sub_menu>li:last-child{
        margin-bottom: 0;
    }

    ul.m_sub_menu2{
        width: 100%;
        padding-left: 10px;
        box-sizing: border-box;
    }

    ul.m_sub_menu2 li{
        width: 100%;
        font-size: 12px;
        color: #999;
        font-family: 'Pretendard-Regular', sans-serif;
        margin-top: 10px;
    }
    
}



































/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

    .search_box_inner{
        height: 25%;
    }
    
    .search_input{
        width: 85%;
        height: 35px;
        max-width: 85%;
        border-bottom: 1px solid #fff;
    }
    
    .search_input input{
        font-size: 14px;
    }
    
    .search_input input::placeholder{
        font-size: 14px;
    }
    
    .search_input i{
        font-size: 18px;
        cursor: inherit;
    }
    
    i.search_close{
        font-size: 23px;
        top: 15px;
        right: 15px;
        cursor: inherit;
        color: #fff;
    }

    .menu_box{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 50%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background-color: #000;
        z-index: 1000;
        padding: 0 8%;
        box-sizing: border-box;
        transform: translateX(-100%);
        transition: transform .8s;
    }

    .menu_box.show{
        transform: translateX(0);
    }

    .m_menu_con{
        width: 100%;
        margin-bottom: 30px;
    }

    .m_menu_con:nth-child(4){
        margin-bottom: 0;
    }

    .main_title{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .main_title>span{
        color: #fff;
        font-size: 18px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
    }

    .pm{
        width: 10px;
        height: 10px;
        position: relative;
    }

    .pm span{
        background-color: #fff;
        display: block;
        position: absolute;
    }

    .pm span:first-child{
        width: 100%;
        height: 2px;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .pm span:last-child{
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .m_menu_con.on .pm span:last-child{
        opacity: 0;
    }

    ul.m_sub_menu{
        width: 100%;
        margin-top: 10px;
        display: none;
    }

    ul.m_sub_menu>li{
        width: 100%;
        margin-bottom: 13px;
        font-size: 14px;
        color: #fff;
        font-family: 'Pretendard-Light', sans-serif;
    }

    ul.m_sub_menu>li:last-child{
        margin-bottom: 0;
    }

    ul.m_sub_menu2{
        width: 100%;
        padding-left: 10px;
        box-sizing: border-box;
    }

    ul.m_sub_menu2 li{
        width: 100%;
        font-size: 12px;
        color: #999;
        font-family: 'Pretendard-Regular', sans-serif;
        margin-top: 10px;
    }

}