body {
  margin: 0;
  height: 100vh;
  max-height: 100vh;
  width: 100%;
  overflow: hidden;
  background-image: linear-gradient(to bottom, #FFFFFF, #6CCD0D);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: #000;
}

.pcbox {
  height: 100%;
  width: 100%;
  position: absolute;
}

.pc-bike {
  position: absolute;
  right: -5%;
  top: 62%;
  transform: translateY(-50%);
  height: 60%;
  z-index: 20;
  display: none;
}

.pc-left-flex {
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 100;
  position: relative;
  padding: 20px;
}

.pc-link {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 90%;
  margin-top: 20px;
  gap: 10px;
}

.d-flex {
  display: flex;
}

.w-full {
  width: 100%;
}

.w-half {
  width: 50%;
}

.gap-5 {
  gap: 20px;
}

.mobile-bike {
  margin: auto;
  margin-top: 20px;
  margin-bottom: 0;
  width: 284px;
  display: block;
}

h1 {
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-weight: 600;
  margin: 0;
  font-size: 36px;
}

h2 {
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-weight: 500;
  margin: 0;
  font-size: 14px;
  width: 40%;
}

.pc-logo {
  width: 128px;
  margin-bottom: 20px;
}

.pc-main {
  position: absolute;
  bottom: 30%;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
}

.pc-sub {
  position: absolute;
  width: 90%;
  right: 0px;
  top: 85px;
  z-index: 10;
}

.pc-right-image {
  position: absolute;
  right: 0px;
  top: -85px;
  width: 240px;
}

.pc-left-image {
  position: absolute;
  z-index: 0;
  width: 155px;
  top: 150px;
  left: -57px;
}

@media (min-width: 1024px) {
  .pc-bike {
    display: block;
  }

  .pc-left-flex {
    padding: 100px;
    align-items: left;
    justify-content: center;
  }

  .pc-link {
    gap: 20px;
    width: 30%;
    margin-top: 100px;
    margin-left: 0;
    padding: 0;
  }

  .mobile-bike {
    display: none;
  }

  h1 {
    font-size: 72px;
  }

  h2 {
    font-size: 48px;
    width: 100%;
  }

  .pc-logo {
    margin-bottom: 50px;
    width: 300px;
  }

  .pc-main {
    height: 61%;
    bottom: 0;
  }

  .pc-sub {
    width: 900px;
    height: 900px;
    right: -135px;
    left: auto;
    top: -48px;
  }

  .pc-right-image {
    right: 0;
    top: -20px;
    width: auto;
  }

  .pc-left-image {
    left: -100px;
    width: auto;
  }
}

@media (min-width: 1440px) {
  h1 {
    font-size: 128px;
  }

  h2 {
    font-size: 64px;
  }
}