/* 入選は必ず1行5作品で折り返す。 */
@media (min-width:781px) {
    .cpl-selected {
        display:grid;
        grid-template-columns:repeat(5,minmax(0,1fr));
        width:100%;
        row-gap:1em;
    }

    .cpl-selected .cpl-card {
        width:min(var(--selected),100%);
        min-width:0;
    }

    .cpl-selected .cpl-card:nth-child(5n+1) { justify-self:start; }
    .cpl-selected .cpl-card:nth-child(5n+2),
    .cpl-selected .cpl-card:nth-child(5n+3),
    .cpl-selected .cpl-card:nth-child(5n+4) { justify-self:center; }
    .cpl-selected .cpl-card:nth-child(5n+5) { justify-self:end; }
}
