@charset "UTF-8";
/* CSS Document */
/*===index.php(メイン)用==============================*/
#newsWrap ul#newsList {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#newsWrap ul#newsList li {
	width: 48%;
	margin: 0 1% 30px;
}
#newsWrap ul#newsList a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #333;
}
#newsWrap ul#newsList a:hover {
	color: #2a9334;
}
/*サムネイル*/
#newsWrap ul#newsList a .img_area {
	width: 40%;
}
.thumbNailWrap {
	display: block;
	width: 100%;
	position: relative;
	overflow: hidden;
	min-height: 0%;
}
.thumbNailWrap::before {
	content: '';
	display: block;
	padding-top: 70%;
}
.thumbNailWrap img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.8s;
}
#newsWrap ul#newsList a:hover .thumbNailWrap img {
	transform: scale(1.07);
}
/*text*/
#newsWrap ul#newsList li .textarea {
	width: 54%;
	line-height: 1.6;
}
#newsWrap ul#newsList li .up_ymd {
	display: block;
	font-size: 14px;
	letter-spacing: 0.05em;
	margin-bottom: 5px;
}
#newsWrap ul#newsList li .title {
	display: block;
	font-size: 1.1rem;
	margin-bottom: 7px;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
}
#newsWrap ul#newsList li .blog-txt {
	font-size: 0.8rem;
}
@media (max-width:950px) {
	#newsWrap ul#newsList li {
		width: 100%;
		margin: 0 0 30px;
	}
	#newsWrap ul#newsList li:last-of-type {
		margin-bottom: 0 !important;
	}
}
@media (max-width:550px) {
	#newsWrap ul#newsList li {
		margin-bottom: 20px;
	}
	#newsWrap ul#newsList li .title {
		font-size: 93%;
	}
	#newsWrap ul#newsList li .up_ymd {
		font-size: 12px;
	}
	#newsWrap ul#newsList li .blog-txt {
		font-size: 0.7rem;
	}
}
/*===news-detail.php用==============================*/
.news-detail img {
	max-width: 100%;
	height: auto;
}
.news-detail .flex {
	display: flex;
	justify-content: space-between;
}
.news-detail .flex #main {
	width: calc(100% - 270px);
}
.news-detail .flex #side {
	width: 220px;
}
/*main*/
.topicsList #newsWrap ul#newsList li .title {
	font-size: 0.95rem;
}
.news-detail .flex #main #up_ymd {
	font-size: 0.98rem;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
}
.news-detail .flex #main #up_ymd::before {
	font-family: "Font Awesome 6 Free";
	content: '\f017';
	font-weight: 900;
	padding-right: 0.5em;
	color: #333;
}
.news-detail .pages {
	display: flex;
	justify-content: space-around;
	margin-top: 55px;
}
.news-detail .pages > div {
	width: 45%;
}
.news-detail .pages a {
	display: block;
	width: 100%;
	border: 1px solid #e3e3e3;
	font-size: clamp(0.93rem, 0.918rem + 0.0427vw, 0.95rem);
	letter-spacing: 0.05em;
	padding: 15px;
	transition: 0.4s;
	color: #333;
}
.topicsList #newsWrap ul#newsList li .title {
	font-size: 0.95rem;
}
@media (max-width: 1070px) {
	.topicsList #newsWrap ul#newsList li {
		width: 100%;
		margin: 0 0 30px;
	}
}
@media (max-width: 305px) {
	.news-detail .pages a {
		font-size: 0.8rem;
	}
}
.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.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: #74bbf2;
}
.news-detail .flex #side ul {}
.news-detail .flex #side ul li a {
	display: block;
	width: 100%;
	border: 1px solid #e3e3e3;
	font-size: 0.88rem;
	letter-spacing: 0.05em;
	color: #333;
	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: #333;
}
.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% !important;
	}
	.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%;
	}
}