/*PC用*/

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

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

.NewsListArea_li{
	/* padding: 1%;
	display: inline-block;
	box-sizing: border-box;
	width: calc(24%);
	box-sizing:border-box;
	vertical-align: top;
	background: #fff;
	border-radius: 6px;
    box-shadow: 0 6px 26px -5px rgb(155 155 155 / 60%); */
	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 10%;

}

.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;
	font-feature-settings: "palt";
	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%;
}

.NewsSentenceArea p{
	font-size: 13px;
	margin: auto;
	text-align: left;
}

.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;
}