@charset "utf-8";
/* NEWS INDEX */
#news{
	padding-bottom: 160px;
}
.contIn{
	width: 1080px;
	margin: 0 auto;
}
.newsLists{
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 40px;
}
.newsLists__item{
	width: calc(100% / 4);
	padding: 0 20px 40px;
}
.newsLists__link{
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	text-decoration: none;
	position: relative;
}
.newsLists__link:before{
	content: '';
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	height: 1px;
	background-color: rgba(0,0,0,.16);
}
.newsLists__link:after{
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	padding-top: 12px;
	width: 40px;
	margin-bottom: -4px;
	background: url(../img/common/arrow_newslink.svg) no-repeat bottom left / contain;
	transition: right .3s ease-in-out;
}
.newsLists__txtWrap{
	order: 2;
	padding: 24px;
	background-color: #fff;
	height: 100%;
	transition: background-color .3s ease-in-out;
}
.newsLists--date{
	color: #6dc6f2;
	font-size: 16px;
	line-height: 1;
	transition: color .3s ease-in-out;
}
.newsLists--title{
	font-size: 16px;
	line-height: 1.5;
	margin-top: 10px;
}
.newsList--thumb{
	order: 1;
	width: 100%;
}
.newsList--thumbIn{
	overflow: hidden;
}
.newsList--thumb img{
	width: 100%;
	transition: .3s ease-in-out;
}

.newsLists__link:hover::after{
	right: -4px;
}
.newsLists__link:hover .newsLists__txtWrap{
	background-color: #6dc6f2;
}
.newsLists__link:hover .newsList--thumb img{
	transform: scale(1.15);
}
.newsLists__link:hover .newsLists--date{
	color: #fff;
}
.pagingListsWrap{
	width: 1040px;
	margin: 0 auto;
}


@media screen and (max-width: 768px){
	#news{
		padding-bottom: 25.6%;
	}
	.contIn{
		width: 100%;
		padding: 12.8% 3.2% 0;
	}
	.newsLists{
		width: 100%;
		padding-bottom: 5.698%;
	}
	.newsLists__item{
		width: 50%;
		padding: 0 3.4188% 6.8376%;
	}
	.newsLists__txtWrap{
		padding: 12px;
	}
	.newsLists--date{
		font-size: 1.2rem;
	}
	.newsLists--title{
		font-size: 1.2rem;
		margin-top: 8px;
	}
	.pagingListsWrap{
		width: 93.1624%;
		margin: 0 auto;
	}
}

/* NEWS DETAIL */
.newsDetail{
	width: 880px;
	margin: 0 auto;
}
.newsDetail__title{
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 32px;
}
.newsDetail__title:after{
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background-color: #6dc6f2;
}
.newsDetail__title--date{
	font-size: 16px;
	line-height: 1;
	color: #6dc6f2;
	display: block;
	margin-bottom: 14px;
}
.newsDetail__title--text{
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	display: block;
}
.newsDetail__textWrap{
	font-size: 16px;
	line-height: 2;
}
.newsDetail__textWrap a{
	color: #00a1ff;
	font-weight: 500;
}
.newsDetail__textWrap img,.newsDetail__textWrap iframe{
	max-width: 100%;
	margin: 32px 0;
}

@media screen and (max-width: 768px){
	.newsDetail{
		width: 100%;
		padding: 0 3.4189%
	}
	.newsDetail__title{
		padding-bottom: 14px;
		margin-bottom: 20px;
	}
	.newsDetail__title--date{
		font-size: 1.2rem;
		margin-bottom: 8px;
	}
	.newsDetail__title--text{
		font-size: 1.4rem;
		list-style: 2px;
	}
	.newsDetail__textWrap{
		font-size: 1.2rem;
	}
	.newsDetail__textWrap img,.newsDetail__textWrap iframe{
		margin: 20px 0;
	}
	.newsDetail__textWrap iframe{
		width: 100%;
		height: 49.0667vw;
	}
}