@charset "UTF-8";
/*問い合わせ*/
.contact table {
  width: 100%;
  border: solid 2px #aaa;
  border-collapse: collapse;
}
.contact table th, .contact table td {
  border: solid 1px #aaa;
  padding: 10px 2%;
}
.contact thead {
  background-color: #145d57;
  color: #fff;
}
.contact tbody th:nth-child(1) {
  background-color: #e7f1ee;
}
@media screen and (max-width:1050px) {
  .contact table {
    width: 800px;
    border: solid 2px #aaa;
    border-collapse: collapse;
  }
  .scroll {
    overflow: auto;
    white-space: nowrap;
  }
  .scroll::-webkit-scrollbar {
    height: 5px;
  }
  .scroll::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  .scroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
  .contact table th, .contact table td {
    white-space: normal !important;
  }
}