

: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;
}



/* .lease-qa__inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
} */

.lease-qa__item + .lease-qa__item {
  margin-top: 50px;
}

.lease-qa__question {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 10px 20px;
  background: var(--bg-color);
  border-radius: 8px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #111;
}

.lease-qa__number {
  flex-shrink: 0;
  color: var(--main-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
}

.lease-qa__answer {
  font-size: 16px;
  line-height: 2.1;
  font-weight: 500;
  display: flex;
  gap:12px;
  padding-left: 20px;
}
.lease-qa__answer span.lease-qa__answer-number
{
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 2px;
}

.lease-qa__answer p {
  margin: 0 0 14px;
}

.lease-qa__answer p:last-child {
  margin-bottom: 0;
}
.lease-qa__answer div
{
  overflow-x: auto;
}

.lease-qa__table-wrap {
  margin: 18px 0 20px;
  border: 1px solid #cfcfcf;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.lease-qa__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.lease-qa__table th,
.lease-qa__table td {
  padding: 10px;
  border-right: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
  line-height: 1.8;
}

.lease-qa__table th:last-child,
.lease-qa__table td:last-child {
  border-right: none;
}

.lease-qa__table tbody tr:last-child td {
  border-bottom: none;
}

.lease-qa__table thead th {
  background: #004098;
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
}

.lease-qa__table tbody td {
  background: #fff;
  font-weight: 500;
}

@media (max-width: 767px) {
  /* .lease-qa {
    padding: 24px 0 56px;
  } */


  .lease-qa__item + .lease-qa__item {
    margin-top: 28px;
  }

  .lease-qa__question {
    gap: 12px;
    margin-bottom: 14px;
    padding: 14px 14px;
    font-size: 18px;
    line-height: 1.7;
  }

  .lease-qa__number ,
  .lease-qa__answer span.lease-qa__answer-number
  {
    font-size: 20px;
  }

  .lease-qa__answer {
    font-size: 16px;
    padding-left: 14px;
  }

  .lease-qa__table-wrap {
    overflow-x: auto;
    border-radius: 10px;
  }

  .lease-qa__table {
    min-width: 560px;
  }

  .lease-qa__table th,
  .lease-qa__table td {
    font-size: 16px;
    padding: 14px 10px;
  }
}