/* V系新譜情報テーブル */
.vkei-releases-wrapper {
    margin: 2rem 0;
}

.vkei-releases-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.vkei-releases-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.vkei-releases-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.vkei-releases-table tbody tr:hover {
    background-color: #f9f9f9;
}

.vkei-releases-table td {
    padding: 12px 10px;
    vertical-align: middle;
}

/* 発売日列 */
.td-date {
    width: 10%;
    text-align: center;
    border-right: 2px solid #ddd;
}

.date-display {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

/* 商品情報列 */
.td-info {
    width: 70%;
    padding-right: 15px;
}

.info-line1 {
    margin-bottom: 6px;
    line-height: 1.4;
}

.info-line1 .artist {
    font-weight: 700;
    font-size: 14px;
    color: #333;
}

.info-line1 .separator {
    color: #999;
    margin: 0 4px;
}

.info-line1 .title {
    font-size: 13px;
    color: #555;
}

.info-line2 {
    font-size: 12px;
    color: #666;
}

.info-line2 .catalog {
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.info-line2 .separator {
    color: #ccc;
    margin: 0 6px;
}

.info-line2 .price {
    font-weight: 600;
    color: #333;
}

/* リンク列 */
.td-links {
    width: 20%;
    text-align: center;
}

.links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: 200px;
    margin: 0 auto;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 8px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    color: #fff;
}

.link-btn .emoji {
    font-size: 16px;
    line-height: 1;
}

.link-btn .text {
    font-size: 11px;
    white-space: nowrap;
}

.link-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.link-amazon { background: #232F3E; }
.link-tower { background: #C41E3A; }
.link-neowing { background: #003D82; }
.link-hmv { background: #C8102E; }

.link-empty {
    background: transparent;
    cursor: default;
}

/* エラーメッセージ */
.vkei-releases-error {
    padding: 1rem;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    color: #856404;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .td-date {
        width: 15%;
    }
    
    .date-display {
        font-size: 14px;
    }
    
    .td-info {
        width: 60%;
    }
    
    .info-line1 .artist {
        font-size: 12px;
    }
    
    .info-line1 .title {
        font-size: 11px;
    }
    
    .info-line2 {
        font-size: 10px;
    }
    
    .td-links {
        width: 25%;
    }
    
    .links-grid {
        gap: 4px;
        max-width: 80px;
    }
    
    .link-btn {
        padding: 8px 4px;
    }
    
    /* スマホ版：テキストを非表示 */
    .link-btn .text {
        display: none;
    }
    
    .link-btn .emoji {
        font-size: 18px;
    }
}
