#newsWrap{
	overflow:hidden;
	max-height: 300px;
}
#newsWrap::-webkit-scrollbar{
	width: 3px;
	height: 3px;
}
#newsWrap ul.newsList{
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
	width: 100%;
}
#newsWrap ul.newsList li{
	list-style-type: none;
	width: calc(100% / 4 - 20px);
	background:#fff;
	border-radius: 30px;
	overflow: hidden;
	margin: 10px;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.05);
	transition: .5s;
}

#newsWrap ul.newsList a{
	display: inline-block;
	width: 100%;
	color: #1a1a1a;
	font-size:90%;
}


/*サムネイル*/
.thumbNailWrap{
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	min-height: 0%;
}
.thumbNailWrap img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition-duration: 0.5s;
}
#newsWrap ul.newsList li:hover{
	box-shadow: 2px 2px 20px rgba(106,196,106,0.2);
}

#newsWrap ul.newsList li:hover .thumbNailWrap img{
	transform: scale(1.2);
	transition-duration: 0.5s;
}

/*日付*/
ul.newsList li .up_ymd{
	display: block;
	color: #aec46a;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 600;
	margin-top: 0.5rem;
	padding: 0.5em 1em;
}

ul.newsList li .title{
	font-weight: 600;
	display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	width: 100%;
	padding: 0.5em 1em;
}

ul.newsList li .comment{
	display: block;
	font-size: 0.8rem;
	padding: 0 1rem 1rem;
}
@media (max-width: 1200px){
	#newsWrap{
		overflow: auto;
	}
	
	#newsWrap ul.newsList{
		max-width: 800px;
		margin: auto;
	}
	#newsWrap ul.newsList li{
		width: calc(100% / 2 - 20px);
		max-width: 400px;
	}
}

@media (max-width: 750px){
	#newsWrap{
		max-height: 500px;
	}
	#newsWrap ul.newsList{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		max-width: 400px;
		margin: auto;
	}
	#newsWrap ul.newsList li{
		width: calc(100% - 20px);
		margin: 10px;
	}
}

.pager_link{
	text-align: right;
	padding: 10px;
}
.pager_link a{
	border: 1px solid #aaa;
    border-radius:5px;
    color: #333;
    font-size: 12px;
    padding: 3px 7px 2px;
    text-decoration: none;
    margin: 0 1px;
	font-weight: 500;
}

/*詳細ページ ==================================================*/
#news-detail #up_ymd{
	margin: 1em 0 1.5em;;
	letter-spacing: 0.12em;
	color: #aec46a;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 600;
}
#news-detail #up_ymd::before{
	font-family: "Font Awesome 6 Free";
	content: '\f017';
	font-weight: 900;
	padding-right: 0.5em;
}
#news-detail .news_data{
	padding-bottom: 30px;
}
#news-detail .stitle{
	font-weight: 400;
	text-align: left;
	font-size: clamp(1.2rem, 0.96rem + 0.8533vw, 1.6rem);
	margin-bottom: 30px;
	border-bottom: solid 1px #aec46a;
}

#news-detail .detailUpfile{
	margin:5px 0 35px;
	text-align:center;
}
#news-detail .topic{
	color: #1a1a1a;
	margin-top: 1em;
}

#news-detail .detailUpfile img{
	max-width:100%;
	height:auto;
}
#news-detail .pNav{
	font-size:11px;	
}

