@charset "UTF-8";

/*-----------------------------------

	lower base

-----------------------------------*/
#body .left_box{
	padding-top: 70px;
}
header{
	top: 30px;
}
header .logo a{
	margin: 0;
}

@media screen and (max-width: 840px){
}
@media screen and (max-width: 640px){
	#body .left_box{
		padding-top: 40px;
	}
	header{
		top: 10px;
	}
}

/*-----------------------------------

	breadcrumb

-----------------------------------*/
#breadcrumb{
	background: #fff;
	padding: 15px 0;
}
#breadcrumb ul{
	justify-content: flex-start;
}
#breadcrumb ul li,
#breadcrumb ul li a{
	font-size: 14px;
}
#breadcrumb ul li a{
	padding-right: 10px;
	margin-right: 6px;
	position: relative;
	transition: 0.3s;
}
#breadcrumb ul li a:hover{
	opacity: 0.9;
	text-decoration: underline;
}
#breadcrumb ul li a::before{
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 5px;
	height: 1px;
	background: #000;
}
@media screen and (max-width: 840px){
}
@media screen and (max-width: 640px){
	#breadcrumb{
		padding: 7px 0;
	}
	#breadcrumb .contents_inner{
		overflow: hidden;
	}
	#breadcrumb ul{
		flex-wrap: nowrap;
		word-break: keep-all;
		overflow-x: auto;
		width: auto;
	}
	#breadcrumb ul li {
		white-space: nowrap;
	}
	#breadcrumb ul li,
	#breadcrumb ul li a{
		font-size: 13px;
	}
}

/*-----------------------------------

	mv_block

-----------------------------------*/
#mv_block{
	background: #00A040;
	height: 250px;
}
#mv_block .contents_inner{
	height: 100%;
}
#mv_block .mv_ttl{
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-size: 42px;
	line-height: 1.5;
	font-weight: 700;
	color: #fff;
	text-align: center;
}
#mv_block .mv_ttl span{
	display: block;
	font-size: 23px;
	line-height: 1;
	padding-bottom: 5px;
	color: #fff;
}
@media screen and (max-width: 840px){
	#mv_block .mv_ttl{
		font-size: 32px;
	}
}
@media screen and (max-width: 640px){
	#mv_block{
		height: 150px;
	}
	#mv_block .mv_ttl{
		font-size: 25px;
	}
	#mv_block .mv_ttl span{
		font-size: 16px;
	}
}

/*-----------------------------------

	search_block

-----------------------------------*/
#search_block{
	background: rgba(0,160,64,0.10);
	border-radius: 80px 80px 0 0;
	padding: 64px 0;
}
#search_block .search_list{
	padding: 52px 0 0;
}

@media screen and (max-width: 840px){
	#search_block{
		padding: 30px 0;
	}
	#search_block .search_list{
		padding: 20px 0 0;
	}
}
@media screen and (max-width: 640px){
	#search_block{
		border-radius: 40px 40px 0 0;
	}
}

/*-----------------------------------

	contents

-----------------------------------*/
/****bg_w****/
.bg_w{
	padding: 68px 64px 60px;
	border-radius: 30px;
	background: #fff;
}
.bg_gr{
	padding: 30px 45px 40px;
	border-radius: 40px;
	background: #00A040;
}
.bg_gray{
	padding: 29px;
	border-radius: 40px;
	background: #EAEAEA;
}

/****title****/

.h2_title{
	text-align: left;
	border-bottom: 1.5px solid #A8A8A8;
	display: block;
	margin-bottom: 30px;
	padding-bottom: 10px;
	line-height: 1.3;
	font-size: 30px;
	font-weight: 700;
}

.intro_box{
	margin-bottom: 80px;
}
.intro_box p{
	font-size: 18px;
	text-align: center;
}

@media screen and (max-width: 840px) {
	.bg_w,
	.bg_gr,
	.bg_gray{
		padding: 30px;
		border-radius: 20px;
	}
}

@media screen and (max-width: 640px) {
	.h2_title{
		margin-bottom: 20px;
		font-size: 20px;
	}
	
	.intro_box{
		margin-bottom: 40px;
	}
	.intro_box p{
		font-size: 14px;
	}
}


