@charset "UTF-8";

/*フォームセット リセットCSS
-----------------------------------------------------------------------------------------------*/
#formSet {
	margin:0 auto;
	padding:0;
	width: 100%;
	box-sizing: border-box;
	font-size:100%;
	font-family:sans-serif;
	font-size:inherit;
}

/*
入力手順
-------------------------------------------------------------------------------------------------*/
#formFlow{
	margin:10px 0 30px 0;
	padding-right:20px;
}
#formFlow ul{
	display:flex;
	justify-content: space-between;
}

#formFlow ul li p{
	padding-top: 3px;
	font-size:140%;
	font-weight:bold;
	text-align:center;
	line-height: 110%;
}
.formFlowStep{
	font-size:70%;
}
@media screen and (max-width:640px){
	#formFlow ul li p{
		font-size:108%;
	}
	/*2行の場合*/
	#formFlow.gyo2 ul li p{
		font-size:1.2rem;
		margin-left: 4px;
	}
}
/*step.3ver*/
.inquiryFormFlow li{
	width:31.2%;
}
#formFlow ul li{
	list-style:none;
	height:54px;
	color: #888;
	background: #ddd;
	border-radius: 5px 0 0 5px;
	position: relative;
}
@media screen and (max-width:640px){
	#formFlow ul li{
		list-style:none;
		height:40px;
		color: #888;
		background: #ddd;
		border-radius: 5px 0 0 5px;
		position: relative;
	}
	/*step.3ver*/
	.inquiryFormFlow li{
		width:29%;
	}
}
#formFlow ul li::after{
	content: ' ';
	width: 0;
	height: 0;
	border-top:27px solid transparent;
	border-bottom:27px solid transparent;
	border-left: 20px solid #ddd;
	position: absolute;
	right:-20px;
	top: 0px;
}
@media screen and (max-width:640px){
#formFlow ul li::after{
	border-top:20px solid transparent;
	border-bottom:20px solid transparent;
	}
}
#formFlow ul li.flowActive{
	color:#005CC1;
	background: #D1E6FF;
}
#formFlow ul li.flowActive::after{
	content: ' ';
	width: 0;
	height: 0;
	border-top:27px solid transparent;
	border-bottom:27px solid transparent;
	border-left: 20px solid #D1E6FF;
	position: absolute;
	right:-20px;
	top: 0px;
}
@media screen and (max-width:640px){
#formFlow ul li.flowActive::after{
	border-top:20px solid transparent;
	border-bottom:20px solid transparent;
	}
}


.titformFlow {
	margin: 0px 0px 11px 0px;
	padding:4px 0px 4px 7px;
	border-left: 6px solid #349BFF;
	font-size:140%;
	font-weight: bold;
	line-height:140%;
	text-align: left;
	}
.readCopyform {
	margin: 0px 0px 10px 0px;
	font-size:100%;
	line-height:160%;
	}






/* フォーム表組み
-------------------------------------------------------------------------------------------------*/
.tblForm {
	margin-top: 0px;
	margin-bottom: 40px;
	width:100%;
	border-collapse:collapse;
	border-spacing:0;
	font-size: 108%;
	line-height:160%;
	box-sizing: border-box;
}
/* リンク */
.tblForm a {
	text-decoration:underline;
}
.tblForm a:hover {
	text-decoration:none;
}


.tblForm th , .tblForm td {
	padding:15px 0px 15px 15px;
	box-sizing: border-box;
}
.tblForm th {
	width:auto;
	max-width:30%;
	font-weight:bold;
	white-space:nowrap;
	border-top:1px solid #BEC6C6;
	background-color:#F0F0F0;
}
.tblForm tr:last-of-type th{
	border-bottom:1px solid #BEC6C6;
}
/* 必須*/
.tblForm th.required {
	background: url(../images/icon_form_required.svg) right center no-repeat #F0F0F0;
	background-size: 42px;
	padding-right: 42px;
}
/* th 左寄せ指定の場合*/
.tblForm.thLeft {
	text-align:left;
}

.tblForm td {
	border-top:1px solid #BEC6C6;
	background-color:#FFFFFF;
}

