.banner {
  padding: 5.208333vw 16.666667vw;
  line-height: 1;
}
.banner-title {
  font-size: 2.083333vw;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.banner-text {
  max-width: 43.75vw;
  margin: 2.604167vw auto 0;
  font-size: 1.041667vw;
  line-height: 2;
}

.industry-list-wrapper {
  margin-bottom: 5.208333vw;
  padding: 0 16.666667vw;
}
.industry-list {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(auto-fill, 21.197917vw);
  grid-row-gap: 3.125vw;
}
.industry-list .industry-img-link {
  display: block;
  position: relative;
  z-index: 1;
  min-height: 16.667vw;
}
.industry-list .img-wrapper {
  position: relative;
  font-size: 0;
}
.industry-list .img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
}
.industry-list .img-wrapper:hover::before {
  background-color: rgba(0, 0, 0, 0);
}
.industry-img {
  width: 100%;
  height: auto;
}
.industry-title {
  margin-top: 1.5625vw;
  margin-bottom: 0.625vw;
  font-size: 1.5625vw;
  color: #333;
  line-height: 1;
}
.link-more {
  font-size: 0.729167vw;
  color: #666;
  text-decoration: underline;
  cursor: pointer;
  user-select: none;
}
.link-more:hover {
  color: #016dbf;
}

@media (max-width: 768px) {
  .banner {
    padding: 2rem 0;
  }
  .banner-title {
    font-size: 1.2rem;
  }
  .banner-text {
    max-width: 90%;
    margin: 1em auto 0;
    font-size: .8rem;
    line-height: 1.75;
  }

  .industry-list-wrapper {
    width: 90%;
    margin: 0 auto 2rem;
    padding: 0;
  }
  .industry-list {
    grid-template-columns: repeat(1, 100%);
    grid-row-gap: 1.5rem;
  }
  .industry-img {
    object-fit: cover;
  }
  .industry-title {
    margin-top: 1rem;
    margin-bottom: .5rem;
    font-size: 1rem;
  }
  .link-more {
    font-size: .7rem;
  }
}
