/* =========================================
   LIST DOWNLOAD 一覧
========================================= */

.list-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 100px 0;
}

.list-feature__heading {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 36px;
}

/* =========================================
   GRID
========================================= */

.list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  margin-top: 60px;
  align-items: stretch;
}

/* =========================================
   CARD
========================================= */

.list-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
}

/* =========================================
   LINK
========================================= */

.list-card__link {
  display: block;
  color: inherit;
  text-decoration: none !important;
}

/* =========================================
   IMAGE
========================================= */

.list-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.list-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform .6s ease,
    opacity .3s ease;
}

.list-card:hover img {
  opacity: .5;
}

/* =========================================
   BODY
========================================= */

.list-card__body {
  padding: 20px;
}

.list-card__body p {
  line-height: 1.8;
  text-align: center;
}

/* =========================================
   TITLE
========================================= */

.list-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 14px;
  color: #111;
  text-align: center;
}

/* =========================================
   BUTTON AREA
========================================= */

.list-more {
  display: flex;
  justify-content: center;
  margin-top: auto;
}

/* =========================================
   BUTTON
========================================= */

.list-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  min-width: 220px;
  padding: 0 32px;
  border-radius: var(--radius-round);
  background: var(--color-primary) !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  text-decoration: none !important;
  box-shadow:
    0 12px 34px rgba(37, 99, 235, .16);
  transition:
    background .3s ease,
    transform .3s ease;
  margin-bottom: 100px;
}

.list-more-link span {
  display: inline-block;
  line-height: 1;
  position: relative;
  left: -1px;
}

.list-more-link:hover {
  background: var(--color-primary-light) !important;
  transform: translateY(-2px);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .list-section {
    padding: 80px 0;
  }

  .list-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }

  .list-card__img {
    aspect-ratio: 16 / 9;
  }

  .list-card__title {
    font-size: 1.3rem;
  }

  .list-more-link {
    min-width: 220px;
    margin-bottom: 0;
  }
}