@charset "UTF-8";
/* CSS Document (新着情報CMS) */

/*===index.php(メイン)用==============================*/
#newsWrap ul#newsList{
	width: 100%;
	margin: 0 0 0 auto;
	overflow-y: scroll;
	max-height: 250px;
	padding: 0 10px;
}
ul#newsList li{
	list-style-type: none;
}
ul#newsList li a{
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #ddd;
	padding: 20px 10px;
}
ul#newsList li:first-child a{
	border-top: 1px solid #ddd;
}
ul#newsList li a .thumbNailWrap{
	display: block;
	width: 160px;
	position: relative;
    overflow: hidden;
	min-height: 0%;
}
.thumbNailWrap::before{
    content: '';
    display: block;
    padding-top: 60%;
}
.thumbNailWrap img{
	display: block;
	object-fit: cover;
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	transition: all 0.4s ease;
}
ul#newsList a:hover .thumbNailWrap img{
	transform: scale(1.04);
}

ul#newsList li a .info{
	width: calc(100% - 180px);
}
ul#newsList li .up_ymd{
	display: block;
	font-size: 0.8rem;
	color: #0c7d90;
}
ul#newsList li .title{
	display: block;
	letter-spacing: 0.15em;
}

ul#newsList li a:hover{
	background-color: rgba(0,0,0,0.1);
}

@media (max-width: 960px){
}
@media (max-width: 750px){
	ul#newsList li a .thumbNailWrap{
		width: 120px;
	}
	ul#newsList li a .info{
		width: calc(100% - 140px);
	}
	ul#newsList li .up_ymd{
		font-size: 0.6rem;
		margin-bottom: 5px;
	}
	ul#newsList li .title{
		font-size: 0.9rem;
	}
}


/*スクロールバー*/
#newsWrap ul#newsList::-webkit-scrollbar{
    overflow: hidden;
    width: 1px;
    background: #fafafa;
}
#newsWrap ul#newsList::-webkit-scrollbar-button {
    display: none;
}
#newsWrap ul#newsList::-webkit-scrollbar-thumb, #newsWrap ul#newsList::-webkit-scrollbar-corner {
    background: #333;
}
#newsWrap ul#newsList::-webkit-scrollbar-thumb, #newsWrap ul#newsList::-webkit-scrollbar-corner {
    background: #333;
}

/*===news-detail.php用==============================*/
.news-detail .flex{
	display: flex;
	justify-content: space-between;
}
.news-detail .flex #main{
	width: calc(100% - 270px);
}
.news-detail .flex #side{
	width: 220px;
}

/*main*/
.news-detail .flex #main #up_ymd{
	font-size: 11px;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
	color: #0c7d90;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
}
.news-detail .flex #main #up_ymd::before{
	font-family: "Font Awesome 5 Free";
	content: '\f017';
	font-weight: 900;
	padding-right: 0.5em;
}
.news-detail .pages{
	display: flex;
	justify-content: space-around;
	margin-top: 30px;
}
.news-detail .pages > div{
	width: 45%;
}
.news-detail .pages .page_next{
}
.news-detail .pages .page_prev{
}
.news-detail .pages a{
	display: block;
	width: 100%;
	border: 1px solid #ddd;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	padding: 15px;
	transition: 0.4s;
}
.news-detail .pages .page_prev a{
	text-align: right;
}
.news-detail .pages a:hover{
	background-color: #f7f7f7;
}

/*side*/
.news-detail .flex #side h3{
	font-size: 1.1rem;
	font-weight: 500;
	margin-bottom: 10px;
}
.news-detail .flex #side h3::before{
	font-family: "Font Awesome 5 Free";
	content: '\f0ca';
	font-weight: 900;
	padding-right: 0.5em;
	color: #0AC2B5;
}
.news-detail .flex #side ul{

}
.news-detail .flex #side ul li a{
	display: block;
	width: 100%;
	border: 1px solid #ddd;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: #0AC2B5;
	padding: 15px;
	margin-bottom: 7px;
	transition: 0.4s;
}
.news-detail .flex #side ul li a::before{
	font-family: "Font Awesome 5 Free";
	content: '\f017';
	font-weight: 900;
	padding-right: 0.5em;
}
.news-detail .flex #side ul li a:hover{
	background-color: #f7f7f7;
}

@media (max-width: 960px){
	.news-detail .pages{
		display: block;
		margin-top: 40px;
	}
	.news-detail .pages > div{
		width: 100%;
	}
	.news-detail .pages .page_next{
		margin-bottom: 7px;
	}
}
@media (max-width: 750px){
	.news-detail .flex{
		display: block;
	}
	.news-detail .flex #main{
		width: 100%;
		margin-bottom: 40px;
	}
	.news-detail .flex #side{
		width: 100%;
	}
}


/*一覧ページ*/














/*アーカイブのスクロール指定*/
.news-detail #side ul{
	overflow-y: scroll;
	max-height: 300px;
	padding-right: 10px;
}
/*スクロールバー*/
.news-detail #side ul::-webkit-scrollbar{
    overflow: hidden;
    width: 1px;
    background: #fafafa;
}
.news-detail #side ul::-webkit-scrollbar-button {
    display: none;
}
.news-detail #side ul::-webkit-scrollbar-thumb, .news-detail #side ul::-webkit-scrollbar-corner {
    background: #333;
}
.news-detail #side ul::-webkit-scrollbar-thumb, .news-detail #side ul::-webkit-scrollbar-corner {
    background: #333;
}