// iframe 内でエラー画面が表示された場合、親のロケーションをエラー画面に差替える処理 window.addEventListener('load', function() { if (window.screen.width <= 480) { this.document.body.style.backgroundImage = 'none'; this.document.querySelectorAll('table').forEach((ele) => { ele.style.width = '100%'; }); } if (this.window.parent == this.window) return; this.window.parent.location.href = "sp_MessageError.do"; });