.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;
}

ul#newsList{
	padding:0;
}

ul#newsList li a{
	display: block;
	width: 100%;
	font-size:1em;
	color:#65422c;
	margin:0;
	line-height:150%;
	list-style-type:none;
	vertical-align:middle;
	padding: 1.5em 1em;
	border-bottom: solid 1px #ccc;
	position: relative;
	transition: .5s;
}
ul#newsList li a::after{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: "\f061";
	color: #65422c;
	position: absolute;
	display: block;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: .5s;
}
ul#newsList li a:hover::after{
	right: 10px;
}
ul#newsList li:first-child{
	border-top: solid 1px #ccc;
}

ul#newsList li a .up_ymd{
	font-weight: 600;
	color: #65422c;
	display:inline-block;
	font-size: 0.8em;
	line-height: 16px;
	vertical-align:middle;
	width: 9em;
}
ul#newsList li a .title{
	color: #65422c;
	width: 80%;
	max-width: 50em;
	display: inline-block;
	vertical-align:middle;
	line-height: 16px;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	transition: .5s;
}


.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;
}

.more_btn:hover::after {
    transform: translateY(-50%) scaleX(1.4);
}

@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{
		width: 90%;
		max-width: none;
	}
}
@media (max-width: 750px){
	.news{
		padding: 0;
	}
	#newsWrap ul#newsList li a{
		padding: 1.5em 0;
	}
	.up_ymd{
		display: block;
		margin-bottom: 0.5em;
	}
}

#newsWrap02 ul.newsList{
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
	width: 100%;
}
#newsWrap02 ul.newsList li{
	list-style-type: none;
	width: calc(100% / 4 - 20px);
	background:#fff;
	overflow: hidden;
	margin: 10px;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.05);
	transition: .5s;
}

#newsWrap02 ul.newsList a{
	display: inline-block;
	width: 100%;
	color: #1a1a1a;
	font-size:90%;
}

/*サムネイル*/
#newsWrap02 .thumbNailWrap{
	display: block;
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	min-height: 0%;
}
#newsWrap02 .thumbNailWrap img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition-duration: 0.5s;
}
#newsWrap02 ul.newsList li:hover{
	box-shadow: 2px 2px 20px rgba(0,0,0,0.1);
}

#newsWrap02 ul.newsList li:hover .thumbNailWrap img{
	transform: scale(1.1);
	transition-duration: 0.5s;
}

/*日付*/
#newsWrap02 ul.newsList li .up_ymd{
	display: inline-block;
	font-weight: 600;
	font-size: 0.8rem;
	margin-top: 0.5rem;
	padding: 0.5em 1em;
}

#newsWrap02 ul.newsList li .title{
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #65422c;
	display: block;
	width: 100%;
	padding: 1rem 0.5rem ;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#newsWrap02 ul.newsList li .comment{
	display: block;
	font-size: 0.8rem;
	padding: 0 1rem 1rem;
}
@media (max-width: 1200px){
	#newsWrap02 ul.newsList{
		width: 100%;
		margin: auto;
	}
	#newsWrap02 ul.newsList li{
		width: calc(100% / 3 - 20px);
		max-width: 400px;
	}
}
@media (max-width: 960px){
	#newsWrap02{
		max-height: 37vw;
	}
	#newsWrap02 ul.newsList li{
		width: calc(100% / 2 - 20px);
	}
}

@media (max-width: 750px){
	#newsWrap02{
		max-height: 650px;
	}
	#newsWrap02 ul.newsList{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		max-width: 400px;
		margin: auto;
	}
	#newsWrap02 ul.newsList li{
		width: calc(100% - 20px);
		margin: 10px;
	}
}

.pager_link{
	text-align: right;
	padding: 10px;
}
.pager_link a{
	border: 1px solid #aaa;
    border-radius:5px;
    color: #333;
    font-size: 12px;
    padding: 3px 7px 2px;
    text-decoration: none;
    margin: 0 1px;
	font-weight: 500;
}

/* Pager style（外部化可） */
.pager{
	text-align:right;
	padding:10px;
	clear:both;
}
/*ページャーボタン*/
.pager a{
    border: 1px solid #999;
    border-radius: 5px 5px 5px 5px;
    color: #333;
    font-size: 12px;
    padding: 3px 7px 2px;
    text-decoration: none;
	margin:0 1px;
}

/*現在のページのボタン*/
.pager a.current{
    background: #999;
    border: 1px solid #999;
    border-radius: 5px 5px 5px 5px;
    color: #fff;
    font-size: 12px;
    padding: 3px 7px 2px;
	margin:0 1px;
    text-decoration: none;
}

.pager a:hover{
    background:#999;
    color: #fff;
}

.overPagerPattern{
	padding:0 2px ;	
}

/*詳細ページ ==================================================*/
#news-detail #up_ymd{
	font-size: 1rem;
	margin: 1em 0 1.5em;;
	letter-spacing: 0.12em;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
}
#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-family: "Shippori Mincho", serif;
	font-weight: 400;
	text-align: left;
	font-size: clamp(1.2rem, 0.96rem + 0.8533vw, 1.6rem);
	margin-bottom: 30px;
	border-bottom: solid 1px;
}

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

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

