@charset "UTF-8";

.main_container {
	position: relative;
}
.main_container::before {
	display: block;
	position: absolute;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
	width: 1000%;
	height: 1000000px;
	background-repeat: repeat;
	background-position: center top;
	content: "";
}

.common_list-contents {
	display: flex;
	max-width: 850px;
	margin: auto;
	margin-top: 40px;
	flex-direction: column;
}
.common_list-img {
	width: 100%;
}

.common_list-img img {
	max-width: 100%;
	width: 100%;
}

.news_status {
	display: flex;
	margin-bottom: 20px;
	font-size: 14px;
	column-gap: 20px;
	flex-wrap: wrap;
	align-items: center;
}

.news_category-text {
	display: inline-block;
	min-width: 95px;
	padding: 1px 15px;
	border: 1px solid #707070;
	border-radius: 12.5px;
	background-color: #ffffff;
	color: #2c3538;
	font-weight: bold;
}

.article_container h4 {
	margin-bottom: 10px;
	font-size: clamp(1.25rem, -2.118rem + 7.02vw, 2.5rem);
}

.news_textarea {
	font-size: clamp(0.875rem, 0.707rem + 0.35vw, 0.938rem);
}
.news_textarea > * {
	margin-bottom: 10px; /* 下に余白をつける */
	line-height: 2;
}

.news_textarea > *:nth-last-of-type(1) {
	margin-bottom: 0; /* 最後の要素の余白をなくす */
}

.link_wrap {
	margin-top: 80px;
	text-align: center;
}
.single-link {
	display: inline-block;
	max-width: 75%;
	min-width: 280px;
	width: 340px;
	padding: 12px 15px;
	border: 2px solid #25425c;
	background-color: #25425c;
	color: #ffffff;
	font-weight: 700;
	font-size: 19px;
	text-align: center;
	letter-spacing: 0.11em;
	transition: all 0.3s;
}

.single-link:hover {
	background-color: #ffffff;
	color: #25425c;
}

@media screen and (min-width: 768px) {
	.main_container {
		padding-top: calc(80px + 50px);
		padding-bottom: 100px;
	}
	.main_container::before {
		top: 80px;
		background-image: url(../images/snews_bg-pc.png);
		background-size: 1920px 1715px;
		opacity: 0.4;
	}
	.common_list-contents {
		width: 95%;

		row-gap: 25px;
	}
	.article_container {
		padding: 0 5px;
	}
	.link_wrap {
		margin-top: 80px;
	}
}

@media screen and (max-width: 767px) {
	.main_container {
		padding-top: calc(60px + 15px);
		padding-bottom: 110px;
	}
	.main_container::before {
		top: 60px;
		background-image: url(../images/snews_bg-mb.png);
		background-size: 375px 1582px;
		opacity: 0.5;
	}
	.common_list-contents {
		width: 100%;
		padding: 0 30px;

		row-gap: 15px;
	}
	.link_wrap {
		margin-top: 70px;
	}
}



