SP、回転してランドスケープモードもしくはポートレイトになればリロードさせる
http://www.allinthemind.biz/markup/javascript/orientation.html
if ('object' === typeof window.onorientationchange) {
window.addEventListener("orientationchange", function () {
if (window.innerHeight > window.innerWidth) {
// ポートレイト(ランドスケープ)
} else {
// ランドスケープ(ポートレイト)
};
}, false);
}