@media only screen and (max-width: 980px) {
  .p-table-scroll {
    margin-right: -5vw;
    overflow-x: scroll;
  }
}

.p-table {
  border-bottom: 1px solid var(--color-bg_B);
  border-collapse: collapse;
  width: 1000px;
}
.p-table th {
  font-size: 0.9375rem;
  background: var(--color-bg_A);
  border-top: 1px solid var(--color-bg_B);
  font-weight: 400;
  line-height: 1.5;
  padding-block: 8px;
  width: 10%;
}
.p-table th:not(:first-child), .p-table th.p-table-border {
  border-left: 1px solid var(--color-bg_B);
}
.p-table th.p-table-span {
  width: 20%;
}
.p-table td {
  font-size: 0.9375rem;
  border-top: 1px solid var(--color-bg_B);
  font-weight: 400;
  line-height: 1.5;
  padding-right: 10px;
  text-align: right;
  width: 10%;
}
.p-table td:not(:first-child) {
  border-left: 1px solid var(--color-bg_B);
}