@charset "utf-8";
/**
 * style.css
 */

/* index
--------------------------------------------------*/
/* layout */

@media only screen and (max-width:768px) {}


/* mainBg
--------------------------------------------------*/
#mainBg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../imgs/main_bg.jpg) no-repeat center center;
	background-size: cover;
	z-index: 1;
}
@media only screen and (max-width:768px) {
	#mainBg {
		top: 48px;
		height: 240px;
	}
}

/* onBg
--------------------------------------------------*/
#onBg {
	position: relative;
	z-index: 2;
}

/* mainVisual
--------------------------------------------------*/
#mainVisual {
	display: table;
	width: 100%;
	height: 565px;
}
#mainVisual span {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
@media only screen and (max-width:768px) {
	#mainVisual {
		height: 180px;
	}
	#mainVisual span img {
		max-width: 80%;
	}
}


/* section
--------------------------------------------------*/
.section {
	background-color: #fff;
}
.sttl {
	margin-bottom: 50px;
	text-align: center;
}
@media only screen and (max-width:768px) {
	.sttl {
		margin-bottom: 20px;
	}
	.sttl img {
		max-width: 80%;
	}
}



/* section01
--------------------------------------------------*/
#section01 {
	padding-top: 50px;
}
#section01 p {
	margin-top: 25px;
}

@media only screen and (max-width:768px) {
	#section01 {
		padding-top: 30px;
	}
	#section01 p {
		margin-top: 10px;
	}
}


/* section02
--------------------------------------------------*/
#section02 {
	margin-bottom: 300px;
	padding: 50px 0 80px;
}
#section02 dl {
	padding-left: 30px;
}
#section02 dl + dl {
	margin-top: 27px;
}
#section02 dt {
	position: relative;
	font-size: 22px;
	font-weight: bold;
}
#section02 dt:before {
	position: absolute;
	top: 12px;
	left: -27px;
	display: block;
	content: '';
	width: 17px;
	height: 7px;
	background-color: #587026;
}
@media only screen and (max-width:768px) {
	#section02 {
		margin-bottom: 80px;
		padding: 20px 0 30px;
	}
	#section02 .sttl img {
		max-width: 80px;
	}
	#section02 dl {
		padding-left: 15px;
	}
	#section02 dl + dl {
		margin-top: 15px;
	}
	#section02 dt {
		font-size: 12px;
	}
	#section02 dt:before {
		top: 7px;
		left: -15px;
		width: 10px;
		height: 3px;
	}
}



/* section03
--------------------------------------------------*/
#section03 {
	margin-bottom: 300px;
	padding: 110px 0 160px;
}
#section03 .sttl {
	margin-bottom: 25px;
}
#section03 .lead {
	margin-bottom: 25px;
	text-align: center;
	font-size: 22px;
}
#section03 .btn01 {
	margin-top: 70px;
}
@media only screen and (max-width:768px) {
	#section03 {
		margin-bottom: 80px;
		padding: 40px 0;
	}
	#section03 .sttl {
		margin-bottom: 20px;
	}
	#section03 .sttl img {
		max-width: 100px;
	}
	#section03 .lead {
		margin-bottom: 25px;
		font-size: 12px;
	}
	#section03 .btn01 {
		margin-top: 30px;
	}
}

































































