/* pc */
#footer_wrap {
    width: 100%;
}

.footer_top {
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

#footer_wrap .info_wrap {
    max-width: 500px;
}

#footer_wrap .logo {
    display: flex;
    width: 145px;
    margin-bottom: 16px;
}

#footer_wrap .info_box:not(:last-child) {
    margin-bottom: 12px;
}

#footer_wrap .info_line {
    display: flex;
    gap: 0 12px;
    flex-wrap: wrap;
}

#footer_wrap .info_item {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    color: #9E9E9E;
}

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

#footer_wrap .cs_wrap .title {
    font-size: 14px;
    font-weight: 400;
    color: #222;
    margin-bottom: 4px;
}

#footer_wrap .cs_kakao {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 26px;
    font-weight: 700;
    color: #000;
}

#footer_wrap .cs_kakao .icon_wrap {
    display: flex;
    width: 27px;
}

#footer_wrap .b2b_cs {
    font-size: 16px;
    font-weight: 600;
    color: #5E5E5E;
}

.footer_bot {
    border-top: 1px solid #E1E1E1;
    padding: 12px 0;
}

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

/* tablet */
@media screen and (max-width: 1023px) {
    .footer_top {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 0;
    }

    #footer_wrap .logo {
        width: 114px;
    }

    #footer_wrap .cs_kakao {
        font-size: 24px;
    }

    #footer_wrap .cs_kakao .icon_wrap {
        width: 24px;
    }
}

/* mobile */
@media screen and (max-width: 767px) {}