@charset "utf-8";
/* CSS Document */

.information-flex {
	display: flex;
	justify-content: center;
	gap:80px;
	width: 1080px;
	margin: auto;
}

.information-flex div.box{
	width: 25%;
	text-align: center;
}

.information-flex div.box h4{
	font-size: 18px;
	font-weight: bold;
	margin-top: 20px;
	padding: 0;
	margin-bottom: 0;
}
.information-flex div.box p{
	font-size: 18px;
	margin: 10px auto 0;
	line-height: 100%;
	padding: 0;
}

.news-list {
	margin: 20px auto 40px;
	display: flex;
	flex-flow: column;
	border: #C0C0C0 solid 1px;
	padding: 20px 40px;
	position: relative;
}

.news-list a.news-list-link {
	display: block;
	background: #002164;
	color: #fff;
	width: 100px;
	text-align: center;
	line-height: 100%;
	padding: 5px;
	position: absolute;
	right:0;
	top: calc(50% - 15px);
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}

.news-list .box{
	display: flex;
	gap:20px;
}

.news-list .box .date{
	font-size: 16px;
	color: #828282;
}

.news-list .box a.title{
	font-size: 16px;
	color:#00BBFF;
}




/* ================================
   スマホサイズ（～767px）
   ================================ */
@media screen and (max-width: 767px) {

	.information-flex {
		flex-wrap: wrap;
		align-items: center;        /* 各boxを中央に寄せる */
		gap: 32px;                  /* 余白ちょい狭く */
		max-width: 100%;
		padding: 0;
		margin-top: 40px;
	}

	.information-flex div.box {
		width: 40%;                /* 横幅いっぱい使ってOK */
		max-width: 320px;           /* でも読みやすい幅に制限して中央寄せ */
	}

	.information-flex div.box h4 {
		font-size: 16px;
		margin-top: 12px;
	}

	.information-flex div.box p {
		font-size: 14px;
		margin-top: 8px;
		line-height: 1.4;          /* 1行じゃない端末のため少し余裕 */
	}
	
	
	.news-list {
		padding: 10px 20px 50px;
	}

	.news-list a.news-list-link {
		right: 0;
		left: 0;
		bottom: 0;
		top: auto;
		border-radius: 0;
		width: 100%;
		padding: 10px 0;
	}

	.news-list .box{
		flex-flow: column;
		gap:5px;
		margin: 10px 0;
	}

	.news-list .box .date{
		font-size: 16px;
		color: #828282;
	}

	.news-list .box a.title{
		font-size: 16px;
		color:#00BBFF;
	}
}