﻿/* ==========================================
   Shu Hakamada Official - Custom Styles v2
   ========================================== */



/* 2. My Favourite Artists Grid */
.musician-grid {
    margin-top: 40px;
    margin-bottom: 60px;
}

.grid-container {
    display: grid;
    /* 画面幅に合わせて最小200pxのカードを並べる */
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    padding: 20px 0;
}

.musician-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 12px 15px;
    border-left: 3px solid #444;
    transition: all 0.3s ease;
}

.musician-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid #0066cc; /* アクセントカラー：赤 */
    transform: translateY(-2px);
}

/* ビートルズなど特定のカードを強調 */
.highlight-card {
    background: rgba(227, 30, 36, 0.1);
    border-left: 3px solid #0066cc;
}

.musician-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.musician-info a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* 言語切り替えボタンのスタイル */
.language {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-top: 0px; /* 位置調整 */
}

.lang-btn {
    display: inline-block;
    padding: 4px 8px !important;
    font-size: 11px;
    text-transform: uppercase;
    color: #fff !important;
    border: 2px solid #444;
    border-radius: 3px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05) !important;
}

.lang-btn:hover {
    background: #0066cc; /* ホバー時に赤色に */
    border-color: #0066cc;
}

/* 現在選択されている言語の強調 */
.lang-btn.active {
    background: #0066cc;
    border-color: #0066cc;
    font-weight: bold;
}