@charset "utf-8";

.news_list{
	display:grid;
	grid-template-columns:repeat(3, 1fr);
	grid-gap:50px 40px;
	padding:0;
	margin-bottom:35px;
}
.news_item{
	list-style:none;
	margin:0;
}
.news_link{
	display:block;
	color:#333 !important;
	text-decoration:none !important;
}
.news_thumb{
	margin-bottom:20px;
	border-radius:20px;
	overflow:hidden;
}
.news_img{transition:transform 0.3s;}
a:hover .news_img{transform:scale(1.05);}
.news_info{
	display:flex;
	align-items:center;
	margin-bottom:12px;
	font-size:1.4rem;
	letter-spacing:0.84px;
	line-height:2rem;
}
.news_date{
	flex-shrink:0;
	width:125px;
}
.news_cat{
	max-width:165px;
	width:100%;
	padding:2px 5px 3px;
	border:1px solid #FF1462;
	border-radius:15px;
	color:#FF1462;
	text-align:center;
}
.news_title{
	padding-left:30px;
	margin:0;
	font-weight:500;
	letter-spacing:0.96px;
	line-height:2.4rem;
	transition:color 0.3s;
}
.news_title::before{
	content:'';
	position:absolute;
	top:-1px;
	left:0;
	width:24px;
	height:24px;
	background:url(/img/common/arrow_r_marupink.svg) no-repeat center/cover;
}
.news_title .hover_line_txt{padding-left:30px;}


@media screen and (max-width:1024px){

.news_list{
	grid-gap:50px 20px;
	margin-bottom:40px;
}
.news_info{margin-bottom:10px;}
.news_date{
	width:105px;
	font-size:1.2rem;
	letter-spacing:0.72px;
	line-height:1.7rem;
}
.news_cat{
	max-width:155px;
	padding:3px 5px 5px;
	font-size:1.1rem;
	letter-spacing:0.66px;
	line-height:1.6rem;
}
.news_title, .news_title .hover_line_txt{padding-left:25px;}

}


@media screen and (min-width:768px) and (max-width:1024px){

.news_title{
	font-size:1.5rem;
	letter-spacing:0.9px;
	line-height:2.2rem;
}
.news_title::before{
	top:0;
	width:20px;
	height:20px;
}

}


@media screen and (max-width:767px){

.news_list{grid-template-columns:1fr 1fr;}
.news_thumb{border-radius:10px;}
.news_title{
	font-size:1.4rem;
	letter-spacing:0;
	line-height:2rem;
}
.news_title::before{
	top:0;
	width:18px;
	height:18px;
}


@media screen and (max-width:550px){

.news_list{grid-template-columns:1fr;}

}

}