section {
    border-top: 2px solid #000;
}
section .inner {
    max-width: 1200px;
    margin-inline: auto;
    padding-top: 60px;
    padding-bottom: 100px;
    position: relative;
}
section .inner::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 140px;
    height: 7px;
    background: linear-gradient(90deg, #1EAA39 0%, #1EAA39 33.3%, #08287E 33.3%, #08287E 66.6%, #36BDEF 66.6%, #36BDEF 100%)
}
section .inner h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.5px;
    color: #000;
}
section .inner #mainContents {
    margin-top: 60px;
    padding-inline: 50px;
}
section table {
    width: 100%;
}
section table tr th,
section table tr td {
  padding-block: 32px;
}
section table tr th {
    vertical-align: top;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 34px;
    letter-spacing: 0.9px;
    border-top: #000 3px solid;
    width: 230px;
  }

  section table tr:last-child th {
    border-bottom: #000 3px solid;
  }

  section table tr td {
    border-top: #AAA 1px solid;
    padding-left: 60px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.7px;
    color: #4B4B4B;
  }

  section table tr:last-child td {
    border-bottom: #AAA 1px solid;
  }
@media (max-width: 768px) {
    section .inner {
        max-width: 335px;
        margin-inline: auto;
        padding-top: 30px;
        padding-bottom: 60px;
        position: relative;
    }
    section .inner::after {
        width: 90px;
        height: 6px;
        background: linear-gradient(90deg, #1EAA39 0%, #1EAA39 33.3%, #08287E 33.3%, #08287E 66.6%, #36BDEF 66.6%, #36BDEF 100%)
    }
    section .inner h2 {
        font-size: 24px;
        letter-spacing: 1.2px;
    }
    section .inner #mainContents {
        margin-top: 30px;
        padding-inline: 0px;
    }
    section table tr th,
    section table tr td {
      padding-block:16px;
      display: block;
      width: 100%;
    }

    section table tr th {
      width: 100%;
    }

    section table tr td {
      padding-left: 0px;
    }

    section table tr:last-child th {
      border-bottom: none;
    }

}