.banner__section {
  width: 100%;
  max-width: 880px;
  margin: 60px auto;
}
.banner__section .banner-list {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.banner__section .banner-list__unit {
  height: 0;
  width: 100%;
  max-width: 43.18%;
  padding-top: 43.18%;
  position: relative;
}
.banner__section .banner-list__unit a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.banner__section .banner-list__unit a span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 140px;
  font-weight: 700;
  font-family: 'EB Garamond', serif;
  color: #0e2d53;
  font-size: 22px;
  background: #fff;
}
.banner__section .banner-list__unit a img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width:600px){
  .banner__section {
    margin: 0 auto;
  }
  .banner__section .banner-list__unit {
    max-width: 47.76%;
    padding-top: 47.76%;
  }
  .banner__section .banner-list__unit a span {
    width: 70px;
    bottom: 10px;
    left: 10px;
    font-size: 11px;
  }
}