@charset "utf-8";
.txleft {
  text-align: right;
}

.txleft2 {
  text-align: left;
}




table#demo_1 {
  border: none;
  border-top: 3px solid #5DE4BF;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 30px;
  table-layout: fixed;
/* width: 100%; */
  width: 70%;
}
 
table#demo_1 th,
table#demo_1 td {
  border-bottom: 1px solid #DDD;
/*font-size: 0.85em;*/
  font-size: 1.0em;
/*line-height: 1.5;*/
  line-height: 2.0;
  padding: 15px;
/*  text-align: left;*/
  vertical-align: middle;
}
 
table#demo_1 th:first-child,
table#demo_1 td:first-child {
  padding-left: 0;
}

/*table 右側のtd(last) width */
table#demo_1 th:last-child,
table#demo_1 td:last-child {
  padding-right: 0;
/*width: 45%;*/
 width: 70%;
}
 
table#demo_1 th {
  font-weight: bold;
  vertical-align: top;
}
 
table#demo_1 td .thTitle {
  display: none;
}
 
/*ウィンドウサイズが 768px以内の場合に上書きされる*/
@media screen and (max-width: 768px) {
 
  table#demo_1,
  table#demo_1 caption,
  table#demo_1 tbody,
  table#demo_1 tfoot,
  table#demo_1 tr,
  table#demo_1 th,
  table#demo_1 td {
    display: block;
    width: 100% !important;
  }
  
  table#demo_1 th,
  table#demo_1 td {
    padding-left: 0;
    padding-right: 0;
  }
  
  table#demo_1 th {
    display: none;
  }
    
  table#demo_1 td {
    border: none;
    text-align: left;
  }
  
  table#demo_1 td {
    border-bottom: 1px solid #DDD;
  }
  
  table#demo_1 td:first-child {
    font-weight: bold;
  }
  
  table#demo_1 td:last-child {
    border-bottom: 2px solid #DDD;
  }
  
  /*JavaScriptで追加する要素*/
  table#demo_1 td .inner {
    display: table;
    table-layout: fixed;
    width: 100%;
  }
  
  /*JavaScriptで追加する要素*/
  table#demo_1 td .thTitle,
  table#demo_1 td .tdContents {
    display: table-cell;
  }
  
  /*JavaScriptで追加する要素*/
  table#demo_1 td .thTitle {
    font-weight: bold;
    width: 20%;
  }
  
  /*JavaScriptで追加する要素*/
  table#demo_1 td .tdContents {
    padding-left: 20px;
    width: 80%;
  }
}
 
/*ウィンドウサイズが 480px以内の場合に上書きされる*/
@media screen and (max-width: 480px) {
  
  /*JavaScriptで追加する要素*/
  table#demo_1 td .inner,
  table#demo_1 td .thTitle,
  table#demo_1 td .tdContents {
    display: block;
    width: 100%;
  }
  
  /*JavaScriptで追加する要素*/
  table#demo_1 td .inner {
    table-layout: auto;
  }
  
  /*JavaScriptで追加する要素*/
  table#demo_1 td .tdContents {
    padding: 10px 0 0;
  }
}