.company-wrap {
  max-width: 1280px;
  width: 89%;
  margin: 0 auto 150px;
  display: flex;
  justify-content: space-between;
  color: #333333;
}

.comapny-ttl {
  position: relative;
  line-height: 1;
  margin-top: 150px;
}

.comapny-ttl::before {
  content: "";
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  left: -25px;
  top: -8px;
  background-color: #03BFB5;
  border-radius: 50%;
}

.comapny-ttl h2 {
  font-size: clamp(2.75rem, -0.625rem + 7.0313vw, 5rem);
  color: #333333;
  font-weight: 500;
  margin: 0 0 10px 0;
}

.comapny-ttl p {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
}

.company-info {
  width: 58%;
  margin-top: 150px;
}

tr {
  border-bottom: 1px solid #b5b1b1;
}

th,td {
  /*border-color: #d6d6d6;
  border-style: solid;
  border-width: 1px 0;
  padding: 39px 0;*/
  padding: 24px 0;
  border: none;
}

th {
  width: 17%;
  font-weight: 500;
}

.row {
  text-align: left;
}

@media screen and (max-width:768px) {
  .company-wrap {
    max-width: 1280px;
    width: 89%;
    display: block;
    margin: 0 auto 64px auto;
    justify-content: space-between;
  }

  .comapny-ttl {
    position: relative;
    width: fit-content;
    margin: 60px auto 0;
  }

  .company-info {
    width: 58%;
    margin-top: 60px;
  }

  .comapny-ttl p {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    text-align: center;
    margin-bottom: 49px;
  }

  .company-info {
    width: 100%;
  }

  th,td {
    width: 100%;
    display: block;
  }

  td {
    padding-top: 0;
  }

}