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

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

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

.top-text {
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.05em;
  transform: translateY(-1.6em);
}

.top-text span {
  display: block;
  font-size: 22px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
}

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

@media screen and (min-width: 1px) and (max-width: 743px) {
  .top {
    display: block;
  }

  .top-left {
    display: none;
  }

  .top-logo {
    position: absolute;
    width: 66%;
    bottom: 9%;
    left: 17%;
  }

  .top-text {
    position: absolute;
    width: 100%;
    bottom: 3%;
    left: 0;
    font-size: 20px;
    text-align: center;
    line-height: 1.2;
    text-shadow:
      0 0 4px rgba(255, 255, 255, 1),
      0 0 4px rgba(255, 255, 255, 1),
      0 0 4px rgba(255, 255, 255, 1),
      0 0 4px rgba(255, 255, 255, 1),
      0 0 4px rgba(255, 255, 255, 1),
      0 0 4px rgba(255, 255, 255, 1),
      0 0 4px rgba(255, 255, 255, 1);
  }

  .top-text span {
    font-size: 18px;
  }

  .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%;
  }
}