/* 各賞の画像サイズと間隔を完全に独立させる。 */
@media (min-width:781px) {
    .cpl-grand-wrap,
    .cpl-excellent { padding-right:0; }

    .cpl-excellent {
        grid-template-columns:repeat(3,var(--excellent));
        justify-content:space-between;
    }
    .cpl-honorable {
        grid-template-columns:repeat(4,var(--honorable));
        justify-content:space-between;
    }
    .cpl-selected {
        grid-template-columns:repeat(5,var(--selected));
        justify-content:space-between;
    }
    .cpl-excellent .cpl-card,
    .cpl-honorable .cpl-card,
    .cpl-selected .cpl-card {
        width:100%;
        justify-self:stretch;
    }
}
