/*
K2 Pictures - Film Social Share Component
フィルムページ ソーシャルシェアボタン
*/

/* ==========================================================================
   Film Social Share Section
   ========================================================================== */

.film-social-share-section {
    background: #f9f9f9;
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.film-social-share-section__title {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    letter-spacing: 2px;
}

.film-social-share-section__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.film-social-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.film-social-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
    scale: 1.05;
}

.film-social-share-btn svg {
    width: 24px;
    height: 24px;
}

/* X (Twitter) Button */
.film-social-share-btn--x {
    background: #000000;
}

.film-social-share-btn--x:hover {
    background: #333333;
}

/* Facebook Button */
.film-social-share-btn--facebook {
    background: #4267B2;
}

.film-social-share-btn--facebook:hover {
    background: #365899;
}

/* LINE Button */
.film-social-share-btn--line {
    background: #00B900;
}

.film-social-share-btn--line:hover {
    background: #009900;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .film-social-share-section {
        padding: 40px 0;
    }
    
    .film-social-share-section__title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .film-social-share-section__buttons {
        gap: 16px;
    }
    
    .film-social-share-btn {
        width: 48px;
        height: 48px;
    }
    
    .film-social-share-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .film-social-share-section {
        padding: 30px 0;
    }
    
    .film-social-share-btn {
        width: 44px;
        height: 44px;
    }
    
    .film-social-share-btn svg {
        width: 18px;
        height: 18px;
    }
}
