.img_table{
	list-style: none;
    width: 100%;
}
.img_table > li{
    display: inline-block;
    vertical-align: top;
	width:69%;
}
.img_table > li:first-child{
	width:30%;
}
.img_table img{
	width:90%;
	border-radius: 10px;
}
.img_table li{
	margin-bottom: 1.3rem;
}
.box > div{
	text-align: center;
}
.box > div> img{
	display: block;
	margin: 0 auto;
}
h3{
	margin-top: 10px;
	font-weight: bold;
}
ol{
	padding-left: 20px;
}
ol li{
	list-style-type: decimal;
	margin-bottom: 1.3rem;
}
.caution a{
	text-decoration: underline;
	color:#5d4837;
}
.caution {
	margin-left:30px; /* beforeで左に動かした分を相殺 */ 
	font-size: 0.8rem;
}
.caution > li {
	list-style-type: decimal !important;
	position:relative;
	margin-bottom: 20px;
}
.caution > li:before {
	content:'※';
	position:absolute;
	left:-30px; /* インデントさせるため「※」だけを左に */ 
}

/*---------------750px以下のStyle---------------*/
@media screen and (max-width: 750px) {

	.box > div> img{
		display: block;
		margin: 0 auto;
		width:80%;
	}
	.img_table > li{
		display: block;
		vertical-align: top;
		width:100%;
	}
	.img_table > li:first-child{
		width:100%;
		text-align: center;
	}
	.img_table img{
		width:80%;
		margin: 0 auto;
	}
} /*------------------------750px以下ここまで*/