@charset "utf-8";
@font-face {
	font-display: swap;
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 400;
	src: url('/files/css/font/noto-sans-jp-v52-japanese-regular.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 500;
	src: url('/files/css/font/noto-sans-jp-v52-japanese-500.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 700;
	src: url('/files/css/font/noto-sans-jp-v52-japanese-700.woff2') format('woff2');
}


.pc {
	display:block;
}
.sp{
	display:none;
}
/* ------------------------------------------------------------------
 * 	1-1. Base styles
 *-------------------------------------------------------------------*/
 body .pc {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	/*line-height: 1.3;*/
	color: #333;
	min-width: 1240px;
	font-weight: 400;/* Noto Sans JP Regular */
}

a { color: #00418F; text-decoration: none; outline: none;}
a:hover { text-decoration: underline;}

a.underline { text-decoration: underline;}
a.underline:hover { text-decoration: none;}


/* ヘッダー */
/* ------------------------------------------------------------------
 * 	2-1. Header styles
 *-------------------------------------------------------------------*/
.pc .header {
	background: #FFF;
	padding: 40px 0 25px;
}
.pc .header .wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 1200px;
	margin: 0 auto;
}
.pc .logo img {
	max-height: 24px;
}

/* ------------------------------------------------------------------
 * 	2-1_1. SEARCH（検索ボックス）
 *-------------------------------------------------------------------*/
.pc .search_item {
	border: 1px solid #3362B5;
	border-radius: 2px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.pc input.search_text {
	background: #F1F7FB;
	border: none;
	width: 100%;
	padding: 5px;
	font-size: 12px;
}
.pc .search_button {
	background: #FFF;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: 1px solid #3362B5;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 40px;
	flex: 0 0 40px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f002";
	color: #3362B5;
	font-size: 18px;
	cursor: pointer;
	height: 30px;
}

/* ------------------------------------------------------------------
 * 	2-2. GlobalNavi styles
 * -------------------------------------------------------------------*/
.pc .gnav {
	background: #FFF;
	border-bottom: 4px solid #DBD3C5;
}
.pc .gnav .wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 1200px;
	margin: 0 auto;
}
.pc .gnav_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.pc .gnav_item {
	text-align: center;
	font-weight: 700;
	line-height: 24px;
	position: relative;
}
.pc .gnav_item::after {
	background: #D9D3C5;
	content: '';
	width: 1px;
	height: 16px;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.pc .gnav_item:first-child::after {
	display: none;
}
.pc .gnav_item > a {
	border-radius: 6px 6px 0 0;
	display: block;
	width: 86px;
	padding: 8px 0;
	margin: 0 5px;
	color: #595959;
	position: relative;
}
.pc .gnav_item:first-child a {
	margin: 0 5px 0 0;
}
.pc .gnav_item.active > a {
	background: #5388E6;
	color: #FFF;
}
.pc .gnav_item.active > a::after {
	background: #00418F;
	content: '';
	width: 86px;
	height: 4px;
	position: absolute;
	bottom: -4px;
	left: 0;
}
.pc .gnav_item > a:hover {
	background: #5388E6;
	color: #FFF;
}
.pc .gnav_item > a:hover::after{
	background: #00418F;
	content: '';
	width: 86px;
	height: 4px;
	position: absolute;
	bottom: -4px;
	left: 0;
}
.pc .gnav_sub {
	background: #FFF;
	border-radius: 0 0 6px 6px;
	box-shadow: 0 6px 6px rgba(0,0,0,0.3);
	position: absolute;
	top: 44px;
	left: 5px;
	padding: 19px 24px;
	visibility: hidden;
	opacity: 0;
	z-index: 100;
	width: 340px;/* サブメニューの文字量によっては変更が必要 */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.pc .gnav_sub a {
	color: #333;
}
.pc .gnav_sub a:hover {
	color: #00418F;
	text-decoration: underline;
}
.pc .gnav_item:hover .gnav_sub {
	visibility: visible;
	opacity: 1;
}
.pc .gnav_sub li {
	text-align: left;
	width: calc( 100% / 2 );/* 並びを変更する場合はgnav_subのwidth変更してからここで分割数を指定する */
	padding: 5px 0;
	font-weight: 500;
}

/* ------------------------------------------------------------------
 * 	1-1. Base styles
 *-------------------------------------------------------------------*/
body .sp {
	font-family: 'Noto Sans JP', sans-serif;
	background: #FFF;
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	font-size: 14px;
	font-weight: 400;/* Noto Sans JP Regular */
	color: #333;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

.sp a { color: #00418F; text-decoration: none;}
.sp a.underline { text-decoration: underline;}

/* ------------------------------------------------------------------
 * 	2-1. Header styles
 *-------------------------------------------------------------------*/
.sp .header {
	background: #FFF;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	transition: transform .4s ease;
	transition: transform .4s ease, -webkit-transform .4s ease;
}
.sp .header--unpinned {
	-webkit-transform: translateY(-150%);
	transform: translateY(-150%);
}

.sp .header_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 15px 10px 15px 15px;
}
.sp .logo img {
	max-height: 20px;
	vertical-align: middle;
}

/* ------------------------------------------------------------------
 * 	2-2. GlobalNavi styles
 *-------------------------------------------------------------------*/
.sp .gnav {
	border-bottom: 2px solid #DBD3C5;
	padding: 0 15px;
}
.sp .gnav_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.sp .gnav_item {
	width: 25%;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	line-height: 24px;
}
.sp .gnav_item a {
	background: #FFF;
	border-radius: 6px 6px 0 0;
	display: block;
	color: #595959;
	padding: 6px 0;
	position: relative;
}
.sp .gnav_item.active a {
	color: #333;
}
.sp .gnav_item a span {
	border-right: 2px solid #E9E3D5;
	display: block;
}
.sp .gnav_item:last-child a span,
.sp .gnav_item.active a span,
.sp .gnav_item.before_active a span
{
	border-right: none;
}
.sp .gnav_item a:after {
	background: #333;
	content: '';
	width: 26px;
	height: 2px;
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.sp .gnav_item.active a:after {
	width: 100%;
}

/* トップ */
.sp .gnav_item.active a.top {
	background: #D1E8F2;
}
.sp .gnav_item a.top:after {
	background: #1C418F;
}
/* 地域 */
.sp .gnav_item.active a.local {
	background: #C2E8B2;
}
.sp .gnav_item a.local:after {
	background: #339F39;
}
/* 新着 */
.sp .gnav_item.active a.latest {
	background: #FBC1BF;
}
.sp .gnav_item a.latest:after {
	background: #C33434;
}
/* 連載・特集 */
.sp .gnav_item.active a.series {
	background: #F7C76D;
}
.sp .gnav_item a.series:after {
	background: #DD9E30;
}



/* 全画面 */
#newslist {
	padding-top:50px;
	padding-bottom:30px;
	background-color:#F9F5F2;
}

/* 見出しとニュースの全表示領域 */
#container_post_list{
	max-width:1000px;
	width:100%;
	margin-right: auto;
	margin-left: auto;
	font-family: Noto Sans JP;
}


/* 見出し */
h1{
	font-size: 32px;
	text-align: center;
	margin-bottom: 50px;
	color: #3362B5;
}


/* 3列全域*/
.news_contents{
	display: flex;
	flex-wrap: wrap;
	justify-content:space-around;
	margin-left: 15px;
	margin-right: 15px;
}


/* ニュース全要素 */
.col-lg-4{
	position: relative;
	width: 30%;
	height: auto;
	background-color: #fff;
	border-radius:10px;
	margin-bottom: 50px;
}


/* 上部分全域 */
.list_thumb{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.img-fluid{
	width: 100%;
	height: 194px;
	object-fit:contain;
	background-color: #ededed;
}

/* 下部分全域 */
.list_detail{
	padding: 15px;
}

.li_date{
	font-size: 12px;
	color: #595959;
}

.li_title{
	font-size: 18px;
	color: #333333;
	margin-top: 10px;
}

a{
	text-decoration: none;
	color: #333333;
	font-weight: 600;
}


.li_cat{
	margin-top:15px;
}

.badge{
	font-size: 13px;
	font-weight: normal;
	text-decoration:none;
	color: #00418F;
	margin-top:3px;
	margin-right: 8px;
	display: inline-block;
	line-height: 20px;
}

a:hover{
	text-decoration: underline;
}



/* ここから下がレスポンシブ */

@media screen and (max-width:768px) {
	
	.pc {
		display:none;
	}
	.sp{
		display:block;
	}

	#newslist {
		padding-top:40px;
	}
}
@media screen and (max-width:768px) {
	#container_post_list {
		max-width:500px;
	}
}
@media screen and (max-width:768px) {
	h1 {
		font-size: 24px;
	}
}
@media screen and (max-width:768px) {
	.news_contents{
		margin-bottom: 30px;
		margin-left: 25px;
		margin-right: 25px;
	}
}
@media screen and (max-width:768px) {
	.col-lg-4{
		position: relative;
		width: 100%;
		height: auto;
		background-color: #fff;
		border-radius:10px;
		margin-bottom: 30px;
	}
}