.event_detail .title h2 {
    font-size: 22px;
}
.event-content h4 {
    font-size: 18px;
}
.event-content h5 {
    display: list-item;
    list-style-position: inside;
    list-style-type: none;
    font-size: 16px;
}
.event-content h5::before {
    content: "・";
    padding-right: 8px;
}
.event-content img {
    width: 100%;
}
.event-content .next-prev-event img {
    width: auto;
}
.event-content ol,
.event-content ul {
    padding-bottom: 16px;
}
.event-content ol li,
.event-content ul li {
    display: flex;
}
.event-content ul li::before {
    padding-right: 8px;
    flex: 0 0 18px;
}
.event-content ul li::before {
  content: "・";
}
.event-content ol {
    list-style-type: none;
    counter-reset: section;
    padding: 0;
}
.event-content ol li::before {
    content: counters(section, ".") ". ";
    counter-increment: section;
    padding-right: 8px;
    flex: 0 0 14px;
}
table {
    border-radius: 8px;
    overflow: hidden;
}
table tr td {
    font-size: 16px;
    border: 1px solid #EDEDED;
}
table tr td:first-child {
    width: 140px;
}
.event-content blockquote {
    border: 1px solid #45C4B7;
    border-radius: 8px;
    padding: 8px 16px;
    margin-bottom: 16px;
}
.next-prev-event a span {
    font-weight: 500;
    color: #2E2E2E;
    text-decoration: underline;
    text-underline-offset: 2px;
    line-height: 1;
    display: block;
}

/* PC ONLY */
@media only screen and (min-width: 992px) {
    .event_detail .title span.date {
        font-size: 16px;
    }
    .next-prev-event {
        padding-top: 40px !important;
        margin-top: 40px !important;
    }
}

/* SP ONLY */
@media only screen and (max-width: 991px) {
    .event_detail .title h2 {
        font-size: 16px;
    }
    .event-content h4 {
        font-size: 14px;
    }
    .event-content h5 {
        font-size: 12px;
    }
    table tr td:first-child {
        width: 80px;
    }
    table tr td {
        font-size: 12px;
    }
}