@charset "utf-8";

/* === table === */
table tr:last-child th,
table tr:last-child td {
    border-bottom: 2px solid #d1d1d1;
}
table th,
table td {
  font-weight: normal;
  border: 2px solid #d1d1d1;
  vertical-align: middle;
}
td:empty, th:empty {
  border-top: none;
  border-bottom: none;
}
table th {
  color: #231815;
  background-color: #efece7;
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.border-bottom-none {
  border-bottom: none;
}
@media screen and (min-width: 768px){
  table th,
  table td {
    padding: 12px;
    min-width: 150px;
  }
  td:empty, th:empty {
    min-width: 100px;
  }
}
@media not all and (min-width: 768px){
  table th,
  table td {
    padding: 8px 6px;
    font-size: inherit;
    min-width: 70px;
  }
  td:empty, th:empty {
    min-width: 0;
  }
}

/* note */
.note__mark {
  color: #333;
}
.note {
  margin: 10px;
}
.note dt {
  float: left;
  width: 40px;
}
.note dd {
  margin-left: 40px;
}