@charset "UTF-8";
/*-----------------------最新情報一覧*/
.news .news_item_container {
	max-width: 1200px;
	margin: 0 auto;
}
.news .news_item_container .news_list .news_item {
	border-bottom: 1px dashed #bc9c80;
}
.news .news_item_container .news_list .news_item a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 2em 30px 2em 1em;
	transition: .3s;
	position: relative;
}
.news .news_item_container .news_list .news_item a::after {
	content: "";
	display: block;
	width: 9px;
	height: 15px;
	background-image: url("../img/common/arrow_b_r.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	transition: .3s;
}
.news .news_item_container .news_list .news_item a:hover {
	background-color: #fffcee;
	cursor: pointer;
}
.news .news_item_container .news_list .news_item a:hover::after {
	right: 6px;
}
.news .news_item_container .news_list .news_item a .date {
	width: 150px;
	line-height: 1.6;
}
.news .news_item_container .news_list .news_item a .news_title {
	width: calc(100% - 150px);
	line-height: 1.6;
}
@media screen and (max-width: 768px) {
	.news .news_item_container {
		padding: 3em 2em;
		border-radius: 20px;
	}
	.news .news_item_container .news_list .news_item a {
		flex-direction: column;
		padding: 1.5em 30px 1.5em 1em;
	}
	.news .news_item_container .news_list .news_item a .date {
		width: 100%;
		line-height: 1.8;
		margin-bottom: 0.5em;
	}
	.news .news_item_container .news_list .news_item a .news_title {
		width: 100%;
	}
	.news .news_item_container .news_list .news_item a::after {
		width: 6px;
		height: 10px;
	}
}

/*-----------------------最新情報 記事*/
.news .news_article_container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 3em;
	border-radius: 30px;
	background-color: #ffffff;
}
.news .news_article_container .date {
	font-weight: 500;
	letter-spacing: 1px;
	margin-bottom: 0.8em;
}
.news .news_article_container .news_title {
	font-size: clamp(1.125rem, 0.949rem + 0.751vw, 1.625rem);
	font-weight: 600;
	line-height: 1.8;
	padding-bottom: 0.6em;
	margin-bottom: 1.5em;
	position: relative;
}
.news .news_article_container .news_title::after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: linear-gradient(to right, #bc9c80 4px, transparent 4px);
	background-size: 8px 2px;
	background-repeat: repeat-x;
	background-position: left bottom;
	position: absolute;
	left: 0;
	bottom: 0;
}
.news .btn_link {
	margin: 3em auto 0;
}
.news .btn_link::after {
	content: "";
	display: block;
	width: 8px;
	height: 15px;
	background-image: url("../img/common/arrow_w_l.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	right: unset;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: .3s;
}
.news .btn_link:hover::after {
	content: "";
	display: block;
	width: 8px;
	height: 15px;
	background-image: url("../img/common/arrow_w_l.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	right: unset;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: .3s;
}
.news .btn_link:hover::after {
	left: 10px;
}
@media screen and (max-width: 768px) {
	.news .news_article_container {
		padding: 3em 2em;
		border-radius: 20px;
	}
}





