.mv-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* ← 中央揃え → 左揃えに変更 */
    gap: 35px;
    padding: 20px 10px;
}

.mv-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* PC: 左揃え */
    width: 500px; /* PC基準 */
    transition: transform 0.3s ease; /* ホバー時のアニメーション */
}

.mv-card:hover {
    transform: scale(1.05); /* 1.05倍に拡大 */
}

.mv-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.mv-thumb {
    position: relative;
    width: 100%;
    padding-top: 50%; /* 16:8.5 に調整 → 8.5/16 = 0.53125 */
    overflow: hidden;
    border-radius: 12px;
}

.mv-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;       /* 多少切れても上下黒帯なし */
    object-position: center; /* 中央からカット */
    border-radius: 12px;
}

.mv-title {
    margin-top: 10px;
    font-size: 18px;
    color: #fff;
    text-align: left; /* PC: 左揃え */
    margin-bottom: 15px;
}

/* スマホ対応 */
@media (max-width: 729px) {
    .mv-grid {
        justify-content: center; /* スマホは中央揃え */
    }
    .mv-card {
        width: 95%;
        align-items: center; /* タイトルも中央揃え */
    }
    .mv-title {
        text-align: center;
    }
}