.top {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  overflow: hidden;
}

.top-left {
  width: 45%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.top-logo {
  width: 90%;
  margin: 0 auto;
}

.top-text {
  width: 100%;
  padding: 1em 0 0 2em;
  font-size: 1.4vw;
  font-family: "owners-xwide", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
}

.top-right {
  width: 55%;
  line-height: 0;
}

@media screen and (min-width: 1px) and (max-width: 743px) {
  .top {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: block;
  }

  .top-left {
    width: 45%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .top-logo {
    position: absolute;
    width: 84%;
    top: 5%;
    left: 8%;
  }

  .top-text {
    position: absolute;
    bottom: 1%;
    left: 5%;
    width: 100%;
    padding: 0;
    font-size: 5vw;
    line-height: 1.4;
  }

  .top-right {
    width: 100%;

  }
}

@media screen and (min-width: 744px) and (max-width: 1024px) {
  .top::before {
    content: "";
    display: block;
    padding-top: 70%;
  }

  .top-left {
    width: 50%;
  }

  .top-text {
    font-size: 2.4vw;
  }

  .top-right {
    width: 50%;
  }

}

@media screen and (min-width: 1025px) {
  .top::before {
    content: "";
    display: block;
    padding-top: 70%;
  }
}