/* SNS共有ボタン */
.social-share-buttons {
    position: relative;
    margin-bottom: 20px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.social-share-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-family: 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
}

/* Xボタン */
.x-share-btn {
    background-color: #000000;
    color: #ffffff;
}

.x-share-btn:hover {
    background-color: #333333;
    color: #ffffff;
}

.x-share-btn:active {
    background-color: #555555;
}

/* Facebookボタン */
.fb-share-btn {
    background-color: #404040;
    color: #ffffff;
}

.fb-share-btn:hover {
    background-color: #555555;
    color: #ffffff;
}

.fb-share-btn:active {
    background-color: #666666;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .social-share-buttons {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .social-share-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}
