/* 入選は必ず横5枚。各画像の幅と4か所の隙間を完全に均等にする。 */
@media (min-width:781px) {
    .cpl-selected {
        display:grid !important;
        grid-template-columns:repeat(5,var(--selected)) !important;
        justify-content:space-between !important;
        align-items:start !important;
        column-gap:0 !important;
        row-gap:1em !important;
        width:100% !important;
        max-width:100% !important;
    }

    .cpl-selected .cpl-card,
    .cpl-selected .cpl-card:nth-child(n) {
        box-sizing:border-box !important;
        width:var(--selected) !important;
        min-width:0 !important;
        max-width:var(--selected) !important;
        margin-left:0 !important;
        margin-right:0 !important;
        padding-left:0 !important;
        padding-right:0 !important;
        justify-self:stretch !important;
    }

    .cpl-selected .cpl-zoom,
    .cpl-selected .cpl-zoom img {
        box-sizing:border-box !important;
        width:100% !important;
        max-width:100% !important;
        margin-left:0 !important;
        margin-right:0 !important;
    }
}
