/* pc */
#footer_wrap {
    width: 100%;
    border-top: 1px solid #9F9F9F;
    padding: 70px 0 40px;
}

.footer_top {
    display: flex;
    justify-content: space-between;
}

.footer_info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#footer_wrap .logo {
    max-width: 100px;
}

.footer_info .info_title {
    font-size: 20px;
    font-weight: 700;
    color: #5E5E5E;
    text-transform: uppercase;
}

.footer_info .info_wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.footer_info .info_desc {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #5E5E5E;
    gap: 8px;
}

.footer_info .desc_txt {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer_info .desc_txt:not(:last-child)::after {
    content: '';
    display: block;
    height: 10px;
    border-right: 1px solid #5E5E5E;
}

.footer_info .desc_txt a {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    text-decoration: underline;
}

.footer_info .cs_info {
    font-size: 14px;
    font-weight: 400;
    color: var(--main-color);
}

.footer_info .cs_info strong {
    font-size: 18px;
}

.footer_bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 78px;
}

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

#footer_wrap .footer_link {
    display: flex;
    gap: 10px;
}

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

#footer_wrap .footer_link li:not(:last-child)::after {
    content: '';
    display: block;
    height: 10px;
    border-right: 1px solid #5E5E5E;
}

#footer_wrap .footer_link .link_item {
    font-size: 12px;
    font-weight: 400;
    color: #5E5E5E;
}

/* tablet */
@media screen and (max-width: 1023px) {
    #footer_wrap {
        padding: 62px 0 32px;
    }

    .footer_top {
        display: block;
    }

    .footer_info {
        align-items: center;
        gap: 50px;
    }

    .footer_info.info_list {
        margin-top: 50px;
        margin-bottom: 8px;
    }

    .footer_info .info_desc {
        justify-content: center;
        font-size: 12px;
    }

    .footer_info .info_box {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer_info .cs_info,
    .footer_info .cs_info strong {
        font-size: 12px;
    }

    .footer_bottom {
        margin-top: 70px;
        flex-direction: column;
    }

    #footer_wrap .copyright {
        text-align: center;
    }

    #footer_wrap .footer_link {
        justify-content: center;
        margin-top: 30px;
    }

}

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