.event-show {
    display: flex;
    gap: 67px;
    margin-bottom: 94px;
}

@media screen and (max-width: 1024px) {
    .event-show {
        flex-direction: column;
        margin-bottom: 54px
    }
}

.event-show__content {
    flex: 1;
}

@media screen and (max-width: 1024px) {
    .event-show__content {
        order: 2;
    }
}

.event-show__title {
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 2.4px;
    line-height: calc(36 / 24);
    margin-bottom: 21.98px;
    padding-bottom: 22.02px;
    position: relative;
}

@media screen and (max-width: 1024px) {
    .event-show__title {
        font-size: 20px;
        letter-spacing: 2px;
        line-height: calc(36 / 20);
    }
}

.event-show__title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    flex-shrink: 0;
    width: 100%;
    height: 2px;
    background-image: repeating-linear-gradient(to right, #000000 0 1px,
            /* ドットの幅 */
            transparent 2px 8px
            /* 間隔 8px */
        );
}

.event-show__meta {
    margin-bottom: 31px;
    padding-bottom: 31px;
    position: relative;
}

.event-show__meta::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    flex-shrink: 0;
    width: 100%;
    height: 2px;
    background-image: repeating-linear-gradient(to right, #000000 0 1px,
            /* ドットの幅 */
            transparent 2px 8px
            /* 間隔 8px */
        );
}

.event-show__meta-item {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1.8px;
    line-height: calc(32 / 18);
    display: flex;
    align-items: center;
    gap: 18px;
}

@media screen and (max-width: 1024px) {
    .event-show__meta-item {
        font-size: 16px;
        letter-spacing: 1.6px;
        line-height: calc(32 / 16);
        gap: 12px;
    }
}

.event-show__meta-icon {
    display: inline-block;
}

.event-show__description {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1.6px;
    line-height: 2;
}

@media screen and (max-width: 1024px) {
    .event-show__description {
        font-size: 14px;
        letter-spacing: 1.4px;
        line-height: calc(32 / 14);
    }
}

.event-show__meta-icon img {
    width: 17px;
    vertical-align: middle;
}

@media screen and (max-width: 1024px) {
    .event-show__meta-icon img {
        width: 15px;
    }
}

.event-show__image {
    width: 54.1129032%;
}

@media screen and (max-width: 1024px) {
    .event-show__image {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }
}

.event-show__image img {
    width: 100%;
    aspect-ratio: 671 / 502;
    object-fit: cover;
    border-radius: 10px;
}

.event-show-wrapper input[type="checkbox"] {
    appearance: checkbox !important;
    -webkit-appearance: checkbox !important;
    display: inline-block !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 16px !important;
    height: 16px !important;
    margin: 0;
}

.event-show__form-title {
    margin-right: -32px;
    margin-left: -32px;
    background-color: #E85959;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    font-size: 32px;
    letter-spacing: 3.2px;
    line-height: calc(36 / 32);
    padding-top: 17px;
    padding-bottom: 17px;
    margin-bottom: 97px;
}

@media screen and (max-width: 1024px) {
    .event-show__form-title {
        margin-bottom: 57px;
        font-size: 24px;
        letter-spacing: 2.4px;
    }
}

.event-show__form-caution {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: .8px;
    line-height: 2;
    margin-bottom: 47.5px;
}

@media screen and (max-width: 389px) {
    .event-show__form-caution {
        font-weight: bold;
        font-size: 16px;
        letter-spacing: .3px;
        line-height: 2;
        margin-bottom: 47.5px;
    }
}    