@charset "utf-8";
#wrap {
	background-color: #fff;
}
#banner {
	background-image: url(../upload/b_news.jpg);
}
#main {
	margin: 30px auto;
}
#main>h1 {
	padding: 30px 0;
	font-size: 25px;
	line-height: 30px;
	border-bottom: 1px dashed #ccc;
}
#main>span {
	float: left;
	margin-top: -13px;
	font-style: italic;
	color: #999;
	white-space: nowrap;
	background-color: #fff;
}
#related {
	border-top: 1px dashed #ccc;
}
#related>h3 {
	margin: 60px 0 40px;
	font-size: 35px;
	text-align: center;
}
#n_list {
	display: flex;
	margin: 10px 0;
	justify-content: center;
	flex-wrap: wrap;
	gap: min(2vw, 25px);
}
#n_list>div {
	flex: 0 0 calc((100% - min(2vw, 25px) * 2) / 3);
	margin-bottom: 30px;
	box-shadow: 0 0 10px 0 rgba(0,0,0,.25);
}
#n_list figure {
	width: 100%;
	aspect-ratio: 16/9;
	border-bottom: 4px solid #fc0;
}
#n_list h3 {
	font-size: 22px;
	padding: 25px 30px 10px;
}
#n_list p {
	font-size: 16px;
	line-height: 22px;
	padding: 0 30px;
	max-height: 72px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
#n_list span {
	float: left;
	color: #999;
	margin: 10px 0 20px 30px;
}
#n_list a {
	float: right;
	font-weight: bold;
	margin: 10px 30px 20px 0;
}
#n_list a:after {
	content: "\e006";
	margin-left: 5px;
	font-family: ico;
}
@media screen and (max-width:991px){
	#main>h1 {
		padding-top: 0px;
	}
	#n_list>div {
		flex: 0 0 calc((100% - 2vw) / 2);
	}
	#n_list div:nth-child(n+3) {
		display: none;
	}
}
@media screen and (max-width:600px){
	#n_list>div {
		flex: 0 0 100%;
	}
}




