@charset "UTF-8";

/* 固定ページテンプレートで使用するcss(固定ページの汎用テンプレートから流用) */
.fixed-page-header {
	height: 75vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background-color: #f4f0eb;
} 
	
.fixed-page-header-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	z-index: 1;
}
	
.fixed-page-header-title {
	position: relative;
	z-index: 2;
	color: white;
	font-family: "ads-kodama";
	font-size: 8rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	margin: 0;
}

.fixed-header-wave {
	height: 24px;
	margin-top: -24px;
	position: relative;z-index: 1;
}

@media(max-width: 768px) {
	.fixed-page-header-title {
		font-size: 4rem;
	}
}

.news-archive-container {
	margin: 5em 0;
	min-height: 50vh;
	text-align: center;
}

.news-archive-title {
	position: relative;
    z-index: 2;
    font-family: "ads-kodama";
    margin: 0;
    color: #749562;
    font-size: 4rem;
}

.news-archive-subtitle {
	font-size: 2rem;
	color: #2f4e3d;
}

.news-archive-content {
	display: flex;
	width: 90%;
	margin: 0 auto;
}

.news-list-container {
	width: 80%;
}

.news-archive-sidebar {
	width: 17.5%;
    margin-left: 3em;
	text-align: left;
}

.news-large-text {
	font-size: 2.0em;
	color: #2f4e3d;
}

.news-categorylist-sp,
.news-monthly-archive-sp{
	display: none;
}

.news-categorylist li,
.news-monthly-archive li {
	margin: 0.5em 0;
	list-style: none;
}

@media(max-width: 768px) {
	.news-archive-content {
		flex-direction: column-reverse;
		width: 100%;
		margin: 0;
	}
	
	.news-list-container,
	.news-archive-sidebar {
		width: 100%;
		margin: 0;
	}
	
	.news-archive-sidebar {
		margin-bottom: 1em;
		display: flex;
	}
	
	.news-categorylist,
	.news-monthly-archive{
		display: none;
	}
	
	.news-categorylist-container,
	.news-monthly-archive-container {
		margin-left: 1em;
	}
	
	.news-categorylist-sp,
	.news-monthly-archive-sp{
		display: block;
	}
}