/*============================
MV
============================*/
#mv {
	background-image: url(../img/news/mv.jpg);
}

/*============================
ニュースリスト
============================*/
#news_list {
	padding: 1rem 0;
}

@media screen and (max-width: 640px) {
	#news_list {
		padding: 0;
	}
}

/* タブ */
#news_list .tab {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 0.5rem;
}
@media screen and (max-width: 640px) {
	#news_list .tab {
		justify-content: space-between;
	}
}


#news_list .tab .tab_list {
	width: 2.6rem;
	margin: 0 0.2rem;
}
@media screen and (max-width: 640px) {
	#news_list .tab .tab_list {
		width:31%;
		margin: 0;
	}
}


#news_list .tab .tab_list a {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #F1859F;
	display: block;
	text-align: center;
	color: #000;
	font-size: 0.18rem;
	font-weight: 500;
	padding: 0.15rem 0 0.18rem;
	border-radius: 0.1rem;
}
@media screen and (max-width: 640px) {
	#news_list .tab .tab_list a {
		font-size: 0.14rem;
		padding: 0.15rem 0 0.18rem;
	}
	#news_list .tab .tab_list a span {
		display: none;
	}
}


#news_list .tab .tab_list.active a {
	color: #fff;
	background: #F1859F;
	pointer-events: none;;
}

#news_list .tab .tab_list a:hover {
	color: #fff;
	background: #F1859F;
}

#news_list .list {
	max-width: 10rem;
	margin: auto;
}

#news_list .list .item {
	box-sizing: border-box;
	margin-bottom: 0.4rem;
}


/* #news_list .list .item a {
	display: block;
	text-decoration: none;
	color: #2F475C;
	padding: 0.20rem;
}

@media screen and (max-width: 640px) {
	#news_list .list .item a {
		padding: 0.15rem 0;
	}
} */


/* テキスト */
#news_list .list .item .text_wrap {
	display: flex;
	flex-wrap: wrap;
	/* align-items: center; */
}



/* 日付 */
#news_list .list .item .date {
	font-size: 0.14rem;
	padding-right: 0.10rem;
	width: 1rem;
	font-family: 'Poppins', sans-serif;
}
@media screen and (max-width: 640px) {
	#news_list .list .item .date {
		font-size: 0.13rem;
		width: fit-content;
	}
}


/* タグ */
#news_list .list .item .tag span {
	font-size: 0.12rem;
	color:#fff;
	background: #F1859F;
	border-radius: 0.04rem;
	padding: 0.02rem 0.10rem;
	position: relative;
	top: 0.01rem;
	width: 0.7rem;
	text-align: center;
}

@media screen and (max-width: 640px) {
	#news_list .list .item .tag {
		font-size: 0.11rem;
		border-radius: 0.03rem;
		padding: 0.03rem 0.06rem;
		position: relative;
		top: -0.04rem;
	}
}

#news_list .list .item .tag.tag_news span {
	background: #F1859F;
}

#news_list .list .item .tag.tag_active span {
	background: #5BB48F;
}

/* タイトル */
#news_list .list .item .title  {
	font-size: 0.15rem;
	letter-spacing: 0.05em;
	font-weight: 500;
	line-height: 1.5;
	padding-left: 0.25rem;
	width: calc(100% - 2.5rem);
	margin-top: -0.05rem;
}
@media screen and (max-width: 640px) {
	#news_list .list .item .title  {
		font-size: 0.14rem;
		padding-left: 0;
		padding-top: 0.08rem;
		width: 100%;
		margin-top: 0.05rem;
	}
}

#news_list .list .item .title a {
	text-decoration: underline;
	color: #000;
	line-height: 2;
	margin-top: -0.05rem;
	display: inline-block;
	transition: all .3s;
}

#news_list .list .item .title a:hover {
	opacity: 0.7;
	text-decoration: none;
}

#news_list .no_entry {
	text-align: center;
	font-size: 0.15rem;
}

@media screen and (max-width: 640px) {
	#news_list .no_entry {
		padding-bottom: 1.30rem;
	}	
}




