/* SNSセクションのスタイル */
.sns {
    padding: 10rem 2rem;
    background-color: #EFFF2A;
}

.sns-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sns-heading {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 3rem;
    position: relative;
}

.sns-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #EFFF2A;
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
}

.sns-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.sns-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease;
    padding: 1rem;
}

.sns-link:hover {
    transform: translateY(-5px);
}

.sns-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 0.5rem;
}

.sns-label {
    font-size: 1rem;
    font-weight: bold;
}

/* SNSプラットフォーム固有のスタイル */
.sns-link.instagram:hover {
    color: #E4405F;
}

.sns-link.x:hover {
    color: #000;
}

.sns-link.tiktok:hover {
    color: #000;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .sns {
        padding: 6rem 1rem;
    }

    .sns-heading {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .sns-links {
        gap: 2rem;
    }

    .sns-icon {
        width: 64px;
        height: 64px;
    }

    .sns-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .sns {
        padding: 4rem 1rem;
    }

    .sns-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .sns-links {
        gap: 1.5rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sns-icon {
        width: 56px;
        height: 56px;
    }

    .sns-label {
        font-size: 0.8rem;
    }

    .sns-link {
        padding: 0.8rem;
    }
}
