@charset "UTF-8";


/* 検索箱tbl_box内 inputの後にlabelがあるパターン */
#check_area input[type=radio],
#check_area input[type=checkbox] {
	display: inline-block;
	margin-right: 6px;
}
#check_area input[type=radio] + label,
#check_area input[type=checkbox] + label {
	position: relative;
	display: inline-block;
	margin: 0 5px 0 12px;
	font-size: 14px;
	line-height: 30px;
	cursor: pointer;
}

#check_area input[disabled=disabled]+label {
	color: #bbb;
	cursor:default;
}

@media (min-width: 1px) {
	#check_area input[type=radio],
	#check_area input[type=checkbox] {
		display: none;
		margin: 0;
	}
	#check_area input[type=radio] + label,
	#check_area input[type=checkbox] + label {
		padding: 0 0 0 24px;
	}
	#check_area input[type=radio] + label::before,
	#check_area input[type=checkbox] + label::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		display: block;
		width: 18px;
		height: 18px;
		margin-top: -9px;
		background: #FFF;
	}
	#check_area input[type=radio] + label::before {
		border: 2px solid #ccc;
		border-radius: 30px;
	}
	#check_area input[type=checkbox] + label::before {
		border: 2px solid #ccc;
	}
	#check_area input[type=radio]:checked + label::after,
	#check_area input[type=checkbox]:checked + label::after {
		content: "";
		position: absolute;
		top: 50%;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		display: block;
	}
	#check_area input[type=radio]:checked + label::after {
		left: 5px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		background: #33c;
		border-radius: 20px;
	}
	#check_area input[type=checkbox]:checked + label::after {
		left: 3px;
		width: 16px;
		height: 8px;
		margin-top: -8px;
		border-left: 3px solid #33c;
		border-bottom: 3px solid #33c;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
}



/* table1内 inputのみパターン */
.table1 input[type="checkbox"]::-ms-check {
	border: none;
	color: #33c;
	background: #fff;
	width: 18px;
	height: 18px;
}
.table1 input[type="radio"]::-ms-check {
	width: 18px;
	height: 18px;
	border: none;
	color: #33c;
	background: #fff;
	-webkit-border-radius: 30px;
	border-radius: 30px;
}
.table1 input[type="radio"],
.table1 input[type="checkbox"] {
	border: 2px solid #ccc;
	background: #fff;
	position: relative;
	vertical-align: -8px;
	margin-right: 5px;
	margin-left: 5px;
	-webkit-appearance: none;
	-webkit-box-sizing: border-box;
	width: 18px;
	height: 18px;
	border-radius: 0;
	-moz-transform-origin: left center;
	-moz-transform: scale( 1.25 , 1.25 );
	top: -4px;
}

.table1 input[type="radio"] {
	border-radius: 30px;
}
.table1 input[type="radio"]:checked {
	border: 2px solid #ccc;
	background: #fff;
}
.table1 input[type="checkbox"]:checked {
	border: 2px solid #ccc;
	background: #fff;
}

.table1 input[type="radio"]:checked:before,
.table1 input[type="checkbox"]:checked:before {
	content: "";
	display: block;
	position: absolute;
}
.table1 input[type="radio"]:checked:before {
}

.table1 input[type="checkbox"]:checked:before {
	background: #33c;
	width: 8px;
	height: 3px;
	left: -1px;
	top: 9px;
	-webkit-transform: rotate(50deg);
	-webkit-transform-origin: right center;
}

.table1 input[type="radio"]:checked:after,
.table1 input[type="checkbox"]:checked:after {
	content: "";
	position: absolute;
	display: block;
	background: #33c;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.table1 input[type="radio"]:checked:after {
	left: 3px;
	top: 3px;
	width: 8px;
	height: 8px;
	background: #33c;
	border-radius: 20px;
}

.table1 input[type="checkbox"]:checked:after {
	display: block;
	position: absolute;
	background: #33c;
	content: "";
	width: 15px;
	height: 3px;
	left: 6px;
	top: 10px;
	-webkit-transform: rotate(-48deg);
	-webkit-transform-origin: left center;
}

