#newsWrap{
	width: 100%;
}
#newsWrap ul#newsList{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#newsWrap ul#newsList a{
	position: relative;
	display: block;
	width: 49%;
	padding: 10px;
	color: #4d2800;
	background-color: #fff;
	margin-bottom: 30px;
	border: 1px solid #f5f5f5;
	transition: 0.4s;
	border-radius: 5px;
}
#newsWrap ul#newsList li{
	list-style-type: none;
	display: flex;
	justify-content: space-between;
}
/*サムネイル*/
#newsWrap ul#newsList li .img_area{
	width: 30%;
}
.thumbNailWrap{
	display: block;
	width: 100%;
    position: relative;
    overflow: hidden;
	min-height: 0%;
}
.thumbNailWrap::before{
    content: '';
    display: block;
    padding-top: 80%;
}
.thumbNailWrap img{
	display: block;
	object-fit: cover;
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#newsWrap ul#newsList li .textarea{
	padding-left: 10px;
	width: 70%;
}
#newsWrap ul#newsList li .catName{
	display: none;
}
#newsWrap ul#newsList li .title{
	display: block;
	position: relative;
	padding-left: 0.5em;
	color: #008000;
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 5px;
}

#newsWrap ul#newsList li .comment{
	display: block;
	padding-left: 1em;
	font-size: 0.9rem;
	margin-bottom: 20px;
}
#newsWrap ul#newsList li .up_ymd{
	letter-spacing: 0.06em;
	font-size: 0.9rem;
	display: block;
	line-height: 1;
	color: #008000;
	text-align: right;
}
#newsWrap ul#newsList li .up_ymd::before{
	font-family: "Font Awesome 6 Free";
	content: '\f017';
	font-weight: bold;
	padding-right: 0.5em;
}

#newsWrap ul#newsList a:hover{
	box-shadow: rgba(242, 243, 244, 0.2) 0px 7px 29px 0px;
	transform: translateY(-10px);
}

@media (max-width: 750px){
	#newsWrap ul#newsList a{
		width: 100%;
	}
}