.tbl-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
  line-height: 1.4;
  font-family: "Nanum Gothic", sans-serif;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.tbl-wrap ul {
  list-style: none;
  padding: 0;
}
.tbl-wrap > li {
  width: calc((100% - 24px) / 3);
}
.tbl-wrap table {
  width: 100%;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  font-family: inherit;
}
.tbl-wrap table tr:last-child th,
.tbl-wrap table tr:last-child td {
  border-bottom: 0;
}
.tbl-wrap table th,
.tbl-wrap table td {
  padding: 12px;
  border-bottom: 1px solid #e9e9e9;
  color: #222;
  white-space: nowrap;
}
.tbl-wrap table th {
  background: #f4f4f4;
  color: #666;
  font-weight: 500;
  white-space: nowrap;
  border-right: 1px solid #e9e9e9;
}
.tbl-wrap table td.name {
  position: relative;
  padding: 15px;
  background: -webkit-gradient(linear, left top, left bottom, from(#947B6E), to(#82695d));
  background: linear-gradient(to bottom, #947B6E, #82695d);
  font-family: "Nanum Gothic", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.tbl-wrap table td.name span {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 16px;
  font-weight: normal;
  margin-left: 10px;
  line-height: 1;
}
.tbl-wrap table .family-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  text-indent: -25px;
  padding-left: 25px;
  word-break: keep-all;
  white-space: normal;
  line-height: 1.4;
}
.tbl-wrap table .family-info li {
  color: #444;
}
.tbl-wrap table .family-info li strong {
  font-weight: 600;
  color: #222;
}

@media all and (max-width: 700px) {
  .tbl-wrap {
    gap: 10px;
    font-size: 14px;
  }
  .tbl-wrap > li {
    width: calc((100% - 10px) / 2);
  }
  .tbl-wrap table td.name {
    padding: 12px 15px;
    font-size: 20px;
  }
  .tbl-wrap table td.name span {
    font-size: 16px;
  }
  .tbl-wrap table th,
  .tbl-wrap table td {
    padding: 10px 12px;
  }
}
@media all and (max-width: 480px) {
  .tbl-wrap > li {
    width: 100%;
  }
}