@charset "UTF-8";

.company-table {
  width: 100%;
  max-width: 800px;
  margin: calc(80 / 750 * 100vw) auto calc(120 / 750 * 100vw);
  border-collapse: collapse;
}
.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: 1px solid rgba(34, 34, 34, .2);
}
.company-table th,
.company-table td {
  padding: calc(32 / 750 * 100vw) 0;
  border-top: 1px solid rgba(34, 34, 34, .2);
}
.company-table th {
  width: 25%;
  text-align: left;
  vertical-align: top;
}
.company-table td {
  width: 75%;
}
.company-table td h3 {
  font-size: calc(28 / 750 * 100vw);
  text-indent: -.5em;
}
.company-table td h3:nth-of-type(2) {
  margin-top: calc(24 / 750 * 100vw);
}
@media screen and (min-width: 768px), print {
  .company-table {
    margin: 80px auto 140px;
  }
  .company-table th,
  .company-table td {
    padding: 24px 0;
  }
  .company-table td h3 {
    font-size: 16px;
  }
  .company-table td h3:nth-of-type(2) {
    margin-top: 16px;
  }
}