/**********************************************
	ページヘッダー
**********************************************/
#pageTitleBlock {
	z-index:999;
	position:relative;
	margin-top:8rem;
	padding:10rem 0 10rem 0;
	width:100%;
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
	background-image:url("../images/pageHeader5.jpg");
}

@media screen and (max-width:1023px) {
	#pageTitleBlock {
		margin-top:calc(64px + 1rem);
		padding:10rem 0;
	}
}

/**********************************************
	ページ
**********************************************/
#newsBlock {
	display:flex;
	flex-direction:row;
	flex-wrap:nowrap;
	justify-content:start;
	align-items:stretch;
	gap:2rem;
	margin:0 auto;
}

@media screen and (max-width:840px) {
	#newsBlock {
		display:block;
	}
}

/**********************************************
	ニュースブロック
**********************************************/
#newsMainBlock {
	width:calc(100% - 12rem - 2rem);
}

#newsMainBlockInner {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:start;
	align-items:stretch;
	gap:2rem;
	width:100%;
}

@media screen and (max-width:840px) {
	#newsMainBlock {
		width:100%;
	}
}

.newsBox {
	overflow:hidden;
		width:calc(25% - 6rem / 4);
	background-color:#fff;
	box-sizing:border-box;
}

.newsBox a {
	display:block;
	height:100%;
	text-decoration:none;
	background-color:#fff;
	transition-duration:0.3s;
}

.newsBox a:hover {
	background-color:#fefefe;
	transform:translate(0,-0.25rem);
	transition-duration:0.3s;
	filter:brightness(0.95);
}

.newsImage {
	position:relative;
	margin-bottom:0.5rem;
	width:100%;
}

.newsImage:before {
	content:"";
	display:block;
	padding-top:75%;
}

.newsImage img {
	position:absolute;
	margin:auto;
	width:100%;
	height:100%;
	top:0;
	right:0;
	bottom:0;
	left:0;
	object-fit:cover;
}

.newsDate {
	margin:0 1rem 0.25rem 1rem;
	font-weight:300;
	font-family:'Oswald';
}

.newsTitle {
	margin:0.5rem 1rem;
	font-size:1rem;
	font-weight:700;
}

@media screen and (max-width:1280px) {
	.newsBox {
		width:calc(33.33% - 4rem / 3);
	}
}

@media screen and (max-width:840px) {
	.newsBox {
		width:calc(50% - 2rem / 2);
	}
}

@media screen and (max-width:480px) {
	.newsBox {
		width:calc(50% - 2rem / 2);
	}
}

/**********************************************
	サブブロック
**********************************************/
#newsSubBlock {
	width:12rem;
}

.newsSubBlockBox {
	margin-bottom:2rem;
}

.newsSubBlockTitle {
	margin-bottom:1rem;
	padding:0.5rem 2rem;
	font-weight:bold;
	color:#333;
	background-color:#d9d9d9;
}

#newsSubBlock .dataLink {
	margin:1rem 0;
	font-size:0.9rem;
	font-weight:bold;
}

#newsSubBlock .dataLink a {
	text-decoration:none;
}

#newsSubBlock .yearLink {
	margin:1rem 0;
	font-weight:bold;
}

#newsSubBlock .yearLink:before {
	content:'― ';
	font-weight:normal;
}

#newsSubBlock .yearLink a {
	text-decoration:none;
}

@media screen and (max-width:840px) {
	#newsSubBlock {
		width:100%;
	}
}
