/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 30 2026 | 01:11:41 */
/*------チェックボックス・01-----*/ 
#checkbox01 input[type=checkbox]{
display: none;
}
    
#checkbox01 input[type=checkbox] + label{
padding-left: 30px; 
}    
      
#checkbox01 input[type=checkbox] + label:before{    
display: block;
position: absolute;
content: "";
width: 20px;
height: 20px;
border: 2px solid #1dbde6;
border-radius: 4px;
background-color: #fff;  
}
    
#checkbox01 input[type=checkbox]:checked + label:after{
display: block;
position: absolute;
content: "";
width: 14px;
height:7px;
border-bottom: 2px solid;
border-left: 2px solid;
border-color:  #1dbde6;
transform: rotate(-45deg);
top: 50%;
left: 4px;
margin-top: -5px;
} 
