movePC2SP.getCookie = function(name){ if(!name) return ''; var cookies = document.cookie.split('; '); for(var i = 0; i < cookies.length; i++){ var str = cookies[i].split('='); if (str[0] != name) continue; return unescape(str[1]); } return ''; }; movePC2SP.setCookie = function(param){ if(!param['name']) return false; var str = param['name'] + '=' + escape(param['value']); if(param['domain']){ if(param['domain'] == 1) param['domain'] = location.hostname; str += '; domain=' + param['domain']; } if(param['path']){ if(param['path'] == 1) param['path'] = location.pathname; str += '; path=' + param['path']; } if(param['expires']){ var nowtime = new Date().getTime(); param['expires'] = new Date(nowtime + (60 * 60 * 24 * 1000 * param['expires'])); param['expires'] = param['expires'].toGMTString(); str += '; expires=' + param['expires']; } if(param['secure'] && location.protocol == 'https:'){ str += '; secure'; } document.cookie = str; return true; }; movePC2SP.checkUA = function(){ var flag = false; var ua = navigator.userAgent; if(ua.indexOf('iPhone') != -1 || ua.indexOf('iPod') != -1 || (ua.indexOf('Android') != -1 && ua.indexOf('Mobile') != -1) || ua.indexOf('Windows Phone') != -1){ flag = true; } // ipad Safari v13以上の判別 else if(ua.indexOf('iPad') != -1 && ua.indexOf('Safari') != -1 && ua.indexOf('CriOS') == -1 && ua.indexOf('Chrome') == -1){ const sv = ua.indexOf('Version'); if(sv != -1){ const vc = navigator.userAgent.substr(sv + 8,2); if(vc > 12) flag = true; } } return flag; }; movePC2SP.mediacheck = function(chPath){ // 統合メディア判別 var fiCh = ['anchordesk','survey','bizmobile','makoto','bizid','style','lifestyle','pcupdate','d-style','promobile','games','dc','gg','im','jbn','review','hc']; var fiChFlag = 0; for(var i=0;i