@charset "utf-8";

/* ==================================================================

    event.css

=================================================================== */

/* --------------------------------
■共通
-------------------------------- */

/* --------------------------------
■eventList
-------------------------------- */
#eventList {
    padding-top: 100px;
}
#eventList ul.event_list {
    gap: 68px 32px;
}
#eventList ul.event_list li {
    width: calc(( 100% - 64px) / 3)
}
#eventList li a.end {
    pointer-events: none;
}
#eventList span.end {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,10,10,0.6);
    color: var(--text-color-white);
}
    #eventList span.end >span {
        text-align: center;
        vertical-align: middle;
    }
    #eventList span.end >span em {
        position: relative;
        display: block;
        font-size: 200%;
        font-weight: 400;
        line-height: 1.1;
        letter-spacing: 0.1em;
        margin-bottom: 8px;
    }

#eventList figcaption {
    margin-top: 20px;
}
#eventList figcaption p {
    line-height: 1.2;
}
#eventList figcaption .tag span {
    display: inline-block;
    color: var(--text-color-white);
    font-size: var(--font-size14);
    letter-spacing: 0.1em;
    line-height: 1;
    padding: 5px 8px;
    background: var(--bg-color-black);
}
    #eventList figcaption .tag span.yoyaku {
        color: var(--text-color);
        background: var(--bg-color-white);
        border: 1px solid #707070;
        padding: 4px 10px;
    }
#eventList figcaption .tag span + span {
    margin-left: 12px;
}
#eventList .skd {
    font-size: var(--font-size14);
}
#eventList .ttl {
    font-size: var(--font-size-l);
    font-weight: 600;
}
#eventList .loc,
#eventList .cat,
#eventList .tag {
    font-size: var(--font-size14);
    color: var(--text-color-gray);
}

@media only screen and (max-width: 1080px) {

    #eventList ul.event_list {
        gap: 40px 32px;
    }
    #eventList ul.event_list li {
        width: calc(( 100% - 32px) / 2)
    }
}

@media only screen and (max-width: 767px) {

    #eventList {
        padding-top: 60px;
    }
    #eventList ul.event_list {
        gap: 32px;
    }
}