/* ////////////////////////////////// */
/* トップイメージ画像 */
/* ////////////////////////////////// */
.lower_top_news {
    background-image: url(../images/news/topimg.jpg);
    background-size: cover;
    background-position: center center;
}


/* ////////////////////////////////// */
/* お知らせ一覧 */
/* ////////////////////////////////// */
.news_list_area {
    margin: 130px auto;
    max-width: 1000px;
}
.news_list_flex {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.news_list_block {
    display: block;
    width: calc(100% / 3 - 20px);
    margin-right: 30px;
    margin-bottom: 30px;
}
.news_list_block:nth-of-type(3n) {
    margin-right: 0;
}
.news_list_img {
    height: 206px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
    border-radius: 20px;
}
.news_list_img img {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.news_list_block .date {
    color: #B5B5B5;
}
.news_list_block .date span {
    margin-left: 10px;
    color: #fff;
    font-size: 14px;
    padding: 0px 5px;
    background: #4C4C4C;
}
.news_list_block .date .color1 {
    background: #31C521;
}
.news_list_block .date .color2 {
    background: #FF8E25;
}
.news_list_block .date .color3 {
    background: #FA7EB5;
}
.news_list_block .title {
    margin: 5px 0 10px;
    font-size: 20px;
}
.news_list_block .txt {

}

/* 改ページ */
.wp-pagenavi {
    margin: 50px auto 0;
    display: block;
    text-align: center;
}
.wp-pagenavi a, .wp-pagenavi span {
    padding: 5px 10px!important;
    margin: 5px!important;
}
.wp-pagenavi span.current {
    color: #fff!important;
    background: #FF6644!important;
    border-color: #FF6644!important;
}


/* ////////////////////////////////// */
/* お知らせ詳細 */
/* ////////////////////////////////// */
.news_detail_area {
    margin: 130px auto;
    max-width: 1000px;
}
.news_detail_top {
    margin-bottom: 50px;
}
.news_detail_top .date {
    color: #B5B5B5;
}
.news_detail_top .date span {
    margin-left: 10px;
    color: #fff;
    font-size: 14px;
    padding: 0px 5px;
    background: #4C4C4C;
}
.news_detail_top .date .color1 {
    background: #31C521;
}
.news_detail_top .date .color2 {
    background: #FF8E25;
}
.news_detail_top .date .color3 {
    background: #FA7EB5;
}
.news_detail_top .title {
    margin: 5px 0 10px;
    font-size: 28px;
}
.news_detail_area img {
    width: 100%;
}
.back_btn {
    margin: 50px auto 0;
    width: 180px;
    background: #ECEEF1;
    color: #4C4C4C;
    border-radius: 30px;
    padding: 15px 20px;
    text-align: center;
    transition: 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.back_btn:hover {
    background: #cccccc;
}


/* /////////////////////// */
/* サイズの大きいPC */
/* /////////////////////// */
/*
@media screen and (min-width:1350px){
    .m3_back {
        height: 1200px;
    }
}
@media screen and (min-width:1450px){
    .m3_back {
        height: 1300px;
    }
}
*/

/* /////////////////////// */
/* サイズの小さいPC */
/* /////////////////////// */
@media screen and (max-width:1050px){
    .news_list_area {
        width: 750px;
    }
    .news_list_img {
        height: 155px;
        margin-bottom: 10px;
    }

    .news_detail_area {
        width: 750px;
    }    
}


/* /////////////////////// */
/* レスポンシブ対応 */
/* /////////////////////// */
@media screen and (max-width:767px){
    .news_list_area {
        width: calc(100% - 30px);
        margin: 50px auto 100px;
    }
    .news_list_block {
        width: 100%;
        margin-right: 0;
    }
    .news_list_img {
        height: 200px;
    }

    .news_detail_area {
        width: calc(100% - 30px);
        margin: 50px auto 100px;
    }
    .news_detail_top {
        margin-bottom: 30px;
    }
}