.tblForm tr:last-of-type td {
	border-bottom:1px solid #BEC6C6;
}

@media screen and (max-width:640px){
	.tblForm{

	}
	.tblForm tr , .tblForm th , .tblForm td {
		display:block;
	}
	.tblForm th{
		width:100%;
		max-width:100%;
		padding:10px 6px;
		font-size:100%;
		white-space:normal;
		box-sizing: border-box;
	}
	.tblForm td{
		padding:10px 0 20px 0;
		border-top:none;
	}
	.tblForm tr:last-of-type th{
		border-bottom:none;
	}
	.tblForm tr:last-of-type td{
		border-bottom:1px solid #BEC6C6;
	}
}

/* フォーム内テキスト
-------------------------------------------------------------------------------------------------*/
/* 通常テキスト*/
.groupLine {
	margin: 4px 0px 6px 0px;
	*zoom: 1;
}
@media screen and (max-width:640px){
.groupLine {
	margin-bottom: 2px;
	}
}
.groupLine:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.groupLine label {
	margin-right: 50px;
	line-height:240%;
	}

/* ボタン前（上）テキスト*/
.beforeBtnTxt {
	margin: 0px 0px 6% 0px;
	text-align: center;
	*zoom: 1;
}


.copyCaution {
	margin: 10px auto;
}
/* エラーテキスト*/
.errorText {
	margin: 6px 0px;
	padding: 3px 4px;
	font-size: 100%;
	clear: both;
	color:#FF0004;
	font-weight: bold;
	background:#FFeded;
	/*display: none;*/
}
/* 入力例文*/
.instText {
	font-weight: bold;
}
.inputMethod {
	font-size: 86%;
	font-weight:normal;
}

/* フォーム内リンク*/
.formLink a{
	color:#00C9C3;
	text-decoration:underline;
	width:calc((100% - 120px)/5);
	padding:0 0 15px 18px;
	font-weight:bold;
	position:relative;
}
.formLink a::before{
	font-family:"Font Awesome 5 Free";
	content:'\f138';
	color:#00C9C3;
	position:absolute;
	top:0;
	left:0;
}





/*インプット入力エリア（input）設定
---------------------------------------*/
input[type="text"]{
	margin-right: 3px;
	padding:5px;
	border:1px solid #BBBBBB;
	border-radius: 3px;
	font-size:120%;
	line-height: 160%;
	box-sizing:border-box;
}

@media screen and (max-width:640px){
input[type="text"]{
	margin-bottom:6%;
	}
}

/*input 2列並び */
.groupLine .inputBox {
	margin-top: 0;
	width: 230px;
	float: left;6
}

/* inputの頭付く文字*/
.inputHead {
	margin-right: 6px;
}

/* inputの後に付く文字（全角・半角など）*/
.inputBoxNotes {
	padding-top: 8px;
	margin-left:-16px;
	display: inline-block;
	font-size: 86%;
}
.inputBoxNotes02 {
	padding-top: 8px;
	margin-left:0px;
	display: inline-block;
	font-size: 86%;
}
@media screen and (max-width:640px){
.inputBoxNotes {
	padding-top: 10px;
	display:block;
	margin-left:-10px;
	float:left;
	}
.inputBoxNotes02 {
	padding-top:0px;
	display:block;
	margin-left:0px;
	float:left;
	}
}

/* インプット入力エリアの長さ（下記3種類） */
.ittS{
	width:180px;
}
.ittM{
	width:300px;
}
.ittL{
	width:100%;
}

@media screen and (max-width:640px){
	.ittS{
		width:80%;
	}
	.ittM{
	width:100%;
	}
	.ittM.spL , .ittL {
	width:100%;
	}
}


/*テキスト入力エリア（textarea）設定
------------------------------------*/
textarea{
	width:100%;
	padding:5px;
	font-size:120%;
	border:1px solid #BBBBBB;
	border-radius: 3px;
	box-sizing: border-box;
}
/* テキストエリアの設定 */
textarea::placeholder {
	color: #ababab;
	font-size:80%;
}


