.event-point-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem 0;
}

.event-point {
    width: calc(50% - 1rem);
}

.event-point .event-point__title {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    font-weight: bold;
}

.event-point .event-point__location {
    line-height: 1.1;
    margin: 0.5rem 0 0;
    padding: 0.5rem;
    font-weight: bold;
    background-color: #d8edff;
}

.event-point .event-point__note {
    background-color: #f3f3f3;
    font-size: 0.85em;
    padding: 0.5rem;
    line-height: 1.4;
}

.event-point iframe {
    width: 100%;
    height: 160px;
}

.btn.btn-event {
    margin-top: 0.5rem;
    display: block;
    text-align: center;
    background-color: #fff;
    cursor: pointer;
    transition: opacity .3s;
}

.btn.btn-event:hover {
    text-decoration: none;
    opacity: 0.7;
}

@media (max-width: 700px) {
    .event-point-list {
        display: block;
    }
    .event-point {
        width: 100%;
        margin-bottom: 2rem;
    }
}