@charset "utf-8";
/**
 * specified commercial
 */
 .spc-table {
  width: 100%;
  display: block;
  padding: 1rem;
  border-collapse: collapse;
  border-spacing: 0;
 }
 .spc-table-tr {
  border: 1px solid #ccc;
  border-bottom: none;
 }
 .spc-table-tr:last-child {
  border: 1px solid #ccc;
 }
 .spc-table-th, .spc-table-td {
  width: 100%;
  display: block;
  padding: 1rem;
  line-height: 1.7;
}
.spc-table-th {
  border-bottom:  1px solid #ccc;
  background-color: #eee;
 }
.spc-table a {
  color: #1558d6;
  text-decoration: underline;
}
 @media screen and (min-width: 768px) {
  .spc-table {
    margin: 2rem 0 6rem;
  }
  .spc-table-th, .spc-table-td {
    display: table-cell;
  }
  .spc-table-th {
    max-width: 25%;
    border-right: 1px solid #ccc;
    border-bottom: none;
  }
 }

