@charset "utf-8";

/*=====================================

common.css

=====================================*/

.forPC { display: inline-block; }
.forSP { display: none; }

.fltL { float: left !important; }
.fltR { float: right !important; }
.alignL { text-align: left !important; }
.alignC { text-align: center !important; }
.alignR { text-align: right !important; }
.valignT { vertical-align: top !important; }
.valignM { vertical-align: middle !important; }
.valignB { vertical-align: bottom !important; }


.clearfix:after {
	content: "";
	clear: both;
	display: block;
}
.clearfix {
	zoom:1;
	overflow:hidden;
}
.clear { clear: both; }

/*-------------------------------------
 margin/padding
-------------------------------------*/
.mrgB5 { margin-bottom: 5px !important; }
.mrgB10 { margin-bottom: 10px !important; }
.mrgB15 { margin-bottom: 15px !important; }
.mrgB20 { margin-bottom: 20px !important; }
.mrgB25 { margin-bottom: 25px !important; }
.mrgB30 { margin-bottom: 30px !important; }
.mrgB35 { margin-bottom: 35px !important; }
.mrgB40 { margin-bottom: 40px !important; }
.mrgB45 { margin-bottom: 45px !important; }
.mrgB50 { margin-bottom: 50px !important; }
.mrgT10 { margin-top: 10px !important; }

/*-------------------------------------
 text
-------------------------------------*/
.bold { font-weight: bold; }


.font10 { font-size: 10px; }
.font11 { font-size: 11px; }
.font12 { font-size: 12px; }
.font13 { font-size: 13px; }
.font14 { font-size: 14px; }
.font15 { font-size: 15px; }
.font16 { font-size: 16px; }
.font17 { font-size: 17px; }
.font18 { font-size: 18px; }
.font19 { font-size: 19px; }
.font20 { font-size: 20px; }
.font30 { font-size: 30px; }

.color01 { color: #c40006; }

/*-------------------------------------
 img
-------------------------------------*/
.imgC {
	clear: both;
	padding: 0 0 20px 0;
	text-align: center;
}
.imgR {
	float: right;
	padding: 0 0 20px 30px;
}
.imgL {
	float: left;
	padding: 0 30px 20px 0;
}


.icnNew {
	margin: 0 0 0 7px;
	vertical-align: middle;
}
.icnMail {
	display: inline-block;
	padding: 0 0 0 26px;
	background: url(/common/images/icn_mail.png) no-repeat left center;
}
.icnMail a {
	text-decoration: underline;
}




/*-------------------------------------------------------------------
 Media Queries
-------------------------------------------------------------------*/

/* PC layout
-------------------------------------------------------------------*/
@media screen and (min-width: 781px) {

.icnMail a:hover {
	text-decoration: none;
}


}



/* SP layout
-------------------------------------------------------------------*/
@media screen and (max-width: 780px) {

.forPC { display: none; }
.forSP { display: inline-block; }

.imgR {
	padding: 0 0 20px 20px;
}
.imgL {
	padding: 0 20px 20px 0;
}


}


