input[type=text], input[type=email], input[type=url], input[type=tel], input[type=password] {
	width: 100%;
	padding: 2px 4px;
	background-color: #fff;
	border: 1px solid rgb(100 100 100 / 20%);
	border-radius: 4px;
}
input[type=email]:read-only {
	background-color: transparent;
}
input[type=checkbox], input[type=radio] {
	position: relative;
	top: 0;
	left: 0;
	width: 19px;
	height: 19px;
	margin-right: 4px;
	vertical-align: text-bottom;
	cursor: pointer;
	border: 2px solid #aaa;
	border-radius: 2px;
	background-color: #fff;
}
input[type=radio] {
	border-radius: 50%;
}
input[type=checkbox]:disabled, input[type=radio]:disabled {
	background-color: #aaa;
}
input[type=checkbox]:checked::before {
	content: '';
	position: absolute;
	top: 38%;
	left: 55%;
	display: block;
	width: 8px;
	height: 16px;
	border-right: 4px solid #ff4500;
	border-bottom: 4px solid #ff4500;
	transform: translate(-50%, -50%) rotate(45deg);
}
input[type=radio]:checked::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 12px;
	height: 12px;
	background-color: #ff4500;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}
input[type=number] {
	width: 70px;
	padding: 4px;
	border-radius: 4px;
	background-color: #fff;
	text-align: right;
}
input[type=number]:disabled {
	background-color: #ccc;
}
textarea {
	width: 100%;
	padding: 2px 4px;
	background-color: #fff;
	border: 1px solid rgb(100 100 100 / 20%);
	border-radius: 4px;
}
label {
	cursor: pointer;
}
::placeholder {
	color: #bbb;
}
.form_tbl {
	width: calc(100% + 2px);
	border-radius: 8px;
	border-collapse: separate;
	border-spacing: 1px;
	margin: 8px 0;
	overflow: hidden;
}
.form_tbl tr th {
	width: 100px;
	color: #fff;
	font-size: 12px;
	font-weight: normal;
	vertical-align: middle;
	background-color: var(--main-color);
	text-align: center;
}
.form_tbl tr td {
	padding: 8px 6px;
	background-color: var(--sub-color);
	font-size: 14px;
}
.form_tbl tr td .cap {
	font-size: 14px;
}
.form_tbl tr td .cap::before {
	content: '※';
}
.form_tbl tr td button.add {
	padding: 4px;
	border-radius: 4px;
	background-color: var(--main-color);
	color: #fff;
	font-size: 14px;
	line-height: 1;
}
.form_tbl tr td button.sub {
	padding: 4px;
	border-radius: 4px;
	background-color: #ff4500;
	color: #fff;
	font-size: 14px;
	line-height: 1;
}
.form_tbl tr td.in {
	padding: 6px 4px;
	text-align:left;
	font-size: 16px;
	transition: background-color .1s;
}
.form_tbl tr td.in .sele {
	background: #fff url('../img/icon_arrow_down.png') no-repeat right 4px top 5px;
	background-size: 16px 16px;
	padding-right: 22px;
	cursor: pointer;
}
.form_tbl tr td.in.zip input {
	width: 100px;
}
.form_tbl tr td.in.zip button {
	position: relative;
	top: 0;
	background-color: var(--main-color);
	color: #fff;
	padding: 2px 8px;
	font-size: 14px;
	border-radius: 4px;
	transition: top .1s;
}
.form_tbl tr td.in.zip button:hover {
	top: -1px;
}
.form_tbl tr td.in.pref input {
	max-width: 160px;
	background: #fff url('../img/icon_arrow_down.png') no-repeat right 4px top 5px;
	background-size: 16px 16px;
	padding-right: 22px;
	cursor: pointer;
}
.form_tbl tr td.in.play,
.form_tbl tr td.in.room {
	padding: 4px 6px;
}
.form_tbl tr td.in.room .box:not(:last-child) {
	margin-bottom: 9px;
}
.form_tbl tr td.in.play span,
.form_tbl tr td.in.room span {
    display: block;
    width: 100%;
    max-width: 400px;
}
.form_tbl tr td.in.play input,
.form_tbl tr td.in.room input {
	width: 100%;
	max-width: 500px;
	background: #fff url('../img/icon_arrow_down.png') no-repeat right 4px top 5px;
	background-size: 16px 16px;
	margin: 3px 0;
	padding-right: 22px;
	cursor: pointer;
}
.form_tbl tr td.in.play input.off,
.form_tbl tr td.in.room input.off {
    background-color: #ccc;
}
.form_tbl tr td.in.play input.men,
.form_tbl tr td.in.room input.men {
	max-width: 120px;
}
.form_tbl tr td.in input:hover:not(:disabled),
.form_tbl tr td.in.pref input:hover,
.form_tbl tr td.in textarea:hover {
	background-color: #f6f6f6;
}
.form_tbl tr.price th {
	background-color: #ff4500;
}
.form_tbl tr.price td span {
	color: #ff4500;
	font-size: 16px;
	font-weight: bold;
}
.form_tbl tr.point th {
	background-color: #ff4500;
}
.form_tbl tr.point td span {
	color: #ff4500;
	font-size: 16px;
	font-weight: bold;
}
.form_tbl tr.check td button {
	width: 70px;
	padding: 4px;
	border-radius: 4px;
	background-color: #ff4500;
	color: #fff;
	text-align: center;
}
.form_tbl tr.check td button:disabled {
	background-color: #ccc;
	color: #333;
}
.form_tbl tr.check td span {
	display: inline-block;
	margin: 2px 8px 2px 0;
	font-size: 14px;
}
.form_tbl tr.check td span.war {
	color: #ff4500;
}
.form_tbl tr.check td.in label {
	display: inline-flex;
	font-size: 14px;
	padding: 4px 0;
	line-height: 1.5;
}
.form_tbl tr.check td.in label input {
	flex-shrink: 0;
}
.form_tbl tr.check td.in label:hover input:not(:disabled) {
	border-color: #555;
}
#point_form .form_tbl tr.check td {
	background-color: #eee;
}
#point_form .form_tbl tr.check.on td {
	background-color: var(--sub-color);
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 520px) {
}
