@charset "utf-8";

#content_wrap{
	position: relative;
}
#content_wrap::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 276px;
	background: transparent linear-gradient(90deg, #0C2D4E 0%, #155494 9%, #020910 100%) 0% 0% no-repeat padding-box;
	z-index: -1;
}
.content_area {
	padding: 0 20px 55px;
}
.page_title {
	max-width: 1140px;
	padding: 0 20px;
	margin: 73px auto 40px;
	font-size: 3.6rem;
	font-weight: bold;
	letter-spacing: 0;
	color: #fff;
}
.c_list{
	display:grid;
	grid-template-columns:repeat(3, 1fr);
	gap:31px 20px;
	padding:0;
	margin: 0;
}
.c_item{
	display: flex;
	list-style:none;
}
.c_link{
	display: flex;
	flex-direction: column;
	text-decoration:none;
}
.c_thumb{
	overflow:hidden;
	position: relative;
	max-width: 353px;
}
.c_thumb img{
	margin-bottom: 0;
}
.c_title{
	display: flex;
	position: relative;
	padding: 15px 42px 19px 7px;
	font-size: 1.7rem;
	font-weight: bold;
	line-height: 2.5rem;
	color: #333;
	border-bottom: 1px solid #D5D5D5;
	align-items: center;
	flex: 1;
	transition: color 0.3s, border-color 0.3s;
}
.c_title::after {
	content: '';
	display: block;
	position: absolute;
	right: 5px;
	width: 30px;
	height: 30px;
	border-radius: 2px;
	background: url(/img/common/arrow_r_blue.svg) no-repeat top 11px right;
	transition: background 0.3s;
}
.c_link:hover .c_title {
	color: #194191 !important;
	border-color: #194191;
}


@media screen and (max-width:1024px){
.page_title {
	margin: 48px auto 50px;
	font-size: 3rem;
}
#content_wrap::before {
	height: 200px;
}
.c_list{grid-row-gap:30px;}
.c_item{margin: 0;}
.c_thumb{max-width: none;}
.c_title{
	font-size:1.6rem;
	padding: 10px 20px 12px 4px;
	margin-bottom: 0;
}

}


@media screen and (max-width:767px){
.page_title {
	margin: 48px auto 104px;
	font-size: 3rem;
}
#content_wrap::before {
	height: 158px;
}
/* 2カラム */
.c_list{
	grid-row-gap:29px;
	grid-template-columns: 1fr;
}
.c_item {
	margin-bottom: 0 !important;
}
.c_title{
	font-size:1.5rem;
	padding: 8px 20px 12px 4px;
}
.c_title::after {
	right: 7px;
	background: url(/img/common/arrow_r_blue.svg) no-repeat top 9px right;
}

}