@charset "utf-8";

/* for Common & Smartphone*/
.cCopy01{
	font-size:14px;
	line-height: 1.8;
}


table.formTable{
	width:100%;
	margin:0 auto 40px;
	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;
	background:#ecf3fb;
	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 #cccccc;
	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:#1a2f4b;
	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;
}
.formWrap input[type="submit"]{
	background:#ff7c54;
	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;
}
.privacy{
	width:100%;
	height:300px;
	overflow-y: scroll;
	padding:20px;
	text-align:left;
	border:1px solid #ccc;
	font-size:14px;
	margin-bottom:20px;
}
.privacy .pTtl01{
	font-size:14px;
	line-height: 1.5;
	margin-bottom: 5px;
}
.privacy .pTxt01{
	line-height: 1.5;
	margin-bottom: 20px;
}
.privacyAgree{
	background: #f1f1f1;
	padding:20px;
	text-align: center;
	font-size:14px;
	margin-bottom:40px;
}