@charset "UTF-8";


.radio-btns span {
  position: relative;
  padding-left: 30px;
  padding-left: 0;
  padding: -10px 0 0 0 ;
}
.radio-btns span.span-txt1 {
  position: relative;
  padding-left: 30px;
  padding-left: 10px;
  padding-left: 20px;
  color: #c00;
  font-weight: bold;
}
.radio-btns span.wpcf7-list-item-label {
  position: relative;
  top: -1px;
  top: -2px;
  vertical-align: middle;
  padding: 0 30px 0 36px;
  padding: 0 10px 0 25px;
  padding: 0 20px 0 0;
  margin: 0 ;
  font-size: 15px;
}
.radio-btns span.wpcf7-list-item {
  padding: 8px 0;
  padding: 0;
  margin: 0 ;
}







input[type=radio] {
/*  margin-right: 8px;*/
}

/* ラジオボタン */
.radio-btns input[type=radio] {
  display: none;
}

.radio-btns input[type=radio] + span::before {
  position: absolute;
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #ddd;
  left: 0;
  top: 0;
}

.radio-btns input[type=radio] + span::after {
  position: absolute;
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2ca5df;
  left: 9px;
  top: 9px;
  opacity: 0;
  transition: .3s;
}

.radio-btns input[type=radio]:checked + span::after {
 opacity: 1;
}




/***

チェックボックス

***/

input[type=checkbox] {
	position: relative;
	z-index:10;
	opacity: 0.6;
/*
	width: 20px;
	height: 20px;
	border: 4px solid #ddd;
	border-radius: 50%;
	display: block;
	background: #fff;
	
	left: 0;
	top: 0;
*/
}
.radio-btns .checkbox2 span.wpcf7-list-item-label {
	width: auto;
	position: relative;
	padding: 0 40px 0 0;
	padding: 0 40px 0 -20px;
	margin: 0;
	left: 4px;
	top: -2px;
	background: rgba(165,188,124,0.5);
	background: #fff;
	z-index:0;
}
/* チェックボックス */
/*
.radio-btns .checkbox2 span.wpcf7-list-item input[type=checkbox] {
  display: none;
}

.radio-btns .checkbox2 span.wpcf7-list-item input[type=checkbox] + span::before {
  position: absolute;
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #ddd;
  left: 0;
  top: 0;
}

.radio-btns .checkbox2 span.wpcf7-list-item input[type=checkbox] + span::after {
  position: absolute;
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2ca5df;
  left: 9px;
  top: 9px;
  opacity: 0;
  transition: .3s;
}

.radio-btns .checkbox2 span.wpcf7-list-item input[type=checkbox]:checked + span::after {
 opacity: 1;
}
*/


/* チェックボックス01 
input[type=checkbox] {
    display: none;
}
.checkbox2 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.checkbox2::before {
    background: #fff;
    border: 1px solid #231815;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.checkbox2::after {
    border-right: 3px solid #ed7a9c;
    border-bottom: 3px solid #ed7a9c;
    content: '';
    display: block;
    height: 9px;
    left: 10px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 5px;
}
input[type=checkbox]:checked + .checkbox2::after {
    opacity: 1;
}
*/




