
#progress ul {
	width: 100%;
	display: flex;
	overflow: hidden;
	margin-bottom: 30px;
}
#progress li:nth-child(1) {
	z-index: 3;
}
#progress li:nth-child(2) {
	z-index: 2;
}
#progress li:nth-child(3) {
	z-index: 1;
}

#progress li {
	flex: 1;
	text-align: center;
	height: 70px;
	background-color: #F4F4F4;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	position: relative;
	color: #007DC5;
	line-height: 1.5;
}
#progress div {
	font-weight: bold;
	z-index: 1;
	padding-left: 40px;
}
#progress div em {
	font-size: 16px;
	font-weight: normal;
}

#progress li:not(:last-child)::after {
	background-color: #F4F4F4;
	width: 70px;
	height: 70px;
	content: '';
	position: absolute;
	right: -35px;
	transform: rotate(45deg);
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	z-index: 0;
}

#progress li.now {
	background-color: #CCE5F3;
	color: #292929;

}
#progress li:not(:last-child).now::after {
	background-color: #CCE5F3;
}

h2 {
	font-size: 24px;
	margin-bottom: 30px;
	border-left: 5px solid #0256A7;
	padding: 3px 19px;
	color: #0256A7;
}

h3 {
	font-size: 16px;
	margin-bottom: 30px;
}

table.input_table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 1px;

}

table.input_table th {
	width: 28%;
	background: #CCE5F3;
	padding: 20px 21px;
	position: relative;
	vertical-align: middle;
	text-align: left;
}
table.input_table th span {
	font-size: 11px;
}

table.input_table th div.required {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
	padding: 4px 7px;
	background: #E83636;
	color: #fff;
	font-size: 12px;
	height: 20px;
}

table.input_table td {
	background: #F4F4F4;
	padding: 20px 21px 9px;
	vertical-align: middle;
	position: relative;
	word-break : break-all;
}

table.input_table td>div {
	margin-bottom: 11px;
}
table.input_table td>span {
	font-size: 11px;
	margin-left: 10px;
}

input[type="text"] {
	padding: 10px 20px;
	border-radius: 5px;
	border: 1px solid #D6D6D6;
	line-height: 17px;
	vertical-align: middle;
	margin-bottom: 8px;
	margin-right: 10px;
}
input::placeholder {
	color: #898989;
}
input:-ms-input-placeholder {
	color: #898989;
}
input::-ms-input-placeholder {
	color: #898989;
}

textarea {
	width: 500px;
	height: 200px;
	border-radius: 5px;
	border: 1px solid #D6D6D6;
}

.error {
	font-size: 11px;
	color: #E83636;
	margin-bottom: 8px;
}

.input350 {
	width: 350px;
}
.input300 {
	width: 300px;
}
.input240 {
	width: 240px;
}
.input170 {
	width: 170px;
}
.input120 {
	width: 120px;
}
.input100 {
	width: 100px;
}
.input70 {
	width: 70px;
}

label {
	position: relative;
}
input[type="radio"] {
	display: none;
}
input[type="radio"] + span {
	padding-left: 30px;
}

input[type="radio"] + span::before {
	position: absolute;
	top: -2px;
	left: 0;
	content: '';
	width: 18px;
	height: 18px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #D6D6D6;
}
input[type="radio"]:checked + span::after {
	position: absolute;
	top: 3px;
	left: 5px;
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 10px;
	background: #292929;
}

.input_table button {
	line-height: 17px;
	padding: 10px 30px;
	border-radius: 5px;
	border: 1px solid #007DC5;
	color: #fff;
	background: #007DC5;
	vertical-align: middle;
}

dl {
	display: table;
	margin-top: 15px;
}
dt {
	width: 150px;
	display: table-cell;
	vertical-align: middle;
}
dd {
	display: table-cell;
	vertical-align: middle;
}
dd span{
	font-size: 11px;
}

#confirm_description {
	padding-top: 30px;
	padding-bottom: 20px;
}

#confirm_text {
	padding: 30px;
	line-height: 1.5;
	border: 1px solid #D6D6D6;
	background: #F4F4F4;
}

#confirm_check {
	padding: 30px 0 60px;
	text-align: center;
}
input[type="checkbox"] {
	display: none;
}
input[type="checkbox"] + span {
	padding-left: 38px;
}

input[type="checkbox"] + span::before {
	position: absolute;
	top: -5px;
	left: 0;
	content: '';
	width: 24px;
	height: 24px;
	border-radius: 3px;
	background: #fff;
	border: 1px solid #D6D6D6;
}
input[type="checkbox"]:checked + span::after {
	position: absolute;
	top: -1px;
	left: 9px;
	content: '';
	width: 5px;
	height: 11px;
	border-right: 4px solid #E83636;
	border-bottom: 4px solid #E83636;
	transform: rotate(45deg);
}

#submit_area {
	margin-bottom: 100px;
	text-align: center;
}


button[type="submit"] {
	padding: 15px 60px;
	color: #fff;
	background: #007DC5;
	border: none;
	width: 260px;
}

button.cancel {
	padding: 15px 60px;
	color: #fff;
	background: #898989;
	border: none;
	margin-right: 30px;
	width: 260px;
}

label {
	cursor: pointer;
}

.input_block {
	margin-bottom: 60px;
}



#form_description {
	margin-bottom: 30px;
	line-height: 1.9;
}

#form_information>div {
	padding: 30px;
	margin-bottom: 40px;
	background: #F0F7FC;
	line-height: 1.9;
}

#form_send_text {
	margin-bottom: 200px;
	line-height: 1.9;
}
#form_send_back {
	text-align: center;
	margin-bottom: 115px;
}
#form_send_back a {
	padding: 15px 60px;
	color: #fff;
	background: #007DC5;
	border: none;
	width: 260px;
}



@media screen and (max-width: 765px) {
	#progress {
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	#progress li {
		height: 60px;
	}
	#progress div {
		padding-left: 20px;
		font-size: 12px;
	}
	#progress div em {
		font-size: 14px;
		font-weight: normal;
	}

	#progress li:not(:last-child)::after {
		right: -30px;
		transform: scaleX(.5) rotate(45deg);
		border-right: 3px solid #fff;
		border-top: 3px solid #fff;
	}

	h2 {
		font-size: 18px;
	}

	table.input_table th {
		display: block;
		width: 100%;
		padding: 10px 15px;
	}

	table.input_table th div.required {
		right: 15px;
	}

	table.input_table td {
		display: block;
		width: 100%;
		padding: 15px 15px 5px;
	}

	table.input_table td>div {
		margin-bottom: 10px;
	}

	input[type="text"] {
		padding: 15px 20px;
	}

	textarea {
		width: 100%;
	}


	.input350, .input300, .input240 {
		width: 100%;
	}
	.input170 {
		width: 45%;
	}
	.input120 {
		width: 35%;
	}
	.input100 {
		width: 30%;
	}
	.input70 {
		width: 17%;
	}


	dl {
		display: block;
	}
	dt {
		width: 100%;
		display: block;
		margin-bottom: 10px;
	}
	dd {
		display: block;
	}

	#form_send_back {
		margin-bottom: 60px;
	}


	#submit_area {
		margin-bottom: 60px;
	}

	button[type="submit"] {
		display: block;
		margin: 0 auto;
	}

	button.cancel {
		display: block;
		margin: 0 auto 20px;
	}

	#form_send_text {
		margin-bottom: 60px;
	}
}