@charset "UTF-8";



/*  ----------------------------------------------------------

news

----------------------------------------------------------  */
.news-list {
	display: flex;
	flex-wrap: wrap;
}
.news-list a {
	display: block;
}
.news-list li {
    width: calc((100% - 3rem) / 4);
    margin-right: 1rem;
    box-shadow: 0px 3px 15px -10px #666;
    padding: 1rem;
}
.news-list li:nth-child(4n) {
    margin-right: 0;
}
.news-list li:nth-child(n + 5) {
    margin-top: 4rem;
}
.news-list figure img {
	height: 13rem;
	object-fit: cover;
}
.news-date {
	font-size: 1.2rem;
	line-height: 1;
	font-weight: bold;
	color: var(--green);
	margin: 1.5rem 0 0.4rem 0;
}
.news-list + div .more {
	margin: 6rem auto 0 auto;
}
@media screen and (max-width: 768px) {
	.news-list {
		display: block;
	}
	.news-list li {
		width: 100%;
		margin-right: 0;
	}
	.news-list li:nth-child(n + 5) {
		margin-top: 0;
	}
	.news-list li:nth-child(n + 2) {
		margin-top: 4rem;
	}	
	.news-list figure img {
		height: 20rem;
		object-fit: cover;
	}
}
/*  ----------------------------------------------------------

article

----------------------------------------------------------  */
.news-article {
	margin-bottom: 12rem;
}
.news-article h3 {
	font-size: 2.2rem;
	margin: 5rem 0 3rem 0;
	line-height: 1.6;
}
.news-article span {
	color: var(--green);
	font-size: 1.4rem;
	display: block;
	margin-bottom: 0.4rem;
}
.news-sns {
	position: fixed;
	top: 50%;
	right: 2rem;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	z-index: 999;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.news-sns ul li:not(:last-child) {
	margin-bottom: 1.5rem;
}
.news-sns img {
	width: 3.2rem;
}
.news-sns span {
	font-weight: bold;
	display: flex;
	align-items: center;
}
.news-sns span::after {
	content: "";
	width: 4rem;
	height: 3.6rem;
	background: url(../img/arrow-2.png) no-repeat center right 1.5rem;
	background-size: auto 3.6rem;
	margin: 0.4rem 0 1.5rem 0;
}
@media screen and (max-width: 768px) {
	.news-sns {
		margin-top: 3rem;
		position: relative;
		top: auto;
		right: auto;
		transform: none;
		-webkit-transform: none;
		display: flex;
		flex-direction: row;
	}
	.news-sns {
		display: flex;
		align-items: center;
		justify-content: center;
		background: #fafafa;
		padding: 2rem 0;
	}
	.news-sns ul {
		display: flex;
		align-items: center;
	}
	.news-sns ul li:not(:last-child) {
		margin-bottom: 0;
		margin-right: 1.5rem;
		margin-top: 0.3rem;
	}
	.news-sns img {
		width: 3.2rem;
	}
	.news-sns span {
		font-size: 1.6rem;
		margin-right: 2rem;
	}
	.news-sns span::after {
		display: none;
	}
}