.home-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: calc(var(--vh, 1vh) * 100);
  padding: 5rem 1.25rem 7.5rem 1.25rem;
  @media screen and (min-width: 768px) {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
  @media screen and (min-width: 1024px) {
    padding-right: 5rem;
    padding-left: 5rem;
  }
  @media screen and (min-width: 1200px) {
    padding-right: 7.5rem;
    padding-left: 7.5rem;
  }
  
  & .home-hero-slide {
    position: absolute;
    inset: 0;
  }
  
  & .home-hero__title {
    position: absolute;
    top: 6rem;
    right: 3rem;
    display: flex;
    gap: 0.75rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-size: 1.25rem;
    color: var(--snow);
    z-index: 1;
    @media screen and (min-width: 768px) {
      font-size: 1.75rem;
      gap: 1rem;
      top: 7.5rem;
      right: 5rem;
    }
    @media screen and (min-width: 1024px) {
      font-size: 2rem;
      gap: 1.5rem;
      top: 10rem;
      right: 7.5rem;
    }
    & p {
      writing-mode: vertical-rl;
    }
    & p:nth-child(1) {
      margin-top: 3.125rem;
    }
  }
  
  & .home-hero__news {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: hsl(0 0 100 / 1%);
    backdrop-filter: blur(8px);
    padding: 1.5rem 1rem;
    z-index: 1;
    @media screen and (min-width: 768px) {
      padding: 1.5rem 2rem;
      right: 0.75rem;
      bottom: 0.75rem;
      left: auto;
      width: 25rem;
    }
    @media screen and (min-width: 1200px) {
      right: 2.5rem;
      bottom: 2.5rem;
      width: 30rem;
    }
    & h3 {
      text-overflow: ellipsis;
    }
  }
}
.swiper:not(.swiper-initialized).home-hero-slide .swiper-wrapper .swiper-slide {
  min-width: 95%;
}

.home-concept-image {
  & img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 4;
  }
  @media screen and (min-width: 768px) {
    position: absolute;
    &.home-concept-image--1 {
      top: 2rem;
      left: 0rem;
      transform: translateX(-65%);
      width: 44.44444%;
      max-width: 25rem;
    }
    &.home-concept-image--2 {
      top: -5rem;
      right: 0rem;
      transform: translateX(60%);
      width: 55.65217391%;
      max-width: 32rem;
    }
  }
  @media screen and (min-width: 1024px) {
    &.home-concept-image--1 {
      top: 3rem;
    }
    &.home-concept-image--2 {
      transform: translateX(75%);
    }
  }
}

.service-image {
  position: absolute;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  &.service-image--1 {
    width: 52%;
    bottom: 0;
    left: 0;
    transform: translate(-19.23076923%, 14.42307692%);
  }
  &.service-image--2 {
    width: 55.71428571%;
    bottom: 0;
    left: 0;
    transform: translate(-19.23076923%, -9.61538462%);
  }
}





