CRG-08-001
スライドトグルToggle Switch
.cg-fm-toggle {
display: inline-flex;
align-items: center;
gap: 12px;
font-size: 14px;
font-weight: 700;
cursor: pointer;
}
.cg-fm-toggle input { position: absolute; opacity: 0; width: 0; }
.cg-fm-toggle i {
width: 48px;
height: 28px;
border-radius: 20px;
background: #C9C5BA;
position: relative;
transition: background .25s;
}
.cg-fm-toggle i::before {
content: "";
position: absolute;
top: 3px;
left: 3px;
width: 22px;
height: 22px;
border-radius: 50%;
background: #fff;
box-shadow: 0 2px 4px rgba(27, 26, 23, .25);
transition: transform .25s cubic-bezier(.3, 1.4, .6, 1);
}
.cg-fm-toggle input:checked + i { background: #E8590C; }
.cg-fm-toggle input:checked + i::before { transform: translateX(20px); }
.cg-fm-toggle input:focus-visible + i { outline: 3px solid #3A5A78; outline-offset: 2px; }
<label class="cg-fm-toggle"><input type="checkbox" checked><i></i>通知を受け取る</label>
GROSS WT. 936 B
ORIGINAL