﻿@charset "UTF-8";


/*---------- ページ全体の指定 ----------*/

html, body, header, section, article, nav, footer,
div, span, p, h1, h2, h3, h4,
ul, ol, li, dl, dt, dd,
table, tr, th, td, tbody, thead, tfoot {
  margin: 0;
  padding: 0;
}

img {border: 0;}

html{
    height: 100%;
}
body {
    height: 100%;
    width: 100%;
    color:#ffffff;
    font-family: Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    line-height: 1.7;

    background: #3d3d3d; /* Old browsers */
    background: -moz-linear-gradient(top, #3d3d3d 0%, #383838 19%, #3f3f3f 33%, #3f3f3f 50%, #3f3f3f 68%, #383838 84%, #3d3d3d 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3d3d3d), color-stop(19%,#383838), color-stop(33%,#3f3f3f), color-stop(50%,#3f3f3f), color-stop(68%,#3f3f3f), color-stop(84%,#383838), color-stop(100%,#3d3d3d)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #3d3d3d 0%,#383838 19%,#3f3f3f 33%,#3f3f3f 50%,#3f3f3f 68%,#383838 84%,#3d3d3d 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #3d3d3d 0%,#383838 19%,#3f3f3f 33%,#3f3f3f 50%,#3f3f3f 68%,#383838 84%,#3d3d3d 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #3d3d3d 0%,#383838 19%,#3f3f3f 33%,#3f3f3f 50%,#3f3f3f 68%,#383838 84%,#3d3d3d 100%); /* IE10+ */
    background: linear-gradient(to bottom, #3d3d3d 0%,#383838 19%,#3f3f3f 33%,#3f3f3f 50%,#3f3f3f 68%,#383838 84%,#3d3d3d 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3d3d3d', endColorstr='#3d3d3d',GradientType=0 ); /* IE6-9 */

}

/*---------- ヘッダー ----------*/

header {
    position:fixed !important;
    width: 100%;
    background:#181818;
    top: 0px;
    left: 0px;
    height: 48px;
}

header h1 {
    font-size:13px;
    font-weight:normal;
    color:#ffffff;
}

header h2 {
    font-size:12px;
    font-weight:normal;
    color:#ffffff;
}

header h3 {
    font-size:10px;
    font-weight:normal;
    color:#ffffff;
}

#page_top {
  margin: 0;
  padding: 0;
}


/*---------- ナビ ----------*/

nav {
    width: 100%;
    color: #ffffff;
    text-decoration: none;
    margin: 0 0 0 0;
    background:#3e3a3a;
    /*background: url(../img/nav_bg.gif) repeat-x;*/
}

nav h2 {
  padding: 0 0 0 0;
  /*font-size:;*/
  color: #181818;
  /*border-bottom: solid 1px;
  border-bottom-color: #333333;*/
  background:#181818;
  /*background: url(../img/h_bg_gray.gif) center repeat-x;*/
}

nav ul:after{
    content:"";
    clear:both;
    display:block;
}

nav ul {
  width: 100%;
  /*border-top: solid 1px;
  border-top-color: #333333;*/
  list-style:none;
}

nav li {
  width: 25%;
  list-style: none;
  text-align: center;
  float:left;
  -moz-box-sizing:border-box;
}

nav li a {
  padding: 5px;
  display: block;
  font-size:12px;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  /*border-bottom: solid 1px;
  border-bottom-color: #aaaaaa;*/
  background:#333333;
  /*background: url(../img/nav_bg.gif) repeat-x;*/
}

nav li a:hover {
  color: #ffffff;
  display: block;
  font-weight: bold;
  text-decoration: none;
  /*border-bottom: solid 1px;
  border-bottom-color: #cccccc;*/
  background:#3e3e3e;
  /*background: url(../img/nav_bg_hover.gif) repeat-x;*/
}


/*---------- コンテンツ ----------*/

#content {
  padding: 60px 0 60px 0;
  /*height: 230px;*/
}

section {
  margin: 0 0 8px 0;
  color: #eeeeee;
  line-height: 1.7;
}

section h2 {
  margin: 0 0 8px 0;
  padding: 5px 0 3px 10px;
  font-size: 14px;
  color: #dddddd;
  border-bottom: solid 1px;
  border-bottom-color: #cccccc;
  background: url(img/h_bg.gif) center repeat-x;
}

