/*以下チェックボックス*/
input[type="checkbox"] { display: none; }

input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding: 0 30px 0 26px;
  margin-bottom: 16px;
  color: #595959; font-size: 15px; font-weight: 700;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input[type="checkbox"] + label:last-child { margin-bottom: 0; }

input[type="checkbox"] + label:before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid #6fba2c;
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 3.5px;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked + label:before {
  width: 8px;
  top: 0;
  left: 4px;
  border-radius: 0;
  background-color: transparent;
  border: 1.5px solid #6fba2c;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}


/*以下ラジオボタン*/
input[type="radio"]{
  display: none;
}
.radio{
  color: #595959; font-size: 15px; font-weight: 700;
  margin: 0 30px 0 0;
  padding: 0 0 0 24px;
  position: relative;
}
.radio::before{
  background: white;
  border: 1px solid #6fba2c;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 16px;
  height: 16px;
}
input[type="radio"]:checked + .radio::after{
  background-color: #6fba2c;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 4px;
  width: 10px;
  height: 10px;
}
/* Safari */
_::-webkit-full-page-media, _:future, :root .radio::before{ top: -1px; }
_::-webkit-full-page-media, _:future, :root input[type="radio"]:checked + .radio::after{ top: 3px; }


/*以下セレクト*/
.cp_ipselect01 {
overflow: hidden; width: 110px; margin: 0 16px 0 0; }
.cp_ipselect01 select {
width: 110px;
0-cursor: pointer;
text-overflow: ellipsis;
border: none;
outline: none;
background: transparent;
background-image: none;
box-shadow: none;
-webkit-appearance: none;
appearance: none;
}
.cp_ipselect01 select::-ms-expand { display: none; }
.cp_ipselect01.cp_sl { position: relative; border: 1px solid #6fba2c; background-color: #fff; }
.cp_ipselect01.cp_sl::before {
position: absolute;
top: 12px;
right: 12px;
width: 0;
height: 0;
padding: 0;
content: '';
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 8px solid #6fba2c;
pointer-events: none;
}
.cp_ipselect01.cp_sl select { padding: 8px; color: #595959; font-family: Roboto, "Droid Sans", 游ゴシック, YuGothic, メイリオ, Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif; font-size: 14px; font-weight: 700; }
/* Firefox */@-moz-document url-prefix() { .cp_ipselect01.cp_sl::before { top: 18px; }}
/* Safari */::-webkit-full-page-media, :future, :root .cp_ipselect01.cp_sl::before { top: 16px; }