@charset "UTF-8";

.event_head,
.event_body1,
.event_body2,
.event_body3 {
    border: 1px solid #eeeeee;
    padding: 10px;
}

table tr:first-child {
    background-color: #d6e8fa;
}

table {
    width: 100%;
}

td {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
}

.event_body1 img,
.event_body2 img,
.event_body3 img {
    width: 100px;
}

.program_text {
    width: 30%;
}

/* スクリーンサイズが599pxまでのスタイルを記述 */
@media screen and (max-width: 599px) {
    td {
        flex-direction: column;
        row-gap: 30px;
    }

    .program_text {
        width: 100%;
    }
}