@charset utf-8;

/*必要に応じてbox0xを作成*/
.customer_box01{
	border: 1px solid #dedede;
}

.customer_ttl{
	font-size: 20px;
	text-align: center;
	font-weight: bold;
	margin: 0;
	padding: 8px;
	box-sizing: border-box;
}

/*box0xに応じてタイトルの背景、文字の色を変更*/
.customer_box01 .customer_ttl{
	background-color: #dedede;
}

.customer_clm1{
	width: 100%;
	box-sizing: border-box;
	padding: 8px;
}

.customer_clm{
	width:100%;
	float: left;
	padding: 8px;
	box-sizing: border-box;
}

.customer_clm1.clm2 .customer_clm{
	width: 50%;
}

.customer_clm1.clm3 .customer_clm{
	width: 33.333%;
}

.customer_clm > p:first-child{
	margin-top: 0;
}

.customer_clm1:after{
	clear: both;
	content: "";
	display: block;
}


@media (max-width: 640px){
	.rsp_customer_clm1 .customer_clm{
		width: 100% !important;
	}
}