section p {
  margin: 0 0 12px 0;
  padding: 3px 0;
  line-height: 1.8;
  color: #eeeeee;
}

/*---------- フッター ----------*/

footer {
position: fixed;
bottom: 0;
height: 25px;

    width: 100%;
    padding: 5px 0 5px 0;
    color: #cccccc;
    font-size:10px;
    text-align: center;
    border-top: solid 1px;
    border-top-color: #3c3838;
    background-color: #333333;
}

footer p {
  padding: 5px;
  color: #cccccc;
}

footer a {
  color: #cccccc !important;
}

footer a:hover {
  color: #999999 !important;
}

footer a:visited {
  color: #cccccc;
}

footer p.copy {
  padding: 5px;
  font-size: 12px;
  color: #cccccc;
}

footer p.copy a {
  color: #005ebb !important;
  text-decoration: none;
}

footer p.copy a:hover {
  color: #004080 !important;
  text-decoration: underline;
}

footer p.copy a:visited {
  color: #005ebb !important;
  text-decoration: none;
}

/*---------- ヘッダーの表 ----------*/
.headertable {
   width:100%;
   border-collapse: collapse;
}

.headertable th {
}

.headertable td {
    /*width:33%;*/
}


/*---------- トップページの表 ----------*/
.hometable {
   width:100%;
   border-collapse: collapse;
   margin: 0 auto 10px;
}

.hometable th {
   padding:5px;
   font-size:15px;
   border:1px solid #ffffff;
   background:#181818;
}

.hometable td {
   padding:5px;
   font-size:15px;
   border:1px solid #ffffff;
   height:30px;
}

/*---------- 状態エラーの表 ----------*/
.errortable {
   /*width:95%;*/
   border-collapse: collapse;
   /*margin: auto;*/
}

.errortable th {
   padding:5px;
   font-size:15px;
   border:1px solid #ffffff;
   background:#181818;
}
.errortable td {
   padding:5px;
   font-size:12px;
   border:1px solid #ffffff;
   height:20px;
}
/*---------- パワコンリストの表 ----------*/
.pcomtable {
   /*width:60%;*/
   border-collapse: collapse;
   /*margin: auto;*/
}

.pcomtable th {
   padding:5px;
   font-size:15px;
   border:1px solid #ffffff;
   background:#181818;
}

.pcomtable td {
    padding: 5px;
    font-size: 12px;
    border: 1px solid #ffffff;
    height: 20px;
}
/*---------- チャートの日/月選択の表 ----------*/
.chartparatable {
   /*width:300px;*/
   border-collapse: collapse;
   /*margin: auto;*/
}

.chartparatable td {
    height: 20px;
}
/*---------- コンテンツを中央に揃える表 ----------*/
div.tblcenter {
    text-align:center;
}

table.tblcenter {
    margin-left:auto;
    margin-right:auto;
}

table.tblcenter caption {
    text-align:right;
}

/*---------- ログイン画面 ----------*/
.loginArea{
    border:1px solid #fff;
}
.loginTextBox{
    margin:5px;
    padding:6px;
    border-radius:4px;
    border:#ddd solid 1px;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
}
.loginButton{
    display:block;
    width:220px;
    height:44px;
    margin:5px auto;
    font-size:14px;
    font-weight:bold;
    color:#000;
    border-radius:4px;
    background:#ffffff;
}


.logoutButton{
    display:block;
    color:#ffffff;
    font-size:10px;
    font-weight:normal;
    background:#333333;
    margin:-5px 0 0 0;
    padding:-1px;
    /*border-radius:4px;*/
}


/*---------- チャート画面 ----------*/
.chartparatable{
    margin:0px;
    padding:0px;
    font-size:12px;
    vertical-align:bottom;
}
.chartparatable td {
    vertical-align:bottom;
}
.chartComboBox{
    border-bottom:#ccc dotted 1px;
}
.chartDateTextBox{
    display:block;
    width:80px;
    border-radius:4px;
    text-align:center;
}
.chartButton{
    display:block;
    color:#000;
    background:#f5ff00;
    border-radius:4px;
}
.chartLabel{
    margin:-2px;
    padding:-2px;
}

