/*コメント*/
@media screen and (max-width:3000px){
.over-container {
  position: relative;
  width: 100vw;
  aspect-ratio:3000/1688;
  overflow: hidden;
  justify-self: stretch;
  grid-column-start: 1;
  grid-row-start: 1;
}

.over-wrapper {
      position: absolute;
      width: 600%; /* 6枚分の幅（4枚 + 最初のクローン） */
      height: 100%;
      display: flex;
      will-change: transform;
    }
    
    .overslide {
      position: relative;
      width: calc(100%/6); /* 全体の1/5 */
      height: 100%;
      overflow: hidden;
    }
    
    .parallax-bg {
  position: absolute;
  top: 0;
  left: 0; /* 左右に余裕を持たせる */
  width: 100%; /* 横幅を広くして、移動しても端が見えないようにする */
  height: 100%;
  background-size:cover; /* cover に変更してより自然な表示に */
  background-position: center center;
  will-change: transform;
}


.over_img01{background:url("../img/index03_LL.jpg");background-size:100%;}

.over_img02{background:url("../img/index04_LL.jpg");background-size:100%;}

.over_img03{background:url("../img/index10_LL.jpg");background-size:100%;}

.over_img04{background:url("../img/index06_LL.jpg");background-size:100%;}

}

@media screen and (max-width:768px){
.over-container {
  position: relative;
  width: 100vw;
  aspect-ratio:800/1250;
  overflow: hidden;
  justify-self: stretch;
  grid-column-start: 1;
  grid-row-start: 1;
}

.over-wrapper {
      position: absolute;
      width: 600%; /* 5枚分の幅（4枚 + 最初のクローン） */
      height: 100%;
      display: flex;
      will-change: transform;
    }
    
    .overslide {
      position: relative;
      width: calc(100%/6); /* 全体の1/5 */
      height: 100%;
      overflow: hidden;
    }
    
    .parallax-bg {
  position: absolute;
  top: 0;
  left: 0; /* 左右に余裕を持たせる */
  width: 100%; /* 横幅を広くして、移動しても端が見えないようにする */
  height: 100%;
  background-size:cover; /* cover に変更してより自然な表示に */
  background-position: center center;
  will-change: transform;
}


.over_img01{background:url("../img/index03_MS.jpg");background-size:100%;}

.over_img02{background:url("../img/index04_MS.jpg");background-size:100%;}

.over_img03{background:url("../img/index10_MS.jpg");background-size:100%;}

.over_img04{background:url("../img/index06_MS.jpg");background-size:100%;}



}