@charset "utf-8";

#footer {
    background-color: var(--color-black);
    padding: 8rem 0 9rem;
    color: #fff;
    margin-top: 26rem;
}

.footer_logo {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 4.5rem;
}
.footer_link_wrapper {
    display: flex;
    gap: 4rem;
}
.footer_link_column {
    width: fit-content;
    min-width: 200px;
}
.column_label {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.footer_menu_link {
    padding-left: 1.5rem;
}
.footer_menu_link li:not(:last-child) {
    margin-bottom: 2rem;
}
.footer_menu_link a {
    transition: opacity .2s;
}
.footer_menu_link a:hover {
    opacity: .6;
}
.footer_menu_link a.blank {
    position: relative;
}
.footer_menu_link a.blank::after {
    content: '';
    width: 16px;
    height: 14px;
    background-image: url('../images/blank_tab.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -1px;
    display: inline-block;
}


@media screen and (max-width: 820px){
    #footer {
        margin-top: 12rem;
    }
    .footer_link_wrapper {
        flex-wrap: wrap;
        gap: 5rem 4rem;
    }
}