@charset "UTF-8";
/*---------------新着情報*/
.news .box {
	max-width: 800px;
	margin: 0 auto;
	background-color: #ffffff;
}
.news .box .news-heading {
	padding-bottom: 1em;
	margin-bottom: 30px;
	border-bottom: 1px solid #1e73be;
}
.news .box .news-heading .date {
	margin-bottom: 6px;
	letter-spacing: 1px;
}
.news .box .news-heading .news_ttl {
	font-size: 2rem;
	font-weight: 600;
}
.news .box .text {
	margin-bottom: 10px;
}
.news .box figure {
	margin-bottom: 10px;
}
.news .text a {
	color: #1e73be;
	text-decoration: underline;
	transition: .3s;
}
.news .text a:hover {
	color: #3ba5f0;
	text-decoration: none;
}
.news .btn_link {
	margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
	.news .box .news-heading .news_ttl {
		font-size: 1.6rem;
		font-weight: 600;
	}
	.news .box  figure {
		margin: 20px 0;
	}
}
@media screen and (max-width: 480px) {
	.news .box .news-heading .news_ttl {
		font-size: 1.4rem;
	}
}

/*---------------新着情報一覧*/
.news .news_item_wrap {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.news .news_item_wrap .news_item {
	border-bottom: 1px solid #dddddd;
}
.news .news_item_wrap .news_item a {
	display: flex;
	align-items: center;
	padding: 1.5em 0;
	position: relative;
}
.news .news_item_wrap .news_item .news_date {
	min-width: 120px;
	color: #565656;
}
.news .news_item_wrap .news_item .news_title {
	padding-right: 60px;
	color: #565656;
	line-height: 1.8;
	transition: .2s;
}
.news .news_item_wrap .news_item .arrow_icon {
	width: 10px;
	height: 10px;
	border-right: 1px solid #1e73be;
	border-bottom: 1px solid #1e73be;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: rotate(-45deg) translateY(-50%);
	margin: auto;
	transition: .3s;
}
.news .news_item_wrap .news_item a:hover .news_title {
	color: #1e73be;
}
.news .news_item_wrap .news_item a:hover .arrow_icon {
	right: 5px;
}
@media screen and (max-width: 480px) {
	.news .news_item_wrap .news_item a {
		display: block;
	}
	.news .news_item_wrap .news_item .news_date {
		min-width: 100%;
	}
	.news .news_item_wrap .news_item .news_title {
		padding-right: 40px;
		margin-top: 0.6em;
	}
}

.news .pagination-container {
	margin: 80px auto 0;
}
.news .pagination-container ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.news .pagination-container ul li a {
	display: block;
	padding: 10px 20px;
	margin-left: -1px;
	border: 1px solid #1e73be;
	border-radius: 0;
	background-color: #ffffff;
	color: #1e73be;
	transition: .2s;
}
.news .pagination-container ul li.navi-active a {
	background-color: #d4efff;
}
.news .pagination-container ul li a:hover {
	background-color: #1e73be;
	color: #ffffff;
}
@media screen and (max-width: 768px) {
	.news .pagination-container {
		margin: 50px auto 0;
	}
	.news .pagination-container ul li a {
		display: none;
	}
	.news .pagination-container ul li.prev a,
	.news .pagination-container ul li.next a {
		display: block;
	}
}
