if(location.href.match(/\/#moved/)){
    jQuery(document).ready(function(){
        jQuery(''
            +'<div style="display: none; width: 100%; height: 100%; position: fixed; overflow: scroll; top: 0; left: 0; z-index: 2147483647; background: rgba(0, 0, 0, 0.8);">'
                +'<div style="color: #ffffff; text-align: center; font-size: 1.2em; margin-top: 60px; line-height: 32px;">'
                    +'<strong style="font-size:1.6em;">サイト移転のお知らせ</strong><br>'
                    +'<br>'
                    +'<p style="color:#ccc;">'
                        +'Maggie & Peter Beverly Hills<br>'
                        +'https://maggieandpeter.net/'
                    +'</p>'
                    +'<br>'
                    +'は以下へ移転しました。<br>'
                    +'<br>'
                    +'<strong>'
                        +'My Glam Style (マイグラムスタイル)<br>'
                        +'<a href="https://myglam.mpinc.shop/" style="color:#0097cc;">https://myglam.mpinc.shop/</span>'
                    +'</strong><br>'
                    +'<br>'
                    +'<button class="p-index-banner__button p-button" style="font-size:0.9em;">My Glam Style (マイグラムスタイル)を開く</button>'
                +'</div>'
            +'</div>'
        )
        .appendTo(document.body)
        .on("click", function(){
            location.href = "/";
        })
        .fadeIn(500);
    });
}