@charset "utf-8";

.lower_fv {
	position: relative;
	background-image: url("../img/news_fv.jpg");
	align-items: flex-end;
	padding-bottom: 100px;
}
.lower_fv::before {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
}
.lower_fv .page_ttl {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1040px;
	padding-inline: 20px;
	margin-inline: auto;
}
.lower_fv .date {
	text-align: left;
}
.lower_fv h1 {
	color: #fff;
	font-size: var(--text-fv-title);
	font-weight: bold;
}
@media (max-width: 959px) {
	.lower_fv {
		padding-bottom: 60px;
	}
}
@media (max-width: 519px) {
	.lower_fv {
		padding-bottom: 30px;
		background-image: url("../img/news_fv_sp.jpg");
	}
	.lower_fv h1 {
		font-size: 20px;
	}
}


#news {
	display: flex;
	justify-content: space-between;
	gap: 90px;
	max-width: 1240px;
	padding: 60px 20px 100px;
	margin-inline: auto;
}
#news .contents {
	width: 100%;
}
#news .content {
	padding-bottom: 20px;
	border-bottom: 1px solid #ccc;
	font-family: var(--yu-gothic);
	line-height: 1.5;
}
#news .content > * + * {
	margin-top: 15px;
}
#news .content h2 + * {
	margin-top: 20px;
}
#news .content h2 {
	position: relative;
	padding-top: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--usui-beige);
	font-size: 25px;
	font-weight: bold;
}
#news .content h2::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 80px;
	height: 2px;
	background-color: var(--koi-beige);
}
#news .content h3 {
	padding: 5px 10px;
	background-color: #E2DCCD;
	font-size: 17px;
	font-weight: bold;
}
#news .content h4 {
	padding: 5px 10px;
	border-left: 2px solid var(--beige);
	font-weight: bold;
}
#news .content p {
}
#news .content ul {
}
#news .content ul li {
	position: relative;
	padding-left: 13px;
}
#news .content ul li + li {
	margin-top: 2px;
}
#news .content ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	display: block;
	width: 5px;
	height: 5px;
	background-color: var(--beige);
	border-radius: 10px;
}
@media (max-width: 959px) {
	#news {
		gap: 30px;
	}
}
@media (max-width: 519px) {
	#news {
		display: block;
		padding-top: 40px;
		padding-bottom: 50px;
	}
	#news .content h2 {
		padding-top: 10px;
		padding-bottom: 10px;
		font-size: 20px;
	}
	#news .content h2::after {
		width: 60px;
	}
	#news .content h3 {
		font-size: 16px;
	}
	#news .content h4 {
		padding: 0 0 0 10px;
	}
}


#news .page_nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 60px;
	font-size: 14px;
	font-weight: bold;
}
#news .page_nav .prev_link,
#news .page_nav .next_link {
	position: relative;
	display: flex;
	align-items: center;
	width: 140px;
	height: 48px;
	border-bottom: 1px solid #ccc;
}
#news .page_nav .prev_link.disabled,
#news .page_nav .next_link.disabled {
	color: #999;
}
#news .page_nav .prev_link {
	justify-content: flex-end;
}
#news .page_nav .next_link {
}
#news .page_nav .prev_link::before,
#news .page_nav .next_link::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 19px;
	height: 7px;
	margin-top: auto;
	margin-bottom: auto;
	background-image: url("../img/navi_arrow.svg");
	transition: all ease 0.3s;
}
#news .page_nav .prev_link::before {
	left: 0;
	transform: scale(-1, 1);
}
#news .page_nav .next_link::before {
	right: 0;
}
#news .page_nav .prev_link:not(.disabled):hover::before {
	left: -10px;
}
#news .page_nav .next_link:not(.disabled):hover::before {
	right: -10px;
}
#news .page_nav .list_link {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	width: 130px;
	height: 48px;
	transition: all ease 0.3s;
}
#news .page_nav .list_link:hover {
	opacity: 0.8;
}
#news .page_nav .list_link::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	background-color: #9B8A5D;
	border-radius: 10px;
	transition: all ease 0.3s;
}
@media (max-width: 959px) {
}
@media (max-width: 519px) {
	#news .page_nav {
		margin-top: 30px;
		font-size: 13px;
	}
	#news .page_nav .prev_link,
	#news .page_nav .next_link {
		height: 42px;
		border-bottom: none;
	}
	#news .page_nav .prev_link {
		width: 120px;
	}
	#news .page_nav .next_link {
		width: 105px;
	}
	#news .page_nav .list_link {
		gap: 10px;
		width: 110px;
		height: 42px;
	}
}


#news .sidebar {
	flex-shrink: 0;
	width: 170px;
	border-top: 1px solid #ccc;
}
#news .link_list {
	padding-top: 10px;
}
#news .link_list li {
}
#news .link_list a {
	display: block;
	padding: 10px 20px;
	line-height: 2;
}
#news .link_list a[aria-current] {
	color: var(--beige);
}
@media (max-width: 959px) {
	#news .sidebar {
		width: 120px;
	}
}
@media (max-width: 519px) {
	#news .sidebar {
		width: 100%;
		margin-top: 30px;
	}
	#news .link_list {
		padding-top: 10px;
	}
}