#contents {
    margin: 0;
    padding: 0;
}

#contents {
    width: 100%;
    margin-block-start: 30px;
    margin-inline: auto;
    box-sizing: border-box;
    clear: both;
    overflow: hidden;
}


#fourbox {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    row-gap: 35px;
}

figure {
    width: 100%;
    margin: 0;
}

figure a {
    display: block;
    width: 100%;
}

figure a:hover {
    opacity: 0.7;
}

.sp {
    display: none;
}

.spot_img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

#fourbox .box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#fourbox p {
    margin: 10px 0px 0px 0px;
    font-size: 12px;
    line-height: 1.3;
    text-align: left;
    width: 100%;
}

#local_area {
    color: #0A318E;
    background-color: #F5F5F5;
    font-weight: 400;
    padding: 10px;
    border-left: #0A318E solid 0.5rem;
    font-size: 24px;
}

.place {
    margin-block-start: 0;
    margin-block-end: 4px;
    text-align: center;
    color: #0A318E;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

@media screen and (max-width: 960px) {
    #fourbox {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media screen and (max-width: 768px) {
    #contents {
        margin: 20px auto;
    }

    #fourbox {
        grid-template-columns: repeat(2, 1fr);
    }

    #contents {
        padding: 0 10px;
    }


}

@media screen and (max-width: 550px) {

    #fourbox {
        row-gap: 15px;
    }

    .place {
        font-size: 13px;
        line-height: 1.2;
    }

    .sp {
        display: block;
    }
}