@import url('https://fonts.googleapis.com/css?family=Lato');

.radio_org ul {
  list-style: none;
  margin: 0;
  padding: 0;
    overflow: auto;
		z-index:1 !important;
}

.radio_org {
	width:100%;
	height:auto;
        -ms-overflow-style: none;    /* IE, Edge 対応 */
        scrollbar-width: none;       /* Firefox 対応 */
	background-color:red !important;
}
.radio_org::-webkit-scrollbar {  /* Chrome, Safari 対応 */
        display:none;
}
.radio_org ul li{
  color: gray;
  display: block;
  position: relative;
  float: left;
  width: 100%;
  height: 85px;
    border-bottom: 1px solid #333;
}

.radio_org ul li input[type=radio]{
  position: absolute;
  visibility: hidden;
}

.radio_org ul li label{
  display: block;
  position: relative;
  font-weight: normal;
  font-size: 1.1em;
  padding: 0px 25px 25px 80px;
  margin: 10px auto;
  height: 30px;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: all 0.1s linear;
}

.radio_org ul li:hover label{
    <!--color: #333333;//-->
}

.radio_org ul li .check{
  display: block;
  position: absolute;
  border: 5px solid #AAAAAA;
  border-radius: 100%;
  height: 30px;
  width: 30px;
  top: 12px;
  left: 22px;
    z-index: 1;
    transition: border 0.1s linear;
    -webkit-transition: border .25s linear;
}

.radio_org ul li:hover .check {
  <!--border: 5px solid #333333;//-->
	background-color: #EEEEEE;
}

.radio_org ul li .check::before {
  display: block;
  position: absolute;
    content: '';
  border-radius: 100%;
  height: 22px;
  width: 22px;
  top: -1px;
    left: -1px;
  margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}

input[type=radio]:checked ~ .check {
  border: 5px solid black;
}

input[type=radio]:checked ~ .check::before{
  background: black;
}

input[type=radio]:checked ~ label{
  color: black;
	  font-weight: bold;
}




@media screen and (max-width: 640px) { 
	.radio_org ul li label{
	  font-size: 1.0em;
	  padding: 10px 10px 0px 30px;
	  margin: 0px auto;
	  height: 20px;
	  z-index: 2;
	  cursor: pointer;
	  -webkit-transition: all 0.15s linear;
	}

	.radio_org ul li .check{
	  display: block;
	  position: absolute;
	  border: 5px solid #AAAAAA;
	  border-radius: 100%;
	  height: 20px;
	  width: 20px;
	  top: 10px;
	  left: 0px;
	    z-index: 1;
	    transition: border .25s linear;
	    -webkit-transition: border .25s linear;
	}

	.radio_org ul li .check::before {
	  height: 15px;
	  width: 15px;
	  top: -4px;
	    left: -4px;
	  margin: auto;
	}

}
