body{
	overflow-x: hidden;
}
.form-field{
	border:none;
	clear: both;
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	margin-bottom: 20px;
	padding:0;
	box-sizing: border-box;
}
::placeholder{
	font-family: "Noto Sans JP", sans-serif;
	color:#9ca3af;
}
.form{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.form-field.hidden{
	padding:0;
	margin:0;
	height:0;
}
.error.no-label,.errors,.invalid{
	font-size: 12px;
    color: #c4514c;
    font-weight:600;
}

/*
.form-field.first_name,.form-field.last_name,
.form-field.Department_select,.form-field.jobtitle_select{
	width: 48%;
	
}*/
.form-field.first_name,.form-field.last_name{
	width: 48%;
}
@media screen and (max-width: 648px) {
	.form-field{
		margin-bottom: 16px;
	}
	/*
	.form-field.first_name,.form-field.last_name,
	.form-field.Department_select,.form-field.jobtitle_select{
		width: 45%;
	
	}*/
	.form-field.first_name,.form-field.last_name{
		width: 45%;
	}
}

.form-field input[type='text'],
.form-field input[type='email'],
.form-field input[type='number'],
.form-field select{
	width: 100% !important;
	height: 52px;
	border:1px solid #000;
	background: #F1F4F8;
	padding: 0 16px;
	box-sizing: border-box;
	font-size:16px;
	font-family: "Noto Sans JP", sans-serif;
	box-sizing: border-box;
}
@media screen and (max-width: 338px) {
	.form-field{
		padding-left:0;
		padding-right:0;
		padding-bottom:0;
		font-size:13px;
	}
}
.form-field select{
	appearance:none;
	background: #f3f6f9 url(../../wp-content/themes/hubble/v2/assets/images/select_arrow.svg) no-repeat right 10px center / 16px auto;
}
.form-field .input-wrap span.value{
	display: flex;
	gap:1rem;
	flex-direction: column;
}
.form-field input[type='radio']{
	display: none;
}

.form-field input[type='radio'] + label{
	width: 100%;
    padding-left: 32px;
    display: block;
    position: relative;
    font-weight: normal;
}

.form-field input[type='radio'] + label::before{
	content: "";
    width: 24px;
    height: 24px;
    border: 2px solid #D9DFEA;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: text-top;
    position: absolute;
    top: 0;
    left: 0;
}
.form-field  input[type="radio"]:checked + label::after {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #3C78C8;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 8px;
}
.form-field textarea{
	width: 100% !important;
    height: 160px;
    border-radius: 5px;
    background: #f3f6f9;
    border: 1px solid #d9dfea;
    padding: 1rem;
	box-sizing: border-box;
	font-size:16px;
	font-family: "Noto Sans JP", sans-serif;
	box-sizing: border-box;
}
.form-field .field-label{
	margin-bottom:14px;
	display: block;
}
.form-required{
	color:#c4514c;
	padding-left:5px;
}
.submit{
	width: 100%;
    max-width: 400px;
    
	padding-bottom:0px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin:auto;
}
.submit input[type='submit']{
	max-width: 350px;
	width: 100%;
    height:108px;
	border:none;
    border-radius:60px;
    background: #000;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.06em;
    line-height: 24px;
    text-align: center;
    color: #fff;
    margin: 40px auto 0 auto;
	
	cursor: pointer;
	box-sizing: border-box;

}
@media screen and (max-width: 338px) {
	.submit input[type='submit']{
		height:80px;
		font-size:16px;
	}
}