high pena CSS for smartphone(CSS built-in)

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

As of 2018-02-14. See the latest version.

  1. // ==UserScript==
  2. // @name high pena CSS for smartphone(CSS built-in)
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.022
  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. if(syurui != "drawer"){
  699. txt = (function(param) {return param[0].replace(/\n|\r/g, "");})`
  700.  
  701. body {
  702. width: 100%;
  703. min-width: 980px;
  704. color:black;
  705. background-color:white;
  706. font-size:18px;
  707. font-family:verdana, arial, helvetica, Sans-Serif;
  708. }
  709. th,td {
  710. font-size:18px;
  711. font-family:verdana, arial, helvetica, Sans-Serif;
  712. }
  713.  
  714. `;
  715. }
  716.  
  717.  
  718. if(syurui == "login"){
  719.  
  720.  
  721. txt = (function(param) {return param[0].replace(/\n|\r/g, "");})`
  722.  
  723.  
  724.  
  725. /* 練習セレクトメニュー */
  726. 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) {
  727.  
  728. text-align:center;
  729.  
  730. }
  731.  
  732.  
  733.  
  734. /* 掲示板・お知らせ */
  735. 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 {
  736.  
  737. display: block;
  738. width: 100%;
  739.  
  740. }
  741.  
  742. /* 掲示板 5個まで 名前部分 */
  743. 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) {
  744.  
  745. display: none;
  746.  
  747. }
  748.  
  749. /* 掲示板 5個まで コメント部分 */
  750. 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) {
  751.  
  752. display: none;
  753.  
  754. }
  755.  
  756. /* 掲示板 5個まで 改行部分 */
  757. 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) {
  758.  
  759. display: none;
  760.  
  761. }
  762.  
  763.  
  764.  
  765.  
  766. /* 練習セレクトボックス */
  767. 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 {
  768.  
  769. width: 200px;
  770.  
  771. }
  772.  
  773. select {
  774.  
  775. width: 140px;
  776. height: 80px;
  777. font-size: 20px;
  778.  
  779. }
  780.  
  781.  
  782. input {
  783.  
  784. width: 160px;
  785. height: 80px;
  786. font-size: 20px;
  787.  
  788. }
  789.  
  790.  
  791. /* 意識 画像拡大 */
  792. 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 {
  793.  
  794. height:6px;
  795.  
  796. }
  797.  
  798. /* 日程 フォントサイズ */
  799. 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 {
  800.  
  801. font-size:18px;
  802.  
  803. }
  804.  
  805.  
  806.  
  807.  
  808. /* 上部 */
  809.  
  810.  
  811. 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) {
  812.  
  813. width:100%;
  814. display: block;
  815. }
  816.  
  817. 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) {
  818.  
  819. width:100%;
  820. display: block;
  821. }
  822.  
  823.  
  824. 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) {
  825.  
  826. width:100%;
  827. display: block;
  828. }
  829.  
  830.  
  831. /* チーム方針 td サイズ */
  832.  
  833.  
  834. 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) {
  835.  
  836. width:20%;
  837.  
  838. }
  839.  
  840.  
  841. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > table:nth-child(5) select{
  842.  
  843. width: 100%;
  844.  
  845. }
  846.  
  847.  
  848.  
  849.  
  850. /* 次の試合1 */
  851. 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 {
  852.  
  853. word-wrap: break-word;
  854. white-space: normal;
  855. display: block;
  856.  
  857. }
  858.  
  859. /* 次の試合2 */
  860. 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 {
  861.  
  862. word-wrap: break-word;
  863. white-space: normal;
  864. display: block;
  865.  
  866. }
  867.  
  868.  
  869.  
  870. /* X年度 X月X日 width調整 */
  871. 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) {
  872.  
  873. width: 140px;
  874.  
  875. }
  876.  
  877. /* X年度 調整 */
  878. 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 {
  879.  
  880. font-size:20px;
  881.  
  882. }
  883.  
  884. /* 試合日の球場名を非表示 */
  885.  
  886. 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 {
  887.  
  888. display: none;
  889.  
  890. }
  891.  
  892. /* 球場情報を非表示 */
  893. 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) {
  894.  
  895. display: none;
  896.  
  897. }
  898.  
  899.  
  900. /* 行動 table 縦表示 */
  901.  
  902.  
  903. /* 名前~アイテム */
  904. 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) {
  905. display:list-item;
  906. list-style:none;
  907. width:100%;
  908. }
  909.  
  910. /* 練習~意識 */
  911. 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) {
  912.  
  913. display:list-item;
  914. list-style:none;
  915. width:100%;
  916.  
  917. }
  918.  
  919. /* 練習メニュー 大きさ */
  920. 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 {
  921.  
  922. width:250px;
  923.  
  924. }
  925.  
  926.  
  927. 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) {
  928.  
  929. display:list-item;
  930. list-style:none;
  931. width:100%;
  932. }
  933.  
  934.  
  935. /* 契約更改~設定 調整 */
  936.  
  937.  
  938.  
  939. 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) {
  940.  
  941.  
  942. display:block;
  943.  
  944. }
  945.  
  946.  
  947. 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 {
  948.  
  949.  
  950. display:inline-block;
  951.  
  952. }
  953.  
  954.  
  955. 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 {
  956.  
  957.  
  958. display:block;
  959.  
  960. }
  961.  
  962. 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 {
  963.  
  964. margin: 0;
  965.  
  966. }
  967.  
  968.  
  969. 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) {
  970.  
  971. height: 150px;
  972. width: 25%;
  973.  
  974. }
  975.  
  976.  
  977.  
  978.  
  979.  
  980.  
  981.  
  982.  
  983. /* 練習セレクトメニュー サイズ */
  984. 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 {
  985.  
  986. width: 200px;
  987.  
  988. }
  989.  
  990.  
  991.  
  992.  
  993.  
  994. /* 掲示板 */
  995.  
  996. 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) {
  997.  
  998. display:list-item;
  999. list-style:none;
  1000. width:100%;
  1001.  
  1002. }
  1003.  
  1004. /* お知らせ */
  1005. 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) {
  1006.  
  1007. display:list-item;
  1008. list-style:none;
  1009. width:100%;
  1010.  
  1011. }
  1012.  
  1013.  
  1014.  
  1015.  
  1016. /* 書き込み */
  1017.  
  1018.  
  1019. 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) {
  1020.  
  1021. display:list-item;
  1022. list-style:none;
  1023. width:100%;
  1024.  
  1025. }
  1026.  
  1027.  
  1028. textarea[name="com_content"] {
  1029.  
  1030. height: 150px;
  1031.  
  1032. }
  1033.  
  1034. /* 野手テーブル 改行しない*/
  1035. #open1 > div > table > tbody > tr > td > table {
  1036. white-space: nowrap;
  1037.  
  1038. }
  1039.  
  1040. /* セル間隔調整 */
  1041. #open1 > div > table > tbody > tr > td > table > tbody > tr:nth-child(1) > td:nth-child(n) {
  1042.  
  1043. padding: 0 6 0 6;
  1044.  
  1045. }
  1046.  
  1047. #open1 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) {
  1048.  
  1049. padding: 15 0 15 0;
  1050.  
  1051. }
  1052.  
  1053.  
  1054. /* 投手テーブル 改行しない*/
  1055. #open2 > div > table > tbody > tr > td > table {
  1056. white-space: nowrap;
  1057.  
  1058. }
  1059.  
  1060. /* セル間隔調整 */
  1061. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(1) > td:nth-child(n) {
  1062.  
  1063. padding: 0 6 0 6;
  1064.  
  1065. }
  1066. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) {
  1067.  
  1068. padding: 15 0 15 0;
  1069.  
  1070. }
  1071.  
  1072.  
  1073.  
  1074.  
  1075.  
  1076. /* ヘッダ部 */
  1077. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1078.  
  1079. height: 80px;
  1080.  
  1081.  
  1082. }
  1083. 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 {
  1084.  
  1085. width: 80px;
  1086.  
  1087. }
  1088.  
  1089. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  1090.  
  1091. height: 40px;
  1092.  
  1093. }
  1094.  
  1095.  
  1096. /* 順番移動▲ */
  1097. #open1 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) > font:nth-child(1) {
  1098. font-size: 50px;
  1099. }
  1100.  
  1101. #open1 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) > font:nth-child(5) {
  1102. font-size: 50px;
  1103. }
  1104.  
  1105. /* 順番移動▲ */
  1106. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) > font:nth-child(1) {
  1107. font-size: 50px;
  1108. }
  1109.  
  1110. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) > font:nth-child(5) {
  1111. font-size: 50px;
  1112. }
  1113.  
  1114. #open1 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) > input[type="text"] {
  1115.  
  1116. width: 100px;
  1117.  
  1118. }
  1119.  
  1120. #open1 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(2) > select {
  1121.  
  1122. width: 100px;
  1123.  
  1124. }
  1125.  
  1126. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) > input[type="text"] {
  1127.  
  1128. width: 100px;
  1129.  
  1130. }
  1131.  
  1132.  
  1133.  
  1134.  
  1135. /* 野手ポジション・打順変更ボタン 位置調整 */
  1136. #open1 > div > table > tbody > tr > td > div {
  1137.  
  1138. padding-bottom: 30px;
  1139. position: relative;
  1140. left: 150px;
  1141.  
  1142.  
  1143. }
  1144. #open1 > div > table > tbody > tr > td > div > input {
  1145.  
  1146. width: 300px;
  1147.  
  1148. }
  1149.  
  1150.  
  1151. /* 投手起用順変更ボタン 位置調整 */
  1152.  
  1153. #open2 > div > table > tbody > tr > td > div {
  1154.  
  1155. padding-bottom: 30px;
  1156. position: relative;
  1157. left: 150px;
  1158.  
  1159. }
  1160. #open2 > div > table > tbody > tr > td > div > input {
  1161.  
  1162. width: 300px;
  1163.  
  1164. }
  1165.  
  1166. /* 画面更新ボタン 位置調整 */
  1167. 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 {
  1168.  
  1169.  
  1170. padding: 30 0 30 0;
  1171. position: relative;
  1172.  
  1173.  
  1174.  
  1175. }
  1176.  
  1177.  
  1178. #oreore_sm {
  1179. background-color: #ff00ff;
  1180. }
  1181.  
  1182. #oreore_sm2 {
  1183. background-color: #ff0055;
  1184. }
  1185.  
  1186.  
  1187. /* ヘッダ画像 */
  1188. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  1189.  
  1190.  
  1191. display: none;
  1192.  
  1193. }
  1194. 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) {
  1195.  
  1196. display: none;
  1197.  
  1198.  
  1199. }
  1200.  
  1201. /* メニュー非表示 */
  1202. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  1203.  
  1204. display: none;
  1205.  
  1206. }
  1207.  
  1208.  
  1209. /* ロゴ */
  1210. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  1211.  
  1212. height: 80px;
  1213. width: 250px;
  1214. }
  1215.  
  1216.  
  1217.  
  1218.  
  1219.  
  1220.  
  1221.  
  1222.  
  1223.  
  1224.  
  1225. /* 通常メニューを消す */
  1226. /* ヘッダ画像 */
  1227. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  1228.  
  1229.  
  1230. display: none;
  1231.  
  1232. }
  1233. 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) {
  1234.  
  1235. display: none;
  1236.  
  1237.  
  1238. }
  1239.  
  1240. /* メニュー非表示 */
  1241. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table {
  1242.  
  1243. display: none;
  1244.  
  1245. }
  1246.  
  1247. /* ドラフト メニュー非表示 */
  1248. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  1249.  
  1250. display: none;
  1251.  
  1252. }
  1253.  
  1254.  
  1255. /* ロゴのテーブルを非表示 */
  1256. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1257.  
  1258. display: none;
  1259.  
  1260. }
  1261.  
  1262.  
  1263.  
  1264.  
  1265. #open2 > div > table > tbody > tr > td > div > input[type="submit"] {
  1266.  
  1267. z-index:1;
  1268. position: relative;
  1269.  
  1270. }
  1271.  
  1272. `;
  1273.  
  1274.  
  1275. }else if(syurui == "home_on"){
  1276.  
  1277. console.log("home_on");
  1278. txt = (function(param) {return param[0].replace(/\n|\r/g, "");})`
  1279.  
  1280. body {
  1281. width: 100%;
  1282. min-width: 980px;
  1283. color:black;
  1284. background-color:white;
  1285. font-size:18px;
  1286. font-family:verdana, arial, helvetica, Sans-Serif;
  1287. }
  1288. th,td {
  1289. font-size:18px;
  1290. font-family:verdana, arial, helvetica, Sans-Serif;
  1291. }
  1292.  
  1293.  
  1294.  
  1295.  
  1296.  
  1297.  
  1298.  
  1299. input {
  1300.  
  1301. width: 140px;
  1302. height: 80px;
  1303. font-size: 20px;
  1304.  
  1305. }
  1306.  
  1307.  
  1308.  
  1309. /* 日程 フォントサイズ */
  1310. 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 {
  1311.  
  1312. font-size:18px;
  1313.  
  1314. }
  1315.  
  1316.  
  1317.  
  1318.  
  1319.  
  1320.  
  1321. /* 次の試合1 */
  1322. 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 {
  1323.  
  1324. word-wrap: break-word;
  1325. white-space: normal;
  1326. display: block;
  1327.  
  1328. }
  1329.  
  1330. /* 次の試合2 */
  1331. 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 {
  1332.  
  1333. word-wrap: break-word;
  1334. white-space: normal;
  1335. display: block;
  1336.  
  1337. }
  1338.  
  1339.  
  1340.  
  1341. /* X年度 X月X日 width調整 */
  1342. 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) {
  1343.  
  1344. width: 140px;
  1345.  
  1346. }
  1347.  
  1348. /* X年度 調整 */
  1349. 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 {
  1350.  
  1351. font-size:20px;
  1352.  
  1353. }
  1354.  
  1355. /* 試合日の球場名を非表示 */
  1356.  
  1357. 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 {
  1358.  
  1359. display: none;
  1360.  
  1361. }
  1362.  
  1363.  
  1364.  
  1365.  
  1366. /* 練習セレクトメニュー サイズ */
  1367. 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 {
  1368.  
  1369. width: 200px;
  1370.  
  1371. }
  1372.  
  1373.  
  1374.  
  1375.  
  1376.  
  1377.  
  1378.  
  1379.  
  1380.  
  1381.  
  1382. textarea[name="com_content"] {
  1383.  
  1384. height: 150px;
  1385.  
  1386. }
  1387.  
  1388. /* ヘッダ部 */
  1389. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1390.  
  1391. height: 80px;
  1392.  
  1393.  
  1394. }
  1395. 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 {
  1396.  
  1397. width: 80px;
  1398.  
  1399. }
  1400.  
  1401. /* ロゴ */
  1402. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  1403.  
  1404. height: 80px;
  1405. width: 250px;
  1406.  
  1407.  
  1408. }
  1409. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  1410.  
  1411. width: 250px;
  1412. }
  1413.  
  1414.  
  1415.  
  1416. /* ログイン部分 */
  1417.  
  1418. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  1419.  
  1420. display: block;
  1421. }
  1422.  
  1423.  
  1424.  
  1425.  
  1426. /* メニュー(ランキング等) */
  1427. 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 {
  1428.  
  1429. height: 30px;
  1430. }
  1431.  
  1432. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1433.  
  1434.  
  1435. height: 50px;
  1436.  
  1437. }
  1438.  
  1439.  
  1440. /* ロゴとログインメニューを並べる */
  1441. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  1442. float:left;
  1443.  
  1444. }
  1445.  
  1446. /* ドラフト */
  1447. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  1448.  
  1449. //display:none;
  1450. position:absolute;
  1451. height: 50px;
  1452.  
  1453. }
  1454.  
  1455. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  1456.  
  1457. height: 30px;
  1458.  
  1459. }
  1460.  
  1461.  
  1462.  
  1463.  
  1464.  
  1465.  
  1466. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  1467.  
  1468. display: none;
  1469.  
  1470. }
  1471.  
  1472.  
  1473.  
  1474. /* 通常メニューを消す */
  1475. /* ヘッダ画像 */
  1476. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  1477.  
  1478.  
  1479. display: none;
  1480.  
  1481. }
  1482. 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) {
  1483.  
  1484. display: none;
  1485.  
  1486.  
  1487. }
  1488.  
  1489. /* メニュー非表示 */
  1490. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table {
  1491.  
  1492. display: none;
  1493.  
  1494. }
  1495.  
  1496. /* ドラフト メニュー非表示 */
  1497. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  1498.  
  1499. display: none;
  1500.  
  1501. }
  1502.  
  1503. /* ロゴを非表示 */
  1504. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  1505.  
  1506. display: none;
  1507.  
  1508. }
  1509.  
  1510.  
  1511.  
  1512.  
  1513. /* 順位表 */
  1514.  
  1515. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) {
  1516.  
  1517. margin: 2px;
  1518. width: 98%;
  1519. }
  1520.  
  1521. 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 {
  1522.  
  1523. width: 98%;
  1524. margin: 2px;
  1525. }
  1526.  
  1527. 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 {
  1528.  
  1529. width: 98%;
  1530. margin: 2px;
  1531.  
  1532. }
  1533.  
  1534.  
  1535. `;
  1536. }else if(syurui == "home_nihon"){
  1537.  
  1538. txt = (function(param) {return param[0].replace(/\n|\r/g, "");})`
  1539.  
  1540.  
  1541. body {
  1542. width: 100%;
  1543. min-width: 980px;
  1544. color:black;
  1545. background-color:white;
  1546. font-size:18px;
  1547. font-family:verdana, arial, helvetica, Sans-Serif;
  1548. }
  1549. th,td {
  1550. font-size:18px;
  1551. font-family:verdana, arial, helvetica, Sans-Serif;
  1552. }
  1553.  
  1554.  
  1555.  
  1556.  
  1557.  
  1558.  
  1559.  
  1560.  
  1561. input {
  1562.  
  1563. width: 140px;
  1564. height: 80px;
  1565. font-size: 20px;
  1566.  
  1567. }
  1568.  
  1569.  
  1570.  
  1571. /* 日程 フォントサイズ */
  1572. 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 {
  1573.  
  1574. font-size:18px;
  1575.  
  1576. }
  1577.  
  1578.  
  1579.  
  1580.  
  1581.  
  1582.  
  1583. /* 次の試合1 */
  1584. 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 {
  1585.  
  1586. word-wrap: break-word;
  1587. white-space: normal;
  1588. display: block;
  1589.  
  1590. }
  1591.  
  1592. /* 次の試合2 */
  1593. 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 {
  1594.  
  1595. word-wrap: break-word;
  1596. white-space: normal;
  1597. display: block;
  1598.  
  1599. }
  1600.  
  1601.  
  1602.  
  1603. /* X年度 X月X日 width調整 */
  1604. 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) {
  1605.  
  1606. width: 140px;
  1607.  
  1608. }
  1609.  
  1610. /* X年度 調整 */
  1611. 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 {
  1612.  
  1613. font-size:20px;
  1614.  
  1615. }
  1616.  
  1617. /* 試合日の球場名を非表示 */
  1618.  
  1619. 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 {
  1620.  
  1621. display: none;
  1622.  
  1623. }
  1624.  
  1625.  
  1626.  
  1627.  
  1628. /* 練習セレクトメニュー サイズ */
  1629. 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 {
  1630.  
  1631. width: 200px;
  1632.  
  1633. }
  1634.  
  1635.  
  1636.  
  1637.  
  1638.  
  1639.  
  1640.  
  1641.  
  1642.  
  1643.  
  1644. textarea[name="com_content"] {
  1645.  
  1646. height: 150px;
  1647.  
  1648. }
  1649.  
  1650. /* ヘッダ部 */
  1651. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1652.  
  1653. height: 80px;
  1654.  
  1655.  
  1656. }
  1657. 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 {
  1658.  
  1659. width: 80px;
  1660.  
  1661. }
  1662.  
  1663. /* ロゴ */
  1664. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  1665.  
  1666. height: 80px;
  1667. width: 250px;
  1668.  
  1669.  
  1670. }
  1671. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  1672.  
  1673. width: 250px;
  1674. }
  1675.  
  1676.  
  1677.  
  1678. /* ログイン部分 */
  1679.  
  1680. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  1681.  
  1682. display: block;
  1683. }
  1684.  
  1685.  
  1686.  
  1687.  
  1688. /* メニュー(ランキング等) */
  1689. 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 {
  1690.  
  1691. height: 30px;
  1692. }
  1693.  
  1694. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1695.  
  1696.  
  1697. height: 50px;
  1698.  
  1699. }
  1700.  
  1701.  
  1702. /* ロゴとログインメニューを並べる */
  1703. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  1704. float:left;
  1705.  
  1706. }
  1707.  
  1708. /* ドラフト */
  1709. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  1710.  
  1711. //display:none;
  1712. position:absolute;
  1713. height: 50px;
  1714.  
  1715. }
  1716.  
  1717. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  1718.  
  1719. height: 30px;
  1720.  
  1721. }
  1722.  
  1723.  
  1724.  
  1725.  
  1726.  
  1727.  
  1728. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  1729.  
  1730. display: none;
  1731.  
  1732. }
  1733.  
  1734.  
  1735.  
  1736. /* 通常メニューを消す */
  1737. /* ヘッダ画像 */
  1738. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  1739.  
  1740.  
  1741. display: none;
  1742.  
  1743. }
  1744. 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) {
  1745.  
  1746. display: none;
  1747.  
  1748.  
  1749. }
  1750.  
  1751. /* メニュー非表示 */
  1752. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table {
  1753.  
  1754. display: none;
  1755.  
  1756. }
  1757.  
  1758. /* ドラフト メニュー非表示 */
  1759. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  1760.  
  1761. display: none;
  1762.  
  1763. }
  1764.  
  1765. /* ロゴを非表示 */
  1766. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  1767.  
  1768. display: none;
  1769.  
  1770. }
  1771.  
  1772.  
  1773.  
  1774.  
  1775. /* 順位表 */
  1776.  
  1777. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(11) {
  1778.  
  1779. margin: 2px;
  1780. width: 98%;
  1781. }
  1782.  
  1783. 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 {
  1784.  
  1785. width: 98%;
  1786. margin: 2px;
  1787. }
  1788.  
  1789. 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 {
  1790.  
  1791. width: 98%;
  1792. margin: 2px;
  1793.  
  1794. }
  1795.  
  1796.  
  1797.  
  1798.  
  1799. /* 日本シリーズ結果表示 調整 */
  1800. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) {
  1801. width: 30%;
  1802. }
  1803.  
  1804. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(2) {
  1805. width: 40%;
  1806. }
  1807.  
  1808. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) {
  1809. width: 30%;
  1810. }
  1811.  
  1812.  
  1813. 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) {
  1814. width: 98%;
  1815. }
  1816.  
  1817. 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) {
  1818. width: 98%;
  1819. }
  1820.  
  1821. 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) {
  1822. width: 98%;
  1823. }
  1824.  
  1825. 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) {
  1826. width: 98%;
  1827. }
  1828.  
  1829.  
  1830. 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) {
  1831.  
  1832. font-size: 16px;
  1833.  
  1834. }
  1835.  
  1836. 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) {
  1837.  
  1838. font-size: 16px;
  1839.  
  1840. }
  1841.  
  1842.  
  1843.  
  1844. /* 日シリ テーブル調整 */
  1845. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) {
  1846.  
  1847. width: 98%;
  1848.  
  1849. }
  1850.  
  1851.  
  1852. /* 日シリ 勝敗 */
  1853.  
  1854. 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) {
  1855.  
  1856. font-size: 16px;
  1857.  
  1858. }
  1859.  
  1860. 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) {
  1861.  
  1862. font-size: 16px;
  1863.  
  1864. }
  1865.  
  1866.  
  1867. `;
  1868.  
  1869.  
  1870. }else if(syurui == "home_off"){
  1871.  
  1872. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  1873.  
  1874. body {
  1875. width: 100%;
  1876. min-width: 980px;
  1877. color:black;
  1878. background-color:white;
  1879. font-size:18px;
  1880. font-family:verdana, arial, helvetica, Sans-Serif;
  1881. }
  1882. th,td {
  1883. font-size:18px;
  1884. font-family:verdana, arial, helvetica, Sans-Serif;
  1885. }
  1886.  
  1887.  
  1888. input {
  1889.  
  1890. width: 140px;
  1891. height: 80px;
  1892. font-size: 20px;
  1893.  
  1894. }
  1895.  
  1896.  
  1897.  
  1898. /* 日程 フォントサイズ */
  1899. 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 {
  1900.  
  1901. font-size:18px;
  1902.  
  1903. }
  1904.  
  1905.  
  1906.  
  1907.  
  1908.  
  1909.  
  1910. /* 次の試合1 */
  1911. 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 {
  1912.  
  1913. word-wrap: break-word;
  1914. white-space: normal;
  1915. display: block;
  1916.  
  1917. }
  1918.  
  1919. /* 次の試合2 */
  1920. 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 {
  1921.  
  1922. word-wrap: break-word;
  1923. white-space: normal;
  1924. display: block;
  1925.  
  1926. }
  1927.  
  1928.  
  1929.  
  1930. /* X年度 X月X日 width調整 */
  1931. 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) {
  1932.  
  1933. width: 140px;
  1934.  
  1935. }
  1936.  
  1937. /* X年度 調整 */
  1938. 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 {
  1939.  
  1940. font-size:20px;
  1941.  
  1942. }
  1943.  
  1944. /* 試合日の球場名を非表示 */
  1945.  
  1946. 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 {
  1947.  
  1948. display: none;
  1949.  
  1950. }
  1951.  
  1952.  
  1953.  
  1954.  
  1955. /* 練習セレクトメニュー サイズ */
  1956. 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 {
  1957.  
  1958. width: 200px;
  1959.  
  1960. }
  1961.  
  1962.  
  1963.  
  1964.  
  1965.  
  1966.  
  1967.  
  1968.  
  1969.  
  1970.  
  1971. textarea[name="com_content"] {
  1972.  
  1973. height: 150px;
  1974.  
  1975. }
  1976.  
  1977. /* ヘッダ部 */
  1978. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1979.  
  1980. height: 80px;
  1981.  
  1982.  
  1983. }
  1984. 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 {
  1985.  
  1986. width: 80px;
  1987.  
  1988. }
  1989.  
  1990. /* ロゴ */
  1991. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  1992.  
  1993. height: 80px;
  1994. width: 250px;
  1995.  
  1996.  
  1997. }
  1998. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  1999.  
  2000. width: 250px;
  2001. }
  2002.  
  2003.  
  2004.  
  2005. /* ログイン部分 */
  2006.  
  2007. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  2008.  
  2009. display: block;
  2010. }
  2011.  
  2012.  
  2013.  
  2014.  
  2015. /* メニュー(ランキング等) */
  2016. 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 {
  2017.  
  2018. height: 30px;
  2019. }
  2020.  
  2021. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2022.  
  2023.  
  2024. height: 50px;
  2025.  
  2026. }
  2027.  
  2028.  
  2029. /* ロゴとログインメニューを並べる */
  2030. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  2031. float:left;
  2032.  
  2033. }
  2034.  
  2035. /* ドラフト */
  2036. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  2037.  
  2038. //display:none;
  2039. position:absolute;
  2040. height: 50px;
  2041.  
  2042. }
  2043.  
  2044. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  2045.  
  2046. height: 30px;
  2047.  
  2048. }
  2049.  
  2050.  
  2051.  
  2052.  
  2053.  
  2054.  
  2055. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2056.  
  2057. display: none;
  2058.  
  2059. }
  2060.  
  2061.  
  2062.  
  2063. /* 通常メニューを消す */
  2064. /* ヘッダ画像 */
  2065. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2066.  
  2067.  
  2068. display: none;
  2069.  
  2070. }
  2071. 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) {
  2072.  
  2073. display: none;
  2074.  
  2075.  
  2076. }
  2077.  
  2078. /* メニュー非表示 */
  2079. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(8) > table {
  2080.  
  2081. display: none;
  2082.  
  2083. }
  2084.  
  2085. /* 新規登録 メニュー非表示 */
  2086. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  2087.  
  2088. display: none;
  2089.  
  2090. }
  2091.  
  2092. /* ドラフト メニュー非表示 */
  2093. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) {
  2094.  
  2095. display: none;
  2096.  
  2097. }
  2098.  
  2099.  
  2100. /* ロゴを非表示 */
  2101. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  2102.  
  2103. display: none;
  2104.  
  2105. }
  2106.  
  2107. 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 {
  2108.  
  2109.  
  2110. }
  2111.  
  2112.  
  2113. 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) {
  2114.  
  2115. border-style: none;
  2116.  
  2117.  
  2118. }
  2119.  
  2120.  
  2121.  
  2122. /* 順位表 */
  2123.  
  2124. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(11) {
  2125.  
  2126. margin: 2px;
  2127. width: 98%;
  2128. }
  2129.  
  2130. 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 {
  2131.  
  2132. width: 98%;
  2133. margin: 2px;
  2134. }
  2135.  
  2136. 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 {
  2137.  
  2138. width: 98%;
  2139. margin: 2px;
  2140.  
  2141. }
  2142.  
  2143.  
  2144.  
  2145. /* 日本シリーズ結果表示 調整 */
  2146.  
  2147.  
  2148. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) {
  2149. width: 30%;
  2150.  
  2151. }
  2152.  
  2153. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(2) {
  2154. width: 40%;
  2155. }
  2156.  
  2157. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) {
  2158. width: 30%;
  2159. }
  2160.  
  2161.  
  2162. 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) {
  2163. width: 98%;
  2164.  
  2165.  
  2166. }
  2167.  
  2168. 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) {
  2169. width: 98%;
  2170. }
  2171.  
  2172. 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) {
  2173. width: 98%;
  2174. }
  2175.  
  2176. 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) {
  2177. width: 98%;
  2178. }
  2179.  
  2180. 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) {
  2181.  
  2182. font-size: 16px;
  2183.  
  2184. }
  2185.  
  2186. 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) {
  2187.  
  2188. font-size: 16px;
  2189.  
  2190. }
  2191.  
  2192.  
  2193. /* 日シリ テーブル調整 */
  2194. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) {
  2195.  
  2196. width: 98%;
  2197.  
  2198. }
  2199.  
  2200.  
  2201. /* 日シリ 勝敗 */
  2202.  
  2203. 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) {
  2204.  
  2205. font-size: 16px;
  2206.  
  2207. }
  2208.  
  2209. 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) {
  2210.  
  2211. font-size: 16px;
  2212.  
  2213. }
  2214.  
  2215.  
  2216.  
  2217.  
  2218.  
  2219.  
  2220.  
  2221. `;
  2222.  
  2223.  
  2224. }else if(syurui == "skill"){
  2225.  
  2226. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  2227.  
  2228. input {
  2229.  
  2230. width: 250px;
  2231. height: 80px;
  2232. font-size: 20px;
  2233.  
  2234. }
  2235.  
  2236.  
  2237.  
  2238. /* 日程 フォントサイズ */
  2239. 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 {
  2240.  
  2241. font-size:18px;
  2242.  
  2243. }
  2244.  
  2245.  
  2246.  
  2247.  
  2248.  
  2249.  
  2250. /* 次の試合1 */
  2251. 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 {
  2252.  
  2253. word-wrap: break-word;
  2254. white-space: normal;
  2255. display: block;
  2256.  
  2257. }
  2258.  
  2259. /* 次の試合2 */
  2260. 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 {
  2261.  
  2262. word-wrap: break-word;
  2263. white-space: normal;
  2264. display: block;
  2265.  
  2266. }
  2267.  
  2268.  
  2269.  
  2270. /* X年度 X月X日 width調整 */
  2271. 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) {
  2272.  
  2273. width: 140px;
  2274.  
  2275. }
  2276.  
  2277. /* X年度 調整 */
  2278. 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 {
  2279.  
  2280. font-size:20px;
  2281.  
  2282. }
  2283.  
  2284. /* 試合日の球場名を非表示 */
  2285.  
  2286. 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 {
  2287.  
  2288. display: none;
  2289.  
  2290. }
  2291.  
  2292.  
  2293.  
  2294.  
  2295. /* 練習セレクトメニュー サイズ */
  2296. 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 {
  2297.  
  2298. width: 200px;
  2299.  
  2300. }
  2301.  
  2302.  
  2303.  
  2304.  
  2305.  
  2306.  
  2307.  
  2308.  
  2309.  
  2310.  
  2311. textarea[name="com_content"] {
  2312.  
  2313. height: 150px;
  2314.  
  2315. }
  2316.  
  2317. /* ヘッダ部 */
  2318. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2319.  
  2320. height: 80px;
  2321.  
  2322.  
  2323. }
  2324. 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 {
  2325.  
  2326. width: 80px;
  2327.  
  2328. }
  2329.  
  2330. /* ロゴ */
  2331. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  2332.  
  2333. height: 80px;
  2334. width: 250px;
  2335. }
  2336.  
  2337.  
  2338.  
  2339. /* ログイン部分 */
  2340.  
  2341. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  2342.  
  2343. display: block;
  2344. }
  2345.  
  2346.  
  2347.  
  2348.  
  2349. /* メニュー(ランキング等) */
  2350. 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 {
  2351.  
  2352. height: 30px;
  2353. }
  2354.  
  2355. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2356.  
  2357.  
  2358. height: 50px;
  2359.  
  2360. }
  2361.  
  2362.  
  2363. /* ロゴとログインメニューを並べる */
  2364. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  2365. float:left;
  2366.  
  2367. }
  2368.  
  2369. /* ドラフト */
  2370. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  2371.  
  2372. //display:none;
  2373. position:absolute;
  2374. height: 50px;
  2375.  
  2376. }
  2377.  
  2378. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  2379.  
  2380. height: 30px;
  2381.  
  2382. }
  2383.  
  2384.  
  2385.  
  2386.  
  2387.  
  2388.  
  2389. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2390.  
  2391. display: none;
  2392.  
  2393. }
  2394.  
  2395.  
  2396.  
  2397. /* ヘッダ画像 */
  2398. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2399.  
  2400.  
  2401. display: none;
  2402.  
  2403. }
  2404. 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) {
  2405.  
  2406. display: none;
  2407.  
  2408.  
  2409. }
  2410.  
  2411. /* メニュー非表示 */
  2412. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  2413.  
  2414. display: none;
  2415.  
  2416. }
  2417.  
  2418.  
  2419. /* ロゴ */
  2420. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  2421.  
  2422. height: 80px;
  2423. width: 250px;
  2424. }
  2425.  
  2426. /* タイトルロゴのセル表示調整 */
  2427. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(3) {
  2428.  
  2429. width: 100%;
  2430. height: 80px;
  2431.  
  2432. }
  2433.  
  2434. /* ロゴのテーブルを非表示 */
  2435. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2436.  
  2437. display: none;
  2438.  
  2439. }
  2440.  
  2441.  
  2442. /* 能力アップ 全体テーブル */
  2443.  
  2444.  
  2445. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) {
  2446.  
  2447. width:98%;
  2448. }
  2449.  
  2450. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table {
  2451.  
  2452. width:99%;
  2453.  
  2454. }
  2455.  
  2456.  
  2457.  
  2458. 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) {
  2459. display:list-item;
  2460. list-style:none;
  2461. width:100%;
  2462.  
  2463. }
  2464.  
  2465.  
  2466. 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) {
  2467.  
  2468. display:list-item;
  2469. list-style:none;
  2470. width:100%;
  2471.  
  2472. }
  2473.  
  2474.  
  2475. 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 {
  2476.  
  2477. height:40px;
  2478. width: 80px;
  2479. }
  2480.  
  2481.  
  2482.  
  2483. /* 名前 ステータス テーブル */
  2484. 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),
  2485. 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),
  2486. 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) {
  2487. display: block;
  2488. width: 100%;
  2489.  
  2490.  
  2491. }
  2492.  
  2493. 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 {
  2494.  
  2495. font-size: 18px;
  2496.  
  2497. }
  2498.  
  2499.  
  2500.  
  2501.  
  2502. /* ポイントテーブル */
  2503.  
  2504.  
  2505. /* greasemonkeyでテーブル作り直し カラー */
  2506. 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 {
  2507. text-align: center;
  2508.  
  2509. }
  2510.  
  2511. 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 {
  2512.  
  2513. font-size: 24px;
  2514.  
  2515.  
  2516. }
  2517.  
  2518.  
  2519. 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 {
  2520.  
  2521. font-size:24px;
  2522. width:140px;
  2523. text-align: center;
  2524. }
  2525.  
  2526. 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) {
  2527. background-color: #ffdddd;
  2528.  
  2529. }
  2530.  
  2531. 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) {
  2532. background-color: #ddffdd;
  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(3) {
  2535. background-color: #ddddff;
  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(4) {
  2538. background-color: #ffffdd;
  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(5) {
  2541. background-color: #ddffff;
  2542. }
  2543.  
  2544.  
  2545.  
  2546.  
  2547. /* ポイントテーブル end */
  2548.  
  2549.  
  2550.  
  2551. /* ポイント振り分けテーブル */
  2552.  
  2553.  
  2554. 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 {
  2555.  
  2556. width: 140px;
  2557. height: 80px;
  2558. font-size:26px;
  2559.  
  2560. }
  2561.  
  2562.  
  2563. 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"] {
  2564.  
  2565.  
  2566. width: 40px;
  2567. height: 80px;
  2568.  
  2569. }
  2570.  
  2571. 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"] {
  2572.  
  2573. width: 250px;
  2574. height: 100px;
  2575.  
  2576.  
  2577. }
  2578.  
  2579.  
  2580. `;
  2581.  
  2582. }else if(syurui == "skill2"){
  2583.  
  2584. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  2585.  
  2586. input {
  2587.  
  2588. width: 250px;
  2589. height: 80px;
  2590. font-size: 20px;
  2591.  
  2592. }
  2593.  
  2594.  
  2595.  
  2596.  
  2597.  
  2598.  
  2599. /* 練習セレクトメニュー サイズ */
  2600. 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 {
  2601.  
  2602. width: 200px;
  2603.  
  2604. }
  2605.  
  2606.  
  2607.  
  2608.  
  2609. /* ヘッダ部 */
  2610. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2611.  
  2612. height: 80px;
  2613.  
  2614.  
  2615. }
  2616. 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 {
  2617.  
  2618. width: 80px;
  2619.  
  2620. }
  2621.  
  2622. /* ロゴ */
  2623. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  2624.  
  2625. height: 80px;
  2626. width: 250px;
  2627. }
  2628.  
  2629.  
  2630.  
  2631. /* ログイン部分 */
  2632.  
  2633. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  2634.  
  2635. display: block;
  2636. }
  2637.  
  2638.  
  2639.  
  2640.  
  2641. /* メニュー(ランキング等) */
  2642. 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 {
  2643.  
  2644. height: 30px;
  2645. }
  2646.  
  2647. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2648.  
  2649.  
  2650. height: 50px;
  2651.  
  2652. }
  2653.  
  2654.  
  2655. /* ロゴとログインメニューを並べる */
  2656. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  2657. float:left;
  2658.  
  2659. }
  2660.  
  2661. /* ドラフト */
  2662. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  2663.  
  2664. //display:none;
  2665. position:absolute;
  2666. height: 50px;
  2667.  
  2668. }
  2669.  
  2670. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  2671.  
  2672. height: 30px;
  2673.  
  2674. }
  2675.  
  2676.  
  2677.  
  2678.  
  2679.  
  2680.  
  2681. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2682.  
  2683. display: none;
  2684.  
  2685. }
  2686.  
  2687.  
  2688.  
  2689. /* ヘッダ画像 */
  2690. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2691.  
  2692.  
  2693. display: none;
  2694.  
  2695. }
  2696. 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) {
  2697.  
  2698. display: none;
  2699.  
  2700.  
  2701. }
  2702.  
  2703. /* メニュー非表示 */
  2704. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  2705.  
  2706. display: none;
  2707.  
  2708. }
  2709.  
  2710.  
  2711. /* ロゴ */
  2712. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  2713.  
  2714. height: 80px;
  2715. width: 250px;
  2716. }
  2717.  
  2718. /* タイトルロゴのセル表示調整 */
  2719. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(3) {
  2720.  
  2721. width: 100%;
  2722. height: 80px;
  2723.  
  2724. }
  2725.  
  2726. /* ロゴのテーブルを非表示 */
  2727. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2728.  
  2729. display: none;
  2730.  
  2731. }
  2732.  
  2733.  
  2734.  
  2735.  
  2736. /* 能力アップ結果 数値サイズ */
  2737.  
  2738.  
  2739.  
  2740. 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 ,
  2741. 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 {
  2742.  
  2743. font-size: 18px;
  2744.  
  2745. }
  2746.  
  2747.  
  2748.  
  2749.  
  2750.  
  2751.  
  2752.  
  2753. `;
  2754.  
  2755.  
  2756. }else if(syurui == "team_mode"){
  2757.  
  2758. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  2759. /* 日程 フォントサイズ */
  2760. 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 {
  2761.  
  2762. font-size:18px;
  2763.  
  2764. }
  2765.  
  2766.  
  2767.  
  2768.  
  2769. /* 上部 */
  2770. /*body table tbody tr:nth-child(1) td:nth-child(2) table:nth-child(7) td {*/
  2771. body table tbody tr:nth-child(1) td:nth-child(2) table:nth-child(7) tbody tr td table:nth-child(2) td {
  2772. display: block;
  2773. width: 100%;
  2774. }
  2775.  
  2776. 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 {
  2777.  
  2778. display: table-cell;
  2779. width: 25%;
  2780. }
  2781.  
  2782. 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 {
  2783.  
  2784. display: table-cell;
  2785. width: unset;
  2786.  
  2787. }
  2788.  
  2789. 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 {
  2790.  
  2791. display: table-cell;
  2792. width: unset;
  2793.  
  2794.  
  2795. }
  2796.  
  2797. 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 {
  2798. display: table-cell;
  2799. width: unset;
  2800.  
  2801.  
  2802. }
  2803.  
  2804.  
  2805.  
  2806.  
  2807.  
  2808. /* 野手テーブル 改行しない*/
  2809.  
  2810. 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 {
  2811. white-space: nowrap;
  2812.  
  2813. }
  2814.  
  2815.  
  2816.  
  2817. /* 投手テーブル 改行しない*/
  2818. 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 {
  2819.  
  2820. white-space: nowrap;
  2821.  
  2822. }
  2823.  
  2824. /* セル間隔調整 */
  2825. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(1) > td:nth-child(n) {
  2826.  
  2827. padding: 0 6 0 6;
  2828.  
  2829. }
  2830. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) {
  2831.  
  2832. padding: 15 0 15 0;
  2833.  
  2834. }
  2835.  
  2836.  
  2837.  
  2838.  
  2839.  
  2840. /* ヘッダ部 */
  2841. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2842.  
  2843. height: 80px;
  2844.  
  2845.  
  2846. }
  2847. 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 {
  2848.  
  2849. width: 80px;
  2850.  
  2851. }
  2852.  
  2853. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  2854.  
  2855. height: 40px;
  2856.  
  2857. }
  2858.  
  2859.  
  2860.  
  2861.  
  2862.  
  2863. /* ヘッダ画像 */
  2864. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2865.  
  2866.  
  2867. display: none;
  2868.  
  2869. }
  2870. 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) {
  2871.  
  2872. display: none;
  2873.  
  2874.  
  2875. }
  2876.  
  2877. /* メニュー非表示 */
  2878. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  2879.  
  2880. display: none;
  2881.  
  2882. }
  2883.  
  2884.  
  2885. /* ロゴ */
  2886. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  2887.  
  2888. height: 80px;
  2889. width: 250px;
  2890. }
  2891.  
  2892.  
  2893.  
  2894.  
  2895.  
  2896.  
  2897.  
  2898.  
  2899.  
  2900.  
  2901. /* 通常メニューを消す */
  2902. /* ヘッダ画像 */
  2903. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2904.  
  2905.  
  2906. display: none;
  2907.  
  2908. }
  2909. 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) {
  2910.  
  2911. display: none;
  2912.  
  2913.  
  2914. }
  2915.  
  2916. /* メニュー非表示 */
  2917. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table {
  2918.  
  2919. display: none;
  2920.  
  2921. }
  2922.  
  2923. /* ドラフト メニュー非表示 */
  2924. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  2925.  
  2926. display: none;
  2927.  
  2928. }
  2929.  
  2930.  
  2931. /* ロゴのテーブルを非表示 */
  2932. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2933.  
  2934. display: none;
  2935.  
  2936. }
  2937.  
  2938.  
  2939.  
  2940.  
  2941. #open2 > div > table > tbody > tr > td > div > input[type="submit"] {
  2942.  
  2943. z-index:1;
  2944. position: relative;
  2945.  
  2946. }
  2947.  
  2948.  
  2949.  
  2950. `;
  2951. }else if(syurui == "consciousness"){
  2952.  
  2953. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  2954.  
  2955. input[type="submit"] {
  2956.  
  2957. width: 250px;
  2958. height: 80px;
  2959. font-size: 20px;
  2960.  
  2961. }
  2962.  
  2963.  
  2964.  
  2965.  
  2966.  
  2967.  
  2968.  
  2969.  
  2970.  
  2971.  
  2972.  
  2973. textarea[name="com_content"] {
  2974.  
  2975. height: 150px;
  2976.  
  2977. }
  2978.  
  2979.  
  2980.  
  2981.  
  2982.  
  2983.  
  2984.  
  2985.  
  2986. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  2987.  
  2988. height: 30px;
  2989.  
  2990. }
  2991.  
  2992.  
  2993.  
  2994.  
  2995.  
  2996.  
  2997. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2998.  
  2999. display: none;
  3000.  
  3001. }
  3002.  
  3003.  
  3004.  
  3005. /* ヘッダ画像 */
  3006. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  3007.  
  3008.  
  3009. display: none;
  3010.  
  3011. }
  3012. 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) {
  3013.  
  3014. display: none;
  3015.  
  3016.  
  3017. }
  3018.  
  3019. /* メニュー非表示 */
  3020. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  3021.  
  3022. display: none;
  3023.  
  3024. }
  3025.  
  3026.  
  3027. /* ロゴ */
  3028. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  3029.  
  3030. height: 80px;
  3031. width: 250px;
  3032. }
  3033.  
  3034. /* タイトルロゴのセル表示調整 */
  3035. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(3) {
  3036.  
  3037. width: 100%;
  3038. height: 80px;
  3039.  
  3040. }
  3041.  
  3042. /* ロゴのテーブルを非表示 */
  3043. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3044.  
  3045. display: none;
  3046.  
  3047. }
  3048.  
  3049.  
  3050. select {
  3051.  
  3052. //width: 140px;
  3053. height: 80px;
  3054. font-size:26px;
  3055.  
  3056. }
  3057.  
  3058. input[type="radio"] {
  3059.  
  3060. width: 30px;
  3061. height: 40px;
  3062.  
  3063. }
  3064.  
  3065. /* テーブル枠調整 */
  3066. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) {
  3067.  
  3068. width: 99%;
  3069.  
  3070. }
  3071.  
  3072. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table {
  3073.  
  3074. width: 98%;
  3075.  
  3076. }
  3077.  
  3078.  
  3079.  
  3080.  
  3081. `;
  3082.  
  3083. }else if(syurui == "training"){
  3084.  
  3085. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  3086.  
  3087. input {
  3088.  
  3089. width: 270px;
  3090. height: 80px;
  3091. font-size: 20px;
  3092.  
  3093. }
  3094.  
  3095.  
  3096.  
  3097. /* 次の試合1 */
  3098. 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 {
  3099.  
  3100. word-wrap: break-word;
  3101. white-space: normal;
  3102. display: block;
  3103.  
  3104. }
  3105.  
  3106. /* 次の試合2 */
  3107. 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 {
  3108.  
  3109. word-wrap: break-word;
  3110. white-space: normal;
  3111. display: block;
  3112.  
  3113. }
  3114.  
  3115.  
  3116.  
  3117.  
  3118. /* ヘッダ部 */
  3119. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3120.  
  3121. height: 80px;
  3122.  
  3123.  
  3124. }
  3125. 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 {
  3126.  
  3127. width: 80px;
  3128.  
  3129. }
  3130.  
  3131. /* ロゴ */
  3132. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  3133.  
  3134. height: 80px;
  3135. width: 250px;
  3136. }
  3137.  
  3138.  
  3139.  
  3140. /* ログイン部分 */
  3141.  
  3142. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  3143.  
  3144. display: block;
  3145. }
  3146.  
  3147.  
  3148.  
  3149.  
  3150.  
  3151.  
  3152.  
  3153.  
  3154.  
  3155.  
  3156. /* ヘッダ画像 */
  3157. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  3158.  
  3159.  
  3160. display: none;
  3161.  
  3162. }
  3163. 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) {
  3164.  
  3165. display: none;
  3166.  
  3167.  
  3168. }
  3169.  
  3170. /* メニュー非表示 */
  3171. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  3172.  
  3173. display: none;
  3174.  
  3175. }
  3176.  
  3177.  
  3178. /* ロゴ */
  3179. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  3180.  
  3181. height: 80px;
  3182. width: 250px;
  3183. }
  3184.  
  3185. /* タイトルロゴのセル表示調整 */
  3186. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(3) {
  3187.  
  3188. width: 100%;
  3189. height: 80px;
  3190.  
  3191. }
  3192.  
  3193. /* ロゴのテーブルを非表示 */
  3194. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3195.  
  3196. display: none;
  3197.  
  3198. }
  3199.  
  3200.  
  3201.  
  3202.  
  3203. /* テーブル枠調整 */
  3204. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) {
  3205.  
  3206. width: 99%;
  3207.  
  3208. }
  3209.  
  3210.  
  3211.  
  3212.  
  3213. /* 戻る リンク */
  3214.  
  3215. a[href="javascript:history.back()"] {
  3216.  
  3217. font-size: 40px;
  3218.  
  3219. }
  3220.  
  3221.  
  3222.  
  3223. /* 休息ボタン */
  3224. input[value="休息する"] {
  3225. width: 150px;
  3226. padding: 0 20 0 20;
  3227. }
  3228.  
  3229.  
  3230. /* 休息ボタン */
  3231. input[value="ログイン画面に戻る"] {
  3232. width: 210px;
  3233. padding: 0 20 0 20;
  3234. }
  3235.  
  3236. /* ステータス */
  3237. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td > table:nth-child(3) td {
  3238.  
  3239. font-size: 24px;
  3240.  
  3241. }
  3242.  
  3243. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td > center > font {
  3244.  
  3245. font-size: 20px;
  3246.  
  3247. }
  3248.  
  3249. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td > table:nth-child(10) {
  3250.  
  3251. width: 100%;
  3252.  
  3253. }
  3254.  
  3255.  
  3256.  
  3257. `;
  3258.  
  3259.  
  3260. }else if(syurui == "record"){
  3261.  
  3262. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  3263.  
  3264. input {
  3265.  
  3266. width: 140px;
  3267. height: 80px;
  3268. font-size: 20px;
  3269.  
  3270. }
  3271.  
  3272.  
  3273.  
  3274. /* 日程 フォントサイズ */
  3275. 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 {
  3276.  
  3277. font-size:18px;
  3278.  
  3279. }
  3280.  
  3281.  
  3282.  
  3283.  
  3284.  
  3285.  
  3286. /* 次の試合1 */
  3287. 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 {
  3288.  
  3289. word-wrap: break-word;
  3290. white-space: normal;
  3291. display: block;
  3292.  
  3293. }
  3294.  
  3295. /* 次の試合2 */
  3296. 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 {
  3297.  
  3298. word-wrap: break-word;
  3299. white-space: normal;
  3300. display: block;
  3301.  
  3302. }
  3303.  
  3304.  
  3305.  
  3306. /* X年度 X月X日 width調整 */
  3307. 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) {
  3308.  
  3309. width: 140px;
  3310.  
  3311. }
  3312.  
  3313. /* X年度 調整 */
  3314. 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 {
  3315.  
  3316. font-size:20px;
  3317.  
  3318. }
  3319.  
  3320. /* 試合日の球場名を非表示 */
  3321.  
  3322. 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 {
  3323.  
  3324. display: none;
  3325.  
  3326. }
  3327.  
  3328.  
  3329.  
  3330.  
  3331. /* 練習セレクトメニュー サイズ */
  3332. 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 {
  3333.  
  3334. width: 200px;
  3335.  
  3336. }
  3337.  
  3338.  
  3339.  
  3340.  
  3341.  
  3342.  
  3343.  
  3344.  
  3345.  
  3346.  
  3347. textarea[name="com_content"] {
  3348.  
  3349. height: 150px;
  3350.  
  3351. }
  3352.  
  3353. /* ヘッダ部 */
  3354. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3355.  
  3356. height: 80px;
  3357.  
  3358.  
  3359. }
  3360. 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 {
  3361.  
  3362. width: 80px;
  3363.  
  3364. }
  3365.  
  3366. /* ロゴ */
  3367. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  3368.  
  3369. height: 80px;
  3370. width: 250px;
  3371. }
  3372.  
  3373.  
  3374.  
  3375. /* ログイン部分 */
  3376.  
  3377. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  3378.  
  3379. display: block;
  3380. }
  3381.  
  3382.  
  3383.  
  3384.  
  3385. /* メニュー(ランキング等) */
  3386. 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 {
  3387.  
  3388. height: 30px;
  3389. }
  3390.  
  3391. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3392.  
  3393.  
  3394. height: 50px;
  3395.  
  3396. }
  3397.  
  3398.  
  3399. /* ロゴとログインメニューを並べる */
  3400. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  3401. float:left;
  3402.  
  3403. }
  3404.  
  3405. /* ドラフト */
  3406. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  3407.  
  3408. //display:none;
  3409. position:absolute;
  3410. height: 50px;
  3411.  
  3412. }
  3413.  
  3414. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  3415.  
  3416. height: 30px;
  3417.  
  3418. }
  3419.  
  3420.  
  3421.  
  3422.  
  3423.  
  3424.  
  3425. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  3426.  
  3427. display: none;
  3428.  
  3429. }
  3430.  
  3431.  
  3432.  
  3433. /* ヘッダ画像 */
  3434. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  3435.  
  3436.  
  3437. display: none;
  3438.  
  3439. }
  3440. 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) {
  3441.  
  3442. display: none;
  3443.  
  3444.  
  3445. }
  3446.  
  3447. /* メニュー非表示 */
  3448. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  3449.  
  3450. display: none;
  3451.  
  3452. }
  3453.  
  3454.  
  3455. /* ロゴ */
  3456. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  3457.  
  3458. height: 80px;
  3459. width: 250px;
  3460. }
  3461.  
  3462. /* タイトルロゴのセル表示調整 */
  3463. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(3) {
  3464.  
  3465. width: 100%;
  3466. height: 80px;
  3467.  
  3468. }
  3469.  
  3470. /* ロゴのテーブルを非表示 */
  3471. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3472.  
  3473. display: none;
  3474.  
  3475. }
  3476.  
  3477.  
  3478. select {
  3479.  
  3480. //width: 140px;
  3481. height: 80px;
  3482. font-size:26px;
  3483.  
  3484. }
  3485.  
  3486. input[type="checkbox"] {
  3487.  
  3488.  
  3489. width: 40px;
  3490. height: 80px;
  3491.  
  3492. }
  3493.  
  3494. /* テーブル枠調整 */
  3495. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) {
  3496.  
  3497. width: 99%;
  3498.  
  3499. }
  3500.  
  3501. 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 {
  3502.  
  3503. width: 99%;
  3504.  
  3505. }
  3506. 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 {
  3507.  
  3508. width: 99%;
  3509.  
  3510. }
  3511.  
  3512. 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) {
  3513.  
  3514. display: block;
  3515. width: 100%;
  3516.  
  3517. }
  3518.  
  3519.  
  3520.  
  3521.  
  3522. /* タイトルホルダー テーブル */
  3523.  
  3524. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(9) {
  3525.  
  3526. width: 100%;
  3527.  
  3528. }
  3529.  
  3530. /* 選手名 */
  3531. 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) ,
  3532. 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) {
  3533.  
  3534. width: 18%;
  3535. padding-left: 2px;
  3536. padding-right: 0px;
  3537.  
  3538. }
  3539.  
  3540. /* 回数 */
  3541. 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) ,
  3542. 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){
  3543.  
  3544. text-align: center;
  3545. width: 8%;
  3546. font-size: 12px;
  3547. padding-left: 0px;
  3548. padding-right: 0px;
  3549.  
  3550. }
  3551.  
  3552. /* チーム */
  3553. 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) ,
  3554. 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) {
  3555.  
  3556. font-size: 14px;
  3557. padding-left: 0px;
  3558. padding-right: 0px;
  3559. width: 10%;
  3560. }
  3561.  
  3562.  
  3563.  
  3564.  
  3565. /* データ */
  3566. 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) ,
  3567. 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) {
  3568.  
  3569. width: 7%;
  3570. text-align: right;
  3571. padding-left: 0px;
  3572. padding-right: 5px;
  3573.  
  3574. }
  3575.  
  3576.  
  3577.  
  3578.  
  3579.  
  3580.  
  3581. /* タイトル名 */
  3582. 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 {
  3583. width: 14%;
  3584. font-size: 16px;
  3585. padding: 0;
  3586. margin: 0;
  3587.  
  3588. }
  3589.  
  3590.  
  3591.  
  3592. /* ベストナイン */
  3593.  
  3594. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(16) {
  3595.  
  3596. width: 96%;
  3597.  
  3598. }
  3599.  
  3600.  
  3601. /* 選手名 */
  3602. 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) ,
  3603. 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) {
  3604.  
  3605. width: 22%;
  3606.  
  3607. }
  3608.  
  3609. /* 回数 */
  3610. 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) ,
  3611. 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) {
  3612.  
  3613. font-size: 12px;
  3614. width: 5%;
  3615.  
  3616. }
  3617.  
  3618. /* 守備位置 */
  3619. 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 {
  3620.  
  3621. width: 16%;
  3622.  
  3623. }
  3624.  
  3625. /* チーム名 */
  3626. 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) ,
  3627. 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) {
  3628.  
  3629. font-size: 16px;
  3630. width : 15%;
  3631.  
  3632. }
  3633.  
  3634.  
  3635.  
  3636.  
  3637.  
  3638.  
  3639. /* ゴールデングラブ */
  3640.  
  3641. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(16) {
  3642.  
  3643. width: 96%;
  3644.  
  3645. }
  3646.  
  3647.  
  3648. /* 選手名 */
  3649. 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) ,
  3650. 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) {
  3651.  
  3652. width: 22%;
  3653.  
  3654. }
  3655.  
  3656. /* 回数 */
  3657. 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) ,
  3658. 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) {
  3659.  
  3660. font-size: 12px;
  3661. width: 5%;
  3662.  
  3663. }
  3664.  
  3665. /* 守備位置 */
  3666. 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 {
  3667.  
  3668. width: 16%;
  3669.  
  3670. }
  3671.  
  3672. /* チーム名 */
  3673. 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) ,
  3674. 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) {
  3675.  
  3676. font-size: 16px;
  3677. width : 15%;
  3678.  
  3679. }
  3680.  
  3681.  
  3682.  
  3683.  
  3684.  
  3685.  
  3686. `;
  3687.  
  3688.  
  3689.  
  3690.  
  3691.  
  3692. }else if(syurui == "default"){
  3693.  
  3694. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  3695.  
  3696.  
  3697.  
  3698. input {
  3699.  
  3700. width: 250px;
  3701. height: 80px;
  3702. font-size: 20px;
  3703.  
  3704. }
  3705.  
  3706.  
  3707.  
  3708. /* 日程 フォントサイズ */
  3709. 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 {
  3710.  
  3711. font-size:18px;
  3712.  
  3713. }
  3714.  
  3715.  
  3716.  
  3717.  
  3718.  
  3719.  
  3720. /* 次の試合1 */
  3721. 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 {
  3722.  
  3723. word-wrap: break-word;
  3724. white-space: normal;
  3725. display: block;
  3726.  
  3727. }
  3728.  
  3729. /* 次の試合2 */
  3730. 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 {
  3731.  
  3732. word-wrap: break-word;
  3733. white-space: normal;
  3734. display: block;
  3735.  
  3736. }
  3737.  
  3738.  
  3739.  
  3740. /* X年度 X月X日 width調整 */
  3741. 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) {
  3742.  
  3743. width: 140px;
  3744.  
  3745. }
  3746.  
  3747. /* X年度 調整 */
  3748. 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 {
  3749.  
  3750. font-size:20px;
  3751.  
  3752. }
  3753.  
  3754. /* 試合日の球場名を非表示 */
  3755.  
  3756. 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 {
  3757.  
  3758. display: none;
  3759.  
  3760. }
  3761.  
  3762.  
  3763.  
  3764.  
  3765. /* 練習セレクトメニュー サイズ */
  3766. 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 {
  3767.  
  3768. width: 200px;
  3769.  
  3770. }
  3771.  
  3772.  
  3773.  
  3774.  
  3775.  
  3776.  
  3777.  
  3778.  
  3779.  
  3780.  
  3781. textarea[name="com_content"] {
  3782.  
  3783. height: 150px;
  3784.  
  3785. }
  3786.  
  3787. /* ヘッダ部 */
  3788. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3789.  
  3790. height: 80px;
  3791.  
  3792.  
  3793. }
  3794. 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 {
  3795.  
  3796. width: 80px;
  3797.  
  3798. }
  3799.  
  3800. /* ロゴ */
  3801. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  3802.  
  3803. height: 80px;
  3804. width: 250px;
  3805. }
  3806.  
  3807.  
  3808.  
  3809. /* ログイン部分 */
  3810.  
  3811. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  3812.  
  3813. display: block;
  3814. }
  3815.  
  3816.  
  3817.  
  3818.  
  3819. /* メニュー(ランキング等) */
  3820. 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 {
  3821.  
  3822. height: 30px;
  3823. }
  3824.  
  3825. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3826.  
  3827.  
  3828. height: 50px;
  3829.  
  3830. }
  3831.  
  3832.  
  3833. /* ロゴとログインメニューを並べる */
  3834. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  3835. float:left;
  3836.  
  3837. }
  3838.  
  3839. /* ドラフト */
  3840. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  3841.  
  3842. //display:none;
  3843. position:absolute;
  3844. height: 50px;
  3845.  
  3846. }
  3847.  
  3848. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  3849.  
  3850. height: 30px;
  3851.  
  3852. }
  3853.  
  3854.  
  3855.  
  3856.  
  3857.  
  3858.  
  3859. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  3860.  
  3861. display: none;
  3862.  
  3863. }
  3864.  
  3865.  
  3866.  
  3867. /* ヘッダ画像 */
  3868. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  3869.  
  3870.  
  3871. display: none;
  3872.  
  3873. }
  3874. 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) {
  3875.  
  3876. display: none;
  3877.  
  3878.  
  3879. }
  3880.  
  3881. /* メニュー非表示 */
  3882. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  3883.  
  3884. display: none;
  3885.  
  3886. }
  3887.  
  3888.  
  3889. /* ロゴ */
  3890. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  3891.  
  3892. height: 80px;
  3893. width: 250px;
  3894. }
  3895.  
  3896. /* タイトルロゴのセル表示調整 */
  3897. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(3) {
  3898.  
  3899. width: 100%;
  3900. height: 80px;
  3901.  
  3902. }
  3903.  
  3904. /* ロゴのテーブルを非表示 */
  3905. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3906.  
  3907. display: none;
  3908.  
  3909. }
  3910.  
  3911.  
  3912. select {
  3913.  
  3914. //width: 140px;
  3915. height: 80px;
  3916. font-size:26px;
  3917.  
  3918. }
  3919.  
  3920. input[type="checkbox"] {
  3921.  
  3922.  
  3923. width: 40px;
  3924. height: 80px;
  3925.  
  3926. }
  3927.  
  3928. /* テーブル枠調整 */
  3929. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) {
  3930.  
  3931. width: 99%;
  3932.  
  3933. }
  3934.  
  3935.  
  3936. /* ラジオボタン */
  3937. input[type="radio"] {
  3938.  
  3939. width: 30px;
  3940. height: 40px;
  3941.  
  3942. }
  3943.  
  3944.  
  3945. /* 戻る リンク */
  3946.  
  3947. a[href="javascript:history.back()"] {
  3948.  
  3949. font-size: 40px;
  3950.  
  3951. }
  3952.  
  3953.  
  3954. `;
  3955.  
  3956.  
  3957.  
  3958.  
  3959.  
  3960. /*
  3961. }else if(syurui == "rule"){
  3962.  
  3963. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  3964.  
  3965.  
  3966.  
  3967. `;
  3968. */
  3969.  
  3970.  
  3971.  
  3972. }
  3973.  
  3974.  
  3975.  
  3976.  
  3977.  
  3978.  
  3979.  
  3980.  
  3981.  
  3982.  
  3983.  
  3984.  
  3985. return txt;
  3986.  
  3987.  
  3988.  
  3989.  
  3990. }
  3991.  
  3992.  
  3993.  
  3994.  
  3995.  
  3996.  
  3997.  
  3998.  
  3999.  
  4000. })();
  4001.  
  4002.  
  4003.