/* セレクトエリアの設定
------------------------------------*/
select{
	cursor: pointer;
	margin-right:3px;
	border-radius: 3px;
	border: 1px solid #BBBBBB;
	font-size:100%;
	padding: 6px 25px 6px 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url(../images/select_arrow.png) right center no-repeat #FFFFFF;
	background-size: 16px 8px;
	box-shadow: inset 0 -2px 0 rgba(0,0,0,0.1);
}
select#exam_birthday2{
	font-size:136%;
	}
select#exam_birthday3{
	font-size:136%;
	}
@media screen and (max-width:640px){
select{
	font-size:120%;
	}
}



select::-ms-expand{
	display:none;/*IE10以降*/
}
select:disabled{
	border:1px solid #DDDDDD;
	color:#CCCCCC;
	box-shadow:none;
}



/* チェックボックス（checkbox）の設定
------------------------------------*/
input[type="checkbox"]{
	display: none;
}
.checkboxLine {
	margin: 18px 0px 9px 0px;
	*zoom: 1;
}
.checkboxLine:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.checkbox-text{
	padding-top:4px;
	padding-left: 36px;
	position:relative;
	cursor: pointer;
	line-height: 160%;
}

/* 勤務時間選択の場合*/
.dutyHour .checkbox-text{
	margin-right: 36px;
	padding-top:1px;
	font-size:130%;
}


.checkboxLine .checkbox-text{
	float: left;
}


.checkbox-text::before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 26px;
	height: 26px;
	border: 1px solid #AAA;
	border-radius: 4px;
	background:#FFF;
}
input[type="checkbox"]:checked + .checkbox-text{
	font-weight:bold;
}
input[type="checkbox"]:checked + .checkbox-text::after{
	content: "";
	display: block;
	position: absolute;
	top: -5px;
	left: 5px;
	width: 12px;
	height: 28px;
	transform: rotate(40deg);
	border-bottom: 3px solid #F00;
	border-right: 3px solid #F00;
}


/* ラジオボタンの設定
------------------------------------*/
input[type="radio"]{
	opacity: 0;
	position: absolute;
	cursor:pointer;
}
input[type="radio"] + label{
	display:inline-block;
	padding:0 0 0 28px;
	line-height:24px;
	background:url(../images/radiobutton.svg) left 2px no-repeat;
	background-size:22px 156px;
	cursor:pointer;
	box-sizing: border-box;
}

input[type="radio"]:checked + label{
	background-position:left -65px;
	font-weight:bold;
}
input[type="radio"]:disabled{
	cursor:default;
}
input[type="radio"]:disabled + label{
	background-position:left -130px;
	color:#CCCCCC;
	cursor:default;
}

/*職種と勤務地*/
.jobsAndArea {
	margin: 14px 0px 0px 0px;
}
.jobsAndArea .groupLine {
	margin: 14px 0px 0px 0px;
}
	
/* 各入力項目（個別設定）
------------------------------------*/
/*都道府県*/
.inputAddressPrefecture {
	margin-top:20px;
	margin-bottom:20px;
}
/*市区町村*/
.inputAddressCity {
	margin-bottom:20px;
}

/*番地*/
.inputAddressCity2 {
	margin-bottom:20px;
}


@media screen and (max-width:640px){
/*都道府県*/
.inputAddressPrefecture {
	margin-top:20px;
	margin-bottom:40px;
	}
/*市区町村*/
.inputAddressCity {
	margin-bottom:40px;
	}
.inputAddressCity input {
	margin-bottom:6px;
	}
/*番地*/
.inputAddressCity2 {
	margin-bottom:40px;
	}
.inputAddressCity2 input {
	margin-bottom:6px;
	}
/*建物名*/
.inputAddressBuilding {
	margin-bottom:40px;
	}
.inputAddressBuilding input {
	margin-bottom:6px;
	}
/*電話番号*/
	input#tel {
	margin-bottom:6px;
	}
/*メールアドレス*/
	input#email {
	margin-bottom:6px;
	}
/*メールアドレス（確認）*/
	input#email_conf {
	margin-bottom:6px;
	}
}



