@charset "UTF-8";
/* CSS Document (新着情報CMS) */
/*===index.php(メイン)用==============================*/
ul#newsList {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -40px;
}
ul#newsList li {
	list-style-type: none;
	width: 23%;
	margin: 0 1% 40px;
	padding: 20px;
	background: #fff;
	box-shadow: rgb(0 0 0 / 2.5%) 0px 2px 8px 0px;
	border-radius: 7px;
}
ul#newsList li a {
	display: block;
	width: 100%;
	color: #595757;
}
/*サムネイル*/
ul#newsList li .thumbNailWrap {
	display: block;
	width: 100%;
	position: relative;
	overflow: hidden;
	min-height: 0%;
	margin-bottom: 10px;
	border-radius: 7px;
}
.thumbNailWrap::before {
	content: '';
	display: block;
	padding-top: 57%;
}
.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 .title {
	display: block;
	font-size: 0.9rem;
}
ul#newsList li .up_ymd {
	display: block;
	font-size: 0.8rem;
}
@media (max-width: 960px) {
	ul#newsList li .up_ymd {
		font-size: 0.6rem;
	}
	ul#newsList li .title {
		font-size: 0.8rem;
	}
	ul#newsList li {
		padding: 10px;
	}
}
@media (max-width: 750px) {
	ul#newsList li .thumbNailWrap {
		margin-bottom: 5px;
	}
	ul#newsList {
		margin-bottom: -30px;
	}
	ul#newsList li {
		width: 48%;
		margin-bottom: 15px;
	}
}
@media (max-width: 450px) {
	ul#newsList li .up_ymd {
		margin-bottom: 3px;
	}
	ul#newsList li .title {
		font-size: 0.7rem;
	}
	ul#newsList li {
		margin-bottom: 10px;
	}
}
/*一覧ページ*/
.blog-txt {
	font-size: 12px;
	color: #8f8f8f;
}
.news-detail .flex #main ul#newsList {
	display: flex;
	flex-wrap: wrap;
}
.news-detail .flex #main ul#newsList li {
	width: 31%;
	margin: 0 1% 25px;
	border: none;
	box-shadow: rgb(0 0 0 / 2.5%) 0px 2px 8px 0px;
	border-radius: 7px;
}
.news-detail .flex #main ul#newsList li a .up_ymd {
	display: block;
	font-size: 13px;
	letter-spacing: 0.05em;
	transition: 0.4s;
	margin-bottom: 5px;
	color: #595757;
}
.news-detail .flex #main ul#newsList li a .title {
	display: block;
	transition: 0.4s;
	font-size: 0.95rem;
	margin-bottom: 7px;
	color: #595757;
}
.news-detail .flex #main ul#newsList li a .textarea {
	padding: 5px;
	padding-top: 7px;
	line-height: 1.6;
	width: 100%;
	position: relative;
	z-index: 20;
	background: transparent;
}
.thumbNailWrap img {
	border-radius: 10px;
}
.news-detail .flex #main ul#newsList li a:hover {
	opacity: 0.6;
}
.listpages {
	margin-top: 65px !important;
}
@media (max-width: 1330px) {
	.news-detail .flex #main ul#newsList li {
		width: 48%;
	}
}
@media (max-width: 550px) {
	.news-detail .flex #main ul#newsList li {
		width: 100%;
	}
	.news-detail .flex #main ul#newsList li:last-child {
		margin-bottom: 0 !important;
	}
	.news-detail .flex #main ul#newsList li a .title {
		font-size: 0.85rem;
	}
	.news-detail .flex #main ul#newsList li a .up_ymd {
		font-size: 12px;
	}
}
/*===詳細ページ==============================*/
.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 .stitle span {
	color: #595757;
	font-size: clamp(1.1rem, 0.98rem + 0.4267vw, 1.3rem);
}
/*main*/
.news-detail .flex #main #up_ymd {
	font-size: 14px;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
	color: #595757;
}
.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: 40px;
}
.news-detail .pages > div {
	width: 45%;
	background: #fff;
}
.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.85rem;
	padding: 15px;
	transition: 0.4s;
	color: #595757;
}
.news-detail .pages .page_prev a {
	text-align: right;
}
.news-detail .pages a:hover {
	background: #f7f7f7;
}
/*side*/
.news-detail .flex #side h3 {
	font-size: 1.1rem;
	margin-bottom: 10px;
	font-weight: 400;
}
.news-detail .flex #side h3::before {
	font-family: "Font Awesome 5 Free";
	content: '\f0ca';
	font-weight: 900;
	padding-right: 0.5em;
	color: #83de3e;
}
.news-detail .flex #side ul {}
.news-detail .flex #side ul li a {
	display: block;
	width: 100%;
	border: 1px solid #ddd;
	font-size: 0.9rem;
	color: #595757;
	padding: 15px;
	margin-bottom: 7px;
	transition: 0.4s;
	background: #fff;
}
.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: #f7f7f7;
}
@media (max-width: 960px) {
	.news-detail .pages {
		display: block;
		margin-top: 35px;
	}
	.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%;
	}
}
/*一覧ページ*/
.listpage ul#newsList li {
	list-style-type: none;
	width: 31%;
	margin: 0 1% 20px;
	padding: 15px;
	background: #fff;
}
.listpage ul#newsList li a {
	display: block;
	width: 100%;
	color: #595757;
}
/*サムネイル*/
.listpage ul#newsList li .thumbNailWrap {
	display: block;
	width: 100%;
	position: relative;
	overflow: hidden;
	min-height: 0%;
	margin-bottom: 10px;
}
.listpage .thumbNailWrap::before {
	content: '';
	display: block;
	padding-top: 57%;
}
.listpage .thumbNailWrap img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.4s ease;
}
.listpage ul#newsList a:hover .thumbNailWrap img {
	transform: scale(1.04);
}
.listpage ul#newsList li .title {
	display: block;
	font-weight: 400;
	font-size: 0.9rem;
}
.listpage ul#newsList li .up_ymd {
	display: block;
	font-size: 0.83rem;
	color: #83de3e;
	margin-bottom: 5px;
}
@media (max-width: 1175px) {
	.listpage ul#newsList li .up_ymd {
		font-size: 0.6rem;
	}
	.listpage ul#newsList li .title {
		font-size: 0.8rem;
	}
	.listpage ul#newsList li {
		padding: 10px;
	}
	.listpage ul#newsList li {
		width: 48%;
		margin-bottom: 15px;
	}
}
@media (max-width: 750px) {
	.listpage ul#newsList li .thumbNailWrap {
		margin-bottom: 5px;
	}
	.listpage ul#newsList {
		margin-bottom: -30px;
	}
}
@media (max-width: 450px) {
	.listpage ul#newsList li {
		margin-bottom: 10px;
	}
}
/*アーカイブのスクロール指定*/
.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;
}