@charset "UTF-8";
/* form
-------------------------------------------------------------- */
/* 共通 */
select {
  padding: 0 5px;
  border: 1px solid #d1d1d1;
  background: #fff;
}

.choice li, .choice div {
  position: relative;
}

.choice li a:hover, .choice div a:hover {
  color: #ef6c00;
}

.choice label {
  display: block;
  padding: 5px 10px 5px 23px;
  cursor: pointer;
}

.choice input[type="radio"],
.choice input[type="checkbox"] {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  cursor: pointer;
}

.choice input[type="radio"]:checked + label,
.choice input[type="checkbox"]:checked + label {
  background: #fff9c4;
}

.choice input[type="radio"]:disabled,
.choice input[type="checkbox"]:disabled {
  cursor: default !important;
}

.choice input[type="radio"]:disabled + label,
.choice input[type="checkbox"]:disabled + label {
  color: #bdbdbd;
  cursor: default !important;
}

.choice input[type="radio"]:disabled + label a, .choice input[type="radio"]:disabled + label b,
.choice input[type="checkbox"]:disabled + label a,
.choice input[type="checkbox"]:disabled + label b {
  color: #bdbdbd;
  font-weight: normal;
  pointer-events: none;
}

.choice input[type="radio"]:disabled + label a:hover, .choice input[type="radio"]:disabled + label b:hover,
.choice input[type="checkbox"]:disabled + label a:hover,
.choice input[type="checkbox"]:disabled + label b:hover {
  text-decoration: none;
}

.choice_title {
  position: relative;
  background: #fafafa;
}

.choice_title label {
  padding: 13px 52px;
}

.choice_title input[type="radio"],
.choice_title input[type="checkbox"] {
  left: 30px;
}
