@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;
}

ul#newsList li a {
	display: block;
	width: 100%;
}

/*サムネイル*/
ul#newsList li a .thumbNailWrap {
	display: block;
	width: 100%;
	position: relative;
	overflow: hidden;
	min-height: 0%;
	margin-bottom: 15px;
	border-radius: 20px;
	overflow: hidden;
	z-index: 1;
}

ul#newsList li a .thumbNailWrap::before {
	content: '';
	display: block;
	padding-top: 57%;
}

ul#newsList li a .thumbNailWrap img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.4s ease;
}

ul#newsList li a:hover .thumbNailWrap img {
	transform: scale(1.04);
}

ul#newsList li a .up_ymd{
	display: block;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	font-family: 'Fredericka the Great', cursive;
	font-weight: 400;
	margin-bottom: 8px;
	color: #EDB9BD;
}
ul#newsList li a .title {
	display: block;
	margin-bottom: 8px;
	letter-spacing: 0.1em;
	line-height: 1.7;
	font-size: 1.1rem;
}
ul#newsList li a .comment{
	display: block;
	line-height: 1.7;
	font-size: 0.8rem;
}


@media (max-width: 960px){
	ul#newsList{
		justify-content: space-between;
		margin-bottom: -30px;
	}
	ul#newsList li {
		width: 49%;
		margin: 0 0 30px;
	}
}
@media (max-width: 450px){
	ul#newsList li a .thumbNailWrap {
		margin-bottom: 10px;
	}
	ul#newsList li a .up_ymd{
		margin-bottom: 5px;
	}
	ul#newsList li a .title {
		margin-bottom: 5px;
		font-size: 1rem;
	}
}



/*===news-detail.php用==============================*/
#news-detail #up_ymd{
	font-size: 14px;
	letter-spacing: 0.1em;
	text-align: right;
	margin-bottom: 30px;
	margin-right: 50px;
	
}
#news-detail #up_ymd::before{
	font-family: "Font Awesome 6 Free";
	content: '\f017';
	font-weight: bold;
	padding-right: 0.5em;
}
#news-detail #detail{
	padding: 20px;
}
@media (max-width: 450px){
	#news-detail #detail{
		padding: 20px 10px;
		font-size: .8rem;
	}
}
#news-detail .detailUpfile{
	margin: 5px 0 35px;
	text-align: center;
}
#news-detail .detailUpfile img{
	max-width: 100%;
	height: auto;
	margin-top: 30px;
}
#news-detail .backORcloseBtn a{
	margin-top: 60px;
}
