@charset "UTF-8";
/*-----------------------最新情報*/
.section_mv #news.mv_inner {
	background-image: url("../img/news/bg_main.jpg");
	background-position: 50% 50%;
}
.news {
	background-image: url("../img/common/bg_pattern.png");
	background-size: 100px auto;
}
.news .news_item_wrap {
	width: 100%;
	max-width: 960px;
	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 1em;
	position: relative;
	transition: .3s;
}
.news .news_item_wrap .news_item a .arrow {
	content: "";
	display: block;
	width: 24px;
	height: 1px;
	background-color: #000000;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: .3s;
}
.news .news_item_wrap .news_item a .arrow::after {
	content: "";
	display: block;
	width: 10px;
	height: 1px;
	background-color: #000000;
	position: absolute;
	right: 0;
	bottom: 0;
	transform: rotate(40deg);
	transform-origin: right bottom;
}
.news .news_item_wrap .news_item a:hover .arrow {
	right: 10px;
}
.news .news_item_wrap .news_item .news_date {
	min-width: 120px;
	font-weight: 600;
}
.news .news_item_wrap .news_item .news_title {
	padding-right: 50px;
	color: #333333;
	line-height: 1.8;
	transition: .2s;
}
.news .news_item_wrap .news_item a:hover {
	background-color: #efefef;
	transform: none;
}
@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 .news_box {
	max-width: 800px;
	margin: 0 auto;
}
.news .news_box .news_heading {
	padding-bottom: 1em;
	margin-bottom: 30px;
	position: relative;
	border-bottom: 1px solid #cccccc;
}
.news .news_box .news_heading .date {
	margin-bottom: 6px;
	font-weight: 600;
	letter-spacing: 1px;
}
.news .news_box .news_heading .news_ttl {
	font-size: 1.25rem;
	font-weight: 600;
}
.news .news_box .text {
	font-size: inherit;
	font-family: inherit;
	line-height: 2;
	letter-spacing: 0.5px;
	margin-bottom: 1em;
}
.news .news_box a {
	padding-left: 1.5em;
	color: #868686;
	text-decoration: underline;
	transition: .3s;
	position: relative;
}
.news .news_box a::before {
	content: "";
	display: block;
	width: 0.6em;
	height: 0.6em;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
	transform: rotate(-45deg);
	position: absolute;
	left: 0;
	top: 0.2em;
}
.news .news_box a:hover {
	text-decoration: none;
}
.news .news_box .news_img {
	display: flex;
	flex-wrap: wrap;
}
.news .news_box .news_img li {
	width: 32%;
	margin-right: 2%;
	margin-bottom: 3%;
}
.news .news_box .news_img li:nth-child(3n) {
	margin-right: 0;
}
.news .news_box .news_img li a {
	display: block;
	width: 100%;
	padding-bottom: 66.7%;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}
.news .news_box .news_img li a img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	transition: .3s;
}
.news .news_box .news_img li a:hover {
	transform: none;
}
.news .news_box .news_img li a:hover img {
	transform: scale(1.1);
}
.news .btn_link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 50px;
	padding: 0 15px;
	border-radius: 50vh;
	border: 0.8px solid #000000;
	transition: all 1s;
	margin: 50px auto 0;
}
.news .btn_link:hover {
	background-color: #e4e4e4;
}
@media screen and (max-width: 768px) {
	.news .news_box .news_heading .news_ttl {
		font-size: 1rem;
	}
	.news .news_box .news_img {
		justify-content: space-between;
	}
	.news .news_box .news_img li,
	.news .news_box .news_img li:nth-child(3n) {
		width: 48%;
		margin-right: 0;
		margin-bottom: 4%;
	}
}
@media screen and (max-width: 480px) {
	.news .news_box .news_heading .news_ttl {
		font-size: 0.937rem;
	}
}
