@charset "UTF-8";
table {
  margin: 10px auto;
  background-color: white;
  font-size: 16px;
  width: auto;
  border-collapse: collapse; /* セルの線を重ねる */
  /* 幅指定 */
  table-layout: fixed; /* セルの幅計算指定 */
}
table th,
table td {
  border: solid 1px; /* 枠線指定 */
  padding: 10px;
  vertical-align: baseline;
}
table th span,
table td span {
  color: red;
}
table img {
  width: 200px;
  max-width: 200px;
}
table td:nth-child(4) {
  width: 200px;
  max-width: 200px;
  word-wrap: break-word;
}/*# sourceMappingURL=data.css.map */