/************************************************************
/* フォーム
************************************************************/
.c-reqt form * {
	box-sizing: border-box;
}

.c-reqt form table {
	margin-top: 20px;
}

.c-reqt form .required {
	display: inline-block;
	font-size: 10px;
	color: #fff;
	line-height: 1;
	background-color: #E01B2A;
	padding: 2px 4px;
	margin-left: 10px;
	vertical-align: middle;
}

.c-reqt form input[type="text"],
.c-reqt form input[type="email"],
.c-reqt form input[type="tel"] {
	border: 1px solid transparent;
	background: #f5f5f5;
	width: 100%;
	padding: 10px;
	border-radius: 0;
	margin-bottom: 8px;
}

.c-reqt form select {
	margin-bottom: 8px;
}

.c-reqt form input[type="radio"],
.c-reqt form input[type="checkbox"]{
	width: 1px;
	height: 1px;
	margin: 0;
    opacity: 0;
    position: absolute;
}

.c-reqt form input[type="radio"] + label:before,
.c-reqt form input[type="checkbox"] + label:before {
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	background-color: #f5f5f5;
	position: absolute;
	top: 50%;
	left: 10px;
	margin-top: -8px;
}

.c-reqt form input[type="radio"] + label:before {
	border-radius: 50%;
}

.c-reqt form input[type="checkbox"]:checked + label:after {
	content: "";
	display: block;
	width: 8px;
	height: 12px;
	border:3px solid #DA4F40;
	border-right: none;
	border-bottom: none;
	position: absolute;
	top: 50%;
	left: 14px;
	margin-top: -10px;
	-webkit-transform: rotate(225deg);
	   -moz-transform: rotate(225deg);
	     -ms-transform: rotate(225deg);
	        -o-transform: rotate(225deg);
	            transform: rotate(225deg);
}

.c-reqt form input[type="radio"]:checked + label:after {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	background-color: #DA4F40;
	position: absolute;
	top: 50%;
	left: 12px;
	margin-top: -6px;
	border-radius: 50%;
}

.c-reqt form input[type="radio"] + label,
.c-reqt form input[type="checkbox"] + label {
	display: inline-block;
	width: calc(50% - 7px);
	padding: 10px 0 10px 40px; 
	margin:0 0 10px;
	position: relative;
	cursor: pointer;
	border: 1px solid #eee;
	background-color: #fff;
}

#staff_new .c-reqt form .check label:nth-child(4),
#staff_new .c-reqt form .radio label:nth-child(4),
#staff_new .c-reqt form .radio label:nth-child(8),
#staff_new .c-reqt form .check label:nth-child(4),
#staff_new .c-reqt form .check label:nth-child(12),
#staff_new .c-reqt form .check label:nth-child(18),
#staff_new_entry .c-reqt form .check label:nth-child(4),
#staff_new_entry .c-reqt form .check label:nth-child(12),
#staff_new_entry .c-reqt form .check label:nth-child(18) {
	margin-left: 9px;
}

#staff_new .c-reqt form .check label:nth-child(20),
#staff_new_entry .c-reqt form .check label:nth-child(20) {
	margin-bottom: 1.5em;
}

.c-reqt form input[type="radio"] + label.wide,
.c-reqt form input[type="checkbox"] + label.wide {
	width: 100%;
	margin-left: 0;
}


.c-reqt form input[type="radio"]:checked + label,
.c-reqt form input[type="checkbox"]:checked + label {
	background-color: #DA4F40;
	color: #fff;
}

.c-reqt form select {
	width: 100%;
	padding:10px 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-indent: 10px;
	background: url('../images/form/select_arrow.png') no-repeat right center;
	background-size:16px;
	border-radius: 0;
	border: 1px solid #eee;
	box-shadow: none;
}

.c-reqt form textarea {
	width: 100%;
	border: 1px solid transparent;
	background: #f5f5f5;
	padding: 15px 20px;
	height: 15em;
}