/*---------- 現在時刻(マスターページ) ----------*/
.RealtimeClockArea{
    font-size:10px;
    margin:0px;
    padding:0px 5px 0px 0px;
}

/*---------- 最新データ更新ボタン＋現在時刻(コンテンツページのトップ) ----------*/
.ContentTop:after{
    content:"";
    display:block;
    clear:both;
}
.ContentTopBox1{
    float:left;
    width:30%;
    font-size:10px;
    text-align:left;
    margin-bottom:-10px;
}
.ContentTopBox2 {
    float:left;
    width:70%;
    font-size:10px;
    text-align:right;
    vertical-align: bottom;
    margin-bottom:-10px;
}
.RealtimeClockArea2{
    font-size:10px;
}



/*---------- ラジオボタン(チャート) ----------*/
/*.sample input[type=radio],
.sample input[type=checkbox] {
    display: inline-block;
    margin-right: 6px;
}
.sample input[type=radio] + label,
.sample input[type=checkbox] + label {
    position: relative;
      
    display: inline-block;
    margin-right: 12px;
      
    font-size: 14px;
    line-height: 30px;
      
    cursor: pointer;
}*/
  
/*@media (min-width: 1px) {
    .sample input[type=radio],
    .sample input[type=checkbox] {
        display: none;
        margin: 0;
    }
    .sample input[type=radio] + label,
    .sample input[type=checkbox] + label {
        padding: 0 0 0 24px;
    }
    .sample input[type=radio] + label::before,
    .sample input[type=checkbox] + label::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
          
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        width: 18px;
        height: 18px;
        margin-top: -9px;
          
        background: #FFF;
    }
    .sample input[type=radio] + label::before {
        border: 1px solid #ccc;
        border-radius: 30px;
    }
    .sample input[type=checkbox] + label::before {
        border: 1px solid #ccc;
    }
    .sample input[type=radio]:checked + label::after,
    .sample input[type=checkbox]:checked + label::after {
        content: "";
        position: absolute;
        top: 50%;
          
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
    }
    .sample input[type=radio]:checked + label::after {
        left: 5px;
          
        width: 8px;
        height: 8px;
        margin-top: -4px;
          
        background: #00B200;
        border-radius: 8px;
    }
    .sample input[type=checkbox]:checked + label::after {
        left: 3px;
          
        width: 16px;
        height: 8px;
        margin-top: -8px;
          
        border-left: 3px solid #00B200;
        border-bottom: 3px solid #00B200;
          
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }*/
     
    /* either */
    /*.sample .either {
        position: relative;
         
        display: inline-block;
        width: 120px;
        overflow: hidden;
        border: 1px solid #ccc;
    }
    .sample .either input[type=radio] + label {
        position: static;
         
        float: left;
        display: block;
        width: 50%;
        margin-right: 0;
        padding: 0;
        overflow: hidden;
         
        text-align: center;
    }
    .sample .either input[type=radio] + label::before {
        content: attr(data-label);
         
        top: 0;
        bottom: 0;
        z-index: 1;
         
        display: block;
        width: 50%;
        height: auto;
        margin-top: 0;
         
        text-align: center;
         
        color: transparent;
        background: transparent;
        border: 0 none;
        border-radius: 0;
    }
    .sample .either input[type=radio] + label:last-child::before {
        left: 50%;
        right: 0;
         
    }
    .sample .either input[type=radio]:checked + label::before {
        color: #fff;
    }
     
    .sample .either input[type=radio] + label::after {
        border-radius: 0;
    }
    .sample .either input[type=radio]:first-child + label::after {
        content: none;
    }
    .sample .either input[type=radio] + label + input[type=radio] + label::after {
        content: "";
         
        position: absolute;
        top: 0;
        bottom: 0;
        z-index: 0;
         
        display: block;
        width: auto;
        height: auto;
        margin: auto;
         
        background: #00B200;
        border: 1px solid #fff;
         
        -webkit-transition: all 200ms;
        transition: all 200ms;
    }
     
    .sample .either input[type=radio]:checked + label + input[type=radio] + label::after {
        left: 0;
        right: 50%;
    }
    .sample .either input[type=radio] + label + input[type=radio]:checked + label::after {
        left: 50%;
        right: 0;
    }
     
}*/