@charset "utf-8";
/* CSS Document */

/* -------------------------------------
	mv
------------------------------------- */
.mv-img {
	background: url(../img/mv.jpg) center /cover no-repeat;
}

/* -------------------------------------
	contents
------------------------------------- */
.news-layout {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.news-contents {
	width: calc(100% - (260px + 60px));
}
.news-contents .ttl-m:first-of-type {
	margin-top: 0;
	margin-bottom: 30px;
}
.news-aside {
	width: 260px;
}
.news-aside > div {
	padding: 14px 20px 24px 20px;
	background: #f6f6f6;
	box-shadow: 0 10px 20px rgba(0,0,0,.1);
}
.news-aside h4 {
	margin-bottom: 8px;
	padding-left: 4px;
	color: #555;
	font-size: 1.25em;
	font-family: "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
	/*text-align: center;*/
}
.month-list a {
	display: block;
	margin-top: 5px;
	padding: 8px 14px;;
	background: #fff;
	color: #555;
	font-size: .875em;
	position: relative;
	transition: color 0.3s ease, background 0.3s ease;
}
.month-list a span::before {
	content: '';
	display: block;
	width: 16px;
	height: 1px;
	background: #b5b5b5;
	position: absolute;
	top: 20px;
	right: 16px;
	transition: right 0.3s ease;
}
.month-list a span::after {
	content: '';
	display: block;
	width: 6px;
	height: 1px;
	background: #b5b5b5;
	transform: rotate(45deg);
	position: absolute;
	top: 18px;
	right: 16px;
	transition: right 0.3s ease;
}
.month-list a:hover,
.month-list a.active {
	background: #364841;
	color: #fff;
	transition: color 0.3s ease, background 0.3s ease;
}
.month-list a:hover span::before,
.month-list a:hover span::after {
	right: 12px;
	transition: right 0.3s ease;
}

/* list */
.news-list {
	padding-left: 0;
	border-top: 1px solid #ddd;
	list-style: none;
}
.news-list > li {
	margin-top: 0;
}
.news-list a {
	display: block;
	border-bottom: 1px solid #ddd;
	padding: 18px 52px 18px 12px;
	background: #fff;
	color: #333;
	transition: background 0.3s ease, color 0.3s ease;
	position: relative;
}
.news-list a::before {
	content: '';
	display: block;
	width: 20px;
	height: 1px;
	background: #aaa;
	position: absolute;
	top: 50%;
	right: 14px;
	transition: right 0.3s ease;
}
.news-list a::after {
	content: '';
	display: block;
	width: 8px;
	height: 1px;
	background: #aaa;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 14px;
	margin-top: -3px;
	transition: right 0.3s ease;
}
.news-list a:hover {
	color: #2F923B;
	background: #f6f6f6;
	transition: background 0.3s ease, color 0.3s ease;
}
.news-list a:hover .news-list-date {
	/*color: #30913c;*/
	transition: color 0.3s ease;
}
.news-list a:hover::before,
.news-list a:hover::after {
	right: 10px;
	transition: right 0.3s ease;
}
.news-list dl {
	display: flex;
	align-items: center;
}
.news-list-date {
	font-size: .75em;
	font-weight: bold;
	color: #aaa;
	transition: color 0.3s ease;
}
.news-list-ttl {
	margin-left: 20px;
}

/* single */
.news-contents .ttl-m > h2 {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.ttl-m .ttl-m-date {
	margin: 0 0 4px 20px;
	font-size: 0.6em;
	color: #888;
}
.news-contents > article p a {
	color: #2F923B;
	text-decoration: underline;
	transition: 0.3s ease;
}
.news-contents > article p a:hover {
	color: #79c483;
	text-decoration: none;
	transition: 0.3s ease;
}

@media only screen and (max-width: 1000px) {
	/* -------------------------------------
		contents
	------------------------------------- */
	.news-contents {
		width: calc(100% - (200px + 40px));
	}
	.news-aside {
		width: 200px;
	}
	.news-aside > div {
		padding: 16px 20px 20px 20px;
	}
	
	/* list */
	
	/* single */
}

@media only screen and (max-width: 600px) {
	/* -------------------------------------
		contents
	------------------------------------- */
	.contents {
		margin-top: 45px;
	}
	.news-contents,
	.news-aside {
		width: 100%;
	}
	.news-aside {
		margin-top: 40px;
	}
	.month-list a {
		padding: 12px 14px;
	}
	.month-list a span::before {
		top: 22px;
	}
	.month-list a span::after {
		top: 20px;
	}
	
	/* list */
	.news-list a {
		padding: 12px 42px 14px 6px;
	}
	.news-list a::before {
		width: 14px;
	}
	.news-list a::after {
		width: 5px;
		margin-top: -2px;
	}
	.news-list dl {
		display: block;
	}
	.news-list-ttl {
		margin: 4px 0 0 0;
		line-height: 1.4;
	}
	
	/* single */
	.news-contents .ttl-m > h2 {
		display: block;
	}
	.ttl-m .ttl-m-date {
		display: block;
		margin: 4px 0 0 0;
	}
	
}