/* --------------------
	news
---------------------*/
.s-news-wrapper ~ footer .l-mainfooter__copyright {
	display: none;
}
.s-news-wrapper ~ footer .l-mainfooter__util {
	margin-top: 32px;
}
.s-news-wrapper .c-news {
	display: none;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}
.s-news-wrapper .c-news.active {
	display: block;
}
.s-news-wrapper .c-news.intersection {
	opacity: 1;
	pointer-events: all;
}

.s-news-filter {
	border: 2px solid #4cbe06;
	border-radius: 8px;
	background-color: #fff;
	position: relative;
}
.s-news-filter__btn {
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 50px;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	color: #000;
}
.s-news-filter__btn > span {
	display: block;
	padding: 8px 60px;
	font-size: 1.5rem;
	line-height: 1.4;
	color: inherit;
}
.s-news-filter__btn > [class^=icon-] {
	width: 25px;
	height: 25px;
	position: absolute;
	top: 50%;
	left: 16px;
	font-size: 2.5rem;
	line-height: 1;
	color: #4cbe06;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.s-news-filter__btn > [class^=icon-]:last-of-type {
	left: auto;
	right: 16px;
}
.s-news-filter--shopsearch .s-news-filter__btn {
	min-height: 65px;
}
.s-news-filter__list {
	width: calc(100% + 4px);
	max-height: 240px;
	border: 2px solid #4cbe06;
	border-top-width: 1px;
	border-radius: 0 0 8px 8px;
	overflow: auto;
	position: absolute;
	top: 46px;
	left: -2px;
	z-index: 2;
	background-color: #fff;
	height: 0;
	pointer-events: none;
	opacity: 0;
	transition: height 0.2s ease-out, opacity 0.2s;
}
.s-news-filter__list > li {
	border-bottom: 1px solid #4cbe06;
}
.s-news-filter__list > li:last-child {
	border-bottom: none;
}
.s-news-filter__list > li > a {
	display: block;
	padding: 12px 20px;
	font-size: 1.5rem;
	line-height: 1.2;
}
.s-news-filter.active .s-news-filter__list {
	height: 240px;
	height: auto;
	pointer-events: all;
	opacity: 1;
}
.s-news-filter + .s-news-filter {
	margin-top: 24px;
}
@media (min-width: 768px) {
	.s-news-filter {
		margin: 0 auto;
		width: 356px;
	}
	.s-news-filter__btn {
		transition: color 0.2s;
	}
	.s-news-filter__btn span {
		padding: 20px 60px;
	}
	.s-news-filter__btn:hover {
		color: #049b32;
	}
	.s-news-filter__list {
		top: 56px;
	}
	.s-news-filter__list > li > a {
		transition: color 0.2s linear;
	}
	.s-news-filter__list > li > a:hover {
		color: #049b32;
	}
	.s-news-filter--shopsearch {
		grid-row-start: 1;
		grid-row-end: 3;
	}
	.s-news-filter + .s-news-filter {
		margin-top: 0;
	}
}

.s-news-detail__head {
	padding-bottom: 15px;
	border-bottom: 2px solid #4cbe06;
}
.s-news-detail__title {
	font-size: 15px;
	font-weight: bold;
	line-height: 1.5;
}
.s-news-detail__caption {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 8px;
	font-size: 12px;
}
.s-news-detail__caption__share a {
	color: #049b32;
}
.s-news-detail__caption__share p {
	line-height: 18px;
}
.s-news-detail__caption__share img {
	margin-right: 6px;
	width: 18px;
	height: auto;
}
.s-news-detail__body {
	margin-top: 15px;
}
.s-news-detail__image {
	text-align: center;
}
.s-news-detail__image:not(:first-child) {
	margin-top: 20px;
}
.s-news-detail__image img {
	width: 100%;
}
.s-news-detail__freetext:not(:first-child) {
	margin-top: 20px;
}
.s-news-detail__freetext p + p {
	margin-top: 1em;
}
.s-news-detail__freetext b, .s-news-detail__freetext strong {
	font-weight: bold;
}
@media (min-width: 768px) {
	.s-news-detail__head {
		padding-bottom: 15px;
		border-bottom: 3px solid #4cbe06;
	}
	.s-news-detail__title {
		font-size: 24px;
	}
	.s-news-detail__caption {
		font-size: 16px;
	}
	.s-news-detail__caption__share p {
		line-height: 22px;
	}
	.s-news-detail__caption__share img {
		margin-right: 10px;
		width: 24px;
	}
	.s-news-detail__body {
		margin-top: 30px;
	}
	.s-news-detail__image:not(:first-child) {
		margin-top: 40px;
	}
	.s-news-detail__image img {
		width: auto;
		max-width: 100%;
	}
	.s-news-detail__freetext:not(:first-child) {
		margin-top: 40px;
	}
}