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

.news-wrap{
	max-width: 1275px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px 150px;
	align-items: flex-start;
	gap: 45px;
}
.news-side{
	width: 200px;
	flex-shrink: 0;
}
.news-side .ttl{
	font-family: "Lato", sans-serif;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 45px;
	text-transform: capitalize;
	border-bottom: 1px solid #121212;
	margin-bottom: 30px;
}
.news-side .webgene-item{
	border-bottom: 1px solid #c2c2c2;
}
.news-side .webgene-item a{
	display: block;
	width: 100%;
	padding: 10px 0;
}
.news-side .webgene-item a p{
	font-size: 15px;
	letter-spacing: 0.1em;
	line-height: 30px;
}
.news-main{
	flex: 1;
	min-width: 0;
}
.news-main .webgene-item{
	margin-bottom: 40px;
}
.news-main .webgene-item.on{
	opacity: 0;
	transform: translateY(50px);
	-ms-filter: blur(6px);
	filter: blur(6px);
}
.news-main .webgene-item.on.active{
	animation-name: blurin2;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.news-main .webgene-item a{
	display: flex;
	align-items: center;
	width: 100%;
	gap: 40px;
}
.news-main .webgene-item .imgbox{
	width: 250px;
	height: 187px;
	flex-shrink: 0;
	border-radius: 4px;
	overflow: hidden;
}
.news-main .webgene-item .imgbox img{
	width: 100%;
	height: auto;
	display: block;
}
.news-main .webgene-item .txtbox{
	flex: 1;
	min-width: 0;
}
.news-main .webgene-item .ttl{
	font-size: 16px;
	letter-spacing: 0.04em;
	line-height: 30px;
}
.news-main .webgene-item .meta{
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 20px;
}
.news-main .webgene-item .cate{
	display: inline-block;
	border: 1px solid #ddd;
	background-color: #fff;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 24px;
	color: #333;
	padding: 0 10px;
}
.news-main .webgene-item a .date{
	font-family: "Lato", sans-serif;
	font-size: 16px;
	letter-spacing: 0.04em;
	line-height: 28.8px;
	color: #9b9b9b;
}
.webgene-pagination{
	margin-top: 80px;
}
.webgene-pagination ul{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.webgene-pagination li.number a{
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #e8e8e8;
	font-size: 18px;
	font-weight: 600;
	line-height: 28px;
	color: #231f20;
}
.webgene-pagination li.number a:hover{
	opacity: 1;
}
.webgene-pagination li.number.selected a{
	background-color: #121212;
	color: #fff;
}

@media screen and (max-width: 1080px){
	.news-wrap{
		flex-direction: column;
	}
	.news-side{
		width: 100%;
	}
	.news-side .webgene-blog{
		display: flex;
		flex-wrap: wrap;
		gap: 0 24px;
	}
	.news-side .webgene-item{
		border-bottom: none;
	}
}
@media screen and (max-width: 768px){
	.news-wrap{
		padding: 0 36px 100px;
	}
	.news-main .webgene-item a{
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.news-main .webgene-item .imgbox{
		width: 100%;
		height: 200px;
	}
	.webgene-pagination{
		margin-top: 50px;
	}
}
@media screen and (max-width: 576px){
	.news-wrap{
		padding: 0 28px 80px;
	}
	.news-main .webgene-item .imgbox{
		height: 160px;
	}
}
