@charset "utf-8";

#formWrap {
	max-width:900px;
	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;
}

select{
	padding: 10px;
}

input{
	padding: 10px;
}

button{
	margin: 0px 0px 10px 0;
	border-width: 2px;
    border-style: inset;
    border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    border-image: initial;
}

.submit-box{
	margin: 10px 0px 0px 10px
}

.submit-box input[type=checkbox] {
	width: 16px;
	height:	16px;
	margin: 0px 10px 0px 10px;
	-moz-transform: scale(1.4);
	-webkit-transform: scale(1.4);
	transform:		scale(1.4);
}

.radio-btn{
	margin: 10px;
}

.radio-text{
	line-height: 100%;
}

.disabled-btn{
	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;
}

form textarea {
	padding:5px;
	font-size:110%;
}

.submit_btn{
	margin: 10px auto 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, select {
	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;
}
}