@charset "utf-8";
/* CSS Document */


/* PC用
------------------------------------------------------------*/
@media only screen and (min-width: 645px){

table {
	width:100%;
}
th {
	text-align:left;
	border-bottom:1px dotted #cccccc;
	width:160px;
}
td {
	border-bottom:1px dotted #cccccc;
	padding:12px 0px 12px 5px;
	width:480px;
}
#name, #address, #email {
	width:300px;
}
#phone, #fax {
	width:150px;
}
#message {
	width:370px;
}
.ERR {
	color:#ff0000;
}

}

/* スマートフォン用（幅644px以下から）
------------------------------------------------------------*/
@media only screen and (max-width: 644px){

table {
	width:100%;
}
th {
	text-align:left;
	border-bottom:1px dotted #cccccc;
	width:36%;
}
td {
	border-bottom:1px dotted #cccccc;
	padding:12px 0px 12px 5px;
	width:480px;
}
#name, #address, #email {
	width:100%;
}
#phone, #fax {
	width:100%;
}
#message {
	width:100%;
}
.ERR {
	color:#ff0000;
}

}