.sub_mv > div > div{
  background: url(./images/mv/pc/mv_news.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .sub_mv{
    margin-bottom: 0;
  }
	.sub_mv > div > div{
		background: url(./images/mv/sp/mv_news.jpg) no-repeat;
		background-size: cover;
		background-position: center;
  }
}

.news_list{
	padding: 30px 20px 100px;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}
.news_list ul li{
	display: flex;
	align-items: center;
	padding: 25px 30px;
	border-bottom: 1px solid #ddd;
}
.news_list ul li .date{
	margin: 0 40px 0 0;
	white-space: nowrap;
	color: #aaa;
}
@media screen and (max-width: 768px) {
	.news_list ul li{
		flex-direction: column;
		align-items: flex-start;
		padding: 15px 20px;
	}
	.news_list ul li .date{
		margin: 0 0 8px 0;
	}
}



.news_detail{
	padding: 30px 20px;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}
.news_detail .news_meta{
	padding: 50px 20px;
	border-bottom: 1px solid #ddd;
}
.news_detail .news_meta p{
	margin: 0 0 10px;
	color: #aaa;
}
.news_detail .news_meta h2{
	font-weight: normal;
}
.news_detail .news_content{
	padding: 50px 20px;
	border-bottom: 1px solid #ddd;
	line-height: 1.4;
}
.news_btn{
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	margin: 50px auto;
	border: 3px solid #56ACE1;
	border-radius: 30px;
	width: 90%;
	max-width: 480px;
	height: 60px;
	background: #F8FCFE;
	color: #56ACE1;
	font-size: 20px;
	transition: 0.3s;
	cursor: pointer;
}
.news_btn::after{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 36px;
	transform: translateY(-50%) rotate(45deg);
	border-left: 3px solid #56ACE1;
	border-bottom: 3px solid #56ACE1;
	width: 10px;
	height: 10px;
}
@media screen and (max-width: 768px) {

}