/**
 * フッターSNSアイコンスタイル
 */

/* お問い合わせアクションコンテナ */
.footer-contact-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

/* SNSアイコンコンテナ */
.footer-social {
    display: flex;
    gap: 8px;
    margin: 0;
}

/* PC以上のサイズで横並び */
@media (min-width: 769px) {
    .footer-contact-actions {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
}

/* SNSリンク共通スタイル */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* アイコンサイズ調整 */
.social-link i {
    font-size: 16px;
    line-height: 1;
}

/* 各SNSのブランドカラー（ホバー時） */
.social-link[aria-label="Facebook"]:hover {
    background-color: #1877f2;
}

.social-link[aria-label="X"]:hover {
    background-color: #000000;
}

.social-link[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link[aria-label="LinkedIn"]:hover {
    background-color: #0077b5;
}

/* モバイルサイズのアイコン調整 */
@media (max-width: 768px) {
    .footer-social {
        gap: 8px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .social-link i {
        font-size: 14px;
    }
}