.hero {
  width: 100%;
  background: #fff;
}
.hero__image {
  width: 100%;
}

.band {
  display: flex;
  justify-content: center;
  padding: 80px 0 110px;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}
.band--pink {
  background-color: #fbeaeb;
  background-image: url("../img/front-page/koshigaya-bg.png");
}
.band--beige {
  background-color: #ffe3ca;
  background-image: url("../img/front-page/kashiken-bg.png");
}
.band--blue {
  background-color: #cadff6;
  background-image: url("../img/front-page/siosai-bg.png");
}
.band--rose {
  background-color: #ffdcdc;
  background-image: url("../img/front-page/benry-bg.png");
}
.band--violet {
  background-color: #eadff3;
  background-image: url("../img/front-page/ashikaga-bg.png");
}

.card {
  width: 1000px;
  background: var(--white);
  border-top: 10px solid transparent;
}
.band--pink .card {
  border-top-color: #ac1629;
}
.band--beige .card {
  border-top-color: #de8d32;
}
.band--blue .card {
  border-top-color: #005bc6;
}
.band--rose .card {
  border-top-color: #ff0000;
}
.band--violet .card {
  border-top-color: #8a5ad8;
}
.card__photo {
  width: 100%;
  aspect-ratio: 4/1;
  object-fit: cover;
}
.card__photo--benry {
  object-fit: contain;
  background: #fff;
  padding: 18px 18px 0;
}
.card__body {
  display: grid;
  place-items: center;
  gap: 18px;
  padding: 40px 0 67px;
  position: relative;
}
.card__body .cta-index {
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
}
.card__logo {
  width: auto;
}
.cta-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 538px;
  height: 70px;
  padding: 12px 24px;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
  color: #fff;
  border: 0;
}
.cta-index::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 0.45em;
  background: url("../img/common/icon-arrow.png") no-repeat center/contain;
}
.cta-index--red {
  background: var(--red);
}
.cta-index--orange {
  background: var(--orange);
}
.cta-index--blue {
  background: var(--blue);
}
.cta-index--purple {
  background: var(--purple);
}
.cta-index--red-strong {
  background: var(--red-strong);
}
