
/* 新着情報 ================================================== */
.news_wrap{
	padding-top: 50px;
	background:rgba(255,255,255,0.75);
}
.news{
	max-width: 960px;
	margin: auto;
	padding: 20px;
	
}
/* PDFUP用CMS ================================================== */
.newsinner{
	width: 100%;
	margin: 0 ;
	padding: 20px;
}

ul#newsList{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
}
ul#newsList li{
	width: calc(100% / 3 - 20px);
	margin: 10px;
	border-bottom:none;
}
ul#newsList a{
	display:inline-block;
	width: 100%;
	color:#fff;
	font-weight: 700;
	background-color: #33a7ff;
	border-radius: 30px;
	font-size:0.9em;
	text-align: center;
	padding:0.5em 1em;
	line-height:120%;
	list-style-type:none;
	transition: .5s;
}
ul#newsList a:hover{
	text-decoration:none;
	background: #1f6499 ;
}

ul#newsList .catName{
	display:inline-block;
	padding:3px 8px;
	border:1px solid #ccc;
	border-radius:6px;
	font-size:11px;
	line-height:100%;
	margin:0 2px;
}
ul#newsList .newMark{
	display:inline-block;
	border:1px solid #f2c927;
	padding:2px 4px 1px;
	font-size:11px;
	line-height:100%;
	background:#f2c927;
	color:#000;
	box-shadow:1px 1px 1px #999;
	border-radius:2px;
}
.c_link a{
	color: #f5f5f5;
}

/* 画像表示CMS ================================================== */
.newsinner2{
	width: 100%;
	height: 250px;
	margin: 0 ;
	padding: 10px;
	overflow-y: auto;
}

#newsWrap2{
	margin: 10px;
	
}
#newsWrap2 ul#newsList2{
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
}
#newsWrap2 ul#newsList2 a{
	display: inline-block;
	width: calc(100% / 3 - 10px);
	margin: 0 5px 20px;
	color: #333;
	font-size:90%;
	
}
#newsWrap2 ul#newsList2 li{
	list-style-type: none;
}

/*サムネイル*/
.thumbNailWrap{
	display: block;
	width: 100%;
	height: 160px;
	overflow: hidden;
	min-height: 0%;
}
.thumbNailWrap img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition-duration: 0.5s;
}

#newsWrap2 ul#newsList2 a:hover .thumbNailWrap img{
	transform: scale(1.2);
	transition-duration: 0.5s;
}

/*日付*/
#newsWrap2 ul#newsList2 li .up_ymd{
	display: block;
}

#newsWrap2 ul#newsList2 li .title{
	display: block;
}

@media (max-width: 750px){
	ul#newsList{
		flex-direction: column;
	}
	ul#newsList li{
		width: calc(100%  - 20px);
		min-width: 200px;
	}
	#newsWrap2 ul#newsList2{
		justify-content: space-around;
	}
	#newsWrap2 ul#newsList2 a{
		width: 45%;
		margin-right: 2%;
	}
}
@media (max-width: 450px){
	#newsWrap2 ul#newsList2 a{
		width: 90%;
	}
	.thumbNailWrap{
		height: 200px;
	}
}



/*詳細ページ*/
#up_ymd{
	text-align:right;
	font-size:13px;
	margin:5px 10px;
}
.detailUpfile{
	margin:5px 0 35px;
	text-align:center;
}
.backORcloseBtn{
	display: block;
	text-align:center;
	line-height:100%;
	margin:30px auto;
	width: 320px;
	
}
.backORcloseBtn a{
	display:inline-block;
	text-align: center;
	width: 100%;
	background-color:#33a7ff;
	color: #fff;
	padding: 0.5em;
	position: relative;
	transition:all 0.5s ease-out;
	border-radius: 30px;
}
.backORcloseBtn :hover{
	background:#1f6499 ;
	color: #fff;
}
.detailUpfile img{
	max-width:100%;
	height:auto;
}
.pNav{
	font-size:11px;	
}