.date_view {
    margin: 50px 0 30px 0;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1.2;
}

@media screen and (max-width: 1100px) {
    .date_view {
        display: none;
    }
}

.date_view_sp {
    display: none;
}

@media screen and (max-width: 1100px) {
    .date_view_sp {
        padding: 13px;
        text-align: left;
        display: block;
        background-color: #EEEEEE;
    }

    .date_box_sp {
        align-items: center;
        justify-content: center;
        background-color: #EEEEEE;
        font-size: 15px;
        font-weight: bold;
        letter-spacing: 0.75;
        text-align: center;
    }
}

.content-parent {
    margin: 30px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media screen and (max-width: 1100px) {
    .content-parent {
        margin: 0 auto 0 auto;
    }
}

.content-left {
    flex-grow: 1;
    margin-right: 12px;
    width: 19%;
    max-width: 430px;
    align-items: baseline;
}

.content-right {
    flex-grow: 1;
    width: 60%;
}

@media screen and (max-width: 1100px) {
    .content-parent {
        padding-top: 0;
        display: block;
    }

    .content-left {
        width: 100%;
        margin-right: 0;
        min-width: 0px;
        max-width: none;
        background-color: #FFFFFF;
    }

    .content-right {
        width: 100%;
        margin-left: 0;
    }
}

.loading {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 15;
}

.loading::before {
    content: "";
    display: block;
    position: fixed;
    width: 100px;
    height: 100px;
    border-radius: 5px;
    background: white;
    inset: 0;
    margin: auto;
}

.loading::after {
    content: "";
    display: block;
    position: fixed;
    width: 64px;
    height: 64px;
    border-radius: 40px;
    border: 8px solid #89C750;
    border-right: 8px solid white;
    animation: rotate 1s infinite linear;
    inset: 0;
    margin: auto;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}