@charset "UTF-8";
/*---------------------------------------------------------
	NEWS PARTS
---------------------------------------------------------*/
#news.section_inner{
	margin-top: calc( var(--base-100) * -1);
	padding-top: var(--base-100);
}
#news .section_ttl{
	position: absolute;
	top: var(--base-100);
	left: var(--base-40);
}
.news_wrap {
	padding:min(7.5vw,130px) 0 min(3.125vw,40px) min(23vw,335px);
}
.news_wrap:after {
	content: '';
	width: 100%;
	height: 1px;
	background: #999;
	display: block;
	order: -1;
}
.news_label {
	color: #999;
	font-size: var(--base-17);
	font-weight: 500;
	white-space: nowrap;
	text-align: center;
	padding-bottom: var(--base-17);
	order: -1;
	position: relative;
	z-index: 1;
	cursor: pointer;
	flex: 1;
}
.news_label:not(:last-of-type) {}
.news_content {
	margin: 0;
	height: 0;
	overflow: hidden;
	opacity: 0;
}
.news_switch:checked+.news_label {
	top: 3px;
	color: var(--base-color-black);
	border-bottom: var(--base-4) solid var(--base-color-green);
}
.news_switch:checked+.news_label+.news_content {
	height: auto;
	overflow: auto;
	opacity: 1;
	transition: .5s opacity;
}
.news_switch {
	display: none;
}
.news_content li span.news_ttl{
	width: min(48.046875vw, 615px);
}
@media screen and (max-width: 768px) {
	#news .section_ttl{
	  position: static;
	}
	.news_wrap {
	  padding:min(7.5vw,130px) 0;
	}
	.news_label {
	  font-size: var(--base-17);
	}
	.news_switch:checked+.news_label{
		top: 0;
	}
	.news_content li span.news_ttl{
		width: calc(100% - 220px);
	}
}
@media screen and (max-width: 576px) {
	.news_label {
		font-size: var(--base-15);
	}
	.news_content li span.news_ttl {
		margin-top: var(--base-10);
		width: 100%;
	}
}