Written by Anonymous
<script>
// URLのアンカー(#以降の部分)を取得
var urlHash = location.hash;
// URLにアンカーが存在する場合
if(urlHash){
// アンカーが#breakかどうかを判断する
if (urlHash == '#break') {
jQuery('#toggle-checkbox-20210120223455').replaceWith('<input id="toggle-checkbox-20210120223455" class="toggle-checkbox" type="checkbox"/ checked/>');
} else if (urlHash == '#break02') {
jQuery('#toggle-checkbox-20210120223456').replaceWith('<input id="toggle-checkbox-20210120223456" class="toggle-checkbox" type="checkbox"/ checked/>');
} else {
;
}
}
</script>