high pena CSS for smartphone(CSS built-in)

high pena 2 スマホ用のCSSです。不具合があるかもしれないので自己責任で使ってください。Android版FirefoxにアドオンTampermonkeyで動作確認。iOSは不明。

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
  1. // ==UserScript==
  2. // @name high pena CSS for smartphone(CSS built-in)
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.023
  5. // @description high pena 2 スマホ用のCSSです。不具合があるかもしれないので自己責任で使ってください。Android版FirefoxにアドオンTampermonkeyで動作確認。iOSは不明。
  6. // @author ankoiri
  7. // @match http://yaranaika.s64.coreserver.jp/highpena2/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11.  
  12. (function() {
  13.  
  14.  
  15.  
  16. var url = location.href;
  17.  
  18. //ラッパーのtable width 変更
  19. var xpath = document.evaluate("/html/body/table" , document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  20. var xpath_obj = xpath.singleNodeValue;
  21. xpath_obj.width = "99%";
  22.  
  23. //野手・投手のテーブル横スクロール用
  24. var table_width = parseInt(window.innerWidth *0.90);
  25. //console.log("screen.width:" + table_width);
  26.  
  27.  
  28.  
  29. var linkobj = document.getElementsByTagName('link')[0];
  30. //console.log("linkobj:" + linkobj);
  31. //linkobj.parentNode.removeChild(linkobj);
  32.  
  33.  
  34. var head ;
  35. var link , link2;
  36.  
  37. head = document.getElementsByTagName('head')[0];
  38. //console.log("head:"+head);
  39. if( ! head ) return ;
  40.  
  41. //viewport980に固定
  42.  
  43. var viewport_meta;
  44.  
  45. viewport_meta = document.createElement('meta') ;
  46. viewport_meta.name = 'viewport';
  47. viewport_meta.content = 'width=980';
  48. head.appendChild(viewport_meta) ;
  49.  
  50. //CSS追加
  51. link = document.createElement('link') ;
  52. link.typ = 'text/css' ;
  53. link.rel = 'stylesheet' ;
  54. head.appendChild(link) ;
  55.  
  56. //link2 = document.createElement('link') ;
  57. //link2.typ = 'text/css' ;
  58. //link2.rel = 'stylesheet' ;
  59. //link2.href = drawer;
  60.  
  61. //head.appendChild(link2) ;
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. //トップ画面
  71. xpath = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[2]/tbody/tr/td[3]/input[3]" , document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  72. xpath_obj = xpath.singleNodeValue;
  73. //console.log("type=" + xpath_obj.value);
  74.  
  75. //トップ画面(オフシーズン 日本シリーズ の場合)
  76. xpath4 = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[4]/tbody/tr[1]/td/table/tbody/tr/td/table/tbody/tr/td[2]/font/font/b" , document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  77. xpath_obj4 = xpath4.singleNodeValue;
  78.  
  79. //console.log("type=" + xpath_obj.value);
  80.  
  81.  
  82. //能力アップ画面 意識設定画面
  83. xpath2 = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[4]/tbody/tr/td/h3" , document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  84. xpath_obj2 = xpath2.singleNodeValue;
  85. //console.log("xpath_obj2.innerHTML:" + xpath_obj2.innerHTML);
  86.  
  87.  
  88. //ログイン画面
  89. xpath3 = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[5]/tbody/tr/td/table/tbody/tr/td[2]/table[2]/tbody/tr[1]/td[1]" , document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  90. xpath_obj3 = xpath3.singleNodeValue;
  91. //console.log("xpath_obj3.innerHTML:" + xpath_obj3.innerHTML);
  92.  
  93. //公式記録とタイトル
  94. xpath5 = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[4]/tbody/tr/td/h3" , document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  95. xpath_obj5 = xpath5.singleNodeValue;
  96. //console.log("xpath_obj3.innerHTML:" + xpath_obj3.innerHTML);
  97.  
  98.  
  99. //練習成果
  100. xpath6 = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[4]/tbody/tr/td/h4" , document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  101. xpath_obj6 = xpath6.singleNodeValue;
  102. //console.log("xpath_obj3.innerHTML:" + xpath_obj3.innerHTML);
  103.  
  104.  
  105.  
  106.  
  107. var flag = 0;
  108. var syurui = "default";
  109.  
  110. //記録
  111. if(xpath_obj5 && xpath_obj5.innerHTML.match(/公式記録とタイトル/)){
  112.  
  113. //console.log( "URL:" + location.href);
  114. //link.href = record;
  115. syurui = "record";
  116.  
  117. //球団偵察モード
  118. }else if(xpath_obj6 && xpath_obj6.innerHTML.match(/練習成果/)){
  119.  
  120. //console.log( "URL:" + location.href);
  121. //link.href = training;
  122. syurui = "training";
  123.  
  124. //球団偵察モード
  125. }else if(location.href.match(/mode=team&team_id/)){
  126.  
  127. //console.log( "URL:" + location.href);
  128. //link.href = team_mode;
  129. syurui = "team_mode";
  130. flag = 7;
  131.  
  132. }else if(xpath_obj4 && xpath_obj4.innerHTML.match(/日本シリーズ/) && xpath_obj && xpath_obj.value == "ログイン"){
  133. //console.log("ホーム画面(日本シリーズ)");
  134.  
  135. //link.href = home_nihon;
  136. syurui = "home_nihon";
  137.  
  138. flag = 4;
  139.  
  140. //ホーム画面(オフシーズン 新規登録リンク有り)
  141. }else if(xpath_obj4 && xpath_obj4.innerHTML.match(/オフシーズン/) && xpath_obj && xpath_obj.value == "ログイン"){
  142. //console.log("ホーム画面(オフシーズン)");
  143.  
  144. //link.href = home_off;
  145. syurui = "home_off";
  146. flag = 5;
  147.  
  148. //ホーム画面(オフ・日シリ以外)
  149. }else if (xpath_obj && xpath_obj.value == "ログイン" ){
  150.  
  151. //link.href = home_on;
  152. syurui = "home_on";
  153. flag = 1;
  154.  
  155. //能力アップ結果画面
  156. }else if(xpath_obj2 && xpath_obj2.innerHTML.match(/能力アップ結果/)){
  157. console.log("能力アップ結果画面1");
  158. //link.href = skill2;
  159. syurui = "skill2";
  160. flag = 0;
  161.  
  162. //能力アップ画面
  163. }else if(xpath_obj2 && xpath_obj2.innerHTML.match(/能力アップ/)){
  164. console.log("能力アップ画面1");
  165. //link.href = skill;
  166. syurui = "skill";
  167. flag = 2;
  168.  
  169. //意識設定画面
  170. }else if(xpath_obj2 && xpath_obj2.innerHTML.match(/意識設定/)){
  171. console.log("意識設定画面1");
  172. //link.href = consciousness;
  173. syurui = "consciousness";
  174. flag = 6;
  175.  
  176. //ログイン画面
  177. }else if(xpath_obj3 && xpath_obj3.innerHTML.match(/ドラフト指名/)){
  178. console.log("ログイン画面");
  179.  
  180. //link.href = login;
  181. syurui = "login";
  182. flag = 3;
  183. /*
  184. }else if(location.href.match(/rule.html/)){
  185. console.log(location.href);
  186. //link.href = rule;
  187. syurui = "rule";
  188. */
  189.  
  190. }else{
  191.  
  192. //link.href = defaultcss;
  193.  
  194.  
  195. }
  196.  
  197. console.log("flag:" + flag);
  198.  
  199.  
  200.  
  201.  
  202.  
  203.  
  204.  
  205.  
  206.  
  207. //ドロワー追加用
  208. var div_element = document.createElement("div");
  209. div_element.classList.add("header_wrapper");
  210.  
  211. //オフシーズンの場合、新規登録を追加する
  212. if(flag === 5){
  213. div_element.innerHTML = '<div class="header"><div class="nav-drawer"><input id="nav-input" type="checkbox" class="nav-unshown"><label id="nav-open" for="nav-input"><span></span></label><label class="nav-unshown" id="nav-close" for="nav-input"></label><div id="nav-content">' +
  214. '<ul>' +
  215. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi">ホーム</a></li>' +
  216. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi?mode=ranking">ランキング</a></li>' +
  217. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi?mode=record">記録</a></li>' +
  218. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi?mode=calendar">日程</a></li>' +
  219. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/rule.html">あそびかた</a></li>' +
  220. '<li><a href="http://jbbs.livedoor.jp/game/44608/">掲示板</a></li>' +
  221. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi?mode=draft">ドラフト</a></li>' +
  222. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi?mode=entry">新規登録</a></li>' +
  223. '</ul></div></div><DIV STYLE="font-size:60px;font-weight:900; color:#DC143C; margin-top:-70pt; margin-left:170pt">2</DIV><DIV STYLE="font-size:40px; font-weight:600; color:000000;margin-top:-45pt;margin-left:115pt">high pena</DIV></div>';
  224.  
  225. //document.body.appendChild(div_element);
  226. //console.log(div_element.innerHTML);
  227. }else{
  228.  
  229.  
  230. div_element.innerHTML = '<div class="header"><div class="nav-drawer"><input id="nav-input" type="checkbox" class="nav-unshown"><label id="nav-open" for="nav-input"><span></span></label><label class="nav-unshown" id="nav-close" for="nav-input"></label><div id="nav-content">' +
  231. '<ul>' +
  232. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi">ホーム</a></li>' +
  233. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi?mode=ranking">ランキング</a></li>' +
  234. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi?mode=record">記録</a></li>' +
  235. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi?mode=calendar">日程</a></li>' +
  236. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/rule.html">あそびかた</a></li>' +
  237. '<li><a href="http://jbbs.livedoor.jp/game/44608/">掲示板</a></li>' +
  238. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi?mode=draft">ドラフト</a></li>' +
  239. '</ul></div></div><DIV STYLE="font-size:60px;font-weight:900; color:#DC143C; margin-top:-70pt; margin-left:170pt">2</DIV><DIV STYLE="font-size:40px; font-weight:600; color:000000;margin-top:-45pt;margin-left:115pt">high pena</DIV></div>';
  240.  
  241. //document.body.appendChild(div_element);
  242. //console.log(div_element.innerHTML);
  243.  
  244. }
  245.  
  246. //一番上に追加する
  247. var parentObject = document.getElementsByTagName("body")[0];
  248. parentObject.insertBefore(div_element,parentObject.firstChild);
  249.  
  250.  
  251. //-----------------------------------
  252.  
  253.  
  254.  
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261. // ログイン後の画面
  262. if(flag === 3 ){
  263.  
  264.  
  265.  
  266.  
  267.  
  268. //投手 折りたたむ
  269. xpath = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[5]/tbody/tr/td/form/form/table[1]", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  270.  
  271. //console.log("xpathtousyu:" + xpath.singleNodeValue);
  272. xpath_obj = xpath.singleNodeValue;
  273.  
  274. xpath_obj.outerHTML = "<div onclick=\"obj=document.getElementById('open2').style; obj.display=(obj.display=='none')?'block':'none';\"><a style=\"font-size:30px;cursor:pointer;text-decoration: underline;\">▼タップで表示</a></div><div id=\"open2\" style=\"display:none;clear:both;\"><div style=\"\width:" + table_width + "px; overflow-x:scroll;\">" + xpath_obj.outerHTML + "</div></div><br>";
  275.  
  276.  
  277. //野手 折りたたむ
  278. xpath = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[5]/tbody/tr/td/form/table[1]", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  279. //console.log("xpathyasyu:" + xpath.singleNodeValue);
  280. xpath_obj = xpath.singleNodeValue;
  281.  
  282. //var temp = "<thread>" + xpath_obj.innerHTML;
  283. //xpath_obj.innerHTML = temp;
  284. xpath_obj.outerHTML = "<div onclick=\"obj=document.getElementById('open1').style; obj.display=(obj.display=='none')?'block':'none';\"><a style=\"font-size:30px;cursor:pointer;text-decoration: underline;\">▼タップで表示</a></div><div id=\"open1\" style=\"display:none;clear:both;\"><div style=\"width:" + table_width + "px; overflow-x:scroll;\">" + xpath_obj.outerHTML + "</div></div><br>";
  285.  
  286. //console.log("xpath_obj:" + xpath_obj.innerHTML);
  287.  
  288. //チーム方針変更 折りたたむ
  289. xpath = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[5]/tbody/tr/td/table/tbody/tr/td[1]/table[3]", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  290. //console.log("xpathhoushin:" + xpath.singleNodeValue);
  291. xpath_obj = xpath.singleNodeValue;
  292.  
  293. xpath_obj.outerHTML = "<div onclick=\"obj=document.getElementById('open3').style; obj.display=(obj.display=='none')?'block':'none';\"><a style=\"font-size:30px;cursor:pointer;text-decoration: underline;\">▼チーム方針変更 表示</a></div><div id=\"open3\" style=\"display:none;clear:both;\">" + xpath_obj.outerHTML + "</div><br>";
  294.  
  295. //野手ポジション・打順変更ボタン 左寄せ
  296. xpath = document.evaluate("//*[@id=\"open1\"]/div/table/tbody/tr/td/div", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  297. xpath_obj = xpath.singleNodeValue;
  298. xpath_obj.align = "left";
  299.  
  300.  
  301. //投手起用順変更ボタン 左寄せ
  302. xpath = document.evaluate("//*[@id=\"open2\"]/div/table/tbody/tr/td/div", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  303. xpath_obj = xpath.singleNodeValue;
  304. xpath_obj.align = "left";
  305.  
  306. // 契約更改~設定 再設計
  307. xpath = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[5]/tbody/tr/td/form/form/table[1]/tbody/tr/td[3]", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  308. //console.log("xpathhoushin:" + xpath.singleNodeValue);
  309. xpath_obj = xpath.singleNodeValue;
  310.  
  311.  
  312. var menu2 = ["","","","","","","","","","","","","",""];
  313.  
  314. var arr = xpath_obj.innerHTML.split(/></g);
  315. var k=-1;
  316.  
  317. //add the brackets back in
  318. for(var i = 0; i < arr.length; i++){
  319.  
  320.  
  321. if(i == 0){
  322. arr[i] = arr[i] + '>';
  323. }else if(i == arr.length -1){
  324. arr[i] = '<' + arr[i];
  325. }else{
  326. arr[i] = '<' + arr[i] + '>';
  327.  
  328. }
  329.  
  330.  
  331. //console.log("arr[" + i + "]:" + arr[i]);
  332. if(arr[i].match(/<h4/) || arr[i].match(/<table/) ){
  333. //console.log("next:" + k);
  334. k++;
  335. }
  336.  
  337. if(!(arr[i].match(/<table/) || arr[i].match(/<\/table/) || arr[i].match(/<tbody/) || arr[i].match(/<\/tbody/) || arr[i].match(/<tr/) || arr[i].match(/<\/tr/) || arr[i].match(/<td/) || arr[i].match(/<\/td/) || arr[i].match(/<form/) || arr[i].match(/<\/form/) )){
  338. menu2[k] += arr[i];
  339.  
  340. }
  341.  
  342. }
  343. var table_str ="<table>";
  344.  
  345. for(i=0;i<k+1;i++){
  346. //console.log("menu2[" + i + "]:" + menu2[i]);
  347.  
  348.  
  349.  
  350.  
  351. if(menu2[i].match(/<h4/)){
  352. table_str = table_str + "</tr><tr>";
  353. //console.log("tr:" + i);
  354. }
  355.  
  356. table_str = table_str + "<td><form action='index.cgi' method='post'>" + menu2[i] + "</td></form>";
  357.  
  358.  
  359. }
  360. table_str = table_str + "</table>";
  361.  
  362. //console.log("table_str:" + table_str);
  363.  
  364. xpath_obj.innerHTML = table_str;
  365.  
  366.  
  367.  
  368.  
  369.  
  370.  
  371.  
  372.  
  373.  
  374.  
  375.  
  376. //画面更新ボタン 左寄せ
  377. /*
  378. xpath = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[5]/tbody/tr/td/form/form/table[1]/tbody/tr/td[1]/form/div", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  379. xpath_obj = xpath.singleNodeValue;
  380. xpath_obj.align = "left";
  381. */
  382.  
  383.  
  384. }
  385.  
  386. if(flag === 2) {
  387. //能力 ポイントテーブル tr入れ替え
  388.  
  389.  
  390. xpath = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[4]/tbody/tr/td/table/tbody/tr[2]/td[1]/form/table", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  391. var table = xpath.singleNodeValue;
  392.  
  393.  
  394.  
  395. //console.log("row1:" + table.innerHTML);
  396.  
  397. var point_cell = [];
  398.  
  399. for(j=0;j<10;j++){
  400.  
  401. //console.log("table.rows[" + j + "].innerHTML" + table.rows[j].cells[0].innerHTML);
  402. point_cell[j] = table.rows[j].cells[0].innerHTML;
  403. }
  404.  
  405. table.innerHTML = "";
  406.  
  407. // 行要素を追加
  408. var tr0 = table.insertRow(-1);
  409. var tr1 = table.insertRow(-1);
  410.  
  411. var td = [];
  412.  
  413.  
  414.  
  415. //table.innerHTML = "";
  416.  
  417. for(j=0;j<10;j=j+2){
  418.  
  419. td[j] = tr0.insertCell(-1);
  420. td[j].innerHTML = point_cell[j];
  421. td[j+1] = tr1.insertCell(-1);
  422. td[j+1].innerHTML = point_cell[j+1];
  423.  
  424. }
  425. //console.log("aa" + newtable.innerHTML);
  426.  
  427.  
  428.  
  429.  
  430.  
  431.  
  432. }
  433.  
  434.  
  435.  
  436. // 他球団偵察モードの画面
  437.  
  438. if(flag === 7 ){
  439.  
  440. console.log("table_width:" + table_width);
  441.  
  442. //投手 テーブルスクロール
  443. xpath = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[4]/tbody/tr/td/table[3]/tbody/tr/td/table", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  444.  
  445. //console.log("xpathtousyu:" + xpath.singleNodeValue);
  446. xpath_obj = xpath.singleNodeValue;
  447.  
  448. xpath_obj.outerHTML = "<div style=\"\width:" + table_width + "px; overflow-x:scroll; padding-bottom:30px;\">" + xpath_obj.outerHTML + "</div>";
  449.  
  450.  
  451. //野手 テーブルスクロール
  452. xpath = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[4]/tbody/tr/td/table[2]/tbody/tr/td/table", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  453. //console.log("xpathyasyu:" + xpath.singleNodeValue);
  454. xpath_obj = xpath.singleNodeValue;
  455.  
  456. //var temp = "<thread>" + xpath_obj.innerHTML;
  457. //xpath_obj.innerHTML = temp;
  458. xpath_obj.outerHTML = "<div style=\"width:" + table_width + "px; overflow-x:scroll; padding-bottom:30px;\">" + xpath_obj.outerHTML + "</div><br>";
  459.  
  460. //console.log("xpath_obj:" + xpath_obj.innerHTML);
  461.  
  462.  
  463. }
  464.  
  465. /* --------------------------------------------------------------------------------------------------- */
  466. /* headにCSS 追加 */
  467. //headにドロワーCSS追加
  468. xpath = document.evaluate("/html/head" , document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  469. xpath_obj = xpath.singleNodeValue;
  470. xpath_obj.innerHTML = xpath_obj.innerHTML + "<style>" + loadCSS("drawer") + "</style>";
  471.  
  472.  
  473. //ページに対応したcss追加
  474. xpath_obj.innerHTML = xpath_obj.innerHTML + "<style>" + loadCSS(syurui) + "</style>";
  475.  
  476. console.log("syurui = " + syurui);
  477.  
  478.  
  479. /* --------------------------------------------------------------------------------------------------- */
  480.  
  481.  
  482.  
  483.  
  484.  
  485.  
  486.  
  487.  
  488.  
  489.  
  490.  
  491.  
  492. /* CSS 関数 本体 */
  493. function loadCSS(syurui){
  494.  
  495. var txt;
  496.  
  497.  
  498. if(syurui == "drawer"){
  499. txt = (function(param) {return param[0].replace(/\n|\r/g, "");})`
  500.  
  501. /* ヘッダーの分、上に余白 */
  502. body > table {
  503.  
  504. padding-top: 100px;
  505.  
  506. }
  507.  
  508. .header_wrapper {
  509.  
  510. width: 100%;
  511. position: relative;
  512. z-index: 98;
  513.  
  514. }
  515.  
  516. /*ヘッダーまわりはご自由に*/
  517. .header {
  518.  
  519. //background-color: #0066FF;
  520. height: 95px;
  521. width: 99%;
  522. position: fixed; /* 固定 */
  523. margin:0 auto;
  524.  
  525.  
  526.  
  527. /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0066ff+0,0066ff+50,ffffff+99 */
  528. background: rgb(0,102,255); /* Old browsers */
  529. background: -moz-linear-gradient(left, rgba(0,102,255,1) 0%, rgba(0,102,255,1) 50%, rgba(255,255,255,1) 99%); /* FF3.6-15 */
  530. background: -webkit-linear-gradient(left, rgba(0,102,255,1) 0%,rgba(0,102,255,1) 50%,rgba(255,255,255,1) 99%); /* Chrome10-25,Safari5.1-6 */
  531. background: linear-gradient(to right, rgba(0,102,255,1) 0%,rgba(0,102,255,1) 50%,rgba(255,255,255,1) 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  532. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0066ff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
  533.  
  534. }
  535.  
  536. .nav-drawer {
  537. position: relative;
  538. padding-left:20px;
  539. width:98%;
  540. display: block;
  541.  
  542. }
  543.  
  544. /*チェックボックス等は非表示に*/
  545. .nav-unshown {
  546. display:none;
  547. }
  548.  
  549. /*アイコンのスペース*/
  550. #nav-open {
  551. display: inline-block;
  552. width: 80px;
  553. height: 80px;
  554. vertical-align: middle;
  555. padding: 15 10 0 10;
  556. background-color:#e4e4e4;
  557. }
  558.  
  559. /*ハンバーガーアイコンをCSSだけで表現*/
  560. #nav-open span, #nav-open span:before, #nav-open span:after {
  561. position: absolute;
  562. height: 5px;/*線の太さ*/
  563. width: 80px;/*長さ*/
  564. border-radius: 3px;
  565. background: #555;
  566. display: block;
  567. content: '';
  568. cursor: pointer;
  569. }
  570. #nav-open span:before {
  571. bottom: -26px;
  572. }
  573. #nav-open span:after {
  574. bottom: -52px;
  575. }
  576.  
  577. /*閉じる用の薄黒カバー*/
  578. #nav-close {
  579. display: none;/*はじめは隠しておく*/
  580. position: fixed;
  581. z-index: 99;
  582. top: 0;/*全体に広がるように*/
  583. left: 0;
  584. width: 100%;
  585. height: 100%;
  586. background: black;
  587. opacity: 0;
  588. transition: .3s ease-in-out;
  589. }
  590.  
  591. /*中身*/
  592. #nav-content {
  593. overflow: auto;
  594. position: fixed;
  595. top: 0;
  596. left: 0;
  597. z-index: 9999;/*最前面に*/
  598. width: 90%;/*右側に隙間を作る*/
  599. max-width: 360px;/*最大幅*/
  600. height: 100%;
  601. background: #e4e4e4;/*背景色*/
  602. transition: .3s ease-in-out;/*滑らかに表示*/
  603. -webkit-transform: translateX(-105%);
  604. transform: translateX(-105%);/*左に隠しておく*/
  605. }
  606.  
  607. /*チェックが入ったらもろもろ表示*/
  608. #nav-input:checked ~ #nav-close {
  609. display: block;/*カバーを表示*/
  610. opacity: .5;
  611. }
  612.  
  613. #nav-input:checked ~ #nav-content {
  614. -webkit-transform: translateX(0%);
  615. transform: translateX(0%);/*中身を表示*/
  616. box-shadow: 6px 0 25px rgba(0,0,0,.15);
  617. }
  618.  
  619.  
  620. .nav-drawer ul{
  621. list-style-type: none;
  622. font-size: 60px;
  623. bor: underline;
  624. padding: 0 10 0 10;
  625.  
  626.  
  627. }
  628. #nav-content > ul > li:nth-child(1) {
  629.  
  630. border-top: 2px solid #000000;
  631. }
  632.  
  633.  
  634. .nav-drawer li{
  635. border-bottom: 2px solid #000000;
  636. padding: 5 0 5 0;
  637.  
  638. }
  639.  
  640.  
  641.  
  642.  
  643.  
  644. .nav-drawer a:link {
  645. color:#215dc6;
  646. background-color:inherit;
  647. text-decoration:none;
  648. }
  649. .nav-drawer a:active {
  650. color:#215dc6;
  651. background-color:#ccddee;
  652. text-decoration:none;
  653. }
  654. .nav-drawer a:visited {
  655. color:#613da6;
  656. background-color:inherit;
  657. text-decoration:none;
  658. }
  659. .nav-drawer a:hover {
  660. color:#215dc6;
  661. background-color:#ccddee;
  662. text-decoration:underline;
  663. }
  664.  
  665.  
  666.  
  667. /* li全体をリンクにする */
  668. #nav-content > ul > li:nth-child(1n) > a {
  669.  
  670. display:block;
  671.  
  672. }
  673.  
  674.  
  675. #nav-content > ul > li:nth-child(1n) > a:link {
  676.  
  677. color:#215dc6;
  678. background-color:inherit;
  679. text-decoration:none;
  680. }
  681.  
  682. #nav-content > ul > li:nth-child(1n) > a:active {
  683. color:#215dc6;
  684. background-color:#ccddee;
  685. text-decoration:none;
  686. }
  687.  
  688. #nav-content > ul > li:nth-child(1n) > a:active {
  689.  
  690. color:#613da6;
  691. background-color:inherit;
  692. text-decoration:none;
  693. }
  694.  
  695.  
  696. `;
  697. }
  698.  
  699.  
  700.  
  701. if(syurui != "drawer"){
  702. txt = (function(param) {return param[0].replace(/\n|\r/g, "");})`
  703.  
  704. body {
  705. width: 100%;
  706. min-width: 980px;
  707. color:black;
  708. background-color:white;
  709. font-size:18px;
  710. font-family:verdana, arial, helvetica, Sans-Serif;
  711. }
  712. th,td {
  713. font-size:18px;
  714. font-family:verdana, arial, helvetica, Sans-Serif;
  715. }
  716.  
  717. `;
  718. }
  719.  
  720.  
  721. if(syurui == "login"){
  722.  
  723.  
  724. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  725.  
  726.  
  727.  
  728. /* 練習セレクトメニュー */
  729. body > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > form:nth-child(4) > table:nth-child(13) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(6) {
  730.  
  731. text-align:center;
  732.  
  733. }
  734.  
  735.  
  736.  
  737. /* 掲示板・お知らせ */
  738. body > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > form:nth-child(4) > table:nth-child(15) > tbody:nth-child(1) > tr:nth-child(1) > td {
  739.  
  740. display: block;
  741. width: 100%;
  742.  
  743. }
  744.  
  745. /* 掲示板 5個まで 名前部分 */
  746. body > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > form:nth-child(4) > table:nth-child(15) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > dl:nth-child(2) > dt:nth-child(n+21) {
  747.  
  748. display: none;
  749.  
  750. }
  751.  
  752. /* 掲示板 5個まで コメント部分 */
  753. body > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > form:nth-child(4) > table:nth-child(15) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > dl:nth-child(2) > dd:nth-child(n+22) {
  754.  
  755. display: none;
  756.  
  757. }
  758.  
  759. /* 掲示板 5個まで 改行部分 */
  760. body > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > form:nth-child(4) > table:nth-child(15) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > dl:nth-child(2) > br:nth-child(n+23) {
  761.  
  762. display: none;
  763.  
  764. }
  765.  
  766.  
  767.  
  768.  
  769. /* 練習セレクトボックス */
  770. body > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > form:nth-child(4) > table:nth-child(13) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(6) > select {
  771.  
  772. width: 200px;
  773.  
  774. }
  775.  
  776. select {
  777.  
  778. width: 140px;
  779. height: 80px;
  780. font-size: 20px;
  781.  
  782. }
  783.  
  784.  
  785. input {
  786.  
  787. width: 160px;
  788. height: 80px;
  789. font-size: 20px;
  790.  
  791. }
  792.  
  793.  
  794. /* 意識 画像拡大 */
  795. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(1) > table:nth-child(3) img {
  796.  
  797. height:6px;
  798.  
  799. }
  800.  
  801. /* 日程 フォントサイズ */
  802. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > font {
  803.  
  804. font-size:18px;
  805.  
  806. }
  807.  
  808.  
  809.  
  810.  
  811. /* 上部 */
  812.  
  813.  
  814. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > table > tbody > tr > td:nth-child(1) {
  815.  
  816. width:100%;
  817. display: block;
  818. }
  819.  
  820. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > table > tbody > tr > td:nth-child(2) {
  821.  
  822. width:100%;
  823. display: block;
  824. }
  825.  
  826.  
  827. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > table > tbody > tr > td:nth-child(3) {
  828.  
  829. width:100%;
  830. display: block;
  831. }
  832.  
  833.  
  834. /* チーム方針 td サイズ */
  835.  
  836.  
  837. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > table:nth-child(5) > tbody > tr:nth-child(1) > td:nth-child(2n+6) {
  838.  
  839. width:20%;
  840.  
  841. }
  842.  
  843.  
  844. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > table:nth-child(5) select{
  845.  
  846. width: 100%;
  847.  
  848. }
  849.  
  850.  
  851.  
  852.  
  853. /* 次の試合1 */
  854. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > b {
  855.  
  856. word-wrap: break-word;
  857. white-space: normal;
  858. display: block;
  859.  
  860. }
  861.  
  862. /* 次の試合2 */
  863. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > strong {
  864.  
  865. word-wrap: break-word;
  866. white-space: normal;
  867. display: block;
  868.  
  869. }
  870.  
  871.  
  872.  
  873. /* X年度 X月X日 width調整 */
  874. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) {
  875.  
  876. width: 140px;
  877.  
  878. }
  879.  
  880. /* X年度 調整 */
  881. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) > span > font {
  882.  
  883. font-size:20px;
  884.  
  885. }
  886.  
  887. /* 試合日の球場名を非表示 */
  888.  
  889. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) small {
  890.  
  891. display: none;
  892.  
  893. }
  894.  
  895. /* 球場情報を非表示 */
  896. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > table > tbody > tr > td:nth-child(1) > table:nth-child(2) {
  897.  
  898. display: none;
  899.  
  900. }
  901.  
  902.  
  903. /* 行動 table 縦表示 */
  904.  
  905.  
  906. /* 名前~アイテム */
  907. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(1) {
  908. display:list-item;
  909. list-style:none;
  910. width:100%;
  911. }
  912.  
  913. /* 練習~意識 */
  914. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(2) {
  915.  
  916. display:list-item;
  917. list-style:none;
  918. width:100%;
  919.  
  920. }
  921.  
  922. /* 練習メニュー 大きさ */
  923. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) > select {
  924.  
  925. width:250px;
  926.  
  927. }
  928.  
  929.  
  930. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(3) {
  931.  
  932. display:list-item;
  933. list-style:none;
  934. width:100%;
  935. }
  936.  
  937.  
  938. /* 契約更改~設定 調整 */
  939.  
  940.  
  941.  
  942. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(3) > table:nth-child(1) {
  943.  
  944.  
  945. display:block;
  946.  
  947. }
  948.  
  949.  
  950. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(3) > table tr {
  951.  
  952.  
  953. display:inline-block;
  954.  
  955. }
  956.  
  957.  
  958. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(3) > table tr td {
  959.  
  960.  
  961. display:block;
  962.  
  963. }
  964.  
  965. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(3) form {
  966.  
  967. margin: 0;
  968.  
  969. }
  970.  
  971.  
  972. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(3) > table:nth-child(n) > tbody > tr:nth-child(n) {
  973.  
  974. height: 150px;
  975. width: 25%;
  976.  
  977. }
  978.  
  979.  
  980.  
  981.  
  982.  
  983.  
  984.  
  985.  
  986. /* 練習セレクトメニュー サイズ */
  987. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > table:nth-child(17) > tbody > tr > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) > select {
  988.  
  989. width: 200px;
  990.  
  991. }
  992.  
  993.  
  994.  
  995.  
  996.  
  997. /* 掲示板 */
  998.  
  999. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(11) > tbody > tr:nth-child(1) > td:nth-child(1) {
  1000.  
  1001. display:list-item;
  1002. list-style:none;
  1003. width:100%;
  1004.  
  1005. }
  1006.  
  1007. /* お知らせ */
  1008. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(11) > tbody > tr:nth-child(1) > td:nth-child(2) {
  1009.  
  1010. display:list-item;
  1011. list-style:none;
  1012. width:100%;
  1013.  
  1014. }
  1015.  
  1016.  
  1017.  
  1018.  
  1019. /* 書き込み */
  1020.  
  1021.  
  1022. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(11) > tbody > tr:nth-child(2) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) {
  1023.  
  1024. display:list-item;
  1025. list-style:none;
  1026. width:100%;
  1027.  
  1028. }
  1029.  
  1030.  
  1031. textarea[name="com_content"] {
  1032.  
  1033. height: 150px;
  1034.  
  1035. }
  1036.  
  1037. /* 野手テーブル 改行しない*/
  1038. #open1 > div > table > tbody > tr > td > table {
  1039. white-space: nowrap;
  1040.  
  1041. }
  1042.  
  1043. /* セル間隔調整 */
  1044. #open1 > div > table > tbody > tr > td > table > tbody > tr:nth-child(1) > td:nth-child(n) {
  1045.  
  1046. padding: 0 6 0 6;
  1047.  
  1048. }
  1049.  
  1050. #open1 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) {
  1051.  
  1052. padding: 15 0 15 0;
  1053.  
  1054. }
  1055.  
  1056.  
  1057. /* 投手テーブル 改行しない*/
  1058. #open2 > div > table > tbody > tr > td > table {
  1059. white-space: nowrap;
  1060.  
  1061. }
  1062.  
  1063. /* セル間隔調整 */
  1064. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(1) > td:nth-child(n) {
  1065.  
  1066. padding: 0 6 0 6;
  1067.  
  1068. }
  1069. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) {
  1070.  
  1071. padding: 15 0 15 0;
  1072.  
  1073. }
  1074.  
  1075.  
  1076.  
  1077.  
  1078.  
  1079. /* ヘッダ部 */
  1080. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1081.  
  1082. height: 80px;
  1083.  
  1084.  
  1085. }
  1086. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(n+2) img {
  1087.  
  1088. width: 80px;
  1089.  
  1090. }
  1091.  
  1092. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  1093.  
  1094. height: 40px;
  1095.  
  1096. }
  1097.  
  1098.  
  1099. /* 順番移動▲ */
  1100. #open1 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) > font:nth-child(1) {
  1101. font-size: 50px;
  1102. }
  1103.  
  1104. #open1 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) > font:nth-child(5) {
  1105. font-size: 50px;
  1106. }
  1107.  
  1108. /* 順番移動▲ */
  1109. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) > font:nth-child(1) {
  1110. font-size: 50px;
  1111. }
  1112.  
  1113. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) > font:nth-child(5) {
  1114. font-size: 50px;
  1115. }
  1116.  
  1117. #open1 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) > input[type="text"] {
  1118.  
  1119. width: 100px;
  1120.  
  1121. }
  1122.  
  1123. #open1 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(2) > select {
  1124.  
  1125. width: 100px;
  1126.  
  1127. }
  1128.  
  1129. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) > input[type="text"] {
  1130.  
  1131. width: 100px;
  1132.  
  1133. }
  1134.  
  1135.  
  1136.  
  1137.  
  1138. /* 野手ポジション・打順変更ボタン 位置調整 */
  1139. #open1 > div > table > tbody > tr > td > div {
  1140.  
  1141. padding-bottom: 30px;
  1142. position: relative;
  1143. left: 150px;
  1144.  
  1145.  
  1146. }
  1147. #open1 > div > table > tbody > tr > td > div > input {
  1148.  
  1149. width: 300px;
  1150.  
  1151. }
  1152.  
  1153.  
  1154. /* 投手起用順変更ボタン 位置調整 */
  1155.  
  1156. #open2 > div > table > tbody > tr > td > div {
  1157.  
  1158. padding-bottom: 30px;
  1159. position: relative;
  1160. left: 150px;
  1161.  
  1162. }
  1163. #open2 > div > table > tbody > tr > td > div > input {
  1164.  
  1165. width: 300px;
  1166.  
  1167. }
  1168.  
  1169. /* 画面更新ボタン 位置調整 */
  1170. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(1) > form > div {
  1171.  
  1172.  
  1173. padding: 30 0 30 0;
  1174. position: relative;
  1175.  
  1176.  
  1177.  
  1178. }
  1179.  
  1180.  
  1181. #oreore_sm {
  1182. background-color: #ff00ff;
  1183. }
  1184.  
  1185. #oreore_sm2 {
  1186. background-color: #ff0055;
  1187. }
  1188.  
  1189.  
  1190. /* ヘッダ画像 */
  1191. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  1192.  
  1193.  
  1194. display: none;
  1195.  
  1196. }
  1197. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  1198.  
  1199. display: none;
  1200.  
  1201.  
  1202. }
  1203.  
  1204. /* メニュー非表示 */
  1205. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  1206.  
  1207. display: none;
  1208.  
  1209. }
  1210.  
  1211.  
  1212. /* ロゴ */
  1213. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  1214.  
  1215. height: 80px;
  1216. width: 250px;
  1217. }
  1218.  
  1219.  
  1220.  
  1221.  
  1222.  
  1223.  
  1224.  
  1225.  
  1226.  
  1227.  
  1228. /* 通常メニューを消す */
  1229. /* ヘッダ画像 */
  1230. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  1231.  
  1232.  
  1233. display: none;
  1234.  
  1235. }
  1236. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  1237.  
  1238. display: none;
  1239.  
  1240.  
  1241. }
  1242.  
  1243. /* メニュー非表示 */
  1244. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table {
  1245.  
  1246. display: none;
  1247.  
  1248. }
  1249.  
  1250. /* ドラフト メニュー非表示 */
  1251. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  1252.  
  1253. display: none;
  1254.  
  1255. }
  1256.  
  1257.  
  1258. /* ロゴのテーブルを非表示 */
  1259. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1260.  
  1261. display: none;
  1262.  
  1263. }
  1264.  
  1265.  
  1266.  
  1267.  
  1268. #open2 > div > table > tbody > tr > td > div > input[type="submit"] {
  1269.  
  1270. z-index:1;
  1271. position: relative;
  1272.  
  1273. }
  1274.  
  1275. `;
  1276.  
  1277.  
  1278. }else if(syurui == "home_on"){
  1279.  
  1280. console.log("home_on");
  1281. txt = (function(param) {return param[0].replace(/\n|\r/g, "");})`
  1282.  
  1283. body {
  1284. width: 100%;
  1285. min-width: 980px;
  1286. color:black;
  1287. background-color:white;
  1288. font-size:18px;
  1289. font-family:verdana, arial, helvetica, Sans-Serif;
  1290. }
  1291. th,td {
  1292. font-size:18px;
  1293. font-family:verdana, arial, helvetica, Sans-Serif;
  1294. }
  1295.  
  1296.  
  1297.  
  1298.  
  1299.  
  1300.  
  1301.  
  1302. input {
  1303.  
  1304. width: 140px;
  1305. height: 80px;
  1306. font-size: 20px;
  1307.  
  1308. }
  1309.  
  1310.  
  1311.  
  1312. /* 日程 フォントサイズ */
  1313. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > font {
  1314.  
  1315. font-size:18px;
  1316.  
  1317. }
  1318.  
  1319.  
  1320.  
  1321.  
  1322.  
  1323.  
  1324. /* 次の試合1 */
  1325. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > b {
  1326.  
  1327. word-wrap: break-word;
  1328. white-space: normal;
  1329. display: block;
  1330.  
  1331. }
  1332.  
  1333. /* 次の試合2 */
  1334. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > strong {
  1335.  
  1336. word-wrap: break-word;
  1337. white-space: normal;
  1338. display: block;
  1339.  
  1340. }
  1341.  
  1342.  
  1343.  
  1344. /* X年度 X月X日 width調整 */
  1345. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) {
  1346.  
  1347. width: 140px;
  1348.  
  1349. }
  1350.  
  1351. /* X年度 調整 */
  1352. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) > span > font {
  1353.  
  1354. font-size:20px;
  1355.  
  1356. }
  1357.  
  1358. /* 試合日の球場名を非表示 */
  1359.  
  1360. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) small {
  1361.  
  1362. display: none;
  1363.  
  1364. }
  1365.  
  1366.  
  1367.  
  1368.  
  1369. /* 練習セレクトメニュー サイズ */
  1370. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > table:nth-child(17) > tbody > tr > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) > select {
  1371.  
  1372. width: 200px;
  1373.  
  1374. }
  1375.  
  1376.  
  1377.  
  1378.  
  1379.  
  1380.  
  1381.  
  1382.  
  1383.  
  1384.  
  1385. textarea[name="com_content"] {
  1386.  
  1387. height: 150px;
  1388.  
  1389. }
  1390.  
  1391. /* ヘッダ部 */
  1392. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1393.  
  1394. height: 80px;
  1395.  
  1396.  
  1397. }
  1398. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(n+2) img {
  1399.  
  1400. width: 80px;
  1401.  
  1402. }
  1403.  
  1404. /* ロゴ */
  1405. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  1406.  
  1407. height: 80px;
  1408. width: 250px;
  1409.  
  1410.  
  1411. }
  1412. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  1413.  
  1414. width: 250px;
  1415. }
  1416.  
  1417.  
  1418.  
  1419. /* ログイン部分 */
  1420.  
  1421. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  1422.  
  1423. display: block;
  1424. }
  1425.  
  1426.  
  1427.  
  1428.  
  1429. /* メニュー(ランキング等) */
  1430. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table > tbody > tr > td > a > img {
  1431.  
  1432. height: 30px;
  1433. }
  1434.  
  1435. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1436.  
  1437.  
  1438. height: 50px;
  1439.  
  1440. }
  1441.  
  1442.  
  1443. /* ロゴとログインメニューを並べる */
  1444. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  1445. float:left;
  1446.  
  1447. }
  1448.  
  1449. /* ドラフト */
  1450. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  1451.  
  1452. //display:none;
  1453. position:absolute;
  1454. height: 50px;
  1455.  
  1456. }
  1457.  
  1458. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  1459.  
  1460. height: 30px;
  1461.  
  1462. }
  1463.  
  1464.  
  1465.  
  1466.  
  1467.  
  1468.  
  1469. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  1470.  
  1471. display: none;
  1472.  
  1473. }
  1474.  
  1475.  
  1476.  
  1477. /* 通常メニューを消す */
  1478. /* ヘッダ画像 */
  1479. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  1480.  
  1481.  
  1482. display: none;
  1483.  
  1484. }
  1485. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  1486.  
  1487. display: none;
  1488.  
  1489.  
  1490. }
  1491.  
  1492. /* メニュー非表示 */
  1493. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table {
  1494.  
  1495. display: none;
  1496.  
  1497. }
  1498.  
  1499. /* ドラフト メニュー非表示 */
  1500. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  1501.  
  1502. display: none;
  1503.  
  1504. }
  1505.  
  1506. /* ロゴを非表示 */
  1507. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  1508.  
  1509. display: none;
  1510.  
  1511. }
  1512.  
  1513.  
  1514.  
  1515.  
  1516. /* 順位表 */
  1517.  
  1518. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) {
  1519.  
  1520. margin: 2px;
  1521. width: 98%;
  1522. }
  1523.  
  1524. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table > tbody > tr > td > table > tbody > tr:nth-child(2) > td > table {
  1525.  
  1526. width: 98%;
  1527. margin: 2px;
  1528. }
  1529.  
  1530. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table > tbody > tr > td > table > tbody > tr:nth-child(2) > td > table {
  1531.  
  1532. width: 98%;
  1533. margin: 2px;
  1534.  
  1535. }
  1536.  
  1537.  
  1538. `;
  1539. }else if(syurui == "home_nihon"){
  1540.  
  1541. txt = (function(param) {return param[0].replace(/\n|\r/g, "");})`
  1542.  
  1543.  
  1544. body {
  1545. width: 100%;
  1546. min-width: 980px;
  1547. color:black;
  1548. background-color:white;
  1549. font-size:18px;
  1550. font-family:verdana, arial, helvetica, Sans-Serif;
  1551. }
  1552. th,td {
  1553. font-size:18px;
  1554. font-family:verdana, arial, helvetica, Sans-Serif;
  1555. }
  1556.  
  1557.  
  1558.  
  1559.  
  1560.  
  1561.  
  1562.  
  1563.  
  1564. input {
  1565.  
  1566. width: 140px;
  1567. height: 80px;
  1568. font-size: 20px;
  1569.  
  1570. }
  1571.  
  1572.  
  1573.  
  1574. /* 日程 フォントサイズ */
  1575. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > font {
  1576.  
  1577. font-size:18px;
  1578.  
  1579. }
  1580.  
  1581.  
  1582.  
  1583.  
  1584.  
  1585.  
  1586. /* 次の試合1 */
  1587. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > b {
  1588.  
  1589. word-wrap: break-word;
  1590. white-space: normal;
  1591. display: block;
  1592.  
  1593. }
  1594.  
  1595. /* 次の試合2 */
  1596. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > strong {
  1597.  
  1598. word-wrap: break-word;
  1599. white-space: normal;
  1600. display: block;
  1601.  
  1602. }
  1603.  
  1604.  
  1605.  
  1606. /* X年度 X月X日 width調整 */
  1607. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) {
  1608.  
  1609. width: 140px;
  1610.  
  1611. }
  1612.  
  1613. /* X年度 調整 */
  1614. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) > span > font {
  1615.  
  1616. font-size:20px;
  1617.  
  1618. }
  1619.  
  1620. /* 試合日の球場名を非表示 */
  1621.  
  1622. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) small {
  1623.  
  1624. display: none;
  1625.  
  1626. }
  1627.  
  1628.  
  1629.  
  1630.  
  1631. /* 練習セレクトメニュー サイズ */
  1632. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > table:nth-child(17) > tbody > tr > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) > select {
  1633.  
  1634. width: 200px;
  1635.  
  1636. }
  1637.  
  1638.  
  1639.  
  1640.  
  1641.  
  1642.  
  1643.  
  1644.  
  1645.  
  1646.  
  1647. textarea[name="com_content"] {
  1648.  
  1649. height: 150px;
  1650.  
  1651. }
  1652.  
  1653. /* ヘッダ部 */
  1654. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1655.  
  1656. height: 80px;
  1657.  
  1658.  
  1659. }
  1660. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(n+2) img {
  1661.  
  1662. width: 80px;
  1663.  
  1664. }
  1665.  
  1666. /* ロゴ */
  1667. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  1668.  
  1669. height: 80px;
  1670. width: 250px;
  1671.  
  1672.  
  1673. }
  1674. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  1675.  
  1676. width: 250px;
  1677. }
  1678.  
  1679.  
  1680.  
  1681. /* ログイン部分 */
  1682.  
  1683. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  1684.  
  1685. display: block;
  1686. }
  1687.  
  1688.  
  1689.  
  1690.  
  1691. /* メニュー(ランキング等) */
  1692. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table > tbody > tr > td > a > img {
  1693.  
  1694. height: 30px;
  1695. }
  1696.  
  1697. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1698.  
  1699.  
  1700. height: 50px;
  1701.  
  1702. }
  1703.  
  1704.  
  1705. /* ロゴとログインメニューを並べる */
  1706. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  1707. float:left;
  1708.  
  1709. }
  1710.  
  1711. /* ドラフト */
  1712. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  1713.  
  1714. //display:none;
  1715. position:absolute;
  1716. height: 50px;
  1717.  
  1718. }
  1719.  
  1720. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  1721.  
  1722. height: 30px;
  1723.  
  1724. }
  1725.  
  1726.  
  1727.  
  1728.  
  1729.  
  1730.  
  1731. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  1732.  
  1733. display: none;
  1734.  
  1735. }
  1736.  
  1737.  
  1738.  
  1739. /* 通常メニューを消す */
  1740. /* ヘッダ画像 */
  1741. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  1742.  
  1743.  
  1744. display: none;
  1745.  
  1746. }
  1747. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  1748.  
  1749. display: none;
  1750.  
  1751.  
  1752. }
  1753.  
  1754. /* メニュー非表示 */
  1755. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table {
  1756.  
  1757. display: none;
  1758.  
  1759. }
  1760.  
  1761. /* ドラフト メニュー非表示 */
  1762. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  1763.  
  1764. display: none;
  1765.  
  1766. }
  1767.  
  1768. /* ロゴを非表示 */
  1769. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  1770.  
  1771. display: none;
  1772.  
  1773. }
  1774.  
  1775.  
  1776.  
  1777.  
  1778. /* 順位表 */
  1779.  
  1780. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(11) {
  1781.  
  1782. margin: 2px;
  1783. width: 98%;
  1784. }
  1785.  
  1786. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table > tbody > tr > td > table > tbody > tr:nth-child(2) > td > table {
  1787.  
  1788. width: 98%;
  1789. margin: 2px;
  1790. }
  1791.  
  1792. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table > tbody > tr > td > table > tbody > tr:nth-child(2) > td > table {
  1793.  
  1794. width: 98%;
  1795. margin: 2px;
  1796.  
  1797. }
  1798.  
  1799.  
  1800.  
  1801.  
  1802. /* 日本シリーズ結果表示 調整 */
  1803. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) {
  1804. width: 30%;
  1805. }
  1806.  
  1807. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(2) {
  1808. width: 40%;
  1809. }
  1810.  
  1811. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) {
  1812. width: 30%;
  1813. }
  1814.  
  1815.  
  1816. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table:nth-child(3) {
  1817. width: 98%;
  1818. }
  1819.  
  1820. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table:nth-child(5) {
  1821. width: 98%;
  1822. }
  1823.  
  1824. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table:nth-child(3) {
  1825. width: 98%;
  1826. }
  1827.  
  1828. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table:nth-child(5) {
  1829. width: 98%;
  1830. }
  1831.  
  1832.  
  1833. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table:nth-child(n+3) > tbody > tr:nth-child(n) > td:nth-child(n) {
  1834.  
  1835. font-size: 16px;
  1836.  
  1837. }
  1838.  
  1839. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table:nth-child(n+3) > tbody > tr:nth-child(n) > td:nth-child(n) {
  1840.  
  1841. font-size: 16px;
  1842.  
  1843. }
  1844.  
  1845.  
  1846.  
  1847. /* 日シリ テーブル調整 */
  1848. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) {
  1849.  
  1850. width: 98%;
  1851.  
  1852. }
  1853.  
  1854.  
  1855. /* 日シリ 勝敗 */
  1856.  
  1857. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table:nth-child(1) > tbody > tr > td:nth-child(2) {
  1858.  
  1859. font-size: 16px;
  1860.  
  1861. }
  1862.  
  1863. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table:nth-child(1) > tbody > tr > td:nth-child(2) {
  1864.  
  1865. font-size: 16px;
  1866.  
  1867. }
  1868.  
  1869.  
  1870. `;
  1871.  
  1872.  
  1873. }else if(syurui == "home_off"){
  1874.  
  1875. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  1876.  
  1877. body {
  1878. width: 100%;
  1879. min-width: 980px;
  1880. color:black;
  1881. background-color:white;
  1882. font-size:18px;
  1883. font-family:verdana, arial, helvetica, Sans-Serif;
  1884. }
  1885. th,td {
  1886. font-size:18px;
  1887. font-family:verdana, arial, helvetica, Sans-Serif;
  1888. }
  1889.  
  1890.  
  1891. input {
  1892.  
  1893. width: 140px;
  1894. height: 80px;
  1895. font-size: 20px;
  1896.  
  1897. }
  1898.  
  1899.  
  1900.  
  1901. /* 日程 フォントサイズ */
  1902. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > font {
  1903.  
  1904. font-size:18px;
  1905.  
  1906. }
  1907.  
  1908.  
  1909.  
  1910.  
  1911.  
  1912.  
  1913. /* 次の試合1 */
  1914. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > b {
  1915.  
  1916. word-wrap: break-word;
  1917. white-space: normal;
  1918. display: block;
  1919.  
  1920. }
  1921.  
  1922. /* 次の試合2 */
  1923. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > strong {
  1924.  
  1925. word-wrap: break-word;
  1926. white-space: normal;
  1927. display: block;
  1928.  
  1929. }
  1930.  
  1931.  
  1932.  
  1933. /* X年度 X月X日 width調整 */
  1934. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) {
  1935.  
  1936. width: 140px;
  1937.  
  1938. }
  1939.  
  1940. /* X年度 調整 */
  1941. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) > span > font {
  1942.  
  1943. font-size:20px;
  1944.  
  1945. }
  1946.  
  1947. /* 試合日の球場名を非表示 */
  1948.  
  1949. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) small {
  1950.  
  1951. display: none;
  1952.  
  1953. }
  1954.  
  1955.  
  1956.  
  1957.  
  1958. /* 練習セレクトメニュー サイズ */
  1959. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > table:nth-child(17) > tbody > tr > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) > select {
  1960.  
  1961. width: 200px;
  1962.  
  1963. }
  1964.  
  1965.  
  1966.  
  1967.  
  1968.  
  1969.  
  1970.  
  1971.  
  1972.  
  1973.  
  1974. textarea[name="com_content"] {
  1975.  
  1976. height: 150px;
  1977.  
  1978. }
  1979.  
  1980. /* ヘッダ部 */
  1981. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1982.  
  1983. height: 80px;
  1984.  
  1985.  
  1986. }
  1987. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(n+2) img {
  1988.  
  1989. width: 80px;
  1990.  
  1991. }
  1992.  
  1993. /* ロゴ */
  1994. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  1995.  
  1996. height: 80px;
  1997. width: 250px;
  1998.  
  1999.  
  2000. }
  2001. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  2002.  
  2003. width: 250px;
  2004. }
  2005.  
  2006.  
  2007.  
  2008. /* ログイン部分 */
  2009.  
  2010. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  2011.  
  2012. display: block;
  2013. }
  2014.  
  2015.  
  2016.  
  2017.  
  2018. /* メニュー(ランキング等) */
  2019. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table > tbody > tr > td > a > img {
  2020.  
  2021. height: 30px;
  2022. }
  2023.  
  2024. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2025.  
  2026.  
  2027. height: 50px;
  2028.  
  2029. }
  2030.  
  2031.  
  2032. /* ロゴとログインメニューを並べる */
  2033. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  2034. float:left;
  2035.  
  2036. }
  2037.  
  2038. /* ドラフト */
  2039. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  2040.  
  2041. //display:none;
  2042. position:absolute;
  2043. height: 50px;
  2044.  
  2045. }
  2046.  
  2047. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  2048.  
  2049. height: 30px;
  2050.  
  2051. }
  2052.  
  2053.  
  2054.  
  2055.  
  2056.  
  2057.  
  2058. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2059.  
  2060. display: none;
  2061.  
  2062. }
  2063.  
  2064.  
  2065.  
  2066. /* 通常メニューを消す */
  2067. /* ヘッダ画像 */
  2068. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2069.  
  2070.  
  2071. display: none;
  2072.  
  2073. }
  2074. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  2075.  
  2076. display: none;
  2077.  
  2078.  
  2079. }
  2080.  
  2081. /* メニュー非表示 */
  2082. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(8) > table {
  2083.  
  2084. display: none;
  2085.  
  2086. }
  2087.  
  2088. /* 新規登録 メニュー非表示 */
  2089. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  2090.  
  2091. display: none;
  2092.  
  2093. }
  2094.  
  2095. /* ドラフト メニュー非表示 */
  2096. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) {
  2097.  
  2098. display: none;
  2099.  
  2100. }
  2101.  
  2102.  
  2103. /* ロゴを非表示 */
  2104. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  2105.  
  2106. display: none;
  2107.  
  2108. }
  2109.  
  2110. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody {
  2111.  
  2112.  
  2113. }
  2114.  
  2115.  
  2116. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) {
  2117.  
  2118. border-style: none;
  2119.  
  2120.  
  2121. }
  2122.  
  2123.  
  2124.  
  2125. /* 順位表 */
  2126.  
  2127. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(11) {
  2128.  
  2129. margin: 2px;
  2130. width: 98%;
  2131. }
  2132.  
  2133. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table > tbody > tr > td > table > tbody > tr:nth-child(2) > td > table {
  2134.  
  2135. width: 98%;
  2136. margin: 2px;
  2137. }
  2138.  
  2139. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table > tbody > tr > td > table > tbody > tr:nth-child(2) > td > table {
  2140.  
  2141. width: 98%;
  2142. margin: 2px;
  2143.  
  2144. }
  2145.  
  2146.  
  2147.  
  2148. /* 日本シリーズ結果表示 調整 */
  2149.  
  2150.  
  2151. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) {
  2152. width: 30%;
  2153.  
  2154. }
  2155.  
  2156. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(2) {
  2157. width: 40%;
  2158. }
  2159.  
  2160. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) {
  2161. width: 30%;
  2162. }
  2163.  
  2164.  
  2165. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table:nth-child(3) {
  2166. width: 98%;
  2167.  
  2168.  
  2169. }
  2170.  
  2171. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table:nth-child(5) {
  2172. width: 98%;
  2173. }
  2174.  
  2175. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table:nth-child(3) {
  2176. width: 98%;
  2177. }
  2178.  
  2179. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table:nth-child(5) {
  2180. width: 98%;
  2181. }
  2182.  
  2183. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table:nth-child(n+3) > tbody > tr:nth-child(n) > td:nth-child(n) {
  2184.  
  2185. font-size: 16px;
  2186.  
  2187. }
  2188.  
  2189. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table:nth-child(n+3) > tbody > tr:nth-child(n) > td:nth-child(n) {
  2190.  
  2191. font-size: 16px;
  2192.  
  2193. }
  2194.  
  2195.  
  2196. /* 日シリ テーブル調整 */
  2197. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) {
  2198.  
  2199. width: 98%;
  2200.  
  2201. }
  2202.  
  2203.  
  2204. /* 日シリ 勝敗 */
  2205.  
  2206. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table:nth-child(1) > tbody > tr > td:nth-child(2) {
  2207.  
  2208. font-size: 16px;
  2209.  
  2210. }
  2211.  
  2212. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table:nth-child(1) > tbody > tr > td:nth-child(2) {
  2213.  
  2214. font-size: 16px;
  2215.  
  2216. }
  2217.  
  2218.  
  2219.  
  2220.  
  2221.  
  2222.  
  2223.  
  2224. `;
  2225.  
  2226.  
  2227. }else if(syurui == "skill"){
  2228.  
  2229. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  2230.  
  2231. input {
  2232.  
  2233. width: 250px;
  2234. height: 80px;
  2235. font-size: 20px;
  2236.  
  2237. }
  2238.  
  2239.  
  2240.  
  2241. /* 日程 フォントサイズ */
  2242. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > font {
  2243.  
  2244. font-size:18px;
  2245.  
  2246. }
  2247.  
  2248.  
  2249.  
  2250.  
  2251.  
  2252.  
  2253. /* 次の試合1 */
  2254. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > b {
  2255.  
  2256. word-wrap: break-word;
  2257. white-space: normal;
  2258. display: block;
  2259.  
  2260. }
  2261.  
  2262. /* 次の試合2 */
  2263. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > strong {
  2264.  
  2265. word-wrap: break-word;
  2266. white-space: normal;
  2267. display: block;
  2268.  
  2269. }
  2270.  
  2271.  
  2272.  
  2273. /* X年度 X月X日 width調整 */
  2274. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) {
  2275.  
  2276. width: 140px;
  2277.  
  2278. }
  2279.  
  2280. /* X年度 調整 */
  2281. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) > span > font {
  2282.  
  2283. font-size:20px;
  2284.  
  2285. }
  2286.  
  2287. /* 試合日の球場名を非表示 */
  2288.  
  2289. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) small {
  2290.  
  2291. display: none;
  2292.  
  2293. }
  2294.  
  2295.  
  2296.  
  2297.  
  2298. /* 練習セレクトメニュー サイズ */
  2299. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > table:nth-child(17) > tbody > tr > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) > select {
  2300.  
  2301. width: 200px;
  2302.  
  2303. }
  2304.  
  2305.  
  2306.  
  2307.  
  2308.  
  2309.  
  2310.  
  2311.  
  2312.  
  2313.  
  2314. textarea[name="com_content"] {
  2315.  
  2316. height: 150px;
  2317.  
  2318. }
  2319.  
  2320. /* ヘッダ部 */
  2321. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2322.  
  2323. height: 80px;
  2324.  
  2325.  
  2326. }
  2327. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(n+2) img {
  2328.  
  2329. width: 80px;
  2330.  
  2331. }
  2332.  
  2333. /* ロゴ */
  2334. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  2335.  
  2336. height: 80px;
  2337. width: 250px;
  2338. }
  2339.  
  2340.  
  2341.  
  2342. /* ログイン部分 */
  2343.  
  2344. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  2345.  
  2346. display: block;
  2347. }
  2348.  
  2349.  
  2350.  
  2351.  
  2352. /* メニュー(ランキング等) */
  2353. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table > tbody > tr > td > a > img {
  2354.  
  2355. height: 30px;
  2356. }
  2357.  
  2358. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2359.  
  2360.  
  2361. height: 50px;
  2362.  
  2363. }
  2364.  
  2365.  
  2366. /* ロゴとログインメニューを並べる */
  2367. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  2368. float:left;
  2369.  
  2370. }
  2371.  
  2372. /* ドラフト */
  2373. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  2374.  
  2375. //display:none;
  2376. position:absolute;
  2377. height: 50px;
  2378.  
  2379. }
  2380.  
  2381. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  2382.  
  2383. height: 30px;
  2384.  
  2385. }
  2386.  
  2387.  
  2388.  
  2389.  
  2390.  
  2391.  
  2392. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2393.  
  2394. display: none;
  2395.  
  2396. }
  2397.  
  2398.  
  2399.  
  2400. /* ヘッダ画像 */
  2401. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2402.  
  2403.  
  2404. display: none;
  2405.  
  2406. }
  2407. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  2408.  
  2409. display: none;
  2410.  
  2411.  
  2412. }
  2413.  
  2414. /* メニュー非表示 */
  2415. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  2416.  
  2417. display: none;
  2418.  
  2419. }
  2420.  
  2421.  
  2422. /* ロゴ */
  2423. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  2424.  
  2425. height: 80px;
  2426. width: 250px;
  2427. }
  2428.  
  2429. /* タイトルロゴのセル表示調整 */
  2430. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(3) {
  2431.  
  2432. width: 100%;
  2433. height: 80px;
  2434.  
  2435. }
  2436.  
  2437. /* ロゴのテーブルを非表示 */
  2438. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2439.  
  2440. display: none;
  2441.  
  2442. }
  2443.  
  2444.  
  2445. /* 能力アップ 全体テーブル */
  2446.  
  2447.  
  2448. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) {
  2449.  
  2450. width:98%;
  2451. }
  2452.  
  2453. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table {
  2454.  
  2455. width:99%;
  2456.  
  2457. }
  2458.  
  2459.  
  2460.  
  2461. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(1) {
  2462. display:list-item;
  2463. list-style:none;
  2464. width:100%;
  2465.  
  2466. }
  2467.  
  2468.  
  2469. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(2) {
  2470.  
  2471. display:list-item;
  2472. list-style:none;
  2473. width:100%;
  2474.  
  2475. }
  2476.  
  2477.  
  2478. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(1) > form > table > tbody > tr:nth-child(2n) > td > input {
  2479.  
  2480. height:40px;
  2481. width: 80px;
  2482. }
  2483.  
  2484.  
  2485.  
  2486. /* 名前 ステータス テーブル */
  2487. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(1) > td > table > tbody > tr > td:nth-child(1),
  2488. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(1) > td > table > tbody > tr > td:nth-child(2),
  2489. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(1) > td > table > tbody > tr > td:nth-child(3) {
  2490. display: block;
  2491. width: 100%;
  2492.  
  2493.  
  2494. }
  2495.  
  2496. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(1) > td > table > tbody > tr > td:nth-child(3) > table > tbody > tr:nth-child(2) > td:nth-child(n) > small {
  2497.  
  2498. font-size: 18px;
  2499.  
  2500. }
  2501.  
  2502.  
  2503.  
  2504.  
  2505. /* ポイントテーブル */
  2506.  
  2507.  
  2508. /* greasemonkeyでテーブル作り直し カラー */
  2509. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(1) > form > table {
  2510. text-align: center;
  2511.  
  2512. }
  2513.  
  2514. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(1) > form > table tr td {
  2515.  
  2516. font-size: 24px;
  2517.  
  2518.  
  2519. }
  2520.  
  2521.  
  2522. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(1) > form > table > tbody > tr:nth-child(2) > td:nth-child(n) > input {
  2523.  
  2524. font-size:24px;
  2525. width:140px;
  2526. text-align: center;
  2527. }
  2528.  
  2529. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(1) > form > table > tbody > tr:nth-child(1) > td:nth-child(1) {
  2530. background-color: #ffdddd;
  2531.  
  2532. }
  2533.  
  2534. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(1) > form > table > tbody > tr:nth-child(1) > td:nth-child(2) {
  2535. background-color: #ddffdd;
  2536. }
  2537. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(1) > form > table > tbody > tr:nth-child(1) > td:nth-child(3) {
  2538. background-color: #ddddff;
  2539. }
  2540. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(1) > form > table > tbody > tr:nth-child(1) > td:nth-child(4) {
  2541. background-color: #ffffdd;
  2542. }
  2543. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(1) > form > table > tbody > tr:nth-child(1) > td:nth-child(5) {
  2544. background-color: #ddffff;
  2545. }
  2546.  
  2547.  
  2548.  
  2549.  
  2550. /* ポイントテーブル end */
  2551.  
  2552.  
  2553.  
  2554. /* ポイント振り分けテーブル */
  2555.  
  2556.  
  2557. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(2) > table:nth-child(1) > tbody > tr:nth-child(2n) > td:nth-child(n) > select {
  2558.  
  2559. width: 140px;
  2560. height: 80px;
  2561. font-size:26px;
  2562.  
  2563. }
  2564.  
  2565.  
  2566. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(2) > table:nth-child(3) > tbody > tr:nth-child(n) > td:nth-child(n) > table > tbody > tr > td:nth-child(1) > input[type="checkbox"] {
  2567.  
  2568.  
  2569. width: 40px;
  2570. height: 80px;
  2571.  
  2572. }
  2573.  
  2574. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(2) > table:nth-child(9) > tbody > tr:nth-child(1) > td > input[type="submit"] {
  2575.  
  2576. width: 250px;
  2577. height: 100px;
  2578.  
  2579.  
  2580. }
  2581.  
  2582.  
  2583. `;
  2584.  
  2585. }else if(syurui == "skill2"){
  2586.  
  2587. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  2588.  
  2589. input {
  2590.  
  2591. width: 250px;
  2592. height: 80px;
  2593. font-size: 20px;
  2594.  
  2595. }
  2596.  
  2597.  
  2598.  
  2599.  
  2600.  
  2601.  
  2602. /* 練習セレクトメニュー サイズ */
  2603. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > table:nth-child(17) > tbody > tr > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) > select {
  2604.  
  2605. width: 200px;
  2606.  
  2607. }
  2608.  
  2609.  
  2610.  
  2611.  
  2612. /* ヘッダ部 */
  2613. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2614.  
  2615. height: 80px;
  2616.  
  2617.  
  2618. }
  2619. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(n+2) img {
  2620.  
  2621. width: 80px;
  2622.  
  2623. }
  2624.  
  2625. /* ロゴ */
  2626. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  2627.  
  2628. height: 80px;
  2629. width: 250px;
  2630. }
  2631.  
  2632.  
  2633.  
  2634. /* ログイン部分 */
  2635.  
  2636. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  2637.  
  2638. display: block;
  2639. }
  2640.  
  2641.  
  2642.  
  2643.  
  2644. /* メニュー(ランキング等) */
  2645. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table > tbody > tr > td > a > img {
  2646.  
  2647. height: 30px;
  2648. }
  2649.  
  2650. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2651.  
  2652.  
  2653. height: 50px;
  2654.  
  2655. }
  2656.  
  2657.  
  2658. /* ロゴとログインメニューを並べる */
  2659. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  2660. float:left;
  2661.  
  2662. }
  2663.  
  2664. /* ドラフト */
  2665. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  2666.  
  2667. //display:none;
  2668. position:absolute;
  2669. height: 50px;
  2670.  
  2671. }
  2672.  
  2673. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  2674.  
  2675. height: 30px;
  2676.  
  2677. }
  2678.  
  2679.  
  2680.  
  2681.  
  2682.  
  2683.  
  2684. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2685.  
  2686. display: none;
  2687.  
  2688. }
  2689.  
  2690.  
  2691.  
  2692. /* ヘッダ画像 */
  2693. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2694.  
  2695.  
  2696. display: none;
  2697.  
  2698. }
  2699. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  2700.  
  2701. display: none;
  2702.  
  2703.  
  2704. }
  2705.  
  2706. /* メニュー非表示 */
  2707. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  2708.  
  2709. display: none;
  2710.  
  2711. }
  2712.  
  2713.  
  2714. /* ロゴ */
  2715. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  2716.  
  2717. height: 80px;
  2718. width: 250px;
  2719. }
  2720.  
  2721. /* タイトルロゴのセル表示調整 */
  2722. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(3) {
  2723.  
  2724. width: 100%;
  2725. height: 80px;
  2726.  
  2727. }
  2728.  
  2729. /* ロゴのテーブルを非表示 */
  2730. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2731.  
  2732. display: none;
  2733.  
  2734. }
  2735.  
  2736.  
  2737.  
  2738.  
  2739. /* 能力アップ結果 数値サイズ */
  2740.  
  2741.  
  2742.  
  2743. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(2) > tbody > tr:nth-child(1) > td > table small ,
  2744. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(2) > tbody > tr:nth-child(3) > td > table small {
  2745.  
  2746. font-size: 18px;
  2747.  
  2748. }
  2749.  
  2750.  
  2751.  
  2752.  
  2753.  
  2754.  
  2755.  
  2756. `;
  2757.  
  2758.  
  2759. }else if(syurui == "team_mode"){
  2760.  
  2761. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  2762. /* 日程 フォントサイズ */
  2763. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > font {
  2764.  
  2765. font-size:18px;
  2766.  
  2767. }
  2768.  
  2769.  
  2770.  
  2771.  
  2772. /* 上部 */
  2773. /*body table tbody tr:nth-child(1) td:nth-child(2) table:nth-child(7) td {*/
  2774. body table tbody tr:nth-child(1) td:nth-child(2) table:nth-child(7) tbody tr td table:nth-child(2) td {
  2775. display: block;
  2776. width: 100%;
  2777. }
  2778.  
  2779. body table tbody tr:nth-child(1) td:nth-child(2) table:nth-child(7) tbody tr td table:nth-child(2) tbody tr td:nth-child(1) table:nth-child(4) td {
  2780.  
  2781. display: table-cell;
  2782. width: 25%;
  2783. }
  2784.  
  2785. body table tbody tr:nth-child(1) td:nth-child(2) table:nth-child(7) tbody tr td table:nth-child(2) tbody tr td:nth-child(2) table tbody tr:nth-child(1) td table td {
  2786.  
  2787. display: table-cell;
  2788. width: unset;
  2789.  
  2790. }
  2791.  
  2792. body table tbody tr:nth-child(1) td:nth-child(2) table:nth-child(7) tbody tr td table:nth-child(2) tbody tr td:nth-child(2) table tbody tr:nth-child(n) td table tbody tr:nth-child(n) td {
  2793.  
  2794. display: table-cell;
  2795. width: unset;
  2796.  
  2797.  
  2798. }
  2799.  
  2800. body table tbody tr:nth-child(1) td:nth-child(2) table:nth-child(7) tbody >tr td table:nth-child(2) tbody tr td:nth-child(2) table tbody tr:nth-child(3) td table td {
  2801. display: table-cell;
  2802. width: unset;
  2803.  
  2804.  
  2805. }
  2806.  
  2807.  
  2808.  
  2809.  
  2810.  
  2811. /* 野手テーブル 改行しない*/
  2812.  
  2813. body table tbody tr:nth-child(1) td:nth-child(2) table:nth-child(7) tbody tr td table:nth-child(4) tbody tr td table td {
  2814. white-space: nowrap;
  2815.  
  2816. }
  2817.  
  2818.  
  2819.  
  2820. /* 投手テーブル 改行しない*/
  2821. body table tbody tr:nth-child(1) td:nth-child(2) table:nth-child(7) tbody tr td table:nth-child(7) tbody tr td table td {
  2822.  
  2823. white-space: nowrap;
  2824.  
  2825. }
  2826.  
  2827. /* セル間隔調整 */
  2828. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(1) > td:nth-child(n) {
  2829.  
  2830. padding: 0 6 0 6;
  2831.  
  2832. }
  2833. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) {
  2834.  
  2835. padding: 15 0 15 0;
  2836.  
  2837. }
  2838.  
  2839.  
  2840.  
  2841.  
  2842.  
  2843. /* ヘッダ部 */
  2844. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2845.  
  2846. height: 80px;
  2847.  
  2848.  
  2849. }
  2850. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(n+2) img {
  2851.  
  2852. width: 80px;
  2853.  
  2854. }
  2855.  
  2856. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  2857.  
  2858. height: 40px;
  2859.  
  2860. }
  2861.  
  2862.  
  2863.  
  2864.  
  2865.  
  2866. /* ヘッダ画像 */
  2867. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2868.  
  2869.  
  2870. display: none;
  2871.  
  2872. }
  2873. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  2874.  
  2875. display: none;
  2876.  
  2877.  
  2878. }
  2879.  
  2880. /* メニュー非表示 */
  2881. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  2882.  
  2883. display: none;
  2884.  
  2885. }
  2886.  
  2887.  
  2888. /* ロゴ */
  2889. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  2890.  
  2891. height: 80px;
  2892. width: 250px;
  2893. }
  2894.  
  2895.  
  2896.  
  2897.  
  2898.  
  2899.  
  2900.  
  2901.  
  2902.  
  2903.  
  2904. /* 通常メニューを消す */
  2905. /* ヘッダ画像 */
  2906. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2907.  
  2908.  
  2909. display: none;
  2910.  
  2911. }
  2912. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  2913.  
  2914. display: none;
  2915.  
  2916.  
  2917. }
  2918.  
  2919. /* メニュー非表示 */
  2920. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table {
  2921.  
  2922. display: none;
  2923.  
  2924. }
  2925.  
  2926. /* ドラフト メニュー非表示 */
  2927. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  2928.  
  2929. display: none;
  2930.  
  2931. }
  2932.  
  2933.  
  2934. /* ロゴのテーブルを非表示 */
  2935. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2936.  
  2937. display: none;
  2938.  
  2939. }
  2940.  
  2941.  
  2942.  
  2943.  
  2944. #open2 > div > table > tbody > tr > td > div > input[type="submit"] {
  2945.  
  2946. z-index:1;
  2947. position: relative;
  2948.  
  2949. }
  2950.  
  2951.  
  2952.  
  2953. `;
  2954. }else if(syurui == "consciousness"){
  2955.  
  2956. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  2957.  
  2958. input[type="submit"] {
  2959.  
  2960. width: 250px;
  2961. height: 80px;
  2962. font-size: 20px;
  2963.  
  2964. }
  2965.  
  2966.  
  2967.  
  2968.  
  2969.  
  2970.  
  2971.  
  2972.  
  2973.  
  2974.  
  2975.  
  2976. textarea[name="com_content"] {
  2977.  
  2978. height: 150px;
  2979.  
  2980. }
  2981.  
  2982.  
  2983.  
  2984.  
  2985.  
  2986.  
  2987.  
  2988.  
  2989. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  2990.  
  2991. height: 30px;
  2992.  
  2993. }
  2994.  
  2995.  
  2996.  
  2997.  
  2998.  
  2999.  
  3000. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  3001.  
  3002. display: none;
  3003.  
  3004. }
  3005.  
  3006.  
  3007.  
  3008. /* ヘッダ画像 */
  3009. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  3010.  
  3011.  
  3012. display: none;
  3013.  
  3014. }
  3015. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  3016.  
  3017. display: none;
  3018.  
  3019.  
  3020. }
  3021.  
  3022. /* メニュー非表示 */
  3023. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  3024.  
  3025. display: none;
  3026.  
  3027. }
  3028.  
  3029.  
  3030. /* ロゴ */
  3031. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  3032.  
  3033. height: 80px;
  3034. width: 250px;
  3035. }
  3036.  
  3037. /* タイトルロゴのセル表示調整 */
  3038. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(3) {
  3039.  
  3040. width: 100%;
  3041. height: 80px;
  3042.  
  3043. }
  3044.  
  3045. /* ロゴのテーブルを非表示 */
  3046. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3047.  
  3048. display: none;
  3049.  
  3050. }
  3051.  
  3052.  
  3053. select {
  3054.  
  3055. //width: 140px;
  3056. height: 80px;
  3057. font-size:26px;
  3058.  
  3059. }
  3060.  
  3061. input[type="radio"] {
  3062.  
  3063. width: 30px;
  3064. height: 40px;
  3065.  
  3066. }
  3067.  
  3068. /* テーブル枠調整 */
  3069. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) {
  3070.  
  3071. width: 99%;
  3072.  
  3073. }
  3074.  
  3075. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table {
  3076.  
  3077. width: 98%;
  3078.  
  3079. }
  3080.  
  3081.  
  3082.  
  3083.  
  3084. `;
  3085.  
  3086. }else if(syurui == "training"){
  3087.  
  3088. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  3089.  
  3090. input {
  3091.  
  3092. width: 270px;
  3093. height: 80px;
  3094. font-size: 20px;
  3095.  
  3096. }
  3097.  
  3098.  
  3099.  
  3100. /* 次の試合1 */
  3101. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > b {
  3102.  
  3103. word-wrap: break-word;
  3104. white-space: normal;
  3105. display: block;
  3106.  
  3107. }
  3108.  
  3109. /* 次の試合2 */
  3110. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > strong {
  3111.  
  3112. word-wrap: break-word;
  3113. white-space: normal;
  3114. display: block;
  3115.  
  3116. }
  3117.  
  3118.  
  3119.  
  3120.  
  3121. /* ヘッダ部 */
  3122. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3123.  
  3124. height: 80px;
  3125.  
  3126.  
  3127. }
  3128. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(n+2) img {
  3129.  
  3130. width: 80px;
  3131.  
  3132. }
  3133.  
  3134. /* ロゴ */
  3135. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  3136.  
  3137. height: 80px;
  3138. width: 250px;
  3139. }
  3140.  
  3141.  
  3142.  
  3143. /* ログイン部分 */
  3144.  
  3145. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  3146.  
  3147. display: block;
  3148. }
  3149.  
  3150.  
  3151.  
  3152.  
  3153.  
  3154.  
  3155.  
  3156.  
  3157.  
  3158.  
  3159. /* ヘッダ画像 */
  3160. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  3161.  
  3162.  
  3163. display: none;
  3164.  
  3165. }
  3166. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  3167.  
  3168. display: none;
  3169.  
  3170.  
  3171. }
  3172.  
  3173. /* メニュー非表示 */
  3174. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  3175.  
  3176. display: none;
  3177.  
  3178. }
  3179.  
  3180.  
  3181. /* ロゴ */
  3182. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  3183.  
  3184. height: 80px;
  3185. width: 250px;
  3186. }
  3187.  
  3188. /* タイトルロゴのセル表示調整 */
  3189. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(3) {
  3190.  
  3191. width: 100%;
  3192. height: 80px;
  3193.  
  3194. }
  3195.  
  3196. /* ロゴのテーブルを非表示 */
  3197. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3198.  
  3199. display: none;
  3200.  
  3201. }
  3202.  
  3203.  
  3204.  
  3205.  
  3206. /* テーブル枠調整 */
  3207. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) {
  3208.  
  3209. width: 99%;
  3210.  
  3211. }
  3212.  
  3213.  
  3214.  
  3215.  
  3216. /* 戻る リンク */
  3217.  
  3218. a[href="javascript:history.back()"] {
  3219.  
  3220. font-size: 40px;
  3221.  
  3222. }
  3223.  
  3224.  
  3225.  
  3226. /* 休息ボタン */
  3227. input[value="休息する"] {
  3228. width: 150px;
  3229. padding: 0 20 0 20;
  3230. }
  3231.  
  3232.  
  3233. /* 休息ボタン */
  3234. input[value="ログイン画面に戻る"] {
  3235. width: 210px;
  3236. padding: 0 20 0 20;
  3237. }
  3238.  
  3239. /* ステータス */
  3240. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td > table:nth-child(3) td {
  3241.  
  3242. font-size: 24px;
  3243.  
  3244. }
  3245.  
  3246. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td > center > font {
  3247.  
  3248. font-size: 20px;
  3249.  
  3250. }
  3251.  
  3252. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td > table:nth-child(10) {
  3253.  
  3254. width: 100%;
  3255.  
  3256. }
  3257.  
  3258.  
  3259.  
  3260. `;
  3261.  
  3262.  
  3263. }else if(syurui == "record"){
  3264.  
  3265. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  3266.  
  3267. input {
  3268.  
  3269. width: 140px;
  3270. height: 80px;
  3271. font-size: 20px;
  3272.  
  3273. }
  3274.  
  3275.  
  3276.  
  3277. /* 日程 フォントサイズ */
  3278. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > font {
  3279.  
  3280. font-size:18px;
  3281.  
  3282. }
  3283.  
  3284.  
  3285.  
  3286.  
  3287.  
  3288.  
  3289. /* 次の試合1 */
  3290. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > b {
  3291.  
  3292. word-wrap: break-word;
  3293. white-space: normal;
  3294. display: block;
  3295.  
  3296. }
  3297.  
  3298. /* 次の試合2 */
  3299. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > strong {
  3300.  
  3301. word-wrap: break-word;
  3302. white-space: normal;
  3303. display: block;
  3304.  
  3305. }
  3306.  
  3307.  
  3308.  
  3309. /* X年度 X月X日 width調整 */
  3310. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) {
  3311.  
  3312. width: 140px;
  3313.  
  3314. }
  3315.  
  3316. /* X年度 調整 */
  3317. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) > span > font {
  3318.  
  3319. font-size:20px;
  3320.  
  3321. }
  3322.  
  3323. /* 試合日の球場名を非表示 */
  3324.  
  3325. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) small {
  3326.  
  3327. display: none;
  3328.  
  3329. }
  3330.  
  3331.  
  3332.  
  3333.  
  3334. /* 練習セレクトメニュー サイズ */
  3335. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > table:nth-child(17) > tbody > tr > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) > select {
  3336.  
  3337. width: 200px;
  3338.  
  3339. }
  3340.  
  3341.  
  3342.  
  3343.  
  3344.  
  3345.  
  3346.  
  3347.  
  3348.  
  3349.  
  3350. textarea[name="com_content"] {
  3351.  
  3352. height: 150px;
  3353.  
  3354. }
  3355.  
  3356. /* ヘッダ部 */
  3357. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3358.  
  3359. height: 80px;
  3360.  
  3361.  
  3362. }
  3363. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(n+2) img {
  3364.  
  3365. width: 80px;
  3366.  
  3367. }
  3368.  
  3369. /* ロゴ */
  3370. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  3371.  
  3372. height: 80px;
  3373. width: 250px;
  3374. }
  3375.  
  3376.  
  3377.  
  3378. /* ログイン部分 */
  3379.  
  3380. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  3381.  
  3382. display: block;
  3383. }
  3384.  
  3385.  
  3386.  
  3387.  
  3388. /* メニュー(ランキング等) */
  3389. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table > tbody > tr > td > a > img {
  3390.  
  3391. height: 30px;
  3392. }
  3393.  
  3394. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3395.  
  3396.  
  3397. height: 50px;
  3398.  
  3399. }
  3400.  
  3401.  
  3402. /* ロゴとログインメニューを並べる */
  3403. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  3404. float:left;
  3405.  
  3406. }
  3407.  
  3408. /* ドラフト */
  3409. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  3410.  
  3411. //display:none;
  3412. position:absolute;
  3413. height: 50px;
  3414.  
  3415. }
  3416.  
  3417. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  3418.  
  3419. height: 30px;
  3420.  
  3421. }
  3422.  
  3423.  
  3424.  
  3425.  
  3426.  
  3427.  
  3428. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  3429.  
  3430. display: none;
  3431.  
  3432. }
  3433.  
  3434.  
  3435.  
  3436. /* ヘッダ画像 */
  3437. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  3438.  
  3439.  
  3440. display: none;
  3441.  
  3442. }
  3443. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  3444.  
  3445. display: none;
  3446.  
  3447.  
  3448. }
  3449.  
  3450. /* メニュー非表示 */
  3451. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  3452.  
  3453. display: none;
  3454.  
  3455. }
  3456.  
  3457.  
  3458. /* ロゴ */
  3459. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  3460.  
  3461. height: 80px;
  3462. width: 250px;
  3463. }
  3464.  
  3465. /* タイトルロゴのセル表示調整 */
  3466. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(3) {
  3467.  
  3468. width: 100%;
  3469. height: 80px;
  3470.  
  3471. }
  3472.  
  3473. /* ロゴのテーブルを非表示 */
  3474. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3475.  
  3476. display: none;
  3477.  
  3478. }
  3479.  
  3480.  
  3481. select {
  3482.  
  3483. //width: 140px;
  3484. height: 80px;
  3485. font-size:26px;
  3486.  
  3487. }
  3488.  
  3489. input[type="checkbox"] {
  3490.  
  3491.  
  3492. width: 40px;
  3493. height: 80px;
  3494.  
  3495. }
  3496.  
  3497. /* テーブル枠調整 */
  3498. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) {
  3499.  
  3500. width: 99%;
  3501.  
  3502. }
  3503.  
  3504. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(6) > tbody > tr > td:nth-child(1) > table {
  3505.  
  3506. width: 99%;
  3507.  
  3508. }
  3509. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(6) > tbody > tr > td:nth-child(3) > table {
  3510.  
  3511. width: 99%;
  3512.  
  3513. }
  3514.  
  3515. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(6) > tbody > tr > td:nth-child(-n+3) {
  3516.  
  3517. display: block;
  3518. width: 100%;
  3519.  
  3520. }
  3521.  
  3522.  
  3523.  
  3524.  
  3525. /* タイトルホルダー テーブル */
  3526.  
  3527. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(9) {
  3528.  
  3529. width: 100%;
  3530.  
  3531. }
  3532.  
  3533. /* 選手名 */
  3534. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(9) > tbody > tr:nth-child(n+1) > td:nth-child(1) ,
  3535. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(9) > tbody > tr:nth-child(n+1) > td:nth-child(6) {
  3536.  
  3537. width: 18%;
  3538. padding-left: 2px;
  3539. padding-right: 0px;
  3540.  
  3541. }
  3542.  
  3543. /* 回数 */
  3544. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(9) > tbody > tr:nth-child(n+1) > td:nth-child(2) ,
  3545. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(9) > tbody > tr:nth-child(n+1) > td:nth-child(7){
  3546.  
  3547. text-align: center;
  3548. width: 8%;
  3549. font-size: 12px;
  3550. padding-left: 0px;
  3551. padding-right: 0px;
  3552.  
  3553. }
  3554.  
  3555. /* チーム */
  3556. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(9) > tbody > tr:nth-child(n+1) > td:nth-child(3) ,
  3557. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(9) > tbody > tr:nth-child(n+1) > td:nth-child(8) {
  3558.  
  3559. font-size: 14px;
  3560. padding-left: 0px;
  3561. padding-right: 0px;
  3562. width: 10%;
  3563. }
  3564.  
  3565.  
  3566.  
  3567.  
  3568. /* データ */
  3569. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(9) > tbody > tr:nth-child(n+1) > td:nth-child(4) ,
  3570. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(9) > tbody > tr:nth-child(n) > td:nth-child(9) {
  3571.  
  3572. width: 7%;
  3573. text-align: right;
  3574. padding-left: 0px;
  3575. padding-right: 5px;
  3576.  
  3577. }
  3578.  
  3579.  
  3580.  
  3581.  
  3582.  
  3583.  
  3584. /* タイトル名 */
  3585. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(9) > tbody > tr:nth-child(n+1) > th {
  3586. width: 14%;
  3587. font-size: 16px;
  3588. padding: 0;
  3589. margin: 0;
  3590.  
  3591. }
  3592.  
  3593.  
  3594.  
  3595. /* ベストナイン */
  3596.  
  3597. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(16) {
  3598.  
  3599. width: 96%;
  3600.  
  3601. }
  3602.  
  3603.  
  3604. /* 選手名 */
  3605. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(16) > tbody > tr:nth-child(n+1) > td:nth-child(1) ,
  3606. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(16) > tbody > tr:nth-child(n+1) > td:nth-child(5) {
  3607.  
  3608. width: 22%;
  3609.  
  3610. }
  3611.  
  3612. /* 回数 */
  3613. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(16) > tbody > tr:nth-child(n+1) > td:nth-child(2) ,
  3614. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(16) > tbody > tr:nth-child(n+1) > td:nth-child(6) {
  3615.  
  3616. font-size: 12px;
  3617. width: 5%;
  3618.  
  3619. }
  3620.  
  3621. /* 守備位置 */
  3622. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(16) > tbody > tr:nth-child(2) > th {
  3623.  
  3624. width: 16%;
  3625.  
  3626. }
  3627.  
  3628. /* チーム名 */
  3629. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(16) > tbody > tr:nth-child(n+1) > td:nth-child(3) ,
  3630. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(16) > tbody > tr:nth-child(n+1) > td:nth-child(7) {
  3631.  
  3632. font-size: 16px;
  3633. width : 15%;
  3634.  
  3635. }
  3636.  
  3637.  
  3638.  
  3639.  
  3640.  
  3641.  
  3642. /* ゴールデングラブ */
  3643.  
  3644. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(16) {
  3645.  
  3646. width: 96%;
  3647.  
  3648. }
  3649.  
  3650.  
  3651. /* 選手名 */
  3652. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(20) > tbody > tr:nth-child(n+1) > td:nth-child(1) ,
  3653. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(20) > tbody > tr:nth-child(n+1) > td:nth-child(5) {
  3654.  
  3655. width: 22%;
  3656.  
  3657. }
  3658.  
  3659. /* 回数 */
  3660. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(20) > tbody > tr:nth-child(n+1) > td:nth-child(2) ,
  3661. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(20) > tbody > tr:nth-child(n+1) > td:nth-child(6) {
  3662.  
  3663. font-size: 12px;
  3664. width: 5%;
  3665.  
  3666. }
  3667.  
  3668. /* 守備位置 */
  3669. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(20) > tbody > tr:nth-child(2) > th {
  3670.  
  3671. width: 16%;
  3672.  
  3673. }
  3674.  
  3675. /* チーム名 */
  3676. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(20) > tbody > tr:nth-child(n+1) > td:nth-child(3) ,
  3677. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(20) > tbody > tr:nth-child(n+1) > td:nth-child(7) {
  3678.  
  3679. font-size: 16px;
  3680. width : 15%;
  3681.  
  3682. }
  3683.  
  3684.  
  3685.  
  3686.  
  3687.  
  3688.  
  3689. `;
  3690.  
  3691.  
  3692.  
  3693.  
  3694.  
  3695. }else if(syurui == "default"){
  3696.  
  3697. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  3698.  
  3699.  
  3700.  
  3701. input {
  3702.  
  3703. width: 250px;
  3704. height: 80px;
  3705. font-size: 20px;
  3706.  
  3707. }
  3708.  
  3709.  
  3710.  
  3711. /* 日程 フォントサイズ */
  3712. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > font {
  3713.  
  3714. font-size:18px;
  3715.  
  3716. }
  3717.  
  3718.  
  3719.  
  3720.  
  3721.  
  3722.  
  3723. /* 次の試合1 */
  3724. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > b {
  3725.  
  3726. word-wrap: break-word;
  3727. white-space: normal;
  3728. display: block;
  3729.  
  3730. }
  3731.  
  3732. /* 次の試合2 */
  3733. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > strong {
  3734.  
  3735. word-wrap: break-word;
  3736. white-space: normal;
  3737. display: block;
  3738.  
  3739. }
  3740.  
  3741.  
  3742.  
  3743. /* X年度 X月X日 width調整 */
  3744. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) {
  3745.  
  3746. width: 140px;
  3747.  
  3748. }
  3749.  
  3750. /* X年度 調整 */
  3751. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) > span > font {
  3752.  
  3753. font-size:20px;
  3754.  
  3755. }
  3756.  
  3757. /* 試合日の球場名を非表示 */
  3758.  
  3759. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) small {
  3760.  
  3761. display: none;
  3762.  
  3763. }
  3764.  
  3765.  
  3766.  
  3767.  
  3768. /* 練習セレクトメニュー サイズ */
  3769. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > table:nth-child(17) > tbody > tr > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) > select {
  3770.  
  3771. width: 200px;
  3772.  
  3773. }
  3774.  
  3775.  
  3776.  
  3777.  
  3778.  
  3779.  
  3780.  
  3781.  
  3782.  
  3783.  
  3784. textarea[name="com_content"] {
  3785.  
  3786. height: 150px;
  3787.  
  3788. }
  3789.  
  3790. /* ヘッダ部 */
  3791. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3792.  
  3793. height: 80px;
  3794.  
  3795.  
  3796. }
  3797. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(n+2) img {
  3798.  
  3799. width: 80px;
  3800.  
  3801. }
  3802.  
  3803. /* ロゴ */
  3804. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  3805.  
  3806. height: 80px;
  3807. width: 250px;
  3808. }
  3809.  
  3810.  
  3811.  
  3812. /* ログイン部分 */
  3813.  
  3814. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  3815.  
  3816. display: block;
  3817. }
  3818.  
  3819.  
  3820.  
  3821.  
  3822. /* メニュー(ランキング等) */
  3823. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table > tbody > tr > td > a > img {
  3824.  
  3825. height: 30px;
  3826. }
  3827.  
  3828. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3829.  
  3830.  
  3831. height: 50px;
  3832.  
  3833. }
  3834.  
  3835.  
  3836. /* ロゴとログインメニューを並べる */
  3837. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  3838. float:left;
  3839.  
  3840. }
  3841.  
  3842. /* ドラフト */
  3843. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  3844.  
  3845. //display:none;
  3846. position:absolute;
  3847. height: 50px;
  3848.  
  3849. }
  3850.  
  3851. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  3852.  
  3853. height: 30px;
  3854.  
  3855. }
  3856.  
  3857.  
  3858.  
  3859.  
  3860.  
  3861.  
  3862. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  3863.  
  3864. display: none;
  3865.  
  3866. }
  3867.  
  3868.  
  3869.  
  3870. /* ヘッダ画像 */
  3871. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  3872.  
  3873.  
  3874. display: none;
  3875.  
  3876. }
  3877. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  3878.  
  3879. display: none;
  3880.  
  3881.  
  3882. }
  3883.  
  3884. /* メニュー非表示 */
  3885. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  3886.  
  3887. display: none;
  3888.  
  3889. }
  3890.  
  3891.  
  3892. /* ロゴ */
  3893. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  3894.  
  3895. height: 80px;
  3896. width: 250px;
  3897. }
  3898.  
  3899. /* タイトルロゴのセル表示調整 */
  3900. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(3) {
  3901.  
  3902. width: 100%;
  3903. height: 80px;
  3904.  
  3905. }
  3906.  
  3907. /* ロゴのテーブルを非表示 */
  3908. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3909.  
  3910. display: none;
  3911.  
  3912. }
  3913.  
  3914.  
  3915. select {
  3916.  
  3917. //width: 140px;
  3918. height: 80px;
  3919. font-size:26px;
  3920.  
  3921. }
  3922.  
  3923. input[type="checkbox"] {
  3924.  
  3925.  
  3926. width: 40px;
  3927. height: 80px;
  3928.  
  3929. }
  3930.  
  3931. /* テーブル枠調整 */
  3932. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) {
  3933.  
  3934. width: 99%;
  3935.  
  3936. }
  3937.  
  3938.  
  3939. /* ラジオボタン */
  3940. input[type="radio"] {
  3941.  
  3942. width: 30px;
  3943. height: 40px;
  3944.  
  3945. }
  3946.  
  3947.  
  3948. /* 戻る リンク */
  3949.  
  3950. a[href="javascript:history.back()"] {
  3951.  
  3952. font-size: 40px;
  3953.  
  3954. }
  3955.  
  3956.  
  3957. `;
  3958.  
  3959.  
  3960.  
  3961.  
  3962.  
  3963. /*
  3964. }else if(syurui == "rule"){
  3965.  
  3966. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  3967.  
  3968.  
  3969.  
  3970. `;
  3971. */
  3972.  
  3973.  
  3974.  
  3975. }
  3976.  
  3977.  
  3978.  
  3979.  
  3980.  
  3981.  
  3982.  
  3983.  
  3984.  
  3985.  
  3986.  
  3987.  
  3988. return txt;
  3989.  
  3990.  
  3991.  
  3992.  
  3993. }
  3994.  
  3995.  
  3996.  
  3997.  
  3998.  
  3999.  
  4000.  
  4001.  
  4002.  
  4003. })();
  4004.  
  4005.  
  4006.