<div class="cp_ipcheck04">
<input type="checkbox" id="c_ch1" checked />
<label for="c_ch1">ネコ</label>
<input type="checkbox" id="c_ch2" />
<label for="c_ch2">イヌ</label>
<input type="checkbox" id="c_ch3" />
<label for="c_ch3">ウサギ</label>
</div>
.cp_ipcheck04 {
margin: 2em auto;
}
/*デフォルトのチェックボックスの設定*/
.cp_ipcheck04 input[type='checkbox'] {
display: none;
}
/*通常時のチェックボックスの設定*/
.cp_ipcheck04 label {
position: relative;
display: flex;
align-items: center;
margin-bottom: 10px;
cursor: pointer;
}
.cp_ipcheck04 input[type='checkbox'] + label:before,
.cp_ipcheck04 input[type='checkbox'] + label:after {
position: absolute;
content: '';
}
/*スイッチのベース*/
.cp_ipcheck04 input[type='checkbox'] + label:before {
right: 0;
width: 30px;
height: 15px;
background: #ffffff;
border: 1px solid #e4e3e1;
border-radius: 15px;
}
/*スイッチの●*/
.cp_ipcheck04 input[type='checkbox'] + label:after {
right: 15px;
width: 15px;
height: 15px;
background: #bdbdbd;
border-radius: 50%;
transition: all 200ms ease-out;
}
/*checked時の色と位置の設定*/
.cp_ipcheck04 input[type='checkbox']:checked + label:after {
right: 0;
background: #da3c41;
}