.sns {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 300px;
    margin: 0 auto;
}

.sns-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    color: #fff;
}

.sns-link:hover {
    opacity: 0.8;
    color: #fff;
    transition: all 0.3s;
}

.sns-text {
    text-align: center;
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .sns {
        max-width: 240px;
    }
}