@charset "utf-8";

/*見出しの文字サイズ・・・スマホはPCの約4/5にする*/

/* for Common & Smartphone*/

/*brand*/
.brandUnit{
	width:100%;
	max-width:750px;
	margin:0 auto 50px;
	overflow:hidden;
}
.brandUnitImg{
	border:1px solid #e6e6e6;
	width:100%;
	padding:15px 0;
	margin-bottom:20px;
	text-align:center;
}
.brandUnitTxt{
	width:100%;
	text-align:left;
}
.brandUnitName{
	font-size:123%;
	font-weight:bold;
	margin-bottom:10px;
}
.brandUnitCopy{
	font-size:108%;
	line-height:1.8;
}



/* for Smartphone 横とか*/
@media screen and (min-width: 480px) {
}

/* for Smartphone*/
/*横向きの際に適用*/
@media screen and (orientation : landscape) { 
}

/* for PC*/
@media print, screen and (min-width:768px) {
	
/*brand*/
.brandUnit{
}
.brandUnitImg{
	float:left;
	width:190px;
	padding:70px 0;
}
.brandUnitTxt{
	float:right;
	width:100%;
	margin-left:-220px;
	padding-left:220px;
	padding-top:40px;
}
.brandUnitName{
	margin-bottom:20px;
}













}