@charset "UTF-8";



/* ------------------------------
	.news
------------------------------ */
.news{
	padding: 15rem 0;
}

.news .news_wrap{
	width: 100%;
	max-width: 81rem;
	margin: 0 auto;
}


@media screen and (max-width: 767px){
	.news{
		padding: 8rem 0 17rem;
	}

	.news .news_wrap{
		max-width: calc(100% - 4rem);
	}
}

/* ------------------------------
	.news_list
------------------------------ */
.news_list{
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.news_item{
	padding-bottom: 5rem;
	border-bottom: 1px solid #113445;	
}

.news_item a{
	display: block;
}
@media screen and (any-hover: hover) {
	.news_item a:hover{
		opacity: 0.7;
	}
}

.news_item .date{
	color: rgba(17,52,69, 0.5);
	font-size: 1.3rem;
}

.news_item .ttl{
	font-size: 1.9rem;
	letter-spacing: 0;
	line-height: 1.75;
	font-weight: 600;
	margin: 1rem 0 0;
}



.news_item .detail{
	color: rgba(17,52,69, 0.5);
	font-size: 1.4rem;
	line-height: 2;
	margin-top: 1.5rem;
}

@media screen and (max-width: 767px){
	.news_item .detail{
		font-size: 1.35rem;
	}
}

/* ------------------------------
	.news_patenation
------------------------------ */
.news_patenation{	
	margin-top: 6rem;
}

.news_patenation ul{
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	padding: 0;
}

@media screen and (any-hover: hover) {
	.news_patenation ul li a:hover{
		opacity: 0.7;
	}
}

.news_patenation ul li.arw a{
	display: block;
	width: .5rem;
	height: 1.1rem;
	background: url(../img/news/icn_pagenation_arw.svg) no-repeat center center / contain;
}
.news_patenation ul li.arw.m-prev {
	margin-right: 2rem;
}
.news_patenation ul li.arw.m-next {
	margin-left: 2rem;
}
.news_patenation ul li.arw.m-prev a{
	transform: scaleX(-1);
}

.news_patenation ul li.num{
	font-size: 1.4rem;
	font-weight: 600;
	color: rgba(0,0,0, 0.3);
}

.news_patenation ul li.num.m-current{
	color: #000;
	position: relative;
}

.news_patenation ul li.num.m-current::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000;
}