.c-reqt form .date select,
.c-reqt form .date input {
	width: calc(100% / 3 - 26px);
	max-width: 100px;
}

.c-reqt form .phone select,
.c-reqt form .phone input {
	width: calc(100% / 3 - 11px);
	max-width: 100px;
}

.c-reqt form .withText input {
	width: calc(100% - 23px);
}

.c-reqt form .address input.zip {
	width: calc(100% / 3 - 26px);
}

.c-reqt form input:focus:required:valid,
.c-reqt form input:focus:valid,
.c-reqt form textarea:focus:required:valid,
.c-reqt form textarea:focus:valid {
	background: url('../images/form/form_ok.png') no-repeat right 5px top 50% #f0fcf2;
	background-size: 14px 14px;
}

.c-reqt form input[type="submit"]:focus:valid {
	background-image: none;
	background-color: #f00;
}

/*OK(入力済)*/
.c-reqt form input:required:valid,
.c-reqt form textarea:required:valid {
}

/*エラー*/
.c-reqt form input:focus:required:invalid,
.c-reqt form textarea:focus:required:invalid,
.c-reqt form input:required:invalid,
.c-reqt form textarea:required:invalid,
.c-reqt form textarea.error:focus:valid,
.c-reqt form textarea.error {
	background: url('../images/form/form_ng.png') no-repeat right 5px top 50% #fdf5f5;
	background-size: 14px 14px;
}

.c-reqt form #submit {
	margin-bottom: 20px;
	text-align: center;
}

.c-reqt form #submit input#submitBtn {
	width: 100%;
	display: block;
	text-align: center;
	border: 1px solid #000;
	background-color: transparent;
	padding: 12px;
	font-size: 12px;
	color: #000;
	max-width: 400px;
	margin: 0 auto;
	border-radius: 0;
}

.c-reqt form #back {
	text-align: center;
}

.c-reqt form #BackBtn {
	-webkit-appearance: none;
	background-color: transparent;
	border: none;
	margin: 0 auto;
	text-align: center;
	font-size: 12px;
}

.c-reqt form .ex {
	display: block;
	font-style: normal;
	font-size: 0.8em;
	margin: -6px 0 8px;
}

.c-reqt form .ex:before {
	content: "※"
}

/*エラー*/
.c-reqt form .error {
	color:#E01B2A!important;
}

.c-reqt form .error input {
	color: #000!important;
}

.c-reqt form .error input,
.c-reqt form .error select {
	border-color: #E01B2A!important;
}

.c-reqt .errs {
	background-color: #FDF5F5;
	color: #880000;
	margin-top: 1em;
	margin-bottom: 1em;
	padding: 10px;
	min-height: 32px;
	height: auto !important;
}

.c-reqt form #inputArea {
	padding-top: 20px;
}

.c-reqt form #inputArea #agreeBtn2 {
	display: block;
	padding: 11px 10px 9px 50px;
	margin: 20px 0 ;
	border: 1px solid #eee;
}

.c-reqt form .policy {
	background-color: #f5f5f5;
	padding: 10px 10px 0;
	margin-bottom: 20px;
}

.c-reqt form .policy .button  {
	width: 100%;
	margin: 20px 0 0;
	position: relative;
}

.c-reqt form .policy .button input#agreeCheck {
	position: absolute;
	top: 25px;
	left: 15px;
}

.c-reqt form .policy a.textLink:before {
	border-left-color: #333;
}

.c-reqt form input#agreeCheck + label {
	width: 100%;
}

.check.c-reqt form input#agreeCheck + label {
	opacity: 0.5;
	pointer-events: none;
}

.c-reqt form .address span {
	display: block;
}

.p-entry #policyBox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.6);
	height: 100%;
	width: 100%;
	font-size: 1.2rem;
	z-index: 4000;
	line-height: 1.8125;
}

