label {
    display: inline;
}
 
.regular-checkbox {
    display: none;
}
 
.regular-checkbox + label {
    background-color: #fafafa;
    border: 1px solid #cacece;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
    padding: 9px;
    border-radius: 3px;
    display: inline-block;
    position: relative;
}
 
.regular-checkbox + label:active, .regular-checkbox:checked + label:active {
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}
 
.regular-checkbox:checked + label {
    background-color: #e9ecee;
    border: 1px solid #adb8c0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
    color: #99a1a7;
}
 
.regular-checkbox:checked + label:after {
    content: '\2714';
    font-size: 14px;
    position: absolute;
    top: 0px;
    left: 0px;
    color: #99a1a7;
}
 
.allN-big-checkbox + label {
    padding: 10px;     /* checkbox 直す箇所 1 */
}
 
.allN-big-checkbox:checked + label:after {
    font-size: 16px; /* checkbox 直す箇所 2 */
    left: 2px;           /* checkbox 直す箇所 3 */
}

.big-checkbox + label {
    background-color: #ccff99;
    padding: 10px;
}
 
.big-checkbox:checked + label:after {
    background-color: #ccff99;
    font-size: 16px;
    left: 2px;
}
 
.tag {
    font-family: Arial, sans-serif;
    width: 200px;
    position: relative;
    top: 5px;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    float: left;
}

#yoteis_checkbox input:checked + label:after{
    top:3px;
    height:7px;
    border-left: 3px solid #E71063;
    border-bottom: 2px solid #E71063;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
