.contents_news{
	width: calc(100% - 30px);
	padding: 15px;
	max-width: 1300px;
	margin: auto;
}
.news{
	padding: 1em;
	display: flex;
	justify-content: space-between;
	align-items: center;

}
.news_title{
	width: 100%;
	max-width: 300px;
}


#newsWrap{
	width: 100%;
	max-height: 310px;
	overflow: auto;
	padding-left: 20px;
}
#newsWrap::-webkit-scrollbar{
	width: 2px;
	height: 2px;
}

ul#newsList{
	padding:0;
}

ul#newsList li a{
	display: block;
	width: 100%;
	font-size:1em;
	color: #fff;
	margin:0;
	line-height:150%;
	list-style-type:none;
	vertical-align:middle;
	padding: 1.5em;
	position: relative;
	background:linear-gradient(to top , #1a1a1a 0 50% , #fff 50% 100%);
	background-size: 100% 200%;
	background-position: bottom;
	border:solid 2px #1a1a1a;
	margin-bottom: 15px;
	border-radius: 100px;
	transition: .5s;
}
ul#newsList li a:hover{
	background-position: top;
}
ul#newsList li a::after{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: "\f061";
	color: #fff;
	position: absolute;
	display: block;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: .5s;
}
ul#newsList li a:hover::after{
	right: 25px;
	color: #1a1a1a;
}

ul#newsList li a .up_ymd{
	font-family: "Roboto", sans-serif;
	font-weight: 600;
	color: #fff;
	display:inline-block;
	font-size: 0.9em;
	line-height: 16px;
	width: 10em;
	transform: translateX(0);
	transition: .5s;
}
ul#newsList li a .title{
	color: #fff;
	width: calc(100% - 11em);
	max-width: 30em;
	display: inline-block;
	vertical-align: middle;
	line-height: 16px;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	transition: .5s;
}
ul#newsList li a:hover .up_ymd,
ul#newsList li a:hover .title{
	color: #1a1a1a;
}


.more_btn{
	display: block;
	position: relative;
	text-align: right;
	margin-top: 1em;
	padding-right: 3.5em;
	transition: .5s;
	
}
.more_btn a{
	color: #1a1a1a;
	font-size: 0.8em;
	font-weight: 600;
	text-transform: uppercase
}
.more_btn::after {
    position: absolute;
    right: 1em;
	top: 50%;
    transform: translateY(-50%);
    transform-origin: left;
    width: 2em;
    height: .5em;
    background-color: #1a1a1a;
    clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
    content: '';
    transition: transform .3s;
}

@media (max-width: 959px){
	.contents_news{
		padding: 20px 0 30px;
	}
	.news{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	#newsWrap{
		width: 100%;
		padding: 10px;
	}
	.news_title{
		max-width: none;
	}
}
@media (max-width: 750px){
	.news{
		padding: 0;
	}
	ul#newsList li a .up_ymd{
		display: block;
		margin-bottom: 0.25em;
		width: 90%;
	}
	ul#newsList li a .title{
		width: 90%;
	}
}

/*詳細ページ ==================================================*/
#news-detail #up_ymd{
	margin: 1em 0 1.5em;;
	letter-spacing: 0.12em;
	color: #0068b7;
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
}
#news-detail #up_ymd::before{
	font-family: "Font Awesome 6 Free";
	content: '\f017';
	font-weight: 900;
	padding-right: 0.5em;
}
#news-detail .news_data{
	padding-bottom: 30px;
}
#news-detail .stitle{
	font-weight: 400;
	text-align: left;
	font-size: clamp(1.2rem, 0.96rem + 0.8533vw, 1.6rem);
	margin-bottom: 30px;
	border-bottom: solid 1px #8A9898;
}

#news-detail .detailUpfile{
	margin:5px 0 35px;
	text-align:center;
}
#news-detail .topic{
	color: #1a1a1a;
	margin-top: 1em;
}

#news-detail .detailUpfile img{
	max-width:100%;
	height:auto;
}
#news-detail .pNav{
	font-size:11px;	
}

