@import 'color-palette.css';

/**
 * シェアボタンスタイル
 * Anaba OffJapan - Social Share Buttons
 */

/* シェアボタンコンテナ */
.share-buttons {
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    border-radius: 12px;
    text-align: center;
}

.share-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 600;
}

.share-buttons-inner {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* シェアボタン基本スタイル */
.share-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* SVGアイコン */
.share-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.share-text {
    font-size: 0.85rem;
}

/* プラットフォーム別スタイル */

/* X/Twitter */
.share-button-twitter {
    background: #000000;
    color: white;
}

.share-button-twitter:hover {
    background: #333333;
}

/* Facebook */
.share-button-facebook {
    background: #1877f2;
    color: white;
}

.share-button-facebook:hover {
    background: #166fe5;
}

/* LinkedIn */
.share-button-linkedin {
    background: #0077b5;
    color: white;
}

.share-button-linkedin:hover {
    background: #006097;
}

/* Hatena Bookmark */
.share-button-hatena {
    background: #00a4de;
    color: white;
}

.share-button-hatena:hover {
    background: #008dc0;
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
    .share-buttons-inner {
        flex-direction: column;
        align-items: center;
    }

    .share-button {
        width: 100%;
        max-width: 280px;
    }
}

/* プリント時は非表示 */
@media print {
    .share-buttons {
        display: none;
    }
}
