/*PC用*/

.NewsListArea{
	width: 100%;
	margin: auto;
	/* background: linear-gradient(to bottom, #FFF, #e9f9fc); */
	padding: 0 0 10%;
}

.NewsListArea_ul{
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	padding: 0 5% 5%;
	
}

.NewsListArea_li{
	box-sizing: border-box;
	vertical-align: top;
	width: calc(25% - 14px);
	background: #fff;
    border-radius: 6px;
    box-shadow: 0 6px 26px -5px rgb(155 155 155 / 60%);
}

.NewsListArea_li a{
	display: block;
	text-decoration: none;
	transition: color 0.1s ease-out;
}

.Newsbloc {
	width: 100%;
	margin: 0 auto 8%;

}

.NewsImageArea{
	margin: 0 auto;
	width: 100%;
	overflow:hidden;
	will-change: transform;
	/* border: 1px solid #f5f5f5; */
	border-radius: 6px 6px 0 0;

}

.NewsImageArea img{
	width:100%;
	transition:1s all;
	object-fit: cover;
}

.NewsImageArea img:hover{
	transform:scale(1.2,1.2);
	transition:1s all;
	border-radius: 12px 12px 0 0;

}

.NewsTextArea{
	box-sizing: border-box;
	text-align: left;
	width: 100%;
	padding: 10px 14px 0 14px;
}

.CategoryAndDateArea{
	margin: 0 auto 4%;
	width: 100%;
	display: table;
}

.CategoryName {
	width: 30%;
	display: table-cell;
	text-align: right;
}

.CategoryName p{
	color: #fff;
    font-size: 11px;
    box-sizing: border-box;
    text-align: center;
    background: #4E676B;
    width: 115px;
}

.DateArea_Text{
	width:70%;
	display:table-cell;
	margin:auto;
	text-align: left;
}

.DateArea_Text p{
	font-size: 13px;
	text-align: left;
	font-family: "Poppins";
    color: #4E676B;
    font-weight: 200;
}

.NewsTitleArea {
	margin: 5% auto 2% auto;
	width: 100%;
	height: 50px;
}

.NewsTitleArea p{
	font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
}

.NewsSentenceArea {
	margin: 4% auto;
	width: 100%;
	/* height: 88px; */
}

.NewsSentenceArea p{
	font-size: 13px;
	margin: auto;
	text-align: left;
	font-weight: 300;
}
a .NewsSentenceArea:hover{
	text-decoration: underline;
}

.NewsDetailLinkArea {
	margin: auto;
	width:100%;
	text-align: right;
}

.NewsDetailLinkArea a {
	font-weight: bold;
	font-size: 13px;
	text-decoration: underline;
	padding:0;
	transition: .3s;
	display:inline-block;
}

.IndexNewsListLinkArea {
	width: 100%;
	text-align: center;
	margin:auto;
}

.IndexNewsListLinkArea a {
	color: #fff;
	background: #2EBACF;
	font-size: 14px;
	font-weight: 400;
	display: block;
	margin: 0 auto;
	padding: 16px;
	text-align: center;
	width: 200px;
	border-radius: 50px;
	transition: 0.2s;
	box-shadow: 0 8px 12px -5px rgb(99 175 186 / 70%);
}