@charset "UTF-8";

/* form */
input[type=text] ,
input[type=password] ,
input[type=email] ,
input[type=tel] ,
input[type=url] ,
textarea {
	padding: 10px;
	background: #f0ebe1;
	border: none;
	border-radius: 3px;
	box-sizing: border-box;
	font-family: "新ゴ R JIS2004" !important;
	font-size: 1.6rem;
}
input[type=text]:focus ,
input[type=password]:focus ,
input[type=email]:focus  ,
input[type=tel]:focus  ,
input[type=url]:focus  ,
textarea:focus {
	background-color: #f6f4f0;
}
input[type=checkbox] ,
input[type=radio] {
	display: inline-block;
	margin-right: 10px;
}
label {
	margin: 10px 17px 5px 0;
	cursor: pointer;
	display: inline-block;
	position: relative;
}
label input[type=radio] ,
label input[type=checkbox] {
	display: none;
	position: relative;
}
label input[type=radio] + span {
	padding-left: 40px;
	display: inline-block;
}
label input[type=checkbox] + span {
	padding-left: 40px;
	display: inline-block;
}
label input[type=radio] + span::before,
label input[type=checkbox] + span::before {
	background: #f0ebe1;
	content: "";
	position: absolute;
	left: 0;
	top: -3px;
	-webkit-transition: all .2s;
}
label input[type=radio] + span::before {
	width: 30px;
	height: 30px;
	border-radius: 30px;
}
label input[type=checkbox] + span::before {
	width: 30px;
	height: 30px;
	border-radius: 5px;
}
label input[type=checkbox]:checked + span::after {
	width: 30px;
	height: 30px;
	background: url(/images/icon/icon_check.png) no-repeat center center;
	background-size: 20px 15px;
	border-radius: 5px;
	content: "";
	position: absolute;
	left: 0;
	top: -3px;
}
label input[type=radio]:checked + span::after {
  width: 18px;
  height: 18px;
  background: #ca6272;
  border-radius: 15px;
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
}

select {
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: none transparent;
	text-indent: 0.01px;
	text-overflow: "";
	height: 45px;
	padding: 0 45px 0 10px;
	border: 1px solid #ccc;
	border-radius: 3px;
	text-indent: .01px;
	background: #fff url(/images/icon/icon_select.png) no-repeat right center;
	background-size: auto 45px;
}
select::-ms-expand {
	display: none;
}


/* images */
.ajax-file-upload {
	width: 150px;
	padding: 7px 0;
	background-color: #a49b95;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #666), color-stop(0.00, #ccc));
	background: -webkit-linear-gradient(#ccc, #666);
	background: -moz-linear-gradient(#ccc, #666);
	background: -o-linear-gradient(#ccc, #666);
	background: -ms-linear-gradient(#ccc, #666);
	background: linear-gradient(#ccc, #666);
	background-color: #666;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border: 1px solid #999;
	box-shadow:0px 0px 2px 1px rgba(0,0,0,0.2);
	-moz-box-shadow:0px 0px 2px 1px rgba(0,0,0,0.2);
	-webkit-box-shadow:0px 0px 2px 1px rgba(0,0,0,0.2);
	text-align: center;
	color: #fff;
	cursor: pointer;
	position: relative;
}
.ajax-file-upload-statusbar {
	padding: 10px;
	background-color: #f1f1f1;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
input[type=file] {
	width: 100%;
	height: 100%;
	cursor: pointer;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
}

.required {
	padding: 2px 10px;
	background-color: #c53838;
	border-radius: 3px;
	color: #fff;
	position: absolute;
	top: auto;
	bottom: auto;
	right: 0;
	font-size: 1.2rem;
}

.error {
	margin: 30px 0;
	border: 1px solid #dc0101;
}
	.error .strongTitle {
		margin-bottom: 0;
		padding: 15px;
		background-color: #dc0101;
		color: #fff;
		font-size: 1.4rem;
		line-height: 1.4;
	}
	
	.error .errorTxt {
		padding: 15px;
		color: #dc0101;
		font-size: 1.4rem;
		line-height: 1.4;
	}
	
.errorTxt_bottom {
	padding: 15px;
	color: #dc0101;
	line-height: 1.4;
}
.errorTxt_bottom:empty {
	display: none;
}

@media only screen and (min-width: 768px) {
	.error {
		margin-bottom: 40px;
	}
		.error .strongTitle {
			font-size: 1.6rem;
		}
		.error .errorTxt {
			font-size: 1.6rem;
		}


}

@media only screen and (min-width: 1024px) {

select {
	width: auto;
}


	.error {
	}
		.error .errorTxt {
			font-size: 1.8rem;
		}


}