/* CSS Document */


div.imgArea{
	float:left;
	width:45%;
	text-align:center;
}

div.txtArea{
	float:right;
	width:53%;
}



/* タブレット用（横幅999px以下）
------------------------------------------------------------*/
@media only screen and (max-width:999px){
div.txtArea{
	width:55%;
}

}


@media only screen and (max-width:800px){
div.txtArea{
	width:47%;
}
}

@media only screen and (max-width:600px){
div.imgArea{
	float:none;
	width:100%;
	text-align:center;
}

div.txtArea{
	float:none;
	width:100%;
}

}