
/* --------------------------------------------------------------------------- */
/* News Setting */
/* --------------------------------------------------------------------------- */

.news-pager{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 0 70px;
}
.news-pager li{
	display: block;
	min-width: 26px;
	margin: 0 5px 10px;
	
	text-indent: 0;
	list-style: none;
}
.news-pager li a{
	display: block;
	padding: 10px 15px;
	color: #333;
	text-align: center;
	text-decoration: none;
	line-height: 1;
	background: #fff;
    border: solid 1px #333;
	transition: .5s ease;
}
.news-pager li.current a,
.news-pager li a:hover{
	background: #333;
    color: #fff;
}

.date {
    margin: -15px 0 30px 0;
	text-align: right;
}
.date span {
    padding: 2px 30px;
    border-radius: 30px;
	border: solid 2px #424242;
	font-weight: 500;
}



/* --------------------------------------------------------------------------- */
/* Responsive Setting */
/* --------------------------------------------------------------------------- */

@media only, screen and (max-width: 820px) {
}


@media only, screen and (max-width: 768px) {

	.news-pager{
		margin: 0 0 35px;
	}

	.news-pager li a{
		padding: 8px 10px;
	}

	.date {
		margin-top: 0;
	}
	
}/*max768*/

