@charset "UTF-8";
/* CSS Document */
/*===index.php(メイン)用==============================*/
#newsWrap {
	width: 100%;
	padding: 20px 5px;
}
#newsWrap ul#newsList {
	width: 100%;
	overflow-y: scroll;
	max-height: 370px;
	padding: 0 15px;
}
#newsWrap ul#newsList li {
	list-style-type: none;
	line-height: 2.1;
}
#newsWrap a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #595758;
	transition: 0.4s;
	padding: 10px 0;
	position: relative;
}
.news_thumbNailWrap {
	width: 210px;
}
.news_textWrap {
	width: calc(100% - 230px);
}
#newsWrap ul#newsList li .up_ymd {
	display: block;
	margin-right: 20px;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
}
#newsWrap ul#newsList li .title {
	display: block;
	text-decoration: none;
	color: #595758;
	font-size: 0.95rem;
	transition: 0.4s;
}
.blog-txt {
	font-size: 88%;
	opacity: 0.7;
	margin-bottom: 0;
}
/*thumbNail*/
.thumbNailWrap {
	position: relative;
	display: block;
	overflow: hidden;
	clip-path: circle(50% at 50% 50%);
}
.thumbNailWrap::before {
	content: '';
	display: block;
	padding-top: 100%; /*高さの比率*/
}
.thumbNailWrap img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#newsList li a:hover .thumbNailWrap img {
	transform: scale(1.1);
	transition: .6s;
}
@media (max-width:980px) {
	.news_thumbNailWrap {
		width: 170px;
	}
	.news_textWrap {
		width: calc(100% - 200px);
	}
}
@media (max-width: 750px) {
	#newsWrap {
		padding: 20px 0;
	}
	#newsWrap ul#newsList {
		max-height: 230px;
		width: 100%;
		margin: auto;
		padding: 0 10px;
	}
	#newsWrap a {
		padding: 7px 0 10px;
	}
	#newsWrap ul#newsList li {
		line-height: 2.05;
	}
	#newsWrap ul#newsList li .title {
		font-size: 0.9rem;
	}
	#newsWrap ul#newsList li .up_ymd {
		margin-bottom: 0;
		font-size: 0.78rem;
	}
	.news_thumbNailWrap {
		width: 120px !important;
	}
	.news_textWrap {
		width: calc(100% - 135px) !important;
	}
	.blog-txt {
		font-size: 80%;
	}
}
@media (max-width: 550px) {
	#newsWrap ul#newsList {
		max-height: 105vw;
	}
	#newsWrap a {
		padding: 12px 0;
		display: block;
	}
	.news_thumbNailWrap {
		width: 100% !important;
	}
	.news_textWrap {
		padding-top: 5px;
		width: 100% !important;
	}
	.news-detail-list_sp .news_textWrap {
		padding-top: 0;
		padding-left: 12px;
	}
}
#newsWrap ul#newsList::-webkit-scrollbar {
	overflow: hidden;
	width: 3px;
	border-radius: 500px;
	background: #f5f5f5;
}
#newsWrap ul#newsList::-webkit-scrollbar-button {
	display: none;
}
#newsWrap ul#newsList::-webkit-scrollbar-thumb, #newsWrap ul#newsList::-webkit-scrollbar-corner {
	background: #aaa;
	border-radius: 500px;
}
/*一覧ページ*/
.news-detail .flex #main li {
	list-style-type: none;
}
.news-detail .flex #main li .title {
	display: block;
	margin-bottom: 5px;
	padding-bottom: 5px;
	border-bottom: 1px dashed #ddd;
	font-size: 105%;
}
.news-detail .flex #main li a {
	list-style-type: none;
	padding: 10px 0;
	line-height: 2;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	color: #595758;
	margin-bottom: 30px;
}
.news-detail .flex #main li a .up_ymd {
	font-size: 0.8rem;
}
.news-detail .flex #main li a .up_ymd::before {
	font-family: "Font Awesome 6 Free";
	content: '\f017';
	font-weight: 900;
	padding-right: 0.5em;
	color: #1f6950;
}
@media (max-width: 1095px) {
	.news-detail .flex #main li a .title {
		font-size: 0.8rem;
	}
	.news-detail .flex #main li a .up_ymd {
		line-height: 1.8;
		margin-bottom: 0;
		font-size: 0.7rem;
	}
}
@media (max-width: 550px) {
	.news-detail .flex #main li a .title {
		font-size: 0.9rem;
	}
	.news-detail .flex #main li a .up_ymd {
		font-size: 0.75rem;
	}
}
/*pages*/
.news-detail .flex {
	display: flex;
	justify-content: space-between;
}
.news-detail .flex #main {
	width: calc(100% - 270px);
}
.news-detail .flex #side {
	width: 220px;
}
.news-detail .pages {
	display: flex;
	justify-content: space-around;
	margin-top: 55px;
}
.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: clamp(0.93rem, 0.918rem + 0.0427vw, 0.95rem);
	letter-spacing: 0.05em;
	padding: 15px;
	transition: 0.4s;
	color: #595758;
}
.news-detail .pages .page_prev a {
	text-align: right;
}
.news-detail .pages a:hover {
	background-color: #f7f7f7;
}
@media (max-width: 750px) {
	.news-detail .pages a {
		font-size: 0.87rem;
	}
}
/*side*/
.news-detail .flex #side h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
	font-weight: 500;
}
.news-detail .flex #side h3::before {
	font-family: "Font Awesome 6 Free";
	content: '\f0ca';
	font-weight: 900;
	padding-right: 0.5em;
	color: #1f6950;
}
.news-detail .flex #side ul {}
.news-detail .flex #side ul li a {
	display: block;
	width: 100%;
	border: 1px solid #ddd;
	font-size: 0.88rem;
	letter-spacing: 0.05em;
	color: #595758;
	padding: 15px;
	transition: 0.4s;
	margin-bottom: 7px;
}
.news-detail .flex #side ul li a::before {
	font-family: "Font Awesome 6 Free";
	content: '\f017';
	font-weight: 900;
	padding-right: 0.5em;
	color: #595758;
}
.news-detail .flex #side ul li a:hover {
	background-color: #f7f7f7;
}
@media (max-width: 960px) {
	.news-detail .pages {
		display: block;
		margin-top: 45px;
	}
	.news-detail .pages > div {
		width: 100%;
	}
	.news-detail .pages .page_next {
		margin-bottom: 7px;
	}
}
@media (max-width: 870px) {
	.news-detail .flex {
		display: block;
	}
	.news-detail .flex #main {
		width: 100%;
		margin-bottom: 40px;
	}
	.news-detail .flex #side {
		width: 100%;
	}
}