/* 追加用style */

#top .topMessage__clip {
  width: 100vw;
  /* overflow: hidden; */
}
#top .topMessage__scrollContainer {
  display: flex;
  justify-content: flex-end;
  margin-top: -200px;
  transform: rotate(-6deg);
  transform-origin: left;
}
#top .topMessage__imgContainer {
  display: flex;
  gap: 5vw;
  width: max-content;
  animation: topScroll 120s linear infinite;
}
#top .topMessage__img { 
  height: 150px; 
  width: auto; 
  flex: 0 0 auto; 
}

@media screen and (max-width: 520px) {
  #top .topMessage__scrollContainer {
    margin-top: -120px;
    transform: rotate(0deg);
  }
  #top .topMessage__imgContainer {
    margin-top: -1rem;
  }
  #top .topMessage__img { 
    height: auto; 
    width: 1000px; 
  }
  #top .topMessage__scrollContainer--bottom {
    margin-top: -40px;
    margin-bottom: 0px;
    transform: rotate(-6deg);
  }
}
