body {
  margin: 0;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero video {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 8%;
  z-index: 2;
  color: #fff;
  transform: translateY(-50%);
}

.hero__label {
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: 0.2em;
}

.hero__title {
  margin: 0 0 24px;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.15;
}

.hero__text {
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.8;
}

.hero__button {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
}

.hero__button:hover {
  background-color: #fff;
  color: #111;
}

.contents {
  padding: 80px 8%;
}

@media (max-width: 800px) {
  .hero {
    height: 100svh;
    min-height: 560px;
  }

  .hero video {
    object-position: 58% center;
  }

  .hero__content {
    left: 6%;
    right: 6%;
  }

  .hero__label {
    margin-bottom: 12px;
    font-size: 11px;
    line-height: 1.6;
  }

  .hero__title {
    margin-bottom: 20px;
    font-size: 38px;
    line-height: 1.2;
  }

  .hero__title br,
  .hero__text br {
    display: none;
  }

  .hero__text {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.8;
  }

  .hero__button {
    padding: 13px 24px;
    font-size: 15px;
  }

  .contents {
    padding: 56px 6%;
  }
}
