@charset "euc-jp";

/*===========================================
アカウントページ 共通
============================================*/

.commonToggle{
    position: relative;
    width: 41px;
    height: 22px;
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
	margin-left: auto;
}

.commonToggle input[type=checkbox] {
	display: none;
}

.commonToggle:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: #e9e9eb;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
}

.commonToggle:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    display: block;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.3);
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
}

.commonToggle.checked:before {
	background: #E03D3D;
}


.commonToggle.checked:after {
	left: 21px;
	box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.5);
}
