@charset "utf-8";
/* CSS Document */
table, table, tr, td { margin: 0; padding: 0; border-spacing: 0; }
table {
  table-layout: fixed;
width: 100%;
}
.p-normal tr {
	display: inline-block;
	width: calc(50% - 4px);
	padding-top: 4px;
	padding-bottom: 6px;
	vertical-align: top;
}
.p-normal tr td {
	display: block;
	width: 100%;
}
.p-normal table tr:nth-child(2n+0) {
	padding-left: 4px;
}
.p-normal table tr:nth-child(2n+1) {
	padding-right: 4px;
}
input[type=radio], input[type=checkbox] {
  display: none;
}
.radio_label, .checkbox_label {
  width: 100%;
  background-color: rgba(254, 248, 237, 0.65);
  box-sizing: border-box;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
  -webkit-transition: background-color 0.1s linear;
  transition: background-color 0.1s linear;
  -webkit-transition: border 0.1s linear;
  transition: border 0.1s linear;
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 6px 8px 6px 34px;
  border-radius: 2px;
  vertical-align: middle;
  border: solid 1px #d9b63b;
  font-weight: bold;
  color: #d8b53b;
	-webkit-box-shadow: 0 3px rgba(0, 0, 0, 0.25);
	   -moz-box-shadow: 0 3px rgba(0, 0, 0, 0.25);
	    -ms-box-shadow: 0 3px rgba(0, 0, 0, 0.25);
	     -o-box-shadow: 0 3px rgba(0, 0, 0, 0.25);
	        box-shadow: 0 3px rgba(0, 0, 0, 0.25);
}
.radio_label img, .checkbox_label img { display: block; margin: 0 auto 4px auto; }
.radio_label:after, .checkbox_label:after {
  position: absolute;
  top: 18px;
  left: 8px;
  display: block;
  margin-top: -10px;
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  background-color: #fff;
  content: '';
}
.radio_label:after { border-radius: 50%; }
.checkbox_label:after { border-radius: 0; }
.radio_label:before {
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
  position: absolute;
  top: 18px;
  left: 13px;
  display: block;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ee4762;
  content: '';
  opacity: 0;
  z-index: 99;
}
input[type=radio]:checked + .radio_label:before {
  opacity: 1;
}
.checkbox_label:before {
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
  position: absolute;
  top: 12px;
  left: 12px;
  display: block;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 3px solid #ee4762;
  border-bottom: 3px solid #ee4762;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 99;
}
input[type=checkbox]:checked + .checkbox_label:before {
  opacity: 1;
}
input[type=radio]:checked + .radio_label,
input[type=checkbox]:checked + .checkbox_label {
  background-color: rgba(192,121,152, .8);
  color: #fff;
  font-weight: bold;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
  -webkit-transition: background-color 0.1s linear;
  transition: background-color 0.1s linear;
  -webkit-transition: border 0.1s linear;
  transition: border 0.1s linear;
}