/* 追加CSS */
.hero-title {
  font-size: clamp(1.25rem, 5vw, 2.5rem);
  line-height: 1.3;
}

.hero-mask {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.35)
  );
}

.section-title {
  font-size: clamp(1.25rem, 5vw, 2.5rem);
  line-height: 1.3;
}

@media (max-width: 575.98px) {
  .lead {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
  }
}

/* テーブルの一番下に線が描写されない問題の対策 */
.table > tbody > tr:last-child > th,
.table > tbody > tr:last-child > td {
  border-bottom: 1px solid var(--bs-table-border-color) !important;
}

.btn-contact {
  margin-bottom: 0 !important;
}

.table tbody {
  text-align: center
}

.minw-lg-120 {
  min-width: 120px;
}

@media (max-width: 991.98px) {
  .minw-lg-120 {
    min-width: auto;
  }
}

.dl-grid dt {
  width: 10rem;
  font-weight: 600;
}
.dl-grid dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-grid {
    display: grid;
    grid-template-columns: 12rem 1fr;
    row-gap: 0.75rem;
  }
  .dl-grid dt {
    grid-column: 1;
  }
  .dl-grid dd {
    grid-column: 2;
  }
}

.max-h-500 {
  max-height: 500px;
  object-fit: cover;
}
.btn-square {
  border-radius: 0.5rem !important;
}
.btn.btn-lg i {
  font-size: 1em !important;
  margin-left: 0.3em !important;
  vertical-align: middle ;
}