/* SNSリンクのスタイル */

/* フッターのSNSリンクセクション */
.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

/* SNSリンク共通スタイル */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Instagram専用スタイル */
.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: brightness(1.1);
}

/* LINE専用スタイル */
.social-line {
    background-color: #00B900;
}

.social-line:hover {
    background-color: #00A000;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .footer-social-links {
        justify-content: flex-start;
    }
    
    .social-link {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .footer-social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}