.p-entry #policyBox .inner {
	background-color: #fff;
	margin: 15px;
	height: calc(100% - 30px);
	width: calc(100% - 30px);
	padding: 15px;
	overflow-y: auto;
}

.p-entry #policyBox .inner #agreeCheckBtn {
	display: block;
	width: 100%;
	padding: 10px;
	text-align: center;
	margin:30px 0 10px;
	cursor: pointer;
	border: 1px solid #000;
	background-color: #fff;
}

.check.p-entry #policyBox .inner #agreeCheckBtn {
	display: none;
}

.p-entry #policyBox .inner div + div {
	margin-top: 30px;
}

.p-entry #policyBox h3 {
	font-size: 1.4rem;
	text-align: center;
	border-bottom: 1px solid #000;
	padding-bottom: 8px;
	margin-bottom: 10px;
}

.p-entry #policyBox h4 {
	font-size: 1.4rem;
	margin: 14px 0 10px;
}

.p-entry #policyBox li,
.p-entry #policyBox #handle h4 {
	padding-left: 12px;
	position: relative;
}

.p-entry #policyBox #handle h4 {
	text-align: left;
	font-size: 1.2rem;
}

.p-entry #policyBox li:before,
.p-entry #policyBox #handle h4:before {
	content: "";
	width: 6px;
	height: 6px;
	background-color: #ccc;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 5px;
}

.p-entry #policyBox #handle h4:before {
	top: 4px;
}

.p-entry #policyBox #handle p + p {
	margin-top: 20px;
}

.p-entry #policyBox #contact {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #000;
}

.p-entry #policyBox #contact .address {
	font-weight: bold;
}

.p-entry #policyBox .closeBtn {
	width: 100%;
	padding: 10px;
	text-align: center;
	margin:20px 0 0;
	cursor: pointer;
	background-color: #fff;
}

/*エントリーフォーム直接アクセス時のエラー*/
.p-entry #accessErrorBox {
	margin: 5em 0;
}

.p-entry #accessErrorBox .inner {
	background-color: #fdf5f5;
	width: calc(100% - 30px);
	max-width: 600px;
	margin: 0 auto;
	padding: 100px 15px;
	text-align: center;
	color: #E01B2A;
	font-weight: bold;
}

.p-entry #accessErrorBox .inner .linkBtn {
	display: block;
	width: 100%;
	max-width: 400px;
	padding: 10px;
	text-align: center;
	margin:30px auto 10px;
	cursor: pointer;
	border: 1px solid #000;
	background-color: #fff;
	text-decoration: none;
	font-weight: normal;
	color:#000;
	transition: all 0.1s linear;
}

.p-entry #accessErrorBox .inner .linkBtn:hover {
	background-color: #000;
	color:#fff;
	transition: all 0.1s linear;
}

