

.request-contact__inner{
    max-width: 1070px;
    width: calc(100% - 30px);
    margin: 0 auto;
}


#formWrap {
margin-bottom: 120px;
}

#formWrap .formstep_con ul{
	display: flex;
	list-style: none;
	margin: 0 0 40px;
	padding: 0;
}

#formWrap .formstep_con ul li{
	position: relative;
	display: flex;
	flex-direction: column;
    justify-content: center;
	width: calc((100% / 3 ) - 20px);
	height: 80px;
	margin-right: 30px;
	background-color: #cccccc;
	padding: 10px 20px;
	font-size: 20px;
}

#formWrap .formstep_con ul li::after{
   content: "";
    position: absolute;
    top: 0;
    right: -70px;
    border: 40px solid transparent;
    border-left: 30px solid #cccccc;
}

#formWrap .formstep_con ul li.current{
	background-color: #003366;
	color: #fff;
}

#formWrap .formstep_con ul li.current::after{
    border-left: 30px solid #003366;
}


#formWrap .formstep_con ul li span{
	display: block;
	font-size: 16px;
	letter-spacing: 0.2em;
}

#formWrap p.form_text{
	margin-bottom: 40px;
}

#formWrap h4{
	font-size: 24px;
	margin-bottom: 20px;
}





table.formTable{
	width:100%;
	font-size: 18px;
	margin:0 auto;
	border-collapse:separate;
	border-spacing:0 30px;
	font-family: "Noto Serif JP", serif;
}

table.formTable td,table.formTable th{
	font-weight: normal;
	padding:10px 10px 10px 30px;
	vertical-align: top;
}

table.formTable th{
	width: 30%;
	min-width: 300px;
	border-left: 10px solid #ccc;
}

table.formTable th div{
	display: flex;
	justify-content: space-between;
    flex-direction: row;
	align-items: flex-start;
}

table.formTable th span{
	display: inline-block;
	padding: 5px 15px;
	background-color: #ff6633;
	color: #fff;
	font-size: 14px;
	border-radius: 5px;
}

table.formTable td input[type="text"],
table.formTable td select{
	padding:8px;
	border: 1px solid #666666;
	border-radius: 5px;
}

table.formTable td p.form_caution{
	color: #999999;
	font-size: 16px;
	margin-top: 10px;
}


table.formTable td div.name {
    display: flex;
    justify-content: space-between;
}

table.formTable td div.name input{
	width: calc((100% / 2 ) - 10px);
}


table.formTable td input.form_w100{
	width: 100%;
}

table.formTable td select.form_w8{
	width: 8em;
}

table.formTable td select.form_w4{
	width: 4em;
}

table.formTable td input[type=date]{
	-moz-transform:scale(1.2);
	-webkit-transform:scale(1.2);
	transform:scale(1.2);
	padding: 5px 10px;
	margin:5px 5px 5px 20px;
	width: 300px;
}


table.formTable td .form_check{
	margin-bottom: 20px;
}
table.formTable td .form_check p.check_title{
	font-size: 14px;
	border-radius: 5px;
	color: #fff;
	background-color: #333333;
	padding: 3px 1em;
	margin-bottom: 10px;
}

table.formTable td input[type=checkbox]{
	width:20px;
	height:20px;
	-moz-transform:scale(1.2);
	-webkit-transform:scale(1.2);
	transform:scale(1.2);
	margin:5px 5px 5px 20px;
}

table.formTable td .form_check span{
	display: inline-block;
}



#formWrap .form_company{
	display: flex;	
	justify-content: space-between;
	margin-bottom: 80px;
}

#formWrap .form_company p{
	font-size: 16px;
	width: calc((100% / 2) - 20px);
}

#formWrap .form_company p a {
	color: #007bff;
}	

#formWrap .form_submit_con{
	width: 50%;
	margin: 0 auto;
	max-width: 600px;
	display: flex;
	justify-content: center;
	text-align: center;
}


#formWrap .form_submit_con input[type=submit].form_submit{
	text-align: center;
	font-size: 18px;
	padding: 1.5em 5em;
	margin: 0 10px;
	background-color: #003366;
	border: 1px solid #003366;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
transition: all .3s;
}

#formWrap .form_submit_con input[type=submit].form_submit:hover{
	background-color: #ff6633;
	border: 1px solid #ff6633;
transition: all .3s;
}

#formWrap .form_submit_con input[type=button].form_back{
	text-align: center;
	font-size: 18px;
	padding: 1.5em 2em;
	margin: 0 10px;
	background-color: #ccc;
	border: 1px solid #ccc;
	border-radius: 5px;
	color: #000;
	cursor: pointer;
transition: all .3s;
}


#formWrap .form_submit_con input[type=button].form_back:hover{
	background-color: #aaa;
	border: 1px solid #aaa;
transition: all .3s;
}

#ui-datepicker-div{
	font-size: 200%!important;
}


@media screen and (max-width:769px) {

#formWrap {
	width:95%;
	margin:0 auto 120px;
}
	
table.formTable th, table.formTable td {
    padding: 10px 10px 10px 20px;
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
	
table.formTable td {
	border-left: 10px solid #ccc;
}	
	
table.formTable th div {
    justify-content: flex-start;
}	
table.formTable th div span{
	margin-left: 10px;
}		
	
table.formTable td div.name input{
	width:90%;
}
	
	
form input[type="text"], form textarea {
	width:90%;
	padding:5px;
	font-size:110%;
	display:block;
}
	
form input[type="submit"], form input[type="reset"], form input[type="button"] {
	display:block;
	width:100%;
}
	
	
	
table.formTable td input[type=checkbox] {
    margin: 5px 5px 5px 10px;
}	
table.formTable td .form_check {
	font-size: 83%;
}
	
table.formTable td .form_check span{
	display: block;
	margin-bottom: 5px;
}	
	
	
#formWrap .form_company {
    flex-direction: column;
    margin-bottom: 40px;
}	
	
#formWrap .form_company p {
    font-size: 14px;
    width: 100%;
	margin-bottom: 20px;
}	
	
	
	
	
	
#formWrap .form_submit_con {
    width: 100%;
}	
	
#formWrap .form_submit_con input[type=submit].form_submit{
	padding: 1.0em 3em;
	}
	
form .tel{
	display: flex;
	align-items: center
}	
	
form .tel input[type="text"] {
	width:100%;
	padding:5px;
	/*margin: 0 10px;
	display:block;*/
}	
	

}


@media screen and (max-width:480px) {


#formWrap .formstep_con ul li{
	padding: 10px 10px;
	margin-right: 20px;
	font-size: 16px;
}	

#formWrap .formstep_con ul li::after{
    right: -60px;
    border-left: 20px solid #cccccc;
}
#formWrap .formstep_con ul li.current::after{
    border-left: 20px solid #003366;
}	
	

#formWrap .form_submit_con input[type=submit].form_submit,
#formWrap .form_submit_con input[type=button].form_back{
	font-size: 16px;
	padding: 1.5em 1em;
}	
	
	
}	

	