/* SNSセクション用CSS */
.sns-section {
    padding: 60px 20px;
    background-color: #CCE5FF;
    text-align: center;
    margin-bottom: 50px;
}

.sns-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.sns-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.sns-item a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.sns-item a:hover {
    transform: scale(1.1);
}

.sns-icon {
    width: 60px;
    height: 60px;
    fill: #333;
    transition: fill 0.3s ease;
}

/* TikTokアイコンのホバー効果 */
.sns-item:nth-child(1) .sns-icon:hover {
    fill: #000000;
}

/* Instagramアイコンのホバー効果 */
.sns-item:nth-child(2) .sns-icon:hover {
    fill: #E4405F;
}

/* YouTubeアイコンのホバー効果 */
.sns-item:nth-child(3) .sns-icon:hover {
    fill: #FF0000;
}

.qr-code {
    width: 150px;
    height: 150px;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.qr-code svg {
    width: 100%;
    height: 100%;
    display: block;
}

.sns-label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

/* レスポンシブデザイン：タブレット */
@media screen and (max-width: 768px) {
    .sns-container {
        gap: 40px;
    }
    
    .sns-icon {
        width: 50px;
        height: 50px;
    }
    
    .qr-code {
        width: 130px;
        height: 130px;
    }
}

/* レスポンシブデザイン：スマートフォン */
@media screen and (max-width: 480px) {
    .sns-section {
        padding: 40px 15px;
    }
    
    .sns-container {
        gap: 30px;
    }
    
    .sns-icon {
        width: 45px;
        height: 45px;
    }
    
    .qr-code {
        width: 120px;
        height: 120px;
        padding: 8px;
    }
    
    .sns-label {
        font-size: 14px;
    }
}
