/**********************************************
	ページ
**********************************************/
#newsBlock {
	padding:10vh 0;
	background-color:#f8f8f8;
}

#newsBlockInner {
	display:flex;
	flex-direction:row;
	flex-wrap:nowrap;
	justify-content:start;
	align-items:stretch;
	gap:2rem;
	margin:0 auto;
	padding:4rem 1rem;
	max-width:1280px;
}

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

/**********************************************
	ニュースブロック
**********************************************/
#newsMainBlock {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:start;
	align-items:stretch;
	gap:1rem;
	width:calc(100% - 12rem - 1rem);
}

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

/**********************************************
	サブブロック
**********************************************/
#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%;
	}
}

/**********************************************
	ニューステーブル
**********************************************/
#newsTable {
	display:table;
	width:100%;
	border-collapse:collapse;
}

a.newsBox {
	display:table-row;
	text-decoration:none;
	transition-duration:0.3s;
	border-bottom:1px solid #ccc;
}

a.newsBox:last-child {
	border-bottom:none;
}

.newsDate {
	display:table-cell;
	padding:1.75rem 0;
	font-weight:300;
}

.newsTitle {
	display:table-cell;
	padding:1.75rem 0 1.75rem 1rem;
	font-weight:500;
}
