/* 査定フォーム用の追加CSS及び一部style.cssを上書き（2022.07.28 松田作成） */
table tr {
    border-bottom: none;
}
table th, table td {
    border-bottom: 1px solid #ccc;
}
.no-border {
  border-bottom:none;
}
form input[type=number] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.5em 0.8em;
  width: 40%;
}
table.table1 th {
  width: 20%;
}
table.table2 th {
  width: 40%;
}
@media screen and (max-width: 767px) {
  table.table1 th, table.table2 th {
    width: auto;
  }
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* FireFox, IE */
input[type="number"] {
  -moz-appearance:textfield;
}