footer {
    display: grid;
    gap: 30px;
}

.FooterSection {
    display: grid;
    width: 100%;
    max-width: 1200px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    color: #555;
}

.FooterSection .Logo {
    width: 150px;
    object-fit: contain;
}

.FooterButtonBox {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, 30px);
    justify-content: center;
    
    .SNSLinkIcon {
        width: 30px;
        height: 30px;
    }
}

.FooterSideMenuBox {
    display: grid;
    justify-content: end;

    .MenuButton {
        font-size: 13px;
        font-weight: 300;
        padding: 5px 0px;
        color: #777;
        text-decoration: none;
        text-align: right;
    }
}

footer .Copyright {
    font-size: 12px;
    font-weight: 300;
    color: #777;
    text-align: center;
}

@media (max-width: 768px) {
    .FooterSection {
        grid-template-columns: 1fr 1fr;
        
        .Logo {
            grid-column: 1 / 2;
        }
        .FooterButtonBox {
            grid-column: 2 / 3;
            justify-content: right;
            align-items: center;
        }
        .FooterSideMenuBox {
            grid-column: 1 / -1;
        }
    }
}