@charset "utf-8";
/* CSS Document */
/* body{
	overflow-y: auto;
} */

.main{
	width: 100%;
	margin: 0 auto;
	/* height: 100%; */
	/*font-family: Arial, Helvetica, sans-serif;*/
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;

}
/* 印刷用 */
/* overflowを初期値(visible)にしないと1ページ分しか印刷できない */
/* footer固定用にmin-heightに数値を指定している場合、印刷時footerが変にずれるので、ここでcontents{min-height:0(初期値);}を指定 */

@media print {
    body{
        overflow-y: visible;
        overflow-x: visible;
    }
    .main{
        overflow-y: visible;
        overflow-x: visible;
	}

}

.introduction{
	width: 1000px;
	margin: 0 auto;
	margin-bottom: 30px;
	margin-top: 25px;
}
.introduction img{
	width: 300px;
	float: left;
}
nav > ul > li:nth-child(1){
	padding-right: 20px;
}
nav > ul > li:nth-child(2),
nav > ul > li:nth-child(3),
nav > ul > li:nth-child(4),
nav > ul > li:nth-child(5){
    text-align: center;
	padding: 0px 20px;
}
nav > ul > li > a{
	display: block;
	height: 50px;
    line-height: 50px;
}
nav > ul > li > a:hover{
	color: #07825d;
}

/* NOW */
.header_menu_pc > li:nth-child(2) > a{
	color: #07825d;
}
nav > ul > li:nth-child(4) > a{
	color: #07825d;
}

@media only screen and (min-device-width:320px) and (max-device-width:768px) {
	.introduction{
		width: 100%;
		margin-top: 15px;
		margin-bottom: 5px;
	}
	.introduction img{
		height: auto;
		width: 100%;
	}
	nav > ul > li:nth-child(1){
		width: 100%;
		padding-bottom: 10px;
		padding-right: 10px;
		padding-left: 10px;
		text-align: center;
	}
	nav > ul > li:nth-child(2),
	nav > ul > li:nth-child(3),
	nav > ul > li:nth-child(4),
	nav > ul > li:nth-child(5){
		width: 50%;
	}
	nav > ul > li > a{
		height: 40px;
		line-height: 40px;
	}
	nav > ul > li:nth-child(5) > a{
		line-height: 1.2;
	}

}