.sns_fixed{
    position: fixed;
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
    z-index: 999;
}

.sns_fixed ul li{
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sns_fixed ul li i{
    color: #002d5f;
    font-size: 30px;
}

.customer_fixed{
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 90px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.customer_fixed ul{
    width: 100%;
    background-color: #fff;
    padding: 0 10px;
    box-sizing: border-box;
}

.customer_fixed ul li{
    width: 100%;
    border-top: 1px solid #ccc;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.customer_fixed ul li.li1{
    padding: 15px 0 10px;
    border-top: 0;
}

.cus_tel{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #111;
    font-family: 'Pretendard-Medium', sans-serif;
}

.cus_tel img{
    margin-right: 4px;
}

.customer_fixed ul li.li1 p{
    font-size: 13px;
    color: #111;
    font-family: 'Pretendard-ExtraBold', sans-serif;
    margin-top: 8px;
}

.customer_fixed ul li.li2{
    padding: 15px 0;
}

.customer_fixed ul li.li2 p{
    font-size: 12px;
    color: #111;
    font-family: 'Pretendard-Medium', sans-serif;
    margin-top: 10px;
}

.top{
    width: 100%;
    background-color: #252525;
    padding: 5px 0 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.top i{
    color: #fff;
    font-size: 14px;
}

.top p{
    font-size: 11px;
    color: #fff;
    font-family: 'Pretendard-Regular', sans-serif;
    letter-spacing: 1px;
    margin-right: -1px;
}

.consulting_box{
    width: 100%;
    height: 65px;
    background-color: rgba(0, 0, 0, 0.55);
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9999;
    transition: bottom .5s;
}

.pc_consulting_box.motion{
    bottom: -65px;
}

.consulting_box.motion .arrow_btn i{
    transform: rotate(180deg);
    margin-top: 0;
}

.consulting_box .center{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.consulting_box .center>p{
    font-size: 20px;
    color: #fff;
    font-family: 'Pretendard-SemiBold', sans-serif;
}

.consulting_box .center>input[type='button']{
    width: 170px;
    height: 40px;
    background-color: #f26684;
    border: 0;
    font-size: 18px;
    color: #fff;
    font-family: 'Pretendard-SemiBold', sans-serif;
}

.consul_input{
    display: flex;
    align-items: center;
}

.consul_input input[type='text']{
    width: 175px;
    height: 35px;
    background-color: #fff;
    border: 0;
    margin-right: 10px;
}

.consul_input input::placeholder{
    font-size: 14px;
    color: #999;
    font-family: 'Pretendard-Light', sans-serif;
}

.select_box{
    width: 175px;
    height: 35px;
    background-color: #fff;
    position: relative;
    margin-right: 10px;
}

.select_box i{
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #111;
}

.select_box select{
    font-size: 14px;
    color: #999;
    font-family: 'Pretendard-Light', sans-serif;
}

.agree_check{
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.agree_check input{
    cursor: pointer;
    width: 15px;
    height: 15px;
}

.agree_check p{
    font-size: 10px;
    color: #fff;
    font-family: 'Pretendard-Light', sans-serif;
    margin-left: 5px;
    border-bottom: 1px solid #fff;
}

.arrow_btn{
    width: 50px;
    height: 25px;
    background-color: rgba(0, 0, 0, 0.55);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 30px 30px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.arrow_btn i{
    color: #fff;
    margin-top: 7px;
}

.m_consulting_box{
    display: none;
}

.m_top_btn{
    display: none;
}

.m_fix_menu{
    display: none;
}





























/* mobile */
@media screen and (max-width: 767px){

    .sns_fixed,
    .customer_fixed{
        display: none;
    }

    .pc_consulting_box{
        display: none;
    }

    .m_consulting_box{
        height: auto;
        display: flex;
        justify-content: space-between;
        padding: 10px;
        box-sizing: border-box;
        z-index: 99991;
        bottom: 70px;
        opacity: 0;
        visibility: hidden;
        transition: opacity .5s, visibility .5s;
    }

    .m_consulting_box.motion{
        opacity: 1;
        visibility: visible;
    }

    .m_consulting_box .consul_input{
        width: 65%;
        display: inline-block;
    }
    
    .m_consulting_box .consul_input input{
        width: 49%;
        height: 23px;
        float: left;
        margin-right: 2%;
        margin-bottom: 5px;
    }

    .m_consulting_box .consul_input input:nth-of-type(2){
        margin-right: 0;
    }

    .m_consulting_box .consul_input input::placeholder{
        font-size: 10px;
        font-family: 'Pretendard-Light', sans-serif;
    }

    .m_consulting_box .select_box{
        width: 49%;
        height: 23px;
        float: left;
        margin-right: 2%;
    }
    
    .m_consulting_box .select_box:last-child{
        margin-right: 0;
    }

    .m_consulting_box .select_box select{
        font-size: 10px;
        font-family: 'Pretendard-Light', sans-serif;
    }

    .m_consulting_box .select_box i{
        font-size: 10px;
        right: 10px;
    }

    .button_check{
        width: 33%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
    }

    .button_check input[type='button']{
        width: 100%;
        height: 23px;
        background-color: #f26684;
        font-size: 12px;
        color: #fff;
        font-family: 'Pretendard-Regular', sans-serif;
        border: 0;
    }

    .button_check .agree_check{
        display: flex;
        align-items: center;
        margin: 0;
    }

    .m_top_btn{
        width: 45px;
        height: 45px;
        border-radius: 50px;
        background-color: #333;
        position: fixed;
        bottom: 85px;
        right: 5%;
        z-index: 9999;
    }

    .m_top_btn p{
        color: #fff;
        font-size: 12px;
        font-family: 'Pretendard-Regular', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-top: -2px;
    }

    .m_top_btn p i{
        margin-bottom: 3px;
    }

    .m_fix_menu{
        display: block;
        width: 100%;
        height: 70px;
        position: fixed;
        left: 0;
        bottom: 0;
        background-color: #fff;
        z-index: 9999;
        border-top: 1px solid #002d5f;
        box-sizing: border-box;
        transition: transform .5s;
    }

    .m_fix_menu ul{
        width: 100%;
        height: 100%;
        display: flex;
        padding: 15px 0;
        box-sizing: border-box;
    }

    .m_fix_menu ul li{
        width: 20%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border-right: 1px solid #eee;
        box-sizing: border-box;
    }

    .m_fix_menu ul li:last-child{
        border-right: 0;
    }

    .m_fix_menu ul li i{
        color: #002d5f;
        font-size: 24px;
    }

    .m_fix_menu ul li p{
        font-size: 10px;
        color: #111;
        margin-top: 5px;
        font-family: 'S-CoreDream-4Regular';
    }

    .m_fix_menu .arrow_btn{
        background-color: #002d5f;
    }

    .m_fix_menu .arrow_btn i{
        margin: 0;
    }

    .m_fix_menu.motion{
        transform: translateY(70px);
    }

    .m_fix_menu.motion .arrow_btn i{
        transform: rotate(180deg);
    }

}



































/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

    .sns_fixed,
    .customer_fixed{
        display: none;
    }

    .pc_consulting_box{
        display: none;
    }

    .m_consulting_box{
        height: auto;
        display: flex;
        justify-content: space-between;
        padding: 10px;
        box-sizing: border-box;
        z-index: 99991;
        bottom: 70px;
        opacity: 0;
        visibility: hidden;
        transition: opacity .5s, visibility .5s;
    }

    .m_consulting_box.motion{
        opacity: 1;
        visibility: visible;
    }

    .m_consulting_box .consul_input{
        width: 65%;
        display: inline-block;
    }
    
    .m_consulting_box .consul_input input{
        width: 49%;
        height: 23px;
        float: left;
        margin-right: 2%;
        margin-bottom: 5px;
    }

    .m_consulting_box .consul_input input:nth-of-type(2){
        margin-right: 0;
    }

    .m_consulting_box .consul_input input::placeholder{
        font-size: 10px;
        font-family: 'Pretendard-Light', sans-serif;
    }

    .m_consulting_box .select_box{
        width: 49%;
        height: 23px;
        float: left;
        margin-right: 2%;
    }
    
    .m_consulting_box .select_box:last-child{
        margin-right: 0;
    }

    .m_consulting_box .select_box select{
        font-size: 10px;
        font-family: 'Pretendard-Light', sans-serif;
    }

    .m_consulting_box .select_box i{
        font-size: 10px;
        right: 10px;
    }

    .button_check{
        width: 34%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
    }

    .button_check input[type='button']{
        width: 100%;
        height: 23px;
        background-color: #f26684;
        font-size: 12px;
        color: #fff;
        font-family: 'Pretendard-Regular', sans-serif;
        border: 0;
    }

    .button_check .agree_check{
        display: flex;
        align-items: center;
        margin: 10px 0 0 0;
    }

    .m_top_btn{
        width: 45px;
        height: 45px;
        border-radius: 50px;
        background-color: #333;
        position: fixed;
        bottom: 85px;
        right: 3%;
        z-index: 9999;
    }

    .m_top_btn p{
        color: #fff;
        font-size: 12px;
        font-family: 'Pretendard-Regular', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-top: -2px;
    }

    .m_top_btn p i{
        margin-bottom: 3px;
    }

    .m_fix_menu{
        display: block;
        width: 100%;
        height: 70px;
        position: fixed;
        left: 0;
        bottom: 0;
        background-color: #fff;
        z-index: 9999;
        border-top: 1px solid #002d5f;
        box-sizing: border-box;
        transition: transform .5s;
    }

    .m_fix_menu ul{
        width: 100%;
        height: 100%;
        display: flex;
        padding: 15px 0;
        box-sizing: border-box;
    }

    .m_fix_menu ul li{
        width: 20%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border-right: 1px solid #eee;
        box-sizing: border-box;
    }

    .m_fix_menu ul li:last-child{
        border-right: 0;
    }

    .m_fix_menu ul li i{
        color: #002d5f;
        font-size: 24px;
    }

    .m_fix_menu ul li p{
        font-size: 10px;
        color: #111;
        margin-top: 5px;
        font-family: 'S-CoreDream-4Regular';
    }

    .m_fix_menu .arrow_btn{
        background-color: #002d5f;
    }

    .m_fix_menu .arrow_btn i{
        margin: 0;
    }

    .m_fix_menu.motion{
        transform: translateY(70px);
    }

    .m_fix_menu.motion .arrow_btn i{
        transform: rotate(180deg);
    }

}
