@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){
	/* width: calc((100% - 300px)/4); */
    text-align: center;
	padding: 0px 20px;
}
nav > ul > li > a{
	display: block;
	height: 50px;
    line-height: 50px;
}
nav > ul > li > a:hover{
	color: #fa4619;
}

/* NOW */
.header_menu_pc > li:nth-child(3) > a{
	color: #fa4619;
}
nav > ul > li:nth-child(5) > a{
	color: #fa4619;
}

.section2 .sticker,
.section3 .sticker,
.section4 .sticker,
.section5 .sticker
{
	background-color: #fff;
	margin: 0px;
    padding: 0px;
}
.section2 .sticker img,
.section3 .sticker img,
.section4 .sticker img,
.section5 .sticker img
{
	width: 100px;
}

.section2 table{
	margin-top: 20px;
}
.section2 table > tbody > tr:first-child > th:first-child{
	width: 180px;
}
.section3 > div.img_center_wrap > img{
	width: 800px;
}
.section3 .img_center_wrap{
	padding-bottom: 20px;
	border-bottom: solid 1px #ddd;
}

@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;
	}
	.section1{
		margin-bottom: 10px;
	}
	.section3 > div.img_center_wrap > img,
	.section4 img{
		width: 100%;
	}

}