body {
	background-color: #fff;
	overflow: scroll;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: source-han-serif-japanese, serif;
	font-weight: 300;
}
#contents {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 6rem;
}
#intro {
	width: 100%;
	padding-top: 3rem;
	margin-bottom: 4rem;
}
#intro h1 {
	width: 100%;
	text-align: center;
	font-size: 1.5rem;
}

#newsWrap {
	width: 80%;
	margin: 0 auto 5rem;
}
#newsList {
	border-top: 1px solid #999;
}
#newsList article {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	box-sizing: border-box;
	padding: 1rem 0;
	border-bottom: 1px solid #999;
}
#newsList article .image {
	width: 20%;
	aspect-ratio: 4 / 2.5;
	overflow: hidden;
}
#newsList article .image img {
	width: 100%;
}
#newsList article .wrapper {
	padding: 0.5rem 0;
	width: 75%;
	position: relative;
	line-height: 1.5;
}
#newsList article .wrapper h3 {
	font-size: 1rem;
}
#newsList article .wrapper a {
	display: block;
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255,255,255,0);
	transition: .2s;
}
#newsList article .wrapper a:hover {
	background-color: rgba(255,255,255,0.5);
}

.pager {
	text-align: center;
	margin: 1rem 0;
}
.pager a {
	display: inline-block;
	padding: 0 .5rem;
	border: 1px solid #000;
	margin: 0 0.5rem;
	text-decoration: none;
	color: #000;
	transition: .2s;
}
.pager a.current,
.pager a:hover {
	color: #ffffff;
	background-color: #000;
}

/* 個別記事用 */
.article {
	width: 80%;
	margin: 0 auto 6rem;
	padding-top: 4rem;
}
.article h2 {
	font-size: 1.3rem;
	line-height: 1.5;
	margin-bottom: 2rem;

}


#detail .detailUpfile img {
	width: 100%;
}
.detailText {
	font-size: 1rem;
	line-height: 1.8;
}
#up_ymd {
	font-size: 1rem;
	margin-bottom: 2rem;
}
.backORcloseBtn a {
	display: block;
	box-sizing: border-box;
	background-color: rgba(0,0,0,1);
	width: 300px;
	padding: 0.7rem 0;
	text-align: center;
	text-decoration: none;
	color: #ffffff;
	font-weight: 600;
	font-size: 1rem;
	margin: 3rem auto;
	
}
.backORcloseBtn a:hover {
	background-color: rgba(0,0,0,0.6);
}


/*　レスポンシブ　*/

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

header {
	display: none;
}
#newsWrap {
	width: 100%;
}



}