@charset "UTF-8";

table.inner-tbl th {
  width: 130px;
}
@media only screen and (max-width: 767px) {
  table.inner-tbl th {
	width: 26vw;
  }
}
table.inner-tbl td {
  width: 130px;
}
@media only screen and (max-width: 767px) {
  table.inner-tbl td {
	width: 25vw;
  }
}
table.inner-tbl td:nth-child(2) {
  width: 130px;
}
@media only screen and (max-width: 767px) {
  table.inner-tbl td:nth-child(2) {
	width: 18vw;
  }
}
table.inner-tbl td:last-child {
  width: auto;
}
