.footer {
    font-family: Pretendard;
    background: #fff;
    color: #333;
    padding: 24px 0 28px 0;
    box-sizing: border-box;
    border-top: 1px solid #CCC;
}

.footer_inner {
    display: flex;
    justify-content: space-between;
}

.footer_logo_info {
    display: flex;
    flex-wrap: nowrap;
}

.footer_logo {
    margin-right: 82px;
}

.footer_logo_img {
    width: 93px; height: 76px;
    margin: 0 auto;
    background: url(/images/icon/ci_logo.svg);
    background-size: cover;
}

.footer_logo_txt {
    width: 121px;
    font-size: 20px;
    margin-top: 16px;
}

.footer_terms {
    font-weight: 600;
    margin-bottom: 22px;
}

.footer_terms li {
    display: inline-block;
    cursor: pointer;
    margin-right:26px;
}

.footer_info_list_box li {
    display: inline-block;
    font-size: 15px;
    line-height: 28px;
}

.footer_info_list_mg_r {
    margin-right: 20px;
}

.footer_title {
    font-weight: 600;
}

.footer_way_box {
    overflow: hidden;
}

.footer_way {
    float: right;
    display: block;
    width: 95px; height: 33px;
    text-align: center;
    line-height: 33px;
    border-radius: 16px;
    background: #262626;
    color: #fff;
}

.footer_way:hover {
    cursor: pointer;
    opacity: 0.8;
}

.copyright {
    color: #888;
    font-size: 14px;
    margin-top: 44px;
    text-align: end;
}

.footer_floating {
    display: none;
    position: fixed;
    bottom: 0; left: 0px;
    width:100%; height: 50px;
    background: #222;
    z-index: 9999;
}

.footer_floating_product {
    width: 32%;
    background: #ED6B1B;
    color: #FFE14F;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 50px;
}

.footer_floating_contact_us {
    width: calc(68% - 55px);
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 50px;
}

.footer_floating_kakao {
    width: 55px;
    height: 50px;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 50px;
}

@media screen and (max-width:768px) {
    .footer_inner {
        flex-wrap: wrap;
    }

    .footer_logo_info {
        flex-wrap: wrap;
    }

    .footer_logo {
        display:none;
    }
    .footer_info_box {
        width: 100%;
    }

    .footer_way {
        float: unset;
        margin: 10px 0;
    }

    .copyright {
        margin: 10px 0 0 0;
    }

    .footer {
        border-top: 1px solid #ccc;
        padding: 24px 0 90px 0;
    }

    .footer_floating {
        display: flex;
    }
    .footer_terms{
        display:flex;
        flex-wrap: wrap;
        margin-bottom:10px;
    }
    .footer_terms li{
        box-sizing: border-box;
        width:calc(50% - 5px);
        margin-right:10px;
        border:1px solid #aaa;
        margin-bottom:10px;
        height:30px;
        line-height:30px;
        text-align: center;
        font-size:14px;
    }
    .footer_terms li:nth-child(even){
        margin-right:0;
    }





}

@media screen and (max-width:600px) {
    .copyright {
        font-size: 13px;
        text-align: left;
    }
}