@charset "UTF-8";
section{
    width: 90%;
    max-width: 1222px;
    margin: 0 auto;
}
section .title_large{
    font-size: 5.5rem;
	letter-spacing: 0.55px;
    margin-bottom: 15px;
}
section .fnt13{
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 10px;
}
.category_menu{
    padding: 0;
    text-align: center;
    margin: 0 auto;
    font-size: 2.4rem;
	letter-spacing: 0.24px;
}
.category_menu li{
    padding: 15px;
}
.category_menu li a{
    text-decoration: none;
    position: relative;
}
.category_menu li a::after{
    position: absolute;
    bottom: -10px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.category_menu li a:hover::after,
.category_menu li.active a::after{
    bottom: 0;
    opacity: 1;
    visibility: visible;
}
/*ニュース一覧*/
.news_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;/*変更*/
    margin: 95px 0;
}
.news_list::after{
    content:"";
    display: block;
    width:394px;
}
.news_list .news_box{
    display: flex;
    flex-wrap: wrap;
    width: 394px;
    height: 330px;
    text-decoration: none;
    transition: 0.3s;
    padding-bottom: 57px;
    margin-bottom: 63px;
    border-bottom: 1px solid #B4B4B4;
}
.form_group_select2 {
    width: 315px;
    margin-left: auto;
    margin-right: auto;
}
.form_group_select2 select {
    width: 315px;
    display: inline-block;
    padding: 0 8px;
    box-sizing: border-box;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-image: none;
    border: 1px solid #BFBFBF;
    font-size: 1.4rem;
    -webkit-appearance: none;
    border-radius: 0;
    height: 38px;
}
@media (max-width:1313px){
	.news_list{
		justify-content: space-around;
	}
}
@media (min-width:1331px){
	/* 3列リストの一番左下にある要素 */
	.news_list .news_box:nth-child(3n+1):nth-last-child(-n+3),
	/* 3列リストの一番左下にある要素以降にあるすべての.news_box */
	.news_list .news_box:nth-child(3n+1):nth-last-child(-n+3) ~ .news_box {
		border: none;
	}
}
.news_list .news_box .img_wrap{
    width: 100%;
    height: 218px;
    overflow: hidden;
    position: relative;
}
.news_list .news_box .img_wrap > img{
    width: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.news_list .news_box .img_wrap > img.default{
    height: 100px;
    width: 105px;
}
.news_list .news_box .text_wrap {
    font-size: 1.3rem;
	width: 100%;
}
.news_list .news_box .text_wrap p{
    font-size: 1.3rem;
    word-break: break-all;
    white-space: pre-wrap;
    margin: 1em 0;
}
.news_list .news_box .text_wrap .category_name{
    padding: 8px 0;
    text-align: center;
    position: relative;
}
.news_list .news_box .text_wrap .category_name::after{
    display: block;
    content: "";
    width: 16px;
    height: 1px;
    background: #000;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.news_list .news_box .text_wrap .date{
    text-align: center;
}
.news_list .news_box .text_wrap .title{
    line-height: 1.5;
}