@charset "UTF-8";
/*form.css*/

/* form_common */
/*label, input, select {display: block;}*/
.inputLabel, .inputConf dt { margin: 15px 0 5px; color: #0069b5; display: block;}
.inputLabel:before, .inputConf dt:before { content: "\25a0" }
.cBoxLabel { display: inline; padding-left:10px;}
input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="number"] {
	-webkit-appearance: none;
	width: 100%;
	height: 58px;
	font-size: 18px;
	line-height: 1.5;
	background: #fff;
	padding: 2px 6px;
}
select {
	width: 100%;
	height: 58px;
	font-size: 18px;
	text-indent: 3px;
	background-color: #fff;
}
input[type="checkbox"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	position: relative;
	display: inline-block;
	width: 30px;
	height: 30px;
	background-color: #e5e5e5;
	border-radius: 5px;
	box-shadow:rgba(92, 96, 102, 0.580392) 1px 1px 1px 1px inset;
	-webkit-box-shadow:rgba(92, 96, 102, 0.580392) 1px 1px 1px 1px inset;
	-moz-box-shadow:rgba(92, 96, 102, 0.580392) 1px 1px 1px 1px inset;
}
input[type="checkbox"]:checked:before {
	position: absolute;
	left: 3px;
	top: 19px;
	display: block;
	content: "";
	width: 11px;
	height: 5px;
	background: #ff7507;
	-webkit-transform: rotate(45deg);
	-webkit-transform-origin: right center;
}
input[type="checkbox"]:checked:after {
	position: absolute;
	left: 12px;
	top: 20px;
	display: block;
	content: "";
	width: 19px;
	height: 5px;
	background: #ff7507;
	-webkit-transform: rotate(-50deg);
	-webkit-transform-origin: left center;
}

.adviceTxt, .errMsg { color: #e6004b; }
.errMsg {padding-top: 5px;}
.termsTxt {
	text-align: center;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 15px 0;
	margin: 30px 0;
}
.termsTxt dd { margin: 10px; }

.userName, .userMail {font-size: 150%;}

/* SP表示用 ==========================================================================================*/
@media screen and (max-width: 750px) {
	.cBoxWrap {margin:50px 0;}
	input[type="checkbox"] {top:5px;}
}
/* PC表示用 ==========================================================================================*/
@media screen and (min-width: 751px) {
	.cBoxWrap {margin-top:20px;}
	input[type="checkbox"] {top:8px;}
}


