html {
  min-height: 100%;
  position: relative;
}
body{
    font-family:"メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
    background-color: #FAFAFA;
    font-size: 14px;
    /*margin-bottom: 20px;*/
    color: #000;
}

/*-------------------------------------------------------------------- title bar */
.titleBar{
    position: fixed;
    width: 100%;
    background-color: #005AA0;
    color: #FFF; 
    height: 35px;
    line-height: 35px;
    font-size: 18px;
    z-index: 3;
    padding: 0 10px;
    font-weight: bold;
}
.titleBar a{      
    text-decoration: none;
    color: #FFF;
}
.titleBar .infoArea{    
    font-size: 16px;
    cursor: pointer;
}
.titleBar .subTitle{
    font-weight: normal;
}

.logout_btn{ 
    font-size: 12px;
    line-height: 20px;
    display: inline-block;    
    background: #EEE;
    border: 1px solid #000;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;    
    padding: 1px 5px;
    margin-top: 5px;
    vertical-align: 2px;    
}
.logout_btn, a.logout_btn{ 
    color: #000;    
    font-weight: normal;
} 
.logout_btn:hover{
    background: #ddd;
    border: 1px solid #666;
    text-decoration: none;
    font-weight: bold;
}

/*-------------------------------------------------------------------- side bar */
.sideBar{
    position: fixed;
    width: 150px;
    height: 100%;
    padding-top: 45px;
    padding-right: 15px;
    text-align: right;
    background-color: #EFEFEF;
    color: #505050;
    z-index: 2;
    border-right: 1px solid #999;
}
.sideBar .menu_list{
    display:block;
    clear:both;
    margin-bottom: 30px;
}
.sideBar .sideBarLink{
    margin-bottom: 10px;
}
.sideBarLink > a.sideBarTitle{ 
    color: #003EA1;
    cursor: pointer;
}
.sideBarLink > a.sideBarTitle:hover{      
    font-weight: bold;       
}
.sideBar > .menu_list{
    display: none;
}
.sideBarInnerLink{
    margin-bottom: 10px;
}
.sideBarInnerLink a{
    color: #000;    
}
.sideBarInnerLink a:hover{    
    color: #4c72fc;   
}
.reload_btn{
    width: 110px;
    margin-bottom: 25px;
    padding: 2px 7px;
    font-size: 13px;
    background-color: #fffcdb;
    border: 1px solid #888;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;   
}
.reload_btn:hover{
    background-color: #fffbcc;
    font-weight: bold;
}
/*-------------------------------------------------------------------- footer */
.footer{
    bottom: 0;
    width: 100%;
    height: 20px;
    position: absolute;
    text-align: center;
    font-size: 12px;
    color: #000;
}
.footer span.copyright:before{   
    content:"\0a9 2018 In Step Corp.";
} 

/*-------------------------------------------------------------------- div */
.main_div{
    margin-left: 170px;
    padding-bottom: 30px;
    padding-top: 60px;
}
.main_div_wo_side{
    padding-top: 70px;
    padding-bottom: 30px;
}
.information{     
    background-color: #fff;    
    box-shadow: 0 0 0 2px #c7d6ef;   
    color: #000;
    padding: 7px 10px;
    border-radius: 3px;
}
.information p{
    margin: 0;
}
.information p.title{
    padding-left: 2px;
    padding-bottom: 1px;
    border-bottom: 3px double #ccc;
    margin-bottom: 10px;
}
.information_b{       
    background-color: #dce6f9;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #D3DEF1;   
    padding: 5px 10px;
    border-radius: 3px;
}
.information_b p{
    margin: 0;
}
.err_info{       
    background-color: #ffedf9;
    border: 1px solid #ff80b5;    
    padding: 5px 10px;    
}
.err_info p{
    margin: 0;
}
.attentionBalloon {
  position: absolute;
  display: inline-block;
  padding: 8px 10px;
  margin-left: 10px; 
  color: white;
  font-weight: bold;
  background-color: #fc6586;
  border-radius: 5px;
}
.attentionBalloon::before {
  content: "";
  position: absolute;
  top: 97%;
  left: 20px;
  border: 6px solid transparent;
  border-top: 10px solid #fc6586;
}

fieldset.info{    
    width: 90%;
    padding: 15px;    
    margin-bottom: 20px;    
    background-color: #fff;
    border: 1px solid #888;
}
legend.info{
    margin-bottom: 0;    
    width: auto;
    font-size: 16px;
    background-color: #E1F1FA;
    border: 1px solid #888;
    padding: 2px 10px;
}

.attenstion_set{
    background-color: #ffcaed;
    color: #000;
    font-weight: bold;
    margin-left: 20px;
    padding: 1px 6px;
}

/*-------------------------------------------------------------------- loading */
#loading {
  display: table;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.8;
  z-index: 10000;
}
 
#loading .loadingMsg {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding-top: 140px;
  background: url("../img/gif-load.gif") center center no-repeat;
  z-index: 100;
}

