#formbase {
	position: relative;
}
.formbox {
	position: relative;
	max-width: 895px;
	margin: 0 auto;
	padding-top: 40px;
	margin-top: -40px;
}
#formbox01 {
	display: block;
}
#formbox02, #formbox03 {
	display: none;
}
.formcom01 {
	margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
	.formbox {
	}
	.formcom01 {
		margin-bottom: 40px;
	}
}


.formtable {
	position: relative;
	text-align: left;
}
.fttr {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 45px;
	font-size: 16px;
	line-height: 1.75;
}
.cellname {
	flex: 0 0 190px;
	margin-right: 40px;
	margin-top: 7px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	letter-spacing: 0.05em;
}
.required {
	margin-left: 1em;
	padding: 3px 7px;
	color: #fff;
	background: #e40012;
	font-size: 13px;
	line-height: 1;
	letter-spacing: 0.05em;
}
.required.req_hidden {
	display: none;
}
.cellvalue {
	flex-grow: 1;
	display: block;
	position: relative;
}
#formbox02 .cellvalue div {
	min-height: 30px;
}
.formbox input[type=text], .formbox textarea {
	display: inline-block;
	box-sizing: border-box;
	width: 100%;
	padding: 11px;
	border-radius: 4px;
	background : #f1f1f1;
	border: 0;
	font-size: 16px;
	letter-spacing: 0.1em;
	vertical-align: top;
}
@media only screen and (max-width: 1024px) {
	.fttr {
		display: block;
		padding-bottom: 10px;
	}
	.cellname {
		margin-right: 0;
		margin-bottom: 10px;
	}
}

.formbox .selbox {
	display: inline-block;
	position: relative;
	width: auto;
	height: 38px;
	background: linear-gradient(#F9F9F9, #DDDDDD);
	border-radius: 6px;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
.formbox select {
	display: block;
	position: relative;
	-webkit-appearance: none;
	appearance: none;
	width: calc(100% - 13px - 13px);
	height: 38px;
	padding: 4px 24px 4px 12px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	line-height: 24px;
	background: transparent;
	border-radius: 6px;
	border: solid 1px transparent;
	cursor: pointer;
}
.formbox .selbox::before {
	content: '';
	display: block;
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: 12px;
	margin: auto;
	width: 0px;
	height: 0px;
	border-left: solid 8px transparent;
	border-right: solid 8px transparent;
	border-top: solid 8px #000000;
}
.formbox select.shortvalue {
	width: 160px;
}
.cellvalue select::-ms-expand {
	display: none;
}
.formbox input[type=radio] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	position: relative;
	margin: 5px 5px 7px 0px;
	width: 20px;
	height: 20px;
	background-color: #F7F7F7;
	border: solid 1px #999999;
	border-radius: 50%;
	line-height: 26px;
	vertical-align: middle;
	box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}
.formbox label {
	font-size: 16px;
	line-height: 38px;
	cursor: pointer;
}
.formbox input[type=radio]:checked {
	background-color: transparent;
	border: solid 2px #666666;
	box-shadow: none;
}
.formbox input[type=radio]:checked::after {
	content: '';
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	width: 0px;
	height: 0px;
	margin: auto;
	border-radius: 50%;
	border: solid 5px #666666;
}
.formbox input[type=radio]:disabled {
	opacity: 0.3;
	cursor: default;
}
.formbox input[type=checkbox] {
	display: inline-block;
	position: relative;
	vertical-align: middle;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	margin: 5px 5px 7px 0px;
	padding: 8px;
	/*background: #EEEEEE;*/
	background-color: #F7F7F7;
	border: solid 1px #999999;
	box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}
.formbox input[type=checkbox]::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.formbox input[type=checkbox]:checked {
	background-color: transparent;
	box-shadow: none;
}
.formbox input[type=checkbox]:checked::after {
	content: '';
	display: block;
	position: absolute;
	left: -20px;
	top: -22px;
	right: -22px;
	bottom: -8px;
	width: 18px;
	height: 10px;
	margin: auto;
	border-bottom: solid 4px #666666;
	border-left: solid 5px #666666;
	transform-origin: 50% 50%;
	transform: rotate(-45deg) skewY(-12deg);
}
.longvalue {
}
@media only screen and (max-width: 1024px) {
	.formbox .selbox {
		height: 42px;
		border-radius: 8px;
	}
	.formbox select {
		height: 42px;
		font-size: 18px;
		line-height: 28px;
		border-radius: 8px;
	}
	.formbox .selbox::before {
		right: 14px;
		border-left-width: 10px;
		border-right-width: 10px;
		border-top-width: 10px;
	}
	.formbox select.shortvalue {
		width: 180px;
	}
	.formbox input[type=radio] {
		width: 24px;
		height: 24px;
		margin-top: 3px;
		margin-right: 6px;
		line-height: 28px;
	}
	.formbox label {
		font-size: 18px;
		line-height: 28px;
	}
	.formbox input[type=radio]:checked {}
	.formbox input[type=radio]:checked::after {
		border-width: 6px;
	}
	.formbox input[type=checkbox] {
		width: 24px;
		height: 24px;
		margin-top: 3px;
		margin-right: 6px;
		line-height: 80px;
	}
	.formbox input[type=checkbox]:checked::after {
		left: -24px;
		top: -28px;
		right: -24px;
		bottom: -10px;
		width: 22px;
		height: 14px;
		border-bottom-width: 5px;
		border-left-width: 6px;
	}
	.longvalue {
	}

}
.formbtnbox {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	position: relative;
	margin-top: 48px;
	text-align: center;
}
.formbtn {
	display: inline-block;
	position: relative;
	max-width: 318px;
	width: 100%;
	padding: 20px;
	border-radius: 40px;
	background: #e40012;
	color: #fff;
	font-weight: 500;
	letter-spacing: 0.1em;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
	cursor: pointer;
}
.formbtn:hover {
	opacity: 0.4;
}
#confirmbtn {
	/* background-color: #D57E3C; */
}
#backbtn {
	/* background-color: #888; */
}
#sendbtn {
	/* margin-left: 12px; */
	/* background-color: #D57E3C; */
}
@media only screen and (max-width: 1024px) {
	.formbtn {
		display: block;
		width: 100%;
		padding: 15px;
		font-size: 15px;
	}
}
