@charset "utf-8";
/* CSS Document */

input[type=radio], input[type=checkbox] {
  display: none;
}

.radio, .checkbox {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	margin: 0 20px 7px 0;
	padding-top: 4px;
	padding-left: 50px;
	vertical-align: middle;
	cursor: pointer;
	color: #FFF;
	border-radius: 6px;
}

.radio:hover, .checkbox:hover {
	color: #FFF;
	font-family: 'Noto Sans Japanese', serif;
}
.radio:hover:after, .checkbox:hover:after {
	border-color: #FFF;
	color: #FFF000;
}
.radio:after, .checkbox:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #FFF;
  content: '';
  border-radius: 6px;
}

.radio:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 20px;
  display: block;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FFF;
  content: '';
  opacity: 0;
}
input[type=radio]:checked + .radio:before {
  opacity: 1;
}

.checkbox:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 21px;
  display: block;
  margin-top: -7px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #FFF;
  border-bottom: 3px solid #FFF;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
input[type=checkbox]:checked + .checkbox:before {
  opacity: 1;
}


select {
	border: #fff solid 1px;
	color: #FFF;
	font-family: 'Noto Sans Japanese', serif;
	width: 90px;
	font-size: 24px;
	text-align: center;
	padding-left: 20px;
}

option {
	border: 1px solid #ccc;
	font-weight: normal;
	color: #FFF;
	text-align: center;
}

option[selected] {
	color: #FFF;
	text-align: center;
	width: 90px;
}

