@charset "UTF-8";
/*--------------------------------------------------
カラー設定

メインカラー	グリーン　#00B49D 
薄いグリーン　			 #EAF5F3 
濃いグリーン　　　　　　#013700

--------------------------------------------------*/
/*------------------------------
トップページイメージ画像
--------------------------------*/
.main_img {
	width: 100%;
}
.main_img img {
	max-width: 100%;
	width: 100%;
	vertical-align: top;
}
/*------------------------------
新着情報
--------------------------------*/
.news_block {
	margin: 40px 0;
	padding: 10px;
	width: 100%;
}
.news_title {
	width: 100%;
	font-weight: 600;
	font-size: 22px;
	color: #013700;
	position: relative;
}
.news_title span {
	font-size: 12px;
	color: #363636;
	font-weight: 400;
}

.news_contents {
	width: 100%;
	margin: 20px 0;
	max-height: 400px;
	overflow-y: scroll;
	padding: 10px 20px;
	border-top: 1px solid #D5D5D5;
	border-bottom: 1px solid #D5D5D5;
}
.news_item {
	display: flex;
	flex-wrap: nowrap;
	padding: 20px 0;
	border-bottom: 1px solid #C2C2C2;
}
.news_item:last-child {
	border-bottom: none;
}
.news_item dt, .news_item dd {
	margin: 0;
	padding: 0;
}
.news_item dt {
	width: 80px;
	color: #013700;
	font-size: 12px;
}
.news_item dd {
	padding-left: 2em;
	text-align: justify;
}
@media screen and (max-width: 420px) {
	.news_item {
		flex-direction: column;
	}
	.news_item dd {
		padding-left: 1em;
	}
}
/*------------------------------
ポスターダウンロードブロック
--------------------------------*/
.poster_block {
	width: 100;
	padding: 0 20px;
	margin: 0;
}
.poster_block_sp {
	display: none;
	background-color: none;
	padding: 40px 30px;
	border-top: 1px solid #E2E2E2;
}
@media screen and (max-width: 795px) {
	.poster_block_sp {
		display: block;
	}
}
.poster_title {
	width: 100%;
	max-width: 340px;
	margin: 0 auto;
	height: 60px;
	text-align: center;
	line-height: 60px;
	background-color: #F28C00;
	border-radius: 10px 10px 0 0;
	color: white;
	font-weight: 600;
}
.poster_contents {
	max-width: 340px;
	margin: 0 auto;
	border-left: 2px solid #F28C00;
	border-right: 2px solid #F28C00;
	border-bottom: 2px solid #F28C00;
	border-radius: 0 0 10px 10px;
	background-color: white;
	padding: 10px;
}
.poster_contents img {
	max-width: 100%;
}