/* pc */
footer {
    background-color: #fff;
}

#footer_wrap {
    border-top: 1px solid #EBEBEB;
}

#footer_wrap .top {
    padding: 12px 0;
    border-bottom: 1px solid #EBEBEB;
}

#footer_wrap .top .terms_list {
    display: flex;
    gap: 10px;
    align-items: center;
}

#footer_wrap .top .terms_list>li:not(:last-child)::after {
    content: '';
    display: block;
    width: 0;
    height: 10px;
    border-right: 1px solid #9E9E9E;
}

#footer_wrap .top .terms_list>li {
    display: flex;
    align-items: center;
    gap: 10px;
}

#footer_wrap .top .terms_item {
    font-size: 14px;
    font-weight: 400;
    color: #9E9E9E;
}

#footer_wrap .mid {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 0;
    gap: 30px;
}

#footer_wrap .mid .logo {
    display: flex;
    width: 68px;
    margin-bottom: 32px;
}

#footer_wrap .mid .info_wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#footer_wrap .mid .info_box {
    display: flex;
    align-items: center;
    gap: 8px 24px;
}

#footer_wrap .mid .info_box dl {
    display: flex;
    align-items: center;
    gap: 10px;
}

#footer_wrap .mid .info_box dt {
    display: flex;
    align-items: center;
    gap: 10px;
}

#footer_wrap .mid .info_box dt::after {
    content: '';
    display: block;
    width: 0;
    height: 10px;
    border-right: 1px solid #9E9E9E;
}

#footer_wrap .mid .info_box dt,
#footer_wrap .mid .info_box dd {
    font-size: 14px;
    font-weight: 400;
    color: #9E9E9E;
}

#footer_wrap .mid .info_box strong {
    color: var(--error-color);
}

#footer_wrap .mid .right {
    padding-right: 68px;
}

#footer_wrap .mid .cs_title {
    font-size: 14px;
    font-weight: 400;
    color: #9E9E9E;
}

#footer_wrap .mid .cs_num {
    font-size: 40px;
    font-weight: 700;
    color: #5E5E5E;
}

#footer_wrap .mid .cs_desc {
    font-size: 13px;
    font-weight: 400;
    color: #9E9E9E;
}

#footer_wrap .bot {
    border-top: 1px solid #BBBBBB;
    padding: 12px 0;
}

#footer_wrap .copyright {
    font-size: 14px;
    font-weight: 400;
    color: #9E9E9E;
}

/* tablet */
@media screen and (max-width: 1023px) {

    #footer_wrap .mid {
        padding: 30px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    #footer_wrap .mid .logo {
        width: 52px;
        margin-bottom: 16px;
    }

}

/* mobile */
@media screen and (max-width: 767px) {
    #footer_wrap .top .terms_item {
        font-size: 12px;
    }

    #footer_wrap .mid .info_box dt,
    #footer_wrap .mid .info_box dd {
        font-size: 12px;
    }

    #footer_wrap .mid .info_wrap {
        gap: 8px;
    }

    #footer_wrap .mid .info_box {
        flex-direction: column;
        align-items: flex-start;
    }

    #footer_wrap .mid .cs_title {
        font-size: 12px;
    }

    #footer_wrap .mid .cs_num {
        font-size: 16px;
    }

    #footer_wrap .mid .cs_desc {
        font-size: 12px;
    }

    #footer_wrap .copyright {
        font-size: 12px;
    }
}