/*===========================================
	clearfix 
=============================================*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix { display: inline-block}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix { display:block;}
/* End hide from IE-mac */


/*===========================================
	icon
=============================================*/
p.txtlink{
	padding: 0 0 0 11px;
	background:url(../images/txtlink.gif) no-repeat left 0.3em;
}



/*===========================================
	clear_both
=============================================*/
.clear_both {
	clear: both;
}


/*===========================================
	Space
=============================================*/
.mt_00 {
	margin: 0px;
}
.mt_02{
	margin: 2px 0px 0px 0px;
}
.mt_03{
	margin: 3px 0px 0px 0px;
}
.mt_05{
	margin: 5px 0px 0px 0px;
}
.mt_10 {
	margin: 10px 0px 0px 0px;
}
.mt_15 {
	margin: 15px 0px 0px 0px;
}
.mt_20 {
	margin: 20px 0px 0px 0px;
}
.mt_25 {
	margin: 25px 0px 0px 0px;
}
.mt_30 {
	margin: 30px 0px 0px 0px;
}
.mt_35 {
	margin: 35px 0px 0px 0px;
}
.mt_40 {
	margin: 40px 0px 0px 0px;
}
.mt_45 {
	margin: 45px 0px 0px 0px;
}
.mt_50 {
	margin: 50px 0px 0px 0px;
}


.ml_05 {
	margin-left: 5px;
}
.ml_10 {
	margin-left: 10px;
}
.ml_15 {
	margin-left: 15px;
}
.ml_20 {
	margin-left: 20px;
}
.ml_25 {
	margin-left: 25px;
}
.ml_30 {
	margin-left: 30px;
}
.ml_35 {
	margin-left: 35px;
}
.ml_40 {
	margin-left: 40px;
}
.ml_45 {
	margin-left: 45px;
}
.ml_50 {
	margin-left: 50px;
}


/*===========================================
	color
=============================================*/
.red {
	color: #C61B38;
	font-weight:bold;
}


/*===========================================
	pagetopBox
=============================================*/
.pagetopBox{
	margin:10px 0px 0px 0px;
	padding:0px;
	text-align:right;
	clear:both;
}

/*===========================================
	textAlign
=============================================*/
.txtLeft{
	text-align:left;
}
.txtCenter{
	text-align:center;
}
.txtRight{
	text-align:right;
}


/*===========================================
	fontSize
=============================================*/
.font10 {
	font-size: 10px;
}
.font11 {
	font-size: 11px;
}
.font12 {
	font-size: 12px;
}
.font16 {
	font-size: 16px;
}




/*===========================================
	フレックスボックス
=============================================*/
/* flexBoxKinto */
.flexBoxKinto {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-js-display: flex;		// IE8・IE9の対応

	-webkit-flex-flow: wrap;
	-ms-flex-flow: wrap;
	flex-flow: wrap;

	-webkit-justify-content:space-between;
	-moz-justify-content:space-between;
	justify-content:space-between;

}


/* flexBoxKinto */
.flexBoxGroup {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-js-display: flex;		// IE8・IE9の対応

	-webkit-flex-flow: wrap;
	-ms-flex-flow: wrap;
	flex-flow: wrap;

	-webkit-justify-content:space-between;
	-moz-justify-content:space-between;
	justify-content:space-between;

}


/* flexBoxKinto2 */
.flexBoxKinto2 {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;

	-webkit-flex-flow: wrap;
	-ms-flex-flow: wrap;
	flex-flow: wrap;

	-webkit-justify-content:flex-start;
	-moz-justify-content:flex-start;
	justify-content:flex-start;

	-webkit-align-items: center;
	        align-items: center;
}

/* flexBoxKinto */
.flexBoxKinto3 {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-js-display: flex;		// IE8・IE9の対応

	-webkit-flex-flow: wrap;
	-ms-flex-flow: wrap;
	flex-flow: wrap;

	-webkit-justify-content:center;
	-moz-justify-content:center;
	justify-content:center;

}


/* flexAlginItemTop：上揃えの場合 */
.flexAlginItemTop {
	-webkit-align-items: flex-start;
	        align-items: flex-start;
}
.flexAlginItemMid {
	-webkit-align-items: center;
	        align-items: center;
}
.flexAlginItemBottom {
	-webkit-align-items: flex-end;
	        align-items: flex-end;
}
