@charset "utf-8";

.newsDate {
	margin: 0.8em 0 0.3em;
	font-family: "Archivo", sans-serif;
	font-size: 2rem;
}

.newsTxt {
	font-size: 1.4rem;
}

.newsThumb {
	overflow: hidden;
}

.newsList {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	justify-content: space-between;
}

.newsList .item {
	width: 32%;
	margin: 0 2% 4rem 0;
}

.newsList .item:nth-child(3n) {
	margin: 0 0 4rem 0;
}


.newsList .item img {
	transition: all 0.2s;
}

.newsList .item:hover {
	color: #0b2f51;
}

.newsList .item:hover img {
	transform: scale(1.1);
}

.newsList .item:hover .newsTxt {
	text-decoration: underline;
}

.newsReadMore {
	width: 235px;
	height: 46px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 4rem auto 0;
	background: #000;
	color: #ffffff;
	font-family: "Archivo", sans-serif;
	letter-spacing: 0.2em;
	position: relative;
	border: 1px solid transparent;
}

@media screen and (min-width: 1001px) {
	.newsReadMore:hover {
		background-color: #fff;
		color: #000;
		border-color: #000;
	}

	.newsReadMore:hover img {
		filter: brightness(0);
	}

	.newsReadMore:hover::after {
		background-image: url(../img/common/ic-arr-black.svg);
	}
}

@media screen and (max-width: 1000px) {
	.newsList {
		display: block;
	}

	.newsList .item {
		max-width: 500px;
		width: 100%;
		margin: 0 auto 4rem;
	}

	.newsList .item:last-child {
		margin: 0 auto;
	}

	.newsDate {
		font-size: 1.4rem;
		margin: 1rem 0 0;
	}
}

/* news-detail */

#news-detail .entry_date {
	font-size: 1.6em;
	color: #a00000;
}
#news-detail .entry_title {
	margin-bottom: 1.5em;
	font-size: 1.4em;
}
#news-detail .entry_keyvisual {
	margin-bottom: 2em;
}
#news-detail .entry_keyvisual img {
	display: block;
	margin: 0 auto;
}
#news-detail .entry_body {
	text-align: center;
	line-height: 2;
	font-style: normal;
}
#news-detail .entry_body img.size-full {
	margin-top: 1em;
	margin-bottom: 1em;
}
#news-detail .entry_body img {
	margin: 5em auto;
}

@media screen and (max-width: 1000px) {

}


/* page_numbers */
.page_numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 auto 80px;
}
.page_numbers li {
	margin: 0.2em;
}
.page_numbers li > * {
	display: block;
	width: 2.4em;
	line-height: 2.4;
	border: solid 1px #ccc;
	text-align: center;
}
.page_numbers li > *.dots {
	width: 1.2em;
	border: none;
}
.page_numbers li > *.current {
	background-color: #08365b;
	color: #fff;
}
@media screen and (max-width: 1000px) {
	.page_numbers {
		margin-top: min(15%, 80px);
		font-size: 0.9em;
	}
}