/* ラジオボタン */

.radio input[type="radio"] {
  margin: 0 -26px 0 0;
  padding: 0;
  border: 0;
  width: 26px;
  height: 26px;
  vertical-align: middle;
}
.radio label {
  padding: 7px 0 5px 32px;
  display: inline-block;
  /display:inline;
  /zoom:1;
  min-height: 14px;
  height: auto !important;
  height: 14px;
  vertical-align: middle;
  background: url(../images/radio_out.png) no-repeat 0 50%;
  cursor: pointer;
	margin-right: 10px;
}
.radio label:hover,
.radio label:focus {
  background: url(../images/radio_ov.png) no-repeat 0 50%;
}
.radio input:checked+label {
  background: url(../images/radio_ed.png) no-repeat 0 50%;
}
.radio input:checked+label:hover,
.radio input:checked+label:focus {
  background: url(../images/radio_ed_ov.png) no-repeat 0 50%;
}

.radio label.ed{
    background: url(../images/radio_ed.png) no-repeat scroll 0 50%;
}

.radio label.ov{
    background: url(../images/radio_ov.png) no-repeat scroll 0 50%;
}

.radio label.ed_ov {
    background: url(../images/radio_ed_ov.png) no-repeat scroll 0 50%;
}