@charset "UTF-8";
@media screen and (max-width: 767px) {
  .people__modal-gallery {
    height: 42vw;
  }
}

#gallery__scroll {
  display: flex; /* スライドのグループを横並び */
  overflow: hidden; /* はみ出たスライドを隠す */
}
@media screen and (min-width: 550px) and (max-width: 767px) {
  #gallery__scroll {
    margin-top: 35vw;
  }
}
#gallery__scroll .slider {
  animation: scroll-left 20s infinite linear 0.5s both;
  display: flex; /* スライド3枚を横並び */
}
#gallery__scroll .slider .slide {
  width: 10vw;
  max-width: 220px;
  min-width: 190px;
}
@media screen and (max-width: 767px) {
  #gallery__scroll .slider .slide {
    width: 32vw;
    min-width: 130px;
  }
}
#gallery__scroll .slider .slide img {
  display: block;
  width: 100%;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* ====================================================
Module
==================================================== */
/* ====================================================
component
==================================================== */
.txt__wt700 {
  font-weight: 700;
}
.txt__sz16 {
  font-size: 1.6rem;
}
.txt__col333 {
  color: #333;
}

[id] {
  scroll-margin-top: 50px; /* すべてのアンカーリンクのスクロール位置を調整 */
}/*# sourceMappingURL=edit.css.map */