@charset "utf-8";

/*-----------------------------------------------------
大見出し
-------------------------------------------------------*/

/* 中見出し
------------------------------------------------*/

/* 小見出し/コメント */

/* 1400px以下 */
@media only screen and (max-width: 1399px) {
}

/* 1200px以下 */
@media only screen and (max-width: 1199px) {
}

/* タブレット以下 */
@media only screen and (max-width: 991px) {
}

/* スマホ */
@media only screen and (max-width: 767px) {
}

body{
 background-color: #fff;
}
header{
    background-color: #0181bd;
}

Table{
  overflow: hidden;
}
.table-bordered {
  border-collapse: collapse;
  color: #000;
  border: 4px solid #000;
  text-align: left;
  font-size: 120%;
  word-break: break-word;
  white-space: normal;
}
.table-group-divider th {
  text-align: center;
  font-size: 100%;
  background-color: #EAEAEA;
  border-bottom: 4px solid #000;
}
.table-group-divider td {
  border-bottom: 4px solid #000;
}
@media only screen and (max-width: 767px) {
  .table {
    font-size: 90%;
  }
  tr,th,td{
    display: block;
  }
}

.footer{
  background-color: #0181bd;
  color: #fff;
  padding: 20px 0;
  text-align:center;
}

.footer_m dl dd a{
  color: #fff !important;
  text-decoration: none;
  text-align:center;
}
.footer_m a:hover{
  color: #fff!important;
}