/*「郵便番号から住所を選択」ボタン*/
input#getAddress[type="submit"]{
	cursor: pointer;
	border-radius: 3px;
	border: 1px solid #BBBBBB;
	font-size:90%;
	padding: 7px 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url(../images/select_arrow.png) right center no-repeat #DDD;
	background-size: 16px 8px;
	box-shadow: inset 0 -2px 0 rgba(0,0,0,0.1)
}
@media screen and (max-width:640px){
input#getAddress[type="submit"]{
	font-size:96%;
	}
}

@media screen and (max-width:640px){
input#getAddress[type="submit"]{
	font-size:96%;
	}
}

input#post_shots[type="file"] > input{
	display: none;
}


/* 希望勤務時間 */
.dutyHoursBox {
	margin-bottom: 15px;	
	border: 5px solid #D1E6FF;
	box-sizing: border-box;
	padding: 8px 8px;	
}

.dutyHoursBox > li {
	margin-bottom: 10px;
	padding-bottom: 10px;	
	box-sizing: border-box;
	border-bottom: 1px dotted #cccccc;
}

.dutyHoursBox > li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;	
	box-sizing: border-box;
	border-bottom: none;	
}

.titDutyHours  {
	color:#005CC1;
	margin-bottom: 2px;
	font-weight: bold;
}
.titDutyHours span  {
	color:#000000;
	font-weight: normal;
	margin-left: -3px;
}

/* 承認チェックボタンエリア */
.formPrivacyBox {
	margin:0px auto 30px auto;
	padding:15px 10px;
	text-align:center;
	background-color:#F5F5DC;
}
.formPrivacyBox input {
	text-align:center;
	background: #644C4C;
}
.formPrivacyBox .checkbox-text{
	padding-top:8px;
}



/*確認ボタン・送信ボタン
------------------------------------------------------------*/
/* サブミットの設定*/
.btnSubmit {
	margin: 0px auto;
	text-align: center;
}
@media screen and (max-width:640px){
.btnSubmit {
	margin: 0px auto 10% auto;
	}
}
.btnSubmit input[type="submit"], .btnSubmit input[type="button"]{
	border: none;
	cursor: pointer;
	display:inline-block;
	min-width: 26%;
	margin: 0px 2% 10px 2%;
	padding:12px 30px 12px 20px;
	font-size: 140%;
	font-weight: bold;
	color:#FFFFFF;
	border-radius:4px;
	position:relative;
	transition:0.2s;
	background: url(../images/btn_form_arrow_next.svg) right center no-repeat;
	background-size: 22px 16px;
}


@media screen and (max-width:640px){
.btnSubmit input[type="submit"], .btnSubmit input[type="button"]{
	min-width: 46%;
	margin: 0px 1%;
	}
}

/* サブミットの設定（ON/OFF ボタン）  */
input.btnSubmitOnOff[type="submit"], input.btnSubmitOnOff[type="button"]{
	background-color:#004098;
}
input.btnSubmitOnOff[type="submit"].disabled, input.btnSubmitOnOff[type="button"].disabled  {
	background-color:#AAAAAA;
}

/* サブミットの設定（アクティブ ボタン）  */
input.btnSubmitOn[type="submit"], input.btnSubmitOn[type="button"]{
	background-color:#004098;
}
input.btnSubmitOn:hover[type="submit"], input.btnSubmitOn:hover[type="button"]{
	background-color:#04BCB2;
}

/* サブミットの設定（オフ ボタン）  */
input.btnSubmitOff[type="submit"], input.btnSubmitOff[type="button"]{
	background: url(../images/btn_form_arrow_return.svg) left center no-repeat #AAAAAA;
	background-size: 22px 16px;
	}
input.btnSubmitOff:hover[type="submit"], input.btnSubmitOff:hover[type="button"]{
	background-color:#9E9E9E;
}



/*送信完了画面
------------------------------------------------------------*/
.finishBox {
	border: 6px solid #EDEDED;
	padding: 3%;
	text-align: center;
}
.titSendFinish {
	font-size: 200%;
	font-weight: bold;
	margin: 0px auto 10px auto;
}
.finishBox p {
	line-height: 160%;
}
.finishBox .btnToPartForm {
	margin: 20px auto 10px auto;
}
