.banner {
  position: relative;
}
.banner img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.banner .text {
  position: absolute;
  left: 0;
  width: 100%;
  top: 40%;
  transform: translateY(-50%);
  color: white;
  font-weight: 600;
  text-align: center;
}
.banner .text .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .text .icon .line {
  width: 15.1041666667vw;
  height: 1px;
}
.banner .text .icon .icon_logo {
  margin: 0 2.6041666667vw;
  width: 2.3958333333vw;
  display: block;
}
.banner .text p {
  margin-top: 4.1666666667vw;
}

@media screen and (max-width: 768px) {
  .banner .text {
    top: 45%;
  }
  .banner .text .icon .line {
    width: 150px;
  }
  .banner .text .icon .icon_logo {
    margin: 0 20px;
    width: 35px;
  }
  .banner .text p {
    font-size: 24px;
    width: 90%;
    margin: 15px auto 0 auto;
  }
}