@charset "utf-8";

#formWrap {
	max-width:800px;
	margin:0 auto;
	line-height:120%;
	font-size:100%;
}
table.formTable{
	width:100%;
	margin:0 auto 20px auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:20px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}

input{
	padding: 10px;
}

.must {
    display: block;
    background-color: #C00;
    padding: 4px 5px;
    font-size: 10px;
    color: #FFF;
    float: left;
    margin: 0px 5px;
    border-radius: 4px;
    box-shadow: 0px 0px 5px #ccc;
}

.inquiry_text{
	line-height: 200%;
}

.inquiry_text_indent{
	text-indent: 2.5em;
}

.submit_btn{
	text-align: center;
	margin: 10px uto 20px auto;
}

.error_messe{
	color: #FF0004;
	margin: 0;
	padding: 25px 0 0 0;
}
/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
#formWrap {
	width:100%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
form input[type="text"], form textarea {
	width:100%;
	padding:5px;
	font-size:110%;
	display:block;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}
}