/*-------------------------------------------------------------------- table */
.table.table_common{
    font-size: 13px; 
}
.table_common thead tr th{
    font-weight: normal;
    border-bottom: 1px solid #222;
    background-color: #ddd;
}
.table_common thead tr th,
.table_common tbody tr th,
.table_common tbody tr td{
    padding: 5px;
    vertical-align: middle;
}
.table_common thead:first-child>tr:first-child>th{
    border-top: 1px solid #222;
    height: 25px;
    line-height: 25px;
}
.table_common tr:last-child td{
    border-bottom: 1px solid #222;
}
.table_common th:last-child,.table_common td:last-child{
    border-right: 1px solid #222;
}
.table_common th:first-child,.table_common td:first-child{
    border-left: 1px solid #222;
}

.table-bordered>tbody>tr>td,.table-bordered>thead>tr>th{
    border: 1px solid #bbb;
}


.table_files th,.table_files td{
    font-size: 14px;
    padding: 5px 8px;
}
.table_files thead th {
    background-color: #F0F0F0;
    border: 1px solid #999;
    font-weight: normal;
    border-collapse: collapse;
}
.table_files tbody th {
    background-color: #F0F0F0;    
    border: 1px solid #999;
    font-weight: normal;
}
.table_files tbody td{
    border: 1px solid #999;
}
.table_files thead th.today{
    border: 2px solid #003EA1;    
    font-weight: bold;    
}
.table_files tbody td.today{
    border-left: 2px solid #003EA1;    
    border-right: 2px solid #003EA1;    
    font-weight: bold;    
}
.table_files tbody tr:last-child td.today{
    border-bottom: 2px solid #003EA1;    
}

.table.table_full_border{
    border: 1px solid #777;
    background-color: #FFF;    
}
.table.table_full_border tr th{
    background-color: #DDD;
}
.table.table_full_border thead tr th,
.table.table_full_border tbody tr th,
.table.table_full_border tbody tr td{
    border: 1px solid #777;
}

.table_narrow_list{
    width: 100%;
    font-size: 12px;    
    border: 1px solid #888;
}
.table_narrow_list>thead>tr>th{
    padding: 4px;
    border: 1px solid #888;
    background-color: #ccc;  
}
.table_narrow_list>tbody>tr>td{
    padding: 4px;
    border: 1px solid #888;
}
.table_narrow_list>tbody>tr:nth-child(odd){
    background-color: #FEFEFE;
}
.table_narrow_list>tbody>tr:nth-child(even){
    background-color: #F5F5F5;
}
.table_narrow_list>tbody>tr:hover{
    background-color: #D3DEF1;
}
.table_narrow_list tr:last-child td{
    border-bottom: 1px solid #888;
}
.table_narrow_list th:last-child,.table_narrow_list td:last-child{
    border-right: 1px solid #888;
}
.table_narrow_list th:first-child,.table_narrow_list td:first-child{
    border-left: 1px solid #888;
}

.table-bordered>tbody>tr>td,.table-bordered>thead>tr>th{
    border: 1px solid #bbb;
}

.table.tableheader_border>thead:first-child>tr{
    border: 1px solid #222;
    background-color: #f5f5f5;
    line-height: 30px;
    height: 30px;
    padding: 8px;    
}
.table.tableheader_border>thead:first-child>tr>th{
    border-bottom: 1px solid #222;    
}

/* 詳細テーブル */
.table_detail{
    font-size: 13px;
}
.table_detail>tbody>tr>th{
    padding: 5px 10px 5px 5px;
    border: 1px solid #666;
    background: #eee;
    text-align: right;
    font-weight: normal;
    font-size: 12px;
}
.table_detail>tbody>tr>td{
    padding: 5px 5px 5px 10px;
    border: 1px solid #666;
    background: #fff;       
}
.table_detail>tbody>tr>td.hidden_td{
    background: #fafafa;
    border-left: none;
    border-right: none
}

/* テーブルの交互に背景色変える 縦*/
.vertical_backcolor td:nth-child(odd) { background-color: #FAFAFA; }
.vertical_backcolor td:nth-child(even){ background-color: #FFF; }

/* テーブルの交互に背景色変える　横*/
.horizontal_backcolor tr:nth-child(odd),.horizontal_backcolor tr:nth-child(odd) .notHover{
    background-color: #FEFEFE;
}
.horizontal_backcolor tr:nth-child(even),.horizontal_backcolor tr:nth-child(even) .notHover{
    background-color: #F5F5F5;
}
.horizontal_backcolor tbody tr:hover{
    background-color: #D3DEF1; 
}


/* テーブルソートの画像 */
.sort_both{
    background-image: url(../img/bg.gif);
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 17px;
}
.sort_asc{
    background-image: url(../img/asc.gif);
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 17px;
}
.sort_desc{
    background-image: url(../img/desc.gif);
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 17px;
}
