@charset "UTF-8";
main {
	background-color: #f3f6fc;
}
.mv-sub__inner {
    background: url("/_common/img/news/mv.png") 50% 50% / cover no-repeat;
}
/* -------------------------------- */
.news__tabs {
    margin-top: 60px;
    padding: 0 5%;
}
.news__tabs ul {
    display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
    max-width: 520px;
    margin: 0 auto;
}
.news__tabs ul li {
}
.news__tabs ul li a {
    position: relative;
    display: flex;
	align-items: center;
	justify-content: center;
    height: 46px;
	padding: 0 32px;
	background-color: #fff;
    color: #024b9e;
	font-size: 12px;
    font-weight: bold;
    text-align: center;
}
.news__tabs ul li a:hover {
	opacity: .5;
	transition: .3s;
}
.news__tabs ul li a.this {
    background-color: #024b9e;
	color: #fff;
}
@media screen and (max-width: 767px) {
	.news__tabs {
		margin-top: 40px;
	}
	.news__tabs ul {
	}
	.news__tabs ul li {
		width: 100%;
	}
	.news__tabs ul li a {
		padding: 15px 0;
	}
}
/* -------------------------------- */
.news__wrap {
    padding: 0 5% 100px;
}
.news ul {
	display: flex;
	flex-direction: column;
    max-width: 980px;
    margin: 60px auto 0;
}
.news ul li a {
	display: flex;
	align-items: center;
	padding: 32px 0;
	color: #333;
	border-bottom: 1px solid #D6D6D6;
}
.news ul li:first-child a {
	padding-top: 0;
}
.news ul li a:hover {
	opacity: .5;
	transition: .3s;
}
.news__thumbnail {
	width: 407px;
	min-width: 407px;
	aspect-ratio: 1/.61;
	border-radius: 10px;
	overflow: hidden;
}
.news__thumbnail img {
	height: 100%;
	object-fit: cover;
}
.news__texts {
	width: 100%;
	padding-left: 40px;
}
.news__info {
	display: flex;
	align-items: center;
	gap: 15px;
}
.news__date {
	color: #222;
	font-size: 13px;
	font-weight: 500;
	line-height: 22px;
}
.news__cat {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 22px;
	padding: 0 20px;
	background-color: #1E73BE;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	border-radius: 20px;
}
.news__cat.cat-news {
	background-color: #1E73BE;
}
.news__cat.cat-campaign {
	background-color: #81D742;
}
.news__cat.cat-blog {
	background-color: #999999;
}
.news ul li h3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	margin-top: 15px;
	font-size: 20px;
	letter-spacing: .065em;
	overflow: hidden;
}
.news ul li .news__text {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-top: 12px;
	/* letter-spacing: .08em; */
	overflow: hidden;
}
.news ul li .news__btn {
	display: flex;
	justify-content: flex-end;
	margin-top: 35px;
}
.news ul li .news__btn span {
	color: #05A3E4;
	font-weight: bold;
	border-bottom: 2px solid #05A3E4;
}
@media screen and (max-width: 767px) {
	.news__wrap {
		padding: 0 5% 60px;
	}
	.news ul {
		margin: 40px auto 0;
	}
	.news ul li a {
		flex-direction: column;
		padding: 20px 0;
	}
	.news__thumbnail {
		width: 100%;
		min-width: initial;
	}
	.news__texts {
		width: 100%;
		padding-left: 0;
	}
	.news__info {
		display: flex;
		align-items: center;
		gap: 15px;
		margin-top: 15px;
	}
	.news__date {
		line-height: 1.7;
	}
	.news__cat {
		height: 24px;
		padding: 0 14px;
		border-radius: 12px;
	}
	.news ul li h3 {
		margin-top: 10px;
		font-size: 20px;
		line-height: 1.7;
	}
	.news ul li .news__text {
		margin-top: 10px;
		line-height: 1.7;
	}
	.news ul li .news__btn {
		margin-top: 20px;
	}
}
/* -------------------------------- */
.pagination ul {
    display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 60px;
}
.pagination li {
}
.pagination li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background-color: #fff;
    color: #333;
	font-size: 14px;
	border-radius: 4px;
}
.pagination li.current a {
    background-color: #024b9e;
    color: #fff;
}
.pagination li.go a {
}
.pagination li.go a img {
	max-width: 5px;
}
@media screen and (max-width: 767px) {
	.pagination ul {
		margin-top: 40px;
	}
	.pagination li a {
		width: 35px;
		height: 35px;
		font-size: 12px;
	}
	.pagination li.current a {
		background-color: #08A2E5;
		color: #fff;
	}
	.pagination li.go a {
		background: none;	
	}
	.pagination li.go a img {
		max-width: 9px;
	}
}