@charset "utf-8";
/* CSS Document */

table{
	border-collapse: collapse;
	border-spacing: 0;
} 

/*-------------------------------------------------------------------------*/

#formWrap{
	max-width: 80%;
	margin: 0 auto;
}

table.c-f{
	width: 100%;
	margin: 0 0 30px 0;
	border: none;
}

table.c-f th,
table.c-f td{
	font-size: 14px;
	padding: 10px;
	border: none;
}

table.c-f th {
	width: 36%;
	text-align: left;
	font-weight: normal;
	vertical-align: top;
}

input{
	width: 70%;
	height: 30px;
}

textarea{
	width: 100%;
	height: 200px;
}

input.submit_button{
	width: 100px;
	height: 35px;
	padding: 5px;
    font-size: 14px;
}


@media only screen and (max-width:480px){

table.c-f{
	margin: 0 -10px;
}

table.c-f th,
table.c-f td{
    width: 100%;
    display: block;
    border-top: none;
  }

table.c-f tr:first-child th{
	border-top: 1px solid #ddd;
}

input{
	width: 98%;
	margin: 0 auto;
}

textarea{
	width: 98%;
	margin: 0 auto;
	height: 200px;
}
}