@charset "UTF-8";
section {
    margin: 0 auto 90px;
  }
.sec_inner{
      width: 1020px;
      margin-top: 40px;
  }
  section table tr {
   display: flex;
   align-items: center;
   border-bottom: 1px solid #bababa;
  }
  section table th {
      width: 330px;
      text-align: left;
      color: #3d90d4;
      font-weight: bold;
      padding-top: 20px;
      padding-bottom: 20px;
      display: block;
      flex-shrink: 0;
  }
  section table td {
      padding-top: 20px;
      padding-bottom: 20px;
      display: block;
      /* padding-right: 45px; */
  }
  section ul li {
      text-indent: -1em;
      padding-left: 1em;
      position: relative;
  }
  section ul li::before {
      content: "・";
  }
  
  @media screen and (max-width: 750px){
      section {
          width: initial;
          font-size: 26px;
          letter-spacing: 0.02em;
      }
      section table tr {
          display: block;
      }
      section table tr:first-of-type th {
          padding-top: 0;
      }
      section table tr th, section table tr td {
          width: 100%;
          font-size: 17px;
      }
      .sec_inner {
          padding: 20px;
          width: 100%;
          margin-top: 20px;
      }
      section table th {
        padding-bottom: 0;
      }

  }
  