@charset "utf-8";
/* CSS Document */
#keyVisual{
	background: url("/common/img/keyvisual_kaiho.jpg") no-repeat center / cover;
}

.reportBox {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
	margin: -30px -15px 0;
}
.reportBox li{
	flex-shrink: 0;
	border: solid 1px #ccc;
	max-width: 380px;
	width: calc(100% / 3 - 30px);
	margin: 30px 15px 0;
}
	.reportBox li a{
		color: #000;
		display: block;
		position: relative;
		height: 100%;
	}
	.reportBox li a::after{
		content: "";
		display: block;
		position: absolute;
		right: 20px;
		bottom: 20px;
		background: url("/common/img/icon_arrow_red.png") no-repeat center / contain;
		width: 28px;
		height: 28px;
		transition: 0.3s;
	}
	.reportBox li figure{
		aspect-ratio: 126 / 73;
		width: 100%;
		overflow: hidden;
		position: relative;
		z-index: 1;
	}
		.reportBox li figure img{
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

.reportBox .txtBox{
	padding: 30px 30px 60px;
}

.reportBox li a:hover .txtBox::after{
	right: 14px;
}

.reportBox .txtBox .date{
	font-weight: 700;
	flex-shrink: 0;
}
	.reportBox .txtBox .date span{
		display: block;
		line-height: 1;
	}
	.reportBox .txtBox .date .month{
		font-size: 3.4rem;
		border-top: solid 1px #999;
		padding-top: 5px;
		margin-top: 5px;
	}

.reportBox .txtWrap{
	margin-left: 30px;
	text-align: left;
}
	.reportBox .txtWrap .ttl{
		font-weight: 700;
		font-size: 1.8rem;
	}
	.reportBox li a:hover .txtWrap .ttl{
		color: #003d99;
	}

	.reportBox .txtWrap .summary{
		color: #666;
		font-size: 1.2rem;
		overflow: hidden;
		display: -webkit-box;
		text-overflow: ellipsis;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		margin-top: 10px;
	}

@media screen and (max-width: 768px){
	.reportBox{
		margin: -30px -10px 0;
	}
	.reportBox li{
		width: calc(100% / 3 - 20px);
		margin: 30px 10px 0;
	}
	.reportBox li a::after{
		right: 15px;
		bottom: 10px;
		width: 24px;
		height: 24px;
	}
	.reportBox .txtBox{
		padding: 15px 15px 45px;
	}
	.reportBox .txtWrap{
		margin-left: 15px;
	}
}
@media screen and (max-width: 767px){
	.reportBox{
		justify-content: space-between;
		margin: -10px auto 0;
	}
	.reportBox li{
		width: calc(100% / 2 - 7px);
		margin: 10px 0 0;
	}
	.reportBox .txtWrap {
		margin-left: 10px;
	}
	.reportBox .txtWrap .ttl{
		font-size: 1.6rem;
	}
	.reportBox .txtBox .date span{
		font-size: 1.5rem;
	}
	.reportBox .txtBox .date .month{
		font-size: 2.2rem;
	}

}