.cover {
	background-image: url(../img/news/cover.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	min-height: 560px;
	display: flex;
	height: 70vh;
}

.cover .inner {
	position: absolute;
	left: 0;
	right: 0;
	top: 45%;
}

.cover h1 {
	font-size: 6rem;
	color: #fff;
	letter-spacing: 7px;
	text-align: center;
	font-weight: 600;
}

.cover p {
	font-size: 2rem;
	color: #fff;
	letter-spacing: 7px;
	margin-top: 2rem;
	text-align: center;
	font-weight: 600;
}

#articles_list {
	max-width: 1000px;
	margin: 19rem auto 0;
}

#articles_list article.single {
	border-top: 1px solid #A9A9A9;
    margin-top: 4rem;
    padding-top: 4rem;
}
#articles_list article.single:first-child {
	border-top: none;
	padding-top: 0;
	margin-top: 0;
}
#articles_list .thumb {
	width: 23.9%;
	margin-right: 7rem;
}
#articles_list .thumb img {
	width: 100%;
	height: auto;
	border: 1px solid #eee;
}
#articles_list .heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

#articles_list .heading .head {
	width: 69%;
}

#articles_list .date {
	font-weight: 600;
	font-size: 1.5rem;
	letter-spacing: 4px;
	padding-left: 2rem;
	border-left: 2px solid #000;
}

#articles_list .title {
	font-size: 2rem;
	margin: 2rem 0;
	font-weight: 600;
	letter-spacing: 5px;
}
#articles_list .excerpt {
	font-size: 1.5rem;
	font-weight: 600;
}
#articles_list .more_btn {
	font-size: 1.5rem;
    border-bottom: 2px solid #A9A9A9;
    display: inline-block;
    margin-top: 5px;
    text-align: center;
}


#articles_list .article_contents {
	display: none;
}
#articles_list .single.open .article_contents {
	display: block;
}
#articles_list .single.open .heading {
	display: none;
}
#articles_list .article_contents p {
	font-size: 1.5rem;
	font-weight: 600;
}

#articles_list .article_contents .date {
	border-left: 1px solid #000;
}
#articles_list .article_contents img {
	height: auto;
}


/*---------------------------------------------------------------*\
	$736px
\*---------------------------------------------------------------*/
@media screen and (max-width: 736px) {
	.cover {
		min-height: 210px;
		height: auto;
	}
	.cover .inner {
	    position: absolute;
	    left: 0;
	    right: 0;
		top: 35%;
	}
	.cover h1 {
		font-size: 2.7rem;
	}
	.cover p {
		font-size: 1.3rem;
		margin-top: 1rem;
	}
	section.caption {
		margin: 12rem 0;
	}
	section.caption .head {
		font-size: 2.7rem;
		letter-spacing: 1px;
	}
	section.caption p {
	    font-size: 1.5rem;
	    line-height: 3.2rem;
	    letter-spacing: 0px;
	}

	#articles_list {
		width: 90%;
		margin: 10rem auto 10rem;
	}
	#articles_list .heading .head {
		width: 100%;
	}
	#articles_list .title {
		font-size: 1.7rem;
		letter-spacing: 3px;
	}
	#articles_list .excerpt {
		font-size: 1.4rem;
	}
	#articles_list .thumb_sp {
		margin-bottom: 2rem;
	}
	#articles_list .article_contents p {
	    font-size: 1.3rem;
	    font-weight: 600;
		line-height: 2.5rem;
	}

	#articles_list .more_btn {
		display: block;
		text-align: center;
	    border: 1px solid #8F8F8F;
	    color: #8F8F8F;
	    padding: 2px 14px;
	    width: 91px;
	    margin: 3rem auto 0;
	}
}
