@media screen and (min-width: 1200px) {
  .header {
    display: none;
  }
}

.home-hero {
  display: flex;
  flex-direction: column;
  position: relative;
  
  @media screen and (min-width: 1024px) {
    height: auto;
    min-height: calc(var(--vh, 1vh) * 100);
    flex-direction: row;
  }
  
  & .home-hero__image {
    @media screen and (min-width: 1024px) {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
  
  & .swiper-slide::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.10) 65%, rgba(0, 0, 0, 0.20) 100%);
  }
}

.home-features-dec {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(180deg, rgba(27, 184, 79, 0.00) 0%, rgba(27, 184, 79, 0.10) 30.29%, rgba(27, 184, 79, 0.00) 100%);
}

.feature-title {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 1rem;
  padding-top: 1.5rem;
  
  & .feature-title__ja {
    position: relative;
    letter-spacing: 0.24em;
    line-height: 1.25;
    font-weight: 700;
    font-size: 1.125rem;
    
    @media screen and (min-width: 768px) {
      font-size: 1.5rem;
    }
  }
  
  & .feature-title__en {
    position: absolute;
    letter-spacing: 0;
    line-height: 1;
    transform: rotate(-6deg);
    color: var(--green);
    opacity: 30%;
    font-family: var(--font-display);
    font-size: 2rem;
    top: -12px;
    left: -32px;
    white-space: nowrap;
    
    @media screen and (min-width: 768px) {
      font-size: 3rem;
      top: -28px
      left: -80px;
    }
  }
}

.home-strengths {
  background: linear-gradient(180deg, rgba(27, 184, 79, 0.00) 0%, rgba(27, 184, 79, 0.10) 15.5%, rgba(27, 184, 79, 0.00) 100%);
  margin-top: -6.25rem;
}

.home-about {
  &::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 42%;
    display: none;
    background-color: var(--ink);
    
    @media screen and (min-width: 1024px) {
      display: block;
    }
  }
  
  @media screen and (min-width: 1200px) {
    .section-title {
      position: absolute;
      top: 0;
      left: -6rem;
      align-items: center;
      
      & .section-title__dots {
        flex-direction: column;
      }
      & .section-title__ja {
        writing-mode: vertical-rl;
      }
    }
  }
}

@media screen and (min-width: 1024px) {
  #chatbot-btn {
    transition-property: bottom, right;
    transition-duration: 500ms;
    transition-timing-function: ease;
    
    &:not(.scrolled) {
      bottom: 140px !important;
      right: 35px !important;
    }
  }
}

.header {
  @media screen and (min-width: 1024px) {
    display: none;
  }
}
