  .sk-table,
  .sk-table tbody,
  .sk-table tr,
  .sk-table th,
  .sk-table td {
    display: block;
    width: 100%;
  }
  .sk-table {
    line-height: 1.5;
    margin-top: calc(var(--primaryGap) * -1); 
}
  .sk-table tr {
    padding-bottom: 24px;
  }
  .sk-table th,
  .sk-table td {
    padding: 8px;
  }
  .sk-table th {
    font-weight: normal;
    text-align: left;
    white-space: nowrap;
    background: var(--grayLightEx);
    border-radius: 3px;
  }
  .sk-table th br {
    display: none;
  }
  .sk-table a {
    color: var(--navyLight);
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .SK .area {
    font-size: 16px;
    margin-top: 6px;
  }
  .SK .area + .area {
    margin-top: 16px;
  }
  .payment_img {
    margin-top: 8px;
  }
  .payment_img + .payment_img {
    margin-left: 8px;
  }

  @media (min-width: 1024px) {
    .sk-table,
    .sk-table tbody,
    .sk-table tr,
    .sk-table th,
    .sk-table td {
      width: auto;
    }
    .sk-table {
      display: table;
      border-radius: 6px;
      border: 1px solid var(--grayLight);
    }
    .sk-table tbody {
      display: table-row-group;
    }
    .sk-table tr {
      display: table-row;
    }
    .sk-table th,
    .sk-table td {
      display: table-cell;
      padding: 16px;
      border-bottom: 1px solid var(--grayLight);
    }
    .sk-table tbody:last-of-type tr:last-of-type th,
    .sk-table tbody:last-of-type tr:last-of-type td {
      border-bottom: none;
    }
    .sk-table th {
      border-right: 1px solid var(--grayLight);
    }
    .sk-table th br {
      display: block;
    }
  }
