@charset "UTF-8";
/* CSS Document */

/*news*/

/*==========
news一覧ページ
==========*/
.bl_news {
	padding-top: 2.5em;
	padding-bottom: 5em;
}
/*---news_glid---*/
/*参考ソース frontPage.cs .bl_info_box_wrap*/
.bl_news_grid {
	display: flex;
	justify-content: flex-start;/*--20250714*/
	flex-wrap: wrap;
    margin: auto;
    width: 93%;/*--20250714*/
}
.bl_news_grid > div {
	width: calc((100% - 7% * 2)/3);/*--20250714*/
    margin-right: 7%;/*--20250714*/
    margin-bottom: 4em;
}
.bl_news_grid > div:nth-of-type(3n) {
    /*--20251007*/
    margin-right: 0;
}
.bl_news_grid > div a {
	text-decoration: none;
	color:inherit;
}
.bl_news_grid > div img {
	width: 100%;
	border-radius: 10px;
	aspect-ratio:16 / 9;
	overflow: hidden;
	margin-bottom: 1.2rem;
	object-fit: cover;
}
.bl_news_grid > div .text {
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 0.25em;
}
.bl_news_grid > div .date {
	font-size: 0.85em;
}
/*-narrow*/
@media screen and (max-width:700px){
	.bl_news_grid {
		flex-wrap: wrap;
		width: 93%;/*--20250714*/
	}
	.bl_news_grid > div {
        /*--20250714*/
		width: 100%;
        margin-right: inherit;
        margin-bottom: 7em;
	}
}

/*---WPページナビゲーション---*/
.navigation {
	text-align: center;
	margin-top: 3em;
}
.nav-links {
}
.nav-links > * {
	display: inline-block;
	font-size: 11px;
	text-decoration: none;
	color: #000;
	padding: 4px;
	line-height: 1;
	text-align: center;
	min-width: 10px;
	min-height: 10px;
	padding: 4px;
	margin: 0 3px;
	background-color:#e0e0e0;
}
.nav-links .current {
	background-color: #6ca1e3;
	color:#fff;
}
.nav-links .dots {
	background-color: transparent;
}


/*==========
news詳細ページ
==========*/

/*---詳細ブロック---*/
.bl_news_detail {
}
/*-ニュース一覧に戻るリンク*/
.nav_backLink {
	font-size: 0.9em;
	margin-bottom: 4rem;
	color: var(--theme-color);
}
/*common.css .defaultPage .title上書き*/
.bl_news_detail .title {
}
.bl_news_detail .title::after {
	width: 100%;
}
.bl_news_detail .date {
	display: block;
	font-style: normal;
	font-weight: bold;
	margin-bottom: 2.5em;
}
.bl_news_detail p {
	line-height: 2.5;
}