#page #main .news.single .inner {
	max-width: 900px;
}
#page #main .news.single .inner h2 {
	font-size: 3rem;
	font-weight: 700;
	text-align: left;
	line-height: 1.5;
}
#page #main .news.single .inner p {
	margin-top: 30px;
	line-height: 1.8;
}
.news-list li {
	margin: 50px 0 0 0;
	background: #fff;
	border-radius: 8px;
	text-align: left;
	filter: drop-shadow(5px 5px 3px rgba(0,0,0,.1));
}
.news-list li a {
	display: block;
	color: #000;
	text-decoration: none;
}
.news-list li div {
	padding: 15px 20px;
}
.news-list .date {
	font-size: 1.4rem;
}
.news-list h3 {
	font-size: 1.5rem;
	font-weight: 400;
}
.news-list li img {
	border-radius: 8px 8px 0 0;
}


#page #main .news.single .inner .backTolist {
	margin-top: 60px;
	padding-top: 60px;
	border-top: 1px solid #000;
	font-size: 1.5rem;
}
#page #main .news.single .inner .backTolist a {
	display: block;
	padding: 10px;
	margin: 0 auto;
	width: 100%;
	max-width: 200px;
	text-decoration: none;
	border: 1px solid #000;
	color: #000;
	text-align: center;
	transition: .5s;
	border-radius: 100px;
}
#page #main .news.single .inner .backTolist a:hover {
	background: #000;
	color: #fff;
}


@media screen and (min-width:768px) {
	#page #main .news .inner {
		margin-top: 120px;
	}
	.news-list {
		display: flex;
		align-items: stretch;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.news-list::after{
		content: "";
		display: block;
		width: 47%;
	}
	.news-list li {
		margin-top: 50px;
		width: 47%;
		background: #fff;
		border-radius: 8px;
		filter: drop-shadow(5px 5px 3px rgba(0,0,0,.1));
	}
	.news-list li a {
		display: block;
		color: #000;
		text-decoration: none;
		transition: .5s;
	}
	.news-list li a:hover {
		color: #999;
	}
	.news-list li div {
		padding: 15px 20px;
	}
	.news-list .date {
		font-size: 1.4rem;
	}
	.news-list h3 {
		font-size: 1.5rem;
		font-weight: 400;
	}
	.news-list li img {
		border-radius: 8px 8px 0 0;
	}
	.news-list li a img {
		transition: .5s;
	}
	.news-list li a:hover img {
		opacity: .6;
	}
}

@media screen and (min-width:1280px) {
	.news-list::after {
		content: "";
		display: block;
		width: 31%;  /* .boxに指定したwidthと同じ幅を指定する */
		height: 0;
	}
	#page #main .news-list li {
		width: 31%;
	}
}

@media screen and (min-width:1380px) {
}