.bold {
    font-weight: bold;
}

.news_index_list {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    list-style-type: square;
    padding-left: 1em;
}
.news_index_item {
    margin-top: 0.5em;
    border-bottom: 1px dashed #ccc;
    color: #00B2A7;
    line-height: 2;
    font-weight: bold;
    font-size: 1.4rem;
}

.news_wrapper {
    width: 97%;
    max-width: 1200px;
    margin: 20px auto;
}
.newspage {
    margin: 10px auto 0;
}
.news_title {
    color: #2dabea;
    font-size: 1.6rem;
}
.news_date {
    margin: 0.25em 0 0 0;
    color: #444;
    font-weight: bold;
    font-size: 1.4rem;
}
.news_box {
    margin: 0.25em 0 1em 0;
    line-height: 1.4;
    font-size: 1.4rem;
}
.news_sentence {
    margin: 0 0 0.5em;
}

.news_image1 {
    width: 90%;
    max-width: 600px;
    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;
}

/*btn1
---------------------------------------------------------------------------*/


/*btn1共通*/

a.btn1 {
    text-decoration: none;
    display: inline-block;
    background-color: #00B2A7;
    /*背景色、背景の矢印画像の読み込み、左から15pxの場所に配置。幅を6pxに。*/
    color: #FFF !important;
    border-radius: 8px;
    /*角丸のサイズ。ほんの少しだけ角を丸くしています。*/
    padding:8px 20px;
    margin:20px;
    font-size:1.8rem;
}

/*マウスオン時*/

a.btn1:hover {
    background-color: #76D2D0;
}


/*btn2共通*/

a.btn2 {
    text-decoration: none;
    display: inline-block;
    background-color: #2dabea;
    /*背景色、背景の矢印画像の読み込み、左から15pxの場所に配置。幅を6pxに。*/
    color: #FFF !important;
    border-radius: 8px;
    /*角丸のサイズ。ほんの少しだけ角を丸くしています。*/
    padding:8px 20px;
    margin:10px;
    font-size:2.0rem;
    width:400px;
}

/*マウスオン時*/

a.btn2:hover {
    background-color: #f2a4e0;
}




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

	a.btn2 {
	    width:95%;
	}

}


@media screen and (min-width: 600px) {
    .news_index_list {
        width: 90%;
    }
    .news_index_item {
        margin-top: 0.5em;
        line-height: 2;
        font-size: 2rem;
    }
    .pc_gc_1_3 {
        grid-column: 1 / 3;
    }

    .news_wrapper {
        margin: 40px auto;
    }
    .newspage {
        margin: 20px auto 0;
    }
    .news_title {
        font-size: 2.4rem;
    }
    .news_date {
        margin: 0.25em 1em 0;
        font-size: 2rem;
    }
    .news_box {
        margin: 0.25em 0 2em 0;
        line-height: 1.6;
        font-size: 2rem;
    }
    .news_sentence {
        margin: 0 1em 0.5em;
    }
    .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;
    }

    .blog_list_customize {
        max-width: 1200px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 15px;
        margin-top: 30px;
    }
    .blog_item_customize {
        grid-template-columns: 1fr 3fr;
    }
    .bi_title_customize {
        font-size: 2rem;
    }
    .blog_detail_customize {
        margin-top: 1em;
    }
}