@charset "utf-8";
/* news */

.newsbox h5 {
	font-weight: 600;
	font-size: 140%;
	padding: 5px 10px;
	/*border-bottom: 1px solid #000;*/
	color: #fff;
	position: relative;
	background-color: #d93935;
	line-height: 1.2;
}
/*.newsbox h5::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background-color: #000;
	position: absolute;
	bottom: -1px;
	left: 0;
	transform: skewX(-30deg);
}*/

.newsbox h6 {
	font-size: 80%;
	padding: 0 10px;
	text-align: left;
	position: relative;
	font-weight: 800;
	color: #666;
	border-left: 10px solid #666;
	line-height: 1;
	margin-bottom: 5px;
}
/*.newsbox h6::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background-color: #000;
	position: absolute;
	top: -1px;
	right: 0;
	transform: skewX(-30deg);
}*/

.newsbox .txt {
	padding: 30px 0;
}

.linkbox li {
	margin-bottom: 10px;
}
.linkbox li:last-child {
	margin-bottom: 0;
}
.linkbox li a {
	display: block;
	text-decoration: none;
	padding: 5px 10px 5px 30px;
	position: relative;
	z-index: 1;
	transition: .3s all;
	background-color: #eee;
}
@media (max-width:480px) {
	.linkbox li {
		margin-bottom: 20px;
	}
	.linkbox li a {
	}
}
.linkbox li a::before {
	display: block;
	content: '';
	width: 20px;
	height: 100%;
	background-color: #0b4ba5;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -2;
}
.linkbox li a::after {
	content: '〉';
	color: #fff;
	position: absolute;
	left: 8px;
	z-index: -1;
}
.linkbox li a:hover {
	background-color: #0b4ba5;
	color: #fff;
}






/* 一覧表示 */

.listbox {
	display: flex;
	flex-wrap: wrap;
}
.listbox li {
	width: calc(100% / 3 - 10px);
	margin: 5px;
	padding: 5px;
}
.listbox .topicsbox {
	display: block;
	border: 1px solid #ccc;
	border-radius: 5px;
	height: 100%;
}
.listbox a {
	text-decoration: none;
}
.listbox .imgbox {
	background-color: #eee;
	border-radius: 5px 5px 0 0;
	border-bottom: 1px solid #ccc;
}
.listbox a img {
	width: 100%;
	border: none;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.listbox .date {
	font-size: 11%;
	font-weight: 600;
	color: #999;
	padding: 10px 10px 5px;
}
.listbox .title {
	font-weight: bold;
	padding: 0 10px 15px;
	color: #333;
	line-height: 1.2;
	font-size: 13px;
}
@media (max-width:480px) {
	.listbox li {
		width: calc(100% - 10px);
	}
}

.social {
	margin-bottom: 30px;
}
