.poster {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -5px;
}
.item-show {
    position: relative;
    width: 240px;
    margin: 5px;
}
.item-show a {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    text-decoration: none;
}
.item-show a:hover {
    box-shadow: 2px 2px 4px var(--colorMain), -1px -1px 0 var(--colorRed);
}
.item-show header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 64px;
    line-height: 1.1;
    z-index: 100;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
    background: var(--colorMain);
    padding: 0 7px;
    color: var(--colorWhite);
    text-align: center;
    text-transform: uppercase;
    font-size: 15px;
}
.item-show figure {
    display: block;
    position: relative;
    overflow: hidden;
    margin-top: 64px;
}
.item-show figure::before {
    display: block;
    content: "";
    width: 100%;
    margin-top: 141.6%;
}
.item-show figure img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.show-carry,
.show-replace,
.show-drops,
.show-ticket-no {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--colorWhite);
    font-weight: bold;
    font-size: 24px;
    text-transform: uppercase;
}
.show-carry,
.show-replace,
.show-drops {
    text-shadow: 1px 1px 2px var(--colorRed), -1px -1px 2px var(--colorRed);
    letter-spacing: 2px;
}
.show-ticket-no {
    text-shadow: 1px 1px 2px var(--colorBlack), -1px -1px 2px var(--colorBlack);
}
.item-show footer {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 48px;
    line-height: 1.25;
    z-index: 100;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    background: var(--colorMain);
    background: var(--bgMain75);
    padding: 0 7px;
    color: var(--colorWhite);
}
.item-show footer time {
    display: flex;
    align-items: center;
    font-weight: 300;
}
.item-show footer time::before {
    margin: 0 7px 0 0;
}
.item-show footer .ico-date::before {
    font-size: 12px;
}
.item-show footer span {
    display: flex;
}
.item-show footer span::before {
    font-size: 12px;
    margin: 2px 10px 0 0;
}



.item-show label {
    position: absolute;
    top: 5px;
    right: 7px;
    background:var(--colorLight);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--colorRed);
    color: var(--colorBlack);
    padding: 0 0 0 2px;
}
@media only screen and (min-width:781px) and (max-width:840px) {
    .item-show {
        width: calc(33.333% - 10px);
    }
}
@media only screen and (min-width:521px) and (max-width:780px) {
    .item-show {
        width: calc(50% - 10px);
    }
}
@media only screen and (max-width:520px) {
    .item-show {
        width: calc(100% - 10px);
    }
}
