/* --- 楽曲リストテーブル --- */
.tracklist-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #aaa;
    margin-bottom: 2em;
    font-size: .9em;
}
.tracklist-table th, .tracklist-table td {
    border: 1px solid #555;
    padding: .6em .8em;
    vertical-align: top;
    color: #cce8f0;
}
.tracklist-table thead th {
    background: #cdcdcd;
    color: #232323;
    font-weight: bold;
    font-size: 1.1em;
}

.tracklist-table tbody tr { background: #223355; }
.tracklist-table tbody tr:nth-child(odd) { background: rgba(0,0,0,.1); }
.tracklist-table tbody tr:hover { background: rgba(255,255,255,.1); }

.tracklist-table .track-eng-title { color: gray; }
.tracklist-table .track-date { white-space: nowrap; }

.tracklist-table audio {
    display: block;
    margin-bottom: 5px;
}

/* --- スマホ表示調整 --- */
@media (max-width: 768px) {
    .tracklist-table { font-size: .8em; }
    .tracklist-table td, .tracklist-table th { padding: .4em .5em; }
}
