/* NEWS欄 カテゴリー
-------------------------------------------------------------------------*/
.news_wrapp{
	width: 100%;
	max-width: 1080px;
	margin: 0 auto 30px;
	border: 1px solid #d3d8eb;
	border-radius: 10px;
}
.news_wrapp > h4{
	background: #ebedf6;
	border-radius: 9px 9px 0 0;
	font-size: 20px;
	font-weight: 500;
	color: #30479e;
	padding: 25px 50px;
	box-sizing: border-box;
	margin: 0 auto;
}
.news_inner{
	width: 100%;
	margin: 0 auto;
}
.news_scroll{
	width: 100%;
	height: 250px;
	overflow-y: scroll;
	/* padding: 0 20px; */
	margin: 0 auto;
	box-sizing: border-box;
}
.news_scroll::-webkit-scrollbar{
  width: 7px;
}
.news_scroll::-webkit-scrollbar-track{
  background: #f2f2f2;
  border: none;
  border-radius: 0px;
  box-shadow: inset 0 0 2px #30479e; 
}
.news_scroll::-webkit-scrollbar-thumb{
  background: #30479e;
  border-radius: 0px;
  box-shadow: none;
}
.news_scroll .one{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.news_scroll .one a{
	display: block;
	width: 100%;
	text-decoration: none;
	color: #333;
}
.news_scroll .one a:hover{
	background: #ebedf6;
	transition: all .2s ease-in;
}
.news_scroll .one dl{
	width: 100%;
	border-bottom: 1px solid #ccc;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.news_scroll .one dl dt,
.news_scroll .one dl dd{
	padding: 15px 10px;
	box-sizing: border-box;
}
.news_scroll .one dl dt{
	width: 20%;
	font-weight: bold;
	text-align: center;
}
.news_scroll .one dl dt::after{
	display: inline-block;
	width: 80%;
	font-size: 0.9rem;
	text-align: center;
	background: #30479e;
	color: #fff;
}
.news_scroll .one.news dl dt::after{
	content: "お知らせ";
}
.news_scroll .one.kenshin dl dt::after{
	content: "各種健診情報";
}
.news_scroll .one.media dl dt::after{
	content: "メディア";
}
.news_scroll .one.recruit dl dt::after{
	content: "採用情報";
}
.news_scroll .one dl dd{
	width: 80%;
}

.sortNav{
	display: flex;
	justify-content: space-around;
	background: #fff;
	border-bottom: 1px solid #30479e;
}
.sortNav li{
	width: calc(100%/4 - 20px);
	text-align: center;
	background: #e3f4fb;
	border-top: 1px solid #30479e;
	border-left: 1px solid #30479e;
	border-right: 1px solid #30479e;
	color: #000;
	padding: 10px;
	cursor: pointer;
	box-sizing: border-box;
	letter-spacing: 2px;
	border-radius: 10px 10px 0 0;
}
.sortNav li.active{
	background: #30479e;
	color: #fff;
	font-weight: bold;
}
/* .sortNav li.btnNews.active{
	background: #e18a18;
}
.sortNav li.btnReha.active{
	background: #59ae37;
}
.sortNav li.btnRec.active{
	background: #3d87b3;
} */


@media screen and (max-width: 650px){

}