/*****************************************************************/
	@media print, screen and (min-width: 920px) {

		.c-reqt form {
			padding-bottom: 50px;
		}

		.c-reqt form + form {
			margin-top: -70px;
			padding-bottom: 0;
		}

		.c-reqt form table {
			margin-top: 30px;
		}

		.c-reqt th {
			vertical-align: middle;
		}

		.c-reqt form input[type="radio"] + label:before,
		.c-reqt form input[type="checkbox"] + label:before {
			left: 18px;
		}

		.c-reqt form input[type="checkbox"]:checked + label:after {
			left: 22px;
		}

		.c-reqt form input[type="radio"]:checked + label:after {
			left: 20px;
		}

		.c-reqt form input[type="radio"] + label,
		.c-reqt form input[type="checkbox"] + label {
			width: 200px;
			margin-right: 10px;
			padding-left: 50px;
		}

		.c-reqt form input[type="radio"] + label.wide,
		.c-reqt form input[type="checkbox"] + label.wide {
			width: 410px;
		}

		.c-reqt form .check label:nth-child(4),
		.c-reqt form .check label:nth-child(8),
		.c-reqt form .radio label:nth-child(4),
		.c-reqt form .radio label:nth-child(8) {
			margin-left: 0;
		}

		#staff_new .c-reqt form .check label:nth-child(4),
		#staff_new .c-reqt form .check label:nth-child(12),
		#staff_new .c-reqt form .check label:nth-child(18),
		#staff_new_entry .c-reqt form .check label:nth-child(4),
		#staff_new_entry .c-reqt form .check label:nth-child(12),
		#staff_new_entry .c-reqt form .check label:nth-child(18) {
			margin-left: 0;
		}

		.c-reqt form input[type="text"].length100,
		.c-reqt form input[type="email"].length100,
		.c-reqt form input[type="tel"].length100 {
			width: 100px;
		}

		.c-reqt form input[type="text"].length150,
		.c-reqt form input[type="email"].length150,
		.c-reqt form input[type="tel"].length150 {
			width: 150px;
		}

		.c-reqt form input[type="text"].length200,
		.c-reqt form input[type="email"].length200,
		.c-reqt form input[type="tel"].length200 {
			width: 200px;
		}

		.c-reqt form input[type="text"].length250,
		.c-reqt form input[type="email"].length250,
		.c-reqt form input[type="tel"].length250 {
			width: 250px;
		}

		.c-reqt form input[type="text"].length300,
		.c-reqt form input[type="email"].length300,
		.c-reqt form input[type="tel"].length300 {
			width: 300px;
		}

		.c-reqt form input[type="text"].length400,
		.c-reqt form input[type="email"].length400,
		.c-reqt form input[type="tel"].length400 {
			width: 400px;
		}

		.c-reqt form input[type="text"].length500,
		.c-reqt form input[type="email"].length500,
		.c-reqt form input[type="tel"].length500 {
			width: 500px;
		}

		.c-reqt form select {
			width: 400px;
		}

		.c-reqt form select.time {
			width: 200px;
		}

		.c-reqt form select.subject {
			width: 320px;
		}

		.c-reqt form textarea {
			width: 600px;
		}

		.c-reqt form .address li {
			position: relative;
			padding-left: 130px;
		}

		.c-reqt form .address li:not(:last-child) {
			margin-bottom: 8px;
		}

		.c-reqt form .ad {
			position: absolute;
			left: 0;
			width: 115px;
			font-weight: normal;
		}

		.c-reqt form #submit {
			margin-top: 20px;
			text-align: center;
		}

		.c-reqt form #submit + table{
			margin-top: 100px;
		}
		.c-reqt form #submit input#submitBtn {
			width: 200px;
			-webkit-transition: all 0.1s linear;
			       -moz-transition: all 0.1s linear;
			        -ms-transition: all 0.1s linear;
			         -o-transition: all 0.1s linear;
			            transition: all 0.1s linear;
			font-size: 14px;
			padding: 16px;
			margin-top: 50px;
		}

		.c-reqt form #submit input#submitBtn:hover {
			background-color: #DA4F40;
			-webkit-transition: all 0.1s linear;
			       -moz-transition: all 0.1s linear;
			        -ms-transition: all 0.1s linear;
			         -o-transition: all 0.1s linear;
			            transition: all 0.1s linear;
			color: #fff;
		}

		.c-reqt form input:focus:invalid + .errorMsg,
		.c-reqt form input:focus:required:invalid + .errorMsg,
		.c-reqt form textarea:focus:required:invalid + .errorMsg{
			opacity: 1;
			-webkit-transition: all 0.5s linear;
			       -moz-transition: all 0.5s linear;
			        -ms-transition: all 0.5s linear;
			         -o-transition: all 0.5s linear;
			            transition: all 0.5s linear;
		}

		.c-reqt form .date select {
			width: 100px;
		}

		.c-reqt form dd.radio {
			padding-top: 30px;
			padding-bottom: 20px;
		}

		.c-reqt form dd.address span {
			width: 150px;
			display: block;
			float: left;
			margin-top: 10px;
		}

		/*確認画面*/
		.c-reqt form .check dt {
			padding-top: 20px;
		}

		.c-reqt form .check .address li {
			margin-top: 0;
		}

		.c-reqt form .check .ad {
			margin-top: 0;
		}

		.c-reqt form .check dd.history span:not(.required) {
			margin-top: 0;
		}

		.c-reqt form #inputArea #agreeBtn2 {
			padding: 21px 10px 19px 50px;
			-webkit-transition: all 0.1s linear;
			    -moz-transition: all 0.1s linear;
			      -ms-transition: all 0.1s linear;
			        -o-transition: all 0.1s linear;
			            transition: all 0.1s linear;
			margin-top: 50px;
		}

		.c-reqt form #agreeCheck {
			top: 30px;
		}

		.c-reqt form #inputArea #agreeCheck:checked + #agreeBtn2,
		.c-reqt form #inputArea #agreeBtn2:hover {
			background-color: #dbd538;
			-webkit-transition: all 0.1s linear;
			    -moz-transition: all 0.1s linear;
			      -ms-transition: all 0.1s linear;
			        -o-transition: all 0.1s linear;
			            transition: all 0.1s linear;
		}

		.c-reqt form h2 {
			padding: 10px 0;
			font-size: 20px;
		}

		.c-reqt form h3 {
			font-size: 18px;
		}

		.c-reqt form h3:not(:first-child) {
			margin-top: 40px;
		}

		.c-reqt form .SPcode {
			margin-top: 10px;
		}

		.c-reqt form .attention {
			padding: 20px;
			background-color: #f5f5f5;
		}

		.c-reqt form #BackBtn {
			cursor: pointer;
		}

		.c-reqt form .ex {
			display: inline-block;
			margin-left: 10px;
			margin-top: 0;
			line-height: 1.2;
			vertical-align: middle;
		}

		.c-reqt form .policy {
			width: 800px;
			padding: 40px;
			margin: 40px auto;
		}

		.c-reqt form .policy .button input#agreeCheck {
			left: 183px;
		}

		.c-reqt form .address span {
			width: 150px;
			display: block;
			float: left;
			margin-top: 10px;
		}

		.c-reqt form .address .hometownSelect {
			margin-bottom: 20px;
		}

		.c-reqt form input#agreeCheck + label {
			width: 400px;
			display: block;
			margin: 40px auto 0;
		}

		.p-entry #policyBox {
			font-size: 1.4rem;
		}

		.p-entry #policyBox .inner {
			height: calc(100% - 120px);
			width: 800px;
			margin: 60px auto;
			padding: 60px;
		}

		.p-entry #policyBox .inner #agreeCheckBtn {
			width: 400px;
			margin: 40px auto 0;
		}

		.p-entry #policyBox .inner #agreeCheckBtn:hover {
			background-color: #DA4F40;
			color: #fff;
		}

		.p-entry #policyBox .inner div + div {
			margin-top: 60px;
		}

		.p-entry #policyBox h3 {
			font-size: 1.6rem;
		}

		.p-entry #policyBox h4 {
			font-size: 1.6rem;
			margin: 20px 0 10px;
			text-align: left;
		}

		.p-entry #policyBox li,
		.p-entry #policyBox #handle h4 {
			padding-left: 16px;
		}

		.p-entry #policyBox #handle h4 {
			font-size: 1.4rem;
		}

		.p-entry #policyBox li:before,
		.p-entry #policyBox #handle h4:before {
			top: 50%;
			margin-top: -3px;
		}

		.p-entry #policyBox #handle h4:before {
			top: 50%;
			margin-top: -3px;
		}

		.p-entry #policyBox .closeBtn {
			width: 100px;
			margin:20px auto 0;
		}
	}