.home-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  padding: 7.5rem 1.25rem 0;
  
  & .home-hero__character {
    position: absolute;
    top: 50%;
    right: -3.5rem;
    transform: translateY(-50%);
    width: 4rem;
    & > img {
      width: 100%;
    }
    @media screen and (min-width: 768px) {
      width: 5rem;
    }
    @media screen and (min-width: 1024px) {
      width: 6rem;
    }
  }
  
  & .home-hero__bubble {
    position: absolute;
    bottom: 0;
    left: 0.625rem;
    transform: translateY(calc(100% - 0.25rem));
    width: 5rem;
    height: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.375rem;
    line-height: 1;
    color: var(--cobalt);
    text-align: center;
    font-size: 0.75rem;
    & .home-hero__bubble-icon {
      position: relative;
      align-self: center;
    }
    @media screen and (min-width: 768px) {
      width: 7.5rem;
      height: 7.5rem;
      font-size: 1rem;
      & .home-hero__bubble-icon {
        width: 1.75rem;
      }
    }
    @media screen and (min-width: 1024px) {
      width: 9.375rem;
      height: 9.375rem;
      font-size: 1.125rem;
      & .home-hero__bubble-icon {
        width: 2rem;
      }
    }
  }
  
  & .home-hero__illust {
    position: relative;
    max-width: 50rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    & > img {
      width: 100%;
    }
    
    & .home-hero__question {
      position: absolute;
      transition: all ease 400ms;
      & img {
        width: 100%;
      }
      &:hover {
        opacity: 90%;
        transform: scale(0.95);
      }
      &.home-hero__question--1 {
        width: 40%;
        max-width: 18.75rem;
        top: 1rem;
        left: -2rem;
        @media screen and (min-width: 768px) {
          top: 8.5rem;
          left: -4.5rem;
        }
        @media screen and (min-width: 1024px) {
          top: 8rem;
          left: -7rem;
        }
      }
      &.home-hero__question--2 {
        width: 37%;
        max-width: 16.25rem;
        top: -1rem;
        right: -2rem;
        @media screen and (min-width: 768px) {
          top: 5rem;
          right: -4rem;
        }
        @media screen and (min-width: 1024px) {
          top: 5rem;
          right: -8rem;
        }
      }
      &.home-hero__question--3 {
        width: 37%;
        max-width: 16.25rem;
        bottom: 1.5rem;
        left: -1rem;
        @media screen and (min-width: 768px) {
          bottom: 5rem;
          left: -3.5rem;
        }
        @media screen and (min-width: 1024px) {
          left: -5.5rem;
        }
      }
      &.home-hero__question--4 {
        width: 35%;
        max-width: 15rem;
        bottom: 1.5rem;
        right: -1rem;
        @media screen and (min-width: 768px) {
          bottom: 5rem;
          right: -3.5rem;
        }
        @media screen and (min-width: 1024px) {
          bottom: 5rem;
          right: -3rem;
        }
      }
    }
  }
}

.spark-num {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(calc(-100% - 0.125rem));
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  & img {
    position: absolute;
    top: -0.5rem;
    left: -0.6875rem;
    width: 1rem;
  }
  @media screen and (min-width: 768px) {
    font-size: 1.5rem;
    left: -0.75rem;
    & img {
      width: 1.5rem;
      top: -0.75rem;
      left: -1rem;
    }
  }
  @media screen and (min-width: 1024px) {
    left: -1.25rem;
  }
  @media screen and (min-width: 1200px) {
    top: -0.75rem;
    left: -2.25rem;
    transform: none;
  }
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  
  @media (min-width: 1200px) {
    position: relative;
  }
}

.home-service-bubble {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
}







