@charset "utf-8";
/* CSS Document */


#newsList {
	margin: 80px auto;
	max-width: 860px;
	width: 95%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 40px;
	row-gap: 60px;
}
@media (max-width: 767px) {
	#newsList {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 20px;
		row-gap: 40px;
	}
}


#newsList article h3 {
  text-align: center;
  font-size: 16px;
}
#newsList article figure {
  margin: 10px 0 0;
  position: relative;
}

#newsList article .morebox {
	margin: 10px auto 0;
}

#newsList article .morebox a.moreBtn {
	font-size: 14px;
	width: 100px;
	text-align: center;
	border: 1px solid #696969;
	display: block;
	position: relative;
	transition: 0.4s;
}
#newsList article .morebox a.moreBtn:after {
	content: '';
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-right: 10px solid #696969;
	display: block;
	transition: 0.4s;
	position: absolute;
	right: 0;
	bottom: 0;
}

#newsList article .morebox a.moreBtn:hover {
	color: #FFFFFF;
	text-decoration: none;
	border: 1px solid #a9a9a9;
	background: #dcdcdc;
}
#newsList article .morebox a.moreBtn:hover:after {
	border-right: 10px solid #a9a9a9;
}

#newsList article .morebox date {
	font-size: 14px;
	display: block;
}
@media (max-width: 480px) {
	#newsList article .morebox a.moreBtn {
		width: 80px;
	}
}


#newsList article figure:after {
    content: '';
    padding-top: 66.67%;
    width: 100%;
    display: block;
}
#newsList article figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    font-family: 'object-fit: cover; object-position: center;';
    position: absolute;
    top: 0;
}



/*=====================================================================
	detail
======================================================================*/
#entryWrap {
	margin: 80px auto;
	max-width: 860px;
	width: 95%;
}

#entryWrap h2 {
	margin: 0 auto 30px;
	padding-left: 100px;
	font-size: 18px;
	position: relative;
}

#entryWrap h2 date {
	padding: 5px 10px;
	font-size: 14px;
	border: 1px solid #696969;
	display: block;
	position: absolute;
	left: 0;
}
@media only screen and (max-width: 480px) {
	#entryWrap h2 {
		padding-top: 40px;
		padding-left: 0;
	}
	#entryWrap h2 date { top: 0; }
}



#entryWrap figure {
	margin: 0 auto 30px;
}

#entryWrap .entryBody {
	font-size: 15px;
}


.entryPager {
	margin: 60px auto;
	max-width: 860px;
	width: 95%;
}

.entryPager li {
	width: 140px;
}

.entryPager li a {
	padding: 5px 0;
	color: #333333;
	font-size: 14px;
	width: 100%;
	height: auto;
	text-align: center;
	border: 1px solid #696969;
	box-sizing: border-box;
	display: block;
	position: relative;
}

.entryPager li a:before {
	content: '';
	width: 10px;
	height: 10px;
	vertical-align: middle;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.entryPager li.prev a:before {
	margin: auto auto auto 15px;
	border-left: 1px solid #696969;
	border-bottom: 1px solid #696969;
}

.entryPager li.next a:before {
	margin: auto 15px auto auto;
	border-top: 1px solid #696969;
	border-right: 1px solid #696969;
}
@media only screen and (max-width: 480px) {
    .entryPager li { width: 40%; }
}



.entryPager li.prev a:hover, .entryPager li.next a:hover {
	color: #ffffff;
	background: #696969;
}
.entryPager li.prev a:hover:before, .entryPager li.next a:hover:before {
	border-color: #ffffff;
}



/*=================================================================
	pagenate
==================================================================*/
.pagenate {
	margin: 40px auto 0;
	height: auto;
	text-align: center;
}
.pagenate span.current {
	margin: 0 5px;
	color: #696969;
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 35px;
	display: inline-block;
	box-sizing: border-box;
	background: #dcdcdc;
}
.pagenate a {
	margin: 0 5px;
	color: #696969;
	height: 35px;
	text-align: center;
	line-height: 35px;
	display: inline-block;
	box-sizing: border-box;
	border: 1px solid #696969;
}
.pagenate a:hover {
	color: #FFFFFF;
	background: #696969;
}


.pagenate a:not(.prev):not(.next) {
	width: 35px;
}

.pagenate a.prev, .pagenate a.next {
	padding: 0 20px;
}




/*=====================================================================
	common
======================================================================*/
.fl, .fl-smp {
	display:-webkit-flex;
	display:-moz-flex;
	display:flex;
}

.fl-jst {
	-webkit-justify-content:space-between;
	-moz-justify-content:space-between;
	justify-content:space-between;
}

.fl-cen {
	-webkit-justify-content:center;
	-moz-justify-content:center;
	justify-content:center;
}

.fl-end {
	-webkit-justify-content:flex-end;
	-moz-justify-content:flex-end;
	justify-content:flex-end;
}

.fl-wrap {
	-webkit-flex-wrap:wrap;
	-moz-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
}

.fl-col {
	-webkit-flex-direction:column;
	-moz-flex-direction:column;
	flex-direction:column;
}


@media (max-width: 767px) {
	.fl-smp {
		-webkit-flex-direction:column;
		-moz-flex-direction:column;
		flex-direction:column;
	}
}