body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.header {
  background: black;
}

.subject {
  position: relative;
  width: 100%;
  height: 3000px;
}

.section {
  position: absolute;
  top: 80px;
  width: 100%;

  .title {
    margin-top: 48px;
    width: 60%;
    margin-left: 20%;
    font-size: 24px;
    margin-bottom: 24px;
  }

  .content {
    padding: 0 !important;
    display: flex;
    width: 80%;
    margin-left: 10%;
    justify-content: space-around;

    .img {
      width: 400px;
    }

    .text {
      width: 450px;
      font-size: 20px;

      h2 {
        margin-top: 60px;
      }

      p {
        margin-top: 80px;
        line-height: 36px;
      }
    }
  }

  .product {
    width: 60%;
    margin: 24px 20%;

    h2 {
      margin: 12px 0;
    }

    h3 {
      line-height: 48px;
      color: #7e2871;
    }

    p {
      font-size: 16px;
      line-height: 28px;
    }

    ul {
      li {
        font-size: 16px;
        line-height: 28px;
      }
    }
  }

  .table {
    width: 60%;
    margin-left: 20%;
    margin-bottom: 60px;

    h2 {
      line-height: 100px;
    }

    table {
      border-collapse: collapse;
      width: 100%;

      thead {
        height: 48px;
        font-size: 20px;

        tr {
          background: #b2b6bf;
        }
      }

      tbody {
        font-size: 16px;

        tr {
          height: 28px;
          line-height: 28px;

          td {
            padding: 0 24px;
          }
        }
      }
    }
  }

  .case_sharing {
    width: 80%;
    margin-left: 20%;

    h2 {
      margin: 24px 0;
    }
  }
}

.footer {
  position: absolute !important;
  bottom: 0 !important;
}