/*
* ***************************************************************
general.css

01: utility
02: text style
03: parts style
04: table style
05: button area
06: img style

* ***************************************************************
*/

* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}


/* ===============================================================
*** 02: text style *** 
=============================================================== */

.f_red {color: #F01333;}
.f_blue {color: #5FCDF2;}


/* ===============================================================
*** 03: parts style *** 
=============================================================== */



/* 2等分 */
.divide_two:after {
	content: "";
	display: block;
	clear: both;
}

.divide_two > li {
	width: 48.93%;
}

.divide_two > li:nth-child(odd) {
	float: left;
	clear: both;
}

.divide_two > li:nth-child(even) {
	float: right;
}

.divide_two > li img {
	max-width: 100%;
}

/* 3等分 */
.divide_three:after {
	content: "";
	display: block;
	clear: both;
}

.divide_three li {
	float: left;
	width: 31.91%;
}

.divide_three li:nth-child(3n-1) {
	margin: 0 2.12%;
}

.divide_three > li img {
	max-width: 100%;
}