@charset "utf-8";
#content_wrap::before {
	content: none;
}
/*------------ news_tab ------------*/
.news_tab {
	display: flex;
	flex-wrap: wrap;
	text-decoration: none;
	padding: 0;
	margin: 0 auto 50px;
}

.tab_item {
	position: relative;
	display: block;
	list-style: none;
}

.tab_item:not(:last-child)::after {
	content: '|';
	display: inline-block;
	margin: 0 9px 0 6px;
}

.tab_link {
	font-weight: 500;
	position: relative;
	display: inline-block;
	text-decoration: none;
	transition: color 0.3s;
}

.tab_link:hover {
	color: #559EE8;
}

.tab_item:last-child .tab_link {
	margin-right: 0;
}

.tab_link:hover::after,
.active .tab_link::after {
	opacity: 1;
	visibility: visible;
}

.tab_link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #559EE8;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

.tab_item.active .tab_link {
	color: #559EE8;
}

/*------------ 一覧・詳細 共通 ------------*/
.news_date {
	margin-right: 23px;
	padding: 0;
}

.news_cate {
	color: #559EE8;
	border: 1px solid #559EE8;
	font-size: 1.3rem;
	display: inline-block;
	min-width: 116px;
	text-align: center;
	align-self: center;
	box-sizing: border-box;
	padding: 1px 0;
	margin-right: 29px;
}

/*------------ news_list ------------*/

.news_list {
	border-top: #ccc 1px solid;
	border-right: #ccc 1px solid;
	border-left: #ccc 1px solid;
	padding: 0;
	margin: 28px 0 40px;
}

.news_list li {
	list-style: none;
	line-height: 1.7;
	margin: 0;
	border-bottom: #ccc 1px solid;
}

.news_list li a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-family: 'Noto serif JP', serif;
	color: #333;
	text-decoration: none;
	padding: 26px 49px 25px 35px;
	width: 100%;
	background: url(../img/arrow_r_grey.svg) no-repeat right 26px center / 14px 10px;
	transition: all .3s;
}



.news_list li .news_title {
	line-height: 1.7;
	max-width: calc(100% - 258px);
	margin: 0;
}

/* hover */
.news_list li a:hover {
	background-color: #f7f7f7;
	background-position: right 20px center;
}

/*------------ single.php ------------*/
.single_head {
	margin: 0 0 35px;
}

.news_single_title h2 {
	font-size: 3.2rem;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 1.71875;
	margin: 0 0 1%;
}

.single_content {
	margin: 0 0 90px;
}

.single_content>*:first-child {
	margin-top: 0;
}

.single_content>*:last-child {
	margin-bottom: 0;
}

.single_link_wrap {
	margin: 0 auto 60px;
	text-align: center;
}

.single_content table th {
	position: relative;
}

.single_content table th:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 1px;
	height: calc(100% - 30px);
	background: #ccc;
}

.single_content table th:first-child:before,
.single_content table td:first-child:before {
	content: none;
}

.single_content table td p {
	margin-bottom: 0;
}

.link_btn a {
	background-color: #05618A;align-content
}


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

	/*------------ 一覧・詳細 共通 ------------*/
	.news_date {
		font-size: 1.3rem;
	}

	.news_cate {
		font-size: 1.2rem;
		min-width: 95px;
		margin: 0;
		padding: 0;
	}

	/*------------ news_tab ------------*/
	.news_tab {
		margin: 0 auto 20px;
		justify-content: inherit;
	}

	.news_tab .tab_item {
		text-align: center;
		margin-bottom: 15px;
		margin-right: 0;
	}

	.news_tab .tab_item:not(:last-child)::after {
		right: 0;
	}

	.tab_item .tab_link {
		margin-right: 0;
	}

	/*------------ news_list ------------*/
	.news_list {
		margin-top: 0;
	}

	.news_list li a {
		padding: 13px 29px 12px 10px;
		background-size: 12px 8px;
		background-position: right 15px center;
	}

	.news_list li .news_title {
		font-size: 1.4rem;

		width: 100%;
		max-width: 100%;
		margin-top: 2px;
	}

	/* hover */
	.news_list li a:hover {
		background-position: right 10px center;
	}

	/*------------ single.php ------------*/
	.single_head {
		margin: 0 0 30px;
	}

	.news_single_title h2 {
		font-size: 2.2rem;
		margin: 0 0 9px;
	}

	.single_content {
		margin: 0 0 40px;
	}

	.single_link_wrap {
		margin: 20px auto 20px;
	}

	.single_content table td {
		display: table-cell;
	}

}