@charset "UTF-8";
/*-----------------------お知らせ*/
.section_mv #news.mv_inner {
	background-image: url("../img/news/main_v.jpg");
}
.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: 1px solid #007850;
	border-bottom: 1px solid #007850;
}
.news .box .news-heading .date {
	margin-bottom: 6px;
}
.news .box .news-heading .news_ttl {
	font-size: 2rem;
	font-family: 'Shippori Mincho B1', serif;
}
.news .box .text {
	margin-bottom: 20px;
}
.news .box figure {
	margin: 30px 0;
}
.news .text a {
	color: #be1919;
}
@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;
		font-weight: 600;
	}
}

/*---------------最新情報一覧*/
.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 dashed #dddddd;
}
.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 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	transition: .2s;
}
.news .news_list_box dl.dl_news dd a .news_title {
	width: calc(100% - 110px);
	color: #333333;
}
.news .news_list_box dl.dl_news dd a .news_img {
	width: 100px;
	margin-left: 10px;
	position: relative;
	filter: drop-shadow(0 5px 4px rgba(0,0,0,0.3));
}
.news .news_list_box dl.dl_news dd a .news_img::before {
	content: "";
	display: block;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	overflow: hidden;
	position: relative;
}
.news .news_list_box dl.dl_news dd a .news_img img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news .news_list_box dl.dl_news dd a:hover {
	opacity: .7;
}
.news .btn_link {
	margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
	.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: 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;
	}
}


