/* CONFORMATION */
.news-top {
	padding: 60px 10px 15px;
	background-image: url(../grp/news.svg);
	background-repeat: no-repeat;
	background-position: center top;
}
.news {
	background-color: #fff;
}
.news > .body {
	padding:50px 25px;
	background-color: #fbfbfb;
}
@media (max-width: 768px){
	.news > .body {
		padding:50px 10px;
	}
}
.news-list {
	display: -webkit-flex;
  	display: flex;
  	-webkit-flex-wrap: wrap;
  	flex-wrap:  wrap;
}
.news-list li {
	width: 33.333%;
	padding: 20px 1.5% 40px;	
	position: relative;
}
@media (max-width: 768px){
	.news-list li {
		width: 50%;
	}
}
@media (max-width: 580px){
	.news-list li {
		width: 100%;
	}
}
.news-list a {
	width: 100%;
	color: #3a3740;	
	text-transform: uppercase;
}
.news-list .img {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 267px;

	display: -webkit-flex;
  	display: flex;
  	

  	-webkit-flex-flow: row nowrap;
  	flex-flow: row nowrap;
  	-webkit-align-items: center;
  	align-items: center;

	border-radius: 4px;

	border: solid 1px #6b6b6b;

}
.news-list .img:after {
	content: '';
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 100%;
	background: linear-gradient(transparent 70%, rgba(0,0,0,.1));
}
@media (max-width: 1366px){
	.news-list .img {
		height: calc( (30vw - 16.666px) * ( 267 / 389 ) ) ;
	}
}
@media (max-width: 768px){
	.news-list .img {
		height: calc( (30vw - 8px) * ( 389 / 389 ) ) ;
	}
}
@media (max-width: 580px){
	.news-list .img {
		height: auto;
	}
}
.news-list img {
	position: relative;
	display: block;
	width: 100%;
	max-width:100%;
}

.news-list .type {
	position: relative;	
	top: -20px;
	font-size: 16px;
	font-weight: 700;
	background-color: #fff;	
	display: inline-block;
	width: 100%;
	max-width: 148px;
	padding:10px;
	border-radius: 14px;
}
.news-list h2 {
	position: relative;
	font-size: 16px;
}
.news-list .view {
	position: absolute;
	bottom: 10px;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	font-size: 16px;
}	
.news-list .view em:before,
.news-list .view em:after {
	content: '';
	display: inline-block;
	width: 30px;
	height: 1px;
	background-color: #9e9da1;
	margin:5px 10px;
}
.pagination {
	display: -webkit-flex;
  	display: flex;
  	-webkit-flex-wrap: nowrap; /* Safari */
  	flex-wrap:         nowrap;
  	-webkit-justify-content: center;
  	justify-content: center;
	max-width: 680px;
	margin: 40px auto;
}
.pagination:before,
.pagination:after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background-color: #969696;
	margin-top: 15px;
}
.pagination li a,
.pagination li span {
	position: relative;
	display: block;
	width: 32px;
	height: 32px;
	border: solid 1px #cbcbcb;
	line-height: 32px;
	color:#494a4a;
	margin-left: -1px;	
}
.pagination li:first-child a,
.pagination li:first-child span {
	border-radius: 4px 0 0 4px;
	margin-left: 20px;
}
.pagination li:last-child a,
.pagination li:last-child span {
	border-radius: 0 4px 4px 0;
	margin-right: 20px;
}
.pagination li a:hover {
	background-color: #ccc;
}
.pagination li.active {
	font-weight: 700;
}
/* NEWS DETAIL */
.news-detail .date {
	display: none;
}
.news-detail h1 {
	font-family: 'Open Sans';
	font-size: 32px;
	line-height: 36px;
	font-weight: 900;
	max-width: 768px;
	margin: 10px auto;
}
.news-detail .info {
	position: relative;
	max-width: 880px;
    margin: 30px auto;
    text-align: left;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #3a3740;
    padding: 0 40px;
}
@media (max-width: 768px){
	.news-detail .info {
		font-size: 16px;
    	line-height: 24px;
		padding:0px 10px;
	}
}

.news-detail .info a {
	border-bottom: dotted 1px #ccc;
}
.news-detail .info a:hover {
	color: #222;
}
.news-detail .img  {
	position: relative;
}
.news-detail img  {
	width: 100%;
	max-width: 880px;
}
