@charset "UTF-8";
/*------------------------------------- NEWS*/
.news {
	overflow: hidden;
}
.news .box {
	max-width: 800px;
	margin: 0 auto;
	background-color: #ffffff;
}
.news .box .news-heading {
	padding: 1em;
	margin-bottom: 30px;
	border-top: 2px solid #f89494;
	border-bottom: 2px solid #f89494;
}
.news .box .news-heading .date {
	margin-bottom: 6px;
}
.news .box .news-heading .news_ttl {
	font-size: 2rem;
	font-weight: 700;
}
.news .box .text {
	margin-bottom: 20px;
}
.news .box figure {
	margin: 30px 0;
}
.news .box figure img {
	border-radius: 20px;
}
.news .text a {
	color: #f45050;
	text-decoration: underline;
	transition: .3s;
}
.news .text a:hover {
	opacity: .6;
}
@media screen and (max-width: 767px) {
	.news .box .news-heading .news_ttl {
		font-size: 1.6rem;
	}
	.news .box  figure {
		margin: 20px 0;
	}
}
@media screen and (max-width: 480px) {
	.news .box .news-heading .news_ttl {
		font-size: 1.4rem;
	}
}

/*---------------最新情報一覧*/
.news .news_list_box {
	max-width: 800px;
	min-height: 300px;
	margin: 0 auto;
}
.news .news_list_box dl.dl_news {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 1.5em;
	border-bottom: 1px solid #cccccc;
}
.news .news_list_box dl.dl_news dt {
	width: 150px;
}
.news .news_list_box dl.dl_news dd {
	width: calc(100% - 150px);
}
.news .news_list_box dl.dl_news dd a {
	transition: .4s;
}
.news .news_list_box dl.dl_news dd a:hover {
	color: #b41e00;
}
.news .btn_link {
	margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
	.news .news_list_box dl.dl_news {
		flex-direction: column;
		padding: 1em 10px;
	}
	.news .news_list_box dl.dl_news dt {
		width: 100%;
		margin-bottom: 5px;
	}
	.news .news_list_box dl.dl_news dd {
		width: 100%;
	}
}

.news .pagination-container {
	max-width: 800px;
	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 #333333;
	background-color: #ffffff;
	color: #333333;
	transition: .2s;
}
.news .pagination-container ul li.navi-active a {
	background-color: #efefef;
}
.news .pagination-container ul li a:hover {
	background-color: #333333;
	color: #ffffff;
}
@media screen and (max-width: 767px) {
	.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;
	}
}





