.songs-container {
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* カード */
.song-card {
    background: #fff7ff;
    border: 2px solid #e6c9ff;
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(200, 150, 255, 0.25);
    transition: 0.3s;
}

.song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(200, 150, 255, 0.35);
}

/* 画像 */
.song-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 12px;
}

/* タイトル */
.song-card h2 {
    font-size: 1.2em;
    color: #663399;
    margin-bottom: 8px;
}

/* 説明 */
.song-card p {
    font-size: 0.95em;
    color: #444;
    line-height: 1.6;
}
