@charset "UTF-8";
/* CSS Document */
/*===埋め込み部分用==============================*/
.news{
	width: 100%;
	margin: 0 ;
	padding: 50px 0;
}
.news .inner{
	width: calc(100% - 30px);
	max-width: 1300px;
	margin: auto;
	padding: 50px 0;
}

#newsWrap02{
	max-width: 1300px;
	margin: auto;
	padding: 0 15px;
}

#newsWrap02 ul#newsList{
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
	width: 100%;
}
#newsWrap02 ul#newsList a{
	display: inline-block;
	width: calc(100% / 4 - 10px);
	margin: 5px;
	color: #736357;
	background:#fff;
	font-size:90%;
	padding: 15px;
	
}
#newsWrap02 ul#newsList li{
	list-style-type: none;
}

/*サムネイル*/
#newsWrap02 .thumbNailWrap{
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	min-height: 1%;
}
#newsWrap02 .thumbNailWrap img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition-duration: 0.5s;
}

#newsWrap02 ul#newsList a:hover .thumbNailWrap img{
	transform: scale(1.2);
	transition-duration: 0.5s;
}


#newsWrap02 ul#newsList li .title{
	font-size: 1rem;
	margin-top: 0.5em;
	display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	font-weight: 500;
	color: #4473c5;
	width: 90%;
	max-width: 20em;
}
@media (max-width: 960px){
	#newsWrap02 ul#newsList{
		max-width: 700px;
		margin: auto;
	}
	#newsWrap02 ul#newsList a{
		width: calc(100% / 2 - 10px);
		max-width: 350px;
	}
}

@media (max-width: 750px){
	#newsWrap02 ul#newsList{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	#newsWrap02 ul#newsList a{
		width: calc(100%  - 20px);
		max-width: 350px;
	}
}
@media (max-width: 450px){
	#newsWrap02 ul#newsList a{
		width: 90%;
	}
}
/*===詳細ページ==============================*/
.main02{
	width: 100%;
	max-width: 960px;
	margin: auto;
		
}
.main02 .stitle{
	font-size: 1.5rem;
	margin-bottom: 30px;
}
.main02 .stitle::first-letter{
	color: #4473c5;
}

.main02 #up_ymd{
	font-size: 0.8em;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
	color: #4473c5;
}
.main02 #up_ymd::before{
	font-family: "Font Awesome 6 Free";
	content: '\f017';
	font-weight: 900;
	padding-right: 0.5em;
}
.main02 .comment{
	padding: 30px 10px;
}

