@charset "UTF-8";
.company {

.company_wrap {
  justify-content: space-between;
}

.table {
  max-width: 800px;
  width: 72%;

  @media (max-width: 767px) {
    width: 100%;
    margin-top: 5.5rem;
  }
}

.table_row {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 3fr;
  padding: 2.2rem 0;
  border-bottom: 2px solid #00B0F0;

  @media (max-width: 767px) {
    display: block;
    padding: 1.8rem 0 2.8rem;
  }

  &.two_line {
    align-items: start;
  }
}

.table_head {
  font-weight: bold;
}

.table_body {
  line-height: 2;
  margin-top: 0.5rem;
}

}