/* ---------------------------
試合速報ボックスが空の時の処理
--------------------------- */
.match_empty {
    color: var(--text-color);
    font-size: 1rem;
    padding: 0.5rem 0;
    text-align: left;
}

@media screen and (max-width: 640px) {
    .match_empty {
        font-size: 0.9rem;
        text-align: center;
    }
}

.match_empty_list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.match_empty_list li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    background-color: var(--reverse-color);
    border: 1px solid var(--site-background-color);
    border-radius: 3px;
    padding: 1rem;
    box-shadow: 1px 2px 4px 0px #ddd;
    font-size: 0.9rem;
    color: var(--gray-text-color);
    text-decoration: none;
}

.match_empty_list li > a > img {
    width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
    opacity: 0.4;
}

.match_empty_list li > a:hover {
    color: var(--site-text-color);
}

.match_empty_list li > a:hover > img {
    opacity: 1;
}

@media screen and (max-width: 640px) {
    .match_empty_list {
        grid-template-columns: 1fr;
    }
}