
    :root
{
    --black:#000;
    --white:#fff;
    --main-color:#0044A2;
    --sub-color-green:#1EBDCD;
    --sub-color-lb:#40B1E8;
    --accent-color:#FF7F00;
    --bg-color:#F2F7FA;
    --light-gray:#DADFE3;
}


    a
    {
        color: #000;
    }
    p
    {
      font-weight: 500;
      line-height: 30px;
    }



    /* object cards */
    .object-grid{
      display:grid;
      grid-template-columns:repeat(4, 1fr);
      gap:20px;
    }

    .object-card{
      background:#fff;
      border:1px solid #d9d9d9;
      border-radius:8px;
      overflow: hidden;
    }

    .object-card img{
      width:100%;
      aspect-ratio: 16 / 10;
      object-fit:cover;
      display: block;
    }

    .object-card__body{
      padding:20px;
    }

    .object-card__title{
      margin:0 0 10px;
      font-size:18px;
      font-weight:700;
      line-height:1;
    }

    .object-card__text{
      margin:0;
      font-size:16px;
      line-height:1.7;
      color:#555;
    }

    /* リースとレンタル・割賦の比較　table */

    
.lease-comparison {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
    border: 1px solid var(--light-gray);
    box-sizing: border-box;
}

.lease-comparison__table {
  width: 100%;
  min-width: 1080px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  color: var(--black);
  background:var(--white);
}

.lease-comparison__table th,
.lease-comparison__table td {
  padding: 24px 18px;
  border-right: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  text-align: center;
  vertical-align: middle;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
  word-break: break-word;
}
.lease-comparison__table td
{
  font-weight: 500;
}


.lease-comparison__table thead th:first-child
{
    color: #000;
}

.lease-comparison__head--item {
  width: 14%;
  background: var(--bg-color);
  text-align: left;
  padding-left: 20px;
  font-weight: 700;
}

.lease-comparison__head--finance {
  background: var(--main-color);
}

.lease-comparison__head--rental {
  background: #0757C5;
}

.lease-comparison__head--installment {
  background: #4286E3;
}

.lease-comparison__table tr:last-child th,
.lease-comparison__table tr:last-child td {
  border-bottom: none;
} 
.lease-comparison__table tr th:last-child,
.lease-comparison__table tr td:last-child {
  border-right: none;
}

.lease-comparison__label {
  background: var(--bg-color);
  text-align: left;
  padding-left: 20px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
}
.lease-comparison__table thead th {
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
    border-bottom: 1px solid var(--light-gray)!important;
}


    /* 適正リース期間 1　table */

.lease-period-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 10px;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--light-gray);
  box-sizing: border-box;
}

.lease-period-table {
  width: 100%;
  min-width: 700px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  color: #222;
  background: var(--white);
}

.lease-period-table th,
.lease-period-table td {
  padding: 20px 16px;
  border-right: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.lease-period-table thead th {
  background: var(--main-color);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 14px 16px;
}

.lease-period-table thead th:first-child {
  width: 28%;
}

.lease-period-table thead th:last-child {
  width: 72%;
}

.lease-period-table tr th:last-child,
.lease-period-table tr td:last-child {
  border-right: none;
}

.lease-period-table tr:last-child td {
  border-bottom: none;
}



  /* 適正リース期間 2　table */

.lease-shortest-table-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 10px;
  -webkit-overflow-scrolling: touch;
     border: 1px solid var(--light-gray);
     box-sizing: border-box;
}

.lease-shortest-table {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background: var(--white);
}

.lease-shortest-table th,
.lease-shortest-table td {
  padding: 18px 12px;
  border-right: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  text-align: center;
  vertical-align: middle;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
}

.lease-shortest-table__head {
  background: var(--main-color) !important;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}

.lease-shortest-table__head--main {
  width: 25%;
  border-bottom: none!important;
}

.lease-shortest-table__head--sub {
  width: 22%;
}

.lease-shortest-table__label {
  font-weight: 700;
}

.lease-shortest-table tr th:last-child,
.lease-shortest-table tr td:last-child {
  border-right: none;
}

.lease-shortest-table tr:last-child th,
.lease-shortest-table tr:last-child td {
  border-bottom: none;
}

    
    /* flow / note */
    .notice{
      font-size:16px;
    }

    .symbol{
      margin:18px 0 20px;
      font-size:16px;
      font-weight:700;
      color:#1e3d6b;
    }

    .list{
      margin:0;
      /* padding-left:1.3em; */
      /* padding-left:1%; */
      font-size:16px;
      list-style: none;
      counter-reset: number;
    }

    .list li{
      margin-bottom:6px;
      position: relative;
      font-weight: 500;
    }
 




    section.insurance ul
    {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 15px;
    }
    section.insurance ul li
    {
      background: var(--bg-color);
      border-radius: 8px;
      padding: 30px 10px;
      font-weight: bold;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    section.insurance .maru
    {
      color: var(--accent-color);
    }
    section.insurance .batsu
    {
      color: var(--main-color);
    }
    .symbol
    {
      font-size: 18px;
      font-weight: bold;
    }


    @media screen and (max-width: 1024px) {


  .lease-comparison__table {
    min-width: 960px;
  }

  .lease-comparison__table th,
  .lease-comparison__table td {
    padding: 20px 16px;
    font-size: 14px;
    line-height: 1.6;
  }

  .lease-comparison__table thead th {
    font-size: 16px;
    padding: 13px 14px;
  }

  .lease-comparison__label,
  .lease-comparison__head--item {
    padding-left: 16px;
  }
}



  @media screen and (max-width:767px){
    


    .card-grid
    {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    


    .object-grid
    {
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }
    .object-card__body
    {
      padding: 10px;
    }
    .object-card__title
    {
      font-size: 16px;
    }
    .object-card__text
    {
      font-size: 14px;
      line-height: 22px;
    }

 
      section.insurance ul
      {
        grid-template-columns: repeat(2, 1fr);
      }
      section.insurance ul li
      {
        padding: 20px 15px;
        text-align: center;
      }
    


    /* リースとレンタル・割賦の比較　テーブル */

  .lease-comparison__table {
    min-width: 600px;
  }

  .lease-comparison__table th,
  .lease-comparison__table td {
    padding: 16px 12px;
    font-size: 13px;
    line-height: 1.6;
  }

  .lease-comparison__table thead th {
    padding: 12px 10px;
    font-size: 14px;
  }

  .lease-comparison__label {
    font-size: 13px;
    padding-left: 12px;
  }

  .lease-comparison__head--item {
    font-size: 13px;
    padding-left: 12px;
  }


    /* 適正リース期間 1　table */

    .lease-period-table-wrap {
    border-radius: 10px;
  }

  .lease-period-table {
    /* min-width: 560px; */
    min-width: 100%;
  }

  .lease-period-table th,
  .lease-period-table td {
    padding: 16px 12px;
    font-size: 14px;
    line-height: 1.6;
  }

  .lease-period-table thead th {
    padding: 12px 10px;
    font-size: 14px;
  }

    /* 適正リース期間 2　table */
  .lease-shortest-table-wrap {
    border-radius: 10px;
  }


  .lease-shortest-table {
    /* min-width: 760px; */
    min-width: 500px;
  }
    .lease-shortest-table__head--main
  {
    width: 15%;
  }
    .lease-shortest-table__head--sub
    {
      width: 12%;

    }

  .lease-shortest-table th,
  .lease-shortest-table td {
    padding: 10px;
    font-size: 13px;
  }

  .lease-shortest-table__head {
    font-size: 14px;
  }
  }