/* ================
  Company
================ */
.lp-company{
  padding: clamp(48px, 6vw, 72px) 0;
  background: #fff;
}

.lp-company__inner{
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
}

.lp-company__head{
  text-align: center;
  margin-bottom: 28px;
}

.lp-company__title{
  margin: 0;
  font-weight: 800;
  color: #1d2088; /* Navy固定 */
  letter-spacing: .04em;
  font-size: 32px;
  line-height: 1.2;
}

.lp-company__underline{
  display: inline-block;
  width: 120px;
  height: 10px;
  margin-top: 14px;
  border-radius: 999px;
  background: #f3d23b; /* 黄色ライン */
}

/* table-like */
.lp-company__table{
  border-top: 2px solid #bdbdbd;
  border-bottom: 2px solid #bdbdbd;
}

.lp-company__row{
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  border-top: 1px solid #bdbdbd;
  align-items: stretch;
}

.lp-company__row:first-child{
  border-top: none;
}

.lp-company__th,
.lp-company__td{
  padding: 22px 24px;
  font-size: 16px;
  line-height: 1.9;
  color: #111;
}

.lp-company__th{
  font-weight: 700;
  color: #111;
}

.lp-company__td{
  white-space: normal;
}

/* SP */
@media (max-width: 640px){
  .lp-company__inner{
    width: calc(100% - 28px);
  }

  .lp-company__row{
    grid-template-columns: 120px 1fr; /* SPは左を細く */
  }

  .lp-company__th,
  .lp-company__td{
    padding: 16px 14px;
    font-size: 14px;
    line-height: 1.8;
  }

  .lp-company__underline{
    width: 100px;
    height: 9px;
  }
}
