@charset "utf-8";
#sec_useful ul li.js-fadein{
	opacity: 1;
	transform: translateY(0);
}

.catNav {
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 13px;
}
.catNav li{
	border-radius: 10px;
	width: calc(100% / 4 - 10px);
	overflow: hidden;
}

.catNav li a{
	display: block;
	color: #032E83;
	background: #F1F1F1;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 50px;
}
.catNav li a:hover{
	background: #032E83;
	color: #fff;
}
.catNav li.current a{
	pointer-events: none;
	background: #032E83;
	color: #fff;
}

.newsBox{
	margin: 0 -12.5px;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
}

.newsBox li{
	margin: 60px 12.5px 0;
	max-width: 350px;
	position: relative;
	width: calc(100% / 3 - 25px);
}

.newsBox a{
	color: rgba(0, 0, 0, 0.92);
}

.newsBox figure{
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 405 / 251;
}

.newsBox figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s;
}

.newsBox a:hover img{
	transform: scale(1.1);
}

.newsBox .label{
	position: absolute;
	z-index: 10;
	top: -11px;
	left: 0;
	display: flex;
	background: #032E83;
	border-radius: 21px;
	color: #fff;
	font-weight: 700;
	padding: 8px 20px 10px;
}

.newsBox .time{
	display: block;
	text-align: left;
	font-family: "Montserrat", serif;
	font-size: 1.4rem;
	margin-top: 15px;
}

.newsBox .txt{
	margin-top: 6px;
	text-align: left;
	font-weight: 700;
	line-height: 1.75;
}
.newsBox a:hover .txt{
	color: #F85B00;
}

.page-navigation {
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 41px;
}

.page-navigation .style{
	color: #032E83;
	font-size: 2rem;
	font-weight: 600;
	margin: 5px 5px 0;
}
.page-navigation .page,
.page-navigation .current,
.page-navigation .arrow{
	font-family: "Montserrat", serif;
	font-size: 2rem;
	font-weight: 600;
	width: 60px;
	height: 60px;
	background: #F1F1F1;
	color: #032E83;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	overflow: hidden;
	margin: 5px 5px 0;
}

.page-navigation a{
	color: #032E83;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.page-navigation .page:hover{
	background: #032E83;
}
.page-navigation .page:hover a{
	color: #fff;
}

.page-navigation .current{
	background: #032E83;
	color: #fff;
}

.page-navigation .arrow{
	position: relative;
}
.page-navigation .arrow a::before{
	content: "";
	display: block;
	width: 22px;
	height: 12px;
	background: url("/themes/site/common/img/icon_arrow_bl.svg") no-repeat center / contain;
}
.page-navigation .arrow.prev a{
	transform: scale(-1,1);
}

.page-navigation .arrow:hover{
	background: #032E83;
}

.page-navigation .arrow:hover a::before{
	background-image: url("/themes/site/common/img/icon_arrow_wh.svg");
}


@media screen and (max-width: 767px){
	#keyVisual .ttl img{
		width: 178px;
	}
	
	.catNav{
		margin-top: -10px;
		gap: 0;
	}
	
	.catNav li{
		border-radius: 7px;
		margin: 10px 4px 0;
		width: calc(100% / 2 - 8px);
	}
	.catNav li a{
		font-size: 1.6rem;
	}
	.newsBox{
		justify-content: space-between;
		margin: 0;
	}
	.newsBox li{
		margin: 50px 0 0;
		width: 49%;
	}
}

@media screen and (max-width: 500px){
	.newsBox li{
		width: 100%;
		margin: 50px auto 0;
	}
}