.bold {
    font-weight: bold;
}
.fs130 {
    font-size: 130%;
}
.green {
color:#00a73c;
}

.news_wrapper {
    width: 97%;
    max-width: 1100px;
    margin: 20px auto;
    margin-top: 40px;
}

.news_title {
    font-size: 1.4rem;
    line-height: 2rem;
}
.news_title2 {
    font-size: 1.3rem;
    line-height: 2rem;
}

.news_image1 {
    width: 90%;
    max-width: 800px;
    margin: 0 auto 0.5em;
}
.news_image1 img {
    width: 100%;
}
.news_image1 video {
    width: 100%;
}

.grid_basic {
    width: 80vw;
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    margin: 0 auto;
}
.grid_basic img {
    width: 100%;
}

.flex01 {
    max-width: 1000px;
    width: 100%;
    display: flex; 
    flex-wrap: wrap;
    justify-content: center;
}
.flex01 img {
    width: 90%;
    margin-bottom: 10px;
}




@media screen and (min-width: 600px) {

    .news_wrapper {
        margin: 40px auto;
    }
    .news_title {
        font-size: 1.8rem;
    }
    .news_title2 {
        font-size: 1.4rem;
    }
    .grid_1_1 {
        grid-template-columns: 1fr 1fr;
    }
    .grid_1_1_1 {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .grid_1_1_1_1 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .flex01 img {
        width: auto;
        height: 300px;
        margin: 0 5px 10px;
    }

}