@charset "UTF-8";
/* CSS Document */
/*BLOG一覧ページ*/
.blog-txt {
	font-size: 12px;
	color: #fff;
}
.news-detail .flex #main ul#newsList {
	display: flex;
	flex-wrap: wrap;
}
.news-detail .flex #main ul#newsList li {
	width: 31.5%;
	margin: 0 0.7% 25px;
	border: none;
	display: flex;
}
.news-detail .flex #main ul#newsList li a {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 14px;
	border: 1px solid rgba(209, 174, 107, 0.3);
	position: relative;
}
.news-detail .flex #main ul#newsList li a::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	background: #1c1c1c;
	z-index: -100;
	opacity: 0.45;
}
.news-detail .flex #main ul#newsList li a::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-repeat: no-repeat !important;
	background-position: top right, bottom left !important;
	background-size: 18% !important;
	z-index: 1;
	opacity: 0.4;
	pointer-events: none;
	background: url(../img/_illust/bg01a.svg), url(../img/_illust/bg01b.svg);
}
.news-detail .flex #main ul#newsList li a .up_ymd {
	display: block;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	transition: 0.4s;
	margin: 7px 0 5px;
	color: #00ff00;
	font-family: "Inter", sans-serif;
	font-weight: 500;
}
.news-detail .flex #main ul#newsList li a .title {
	display: block;
	transition: 0.4s;
	font-size: 0.95rem;
	margin-bottom: 7px;
	color: #fff;
}
.news-detail .flex #main ul#newsList li a .textarea {
	line-height: 1.6;
	width: 100%;
	position: relative;
	z-index: 20;
	margin-top: auto;
	margin-bottom: auto;
}
.thumbNailWrap {
	position: relative;
	overflow: hidden;
}
.thumbNailWrap::before {
	content: '';
	display: block;
	padding-top: 68%;
}
.thumbNailWrap img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.8s ease;
}
.news-detail .flex #main ul#newsList li a:hover img {
	transform: scale(1.07);
}
@media (max-width: 1100px) {
	.news-detail .flex #main ul#newsList li {
		width: 47.5%;
	}
	.news-detail .flex #main ul#newsList li {
		margin: 0 1.2% 15px;
	}
}
@media (max-width: 550px) {
	.news-detail .flex #main ul#newsList li {
		width: 100%;
		margin: 0 0 13px;
	}
	.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;
	}
}