/*------------------------------------
  会社概要ページ   -    company
-------------------------------------*/

#comapnyInfoTable table {
  min-width: 400px;
  margin: 4rem auto;
  border-collapse: collapse;
}

#comapnyInfoTable table tr {
  border-width: 1px 0px;
  border-color: var(--Pink);
  border-style: solid;
}

#comapnyInfoTable table th,
#comapnyInfoTable table td {
  padding: 0.5rem 2rem;
}

#comapnyInfoTable table th {
  font-size: calc(1rem - 2px);
}


@media screen and (max-width: 799px) {
  #comapnyInfoTable table {
    width: 70%;
    min-width: fit-content;
  }
}


@media screen and (max-width: 599px) {
  #comapnyInfoTable table {
    width: 90%;
  }

  #comapnyInfoTable table th,
  #comapnyInfoTable table td {
    padding: 0.5rem 1rem;
  }
}