@charset "utf-8";
/* CSS Document */
.tbl01 {
  border-top: 2px solid #00b1a9;
  border-collapse: collapse;
    width: 100%;
}
.tbl01 tbody tr {
  border-bottom: 2px solid #00b1a9;
}
.tbl01 tbody tr th {
  font-size: 16px;
  font-weight: bold;
  background: #ccefee;
  padding: 15px;
  box-sizing: border-box;
  text-align: left;
  vertical-align: text-top;
  width: 30%;
}
.tbl01 tbody tr td {
  font-size: 16px;
  padding: 15px;
  box-sizing: border-box;
  width: 70%;
}
.tbl01_list01 {
  display: flex;
  flex-wrap: wrap;
}
.tbl01_list01 li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
  margin-right: 24px;
  font-weight: bold;
}
.tbl01_list01 li:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: #00b1a9;
  position: absolute;
  left: 0;
  top: 11px;
}
.tbl01_conts {
  margin-bottom: 24px;
}
.tbl01_conts:last-of-type {
  margin-bottom: 0;
}
.tbl01_ttl {
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
  margin-right: 24px;
  font-weight: bold;
}
.tbl01_ttl:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: #00b1a9;
  position: absolute;
  left: 0;
  top: 11px;
}
table.table01 {
  width: 100%;
  border-collapse: collapse;
}
table.table01 thead th {
  color: #222;
  padding: 10px 15px;
  border-bottom: #222 solid 1px;
  border-top: #222 solid 1px;
  font-weight: bold;
}
table.table01 thead th:last-child {
  border-right: #222 solid 1px;
}
table.table01 tbody th {
  color: #222;
  padding: 10px 15px;
  border-bottom: #222 solid 1px;
  border-top: #222 solid 1px;
  vertical-align: top;
  font-weight: bold;
  width: 20%;
}
table.table01 tbody tr:last-child th {
  border-bottom: #222 solid 1px;
}
table.table01 tbody td {
  background: #FFF;
  padding: 10px 15px;
  border-top: #222 solid 1px;
  border-bottom: #222 solid 1px;
  vertical-align: top;
  width: 80%;
}
@media screen and (max-width: 640px) {
  table.table01 thead {
    display: none;
  }
  table.table01 tbody th {
    display: block;
    width: 90%;
    background-color: #F1F1F1;
  }
  table.table01 tbody td {
    display: block;
    width: 90%;
  }
  table.table01 tbody td::before {
    content: attr(label);
    float: left;
    clear: both;
    font-weight: bold;
  }
  table.table01 tbody td p {
    /*padding-left:6em;*/
  }
  .tbl01 tbody tr th {
    font-size: 14px;
  }
  .tbl01 tbody tr td p {
    font-size: 14px;
  }
}