@charset "utf-8";

/*必須*/
.must {
	display: inline-block;
	border:0;
	text-shadow: none;
	padding: 2px 6px !important;
	line-height:1.4;
	background-color:#ab3c00;
	font-size:1.4rem;
	font-weight:normal;
	padding:0;
	color: #fff;
	float: none;
	margin: 0 5px;
	border-radius: 4px;
	box-shadow: none;
	background-image: none;
}


.cCopy01{
	font-size:14px;
	line-height: 1.8;
}


table.formTable{
	width:100%;
	margin:0 auto 60px;
	border-collapse:collapse;
	text-align:left;
	border-top:1px solid #ccc;
}
table.formTable td,
table.formTable th{
	border-bottom:1px solid #ccc;
	padding:15px;
	font-size: 14px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	text-align:left;
}
/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media (max-width:640px) {
	#formWrap {
		width:95%;
		margin:0 auto;
	}
	table.formTable th, table.formTable td {
		width:auto;
		display:block;
	}
	table.formTable th {
		margin-top:0;
		border-bottom:0;
	}
	form input[type="text"], form textarea {
		width:80%;
		padding:5px;
		font-size:110%;
		display:block;
	}
}


.formWrap input,
.formWrap select,
.formWrap textarea{
	border:1px solid #ccc;
	padding:5px;
	font-size:16px;
	border-radius:4px;
}
.formWrap textarea{
	width:100%;
}
.formWrap input[type="radio"],
.formWrap input[type="checkbox"]{
	transform:scale(1.5);
	margin:0 3px;
}
.formWrap input[type="submit"],
.formWrap input[type="reset"]{
	background:#3c3228;
	border: 0;
	border-radius: 0;
	line-height: 50px;
	font-size:16px;
	cursor: pointer;
	width:100%;
	margin-bottom:10px;
	box-shadow:none;
	font-weight:normal;
	max-width:300px;
	transition-duration: 0.3s;
	font-family:serif;
}
.formWrap input[type="submit"]{
	background:#3c3228;
	color:#fff;
}
.formWrap input[type="reset"]{
	background:#e4e4e4;
	color:#333;
}
.formWrap input[type="submit"]:hover,
.formWrap input[type="reset"]:hover{
	opacity: 0.7;
}

.required{
	display: inline-block;
	border:1px solid #cc0000;
	color:#cc0000;
	background-color: #fff;
	font-size: 11px;
	padding:3px 5px;
	margin-right:5px;
}
.caption01{
	color:#666;
	font-size: 12px;
}
.label01{
	display:block;
	margin-bottom:15px;
}
.privacyAgree{
	background: #f1f1f1;
	padding:20px;
	text-align: center;
	font-size:14px;
	margin-bottom:40px;
}