@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(5) > a{
	color: #07825d;
}

.section2 > div > img{
	border: solid 1px #ddd;
}

.section2 > p{
	color: #212121;
    font-size: 1.7rem;
	line-height: 1.5;
    padding-top: 10px;
    padding-bottom: 5px;
    padding-left: 5px;
}
.section2 > .btn{
	width: 400px;
}
.container {
    width: 100%;
    display: flex;
	margin-bottom: 30px;
}
.container_item img {
    /* width: 100%; */
    /* max-width: fit-content; */
	border: solid 1px #ddd;
}
.container_item_l_section2_1 {
    width: 200px;
}
.container_item_r_section2_1 {
    width: calc(100% - 200px);
    padding-left: 40px;
    padding-top: 8px;
}
.container_item_r_section2_1 >p{
	color: #212121;
    font-size: 1.7rem;
	line-height: 1.5;
    padding-top: 10px;
    padding-bottom: 5px;
    padding-left: 5px;
}
.container_item_r_section2_1 >p > span{
    font-size: 1.7rem;
}
@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;
	}
.section2 > .btn{
	width: 90%;
}

.container_col {
    flex-direction: column;
}
.container_item_l_section2_1 {
    width: 100%;
    text-align: center;
}
.container_item_r_section2_1 {
    width: 100%;
    padding: 0px;
}
.container_item_r_section2_1 >p{
	padding: 20px;
}

}