.process01__item:first-child{
  z-index: 1;
}

@media only screen and (min-width: 769px) and (max-width: 1600px) {
    .bandTtl__circle {
        transform: translate(48%, -50%);
    }
}
@media only screen and (min-width: 769px) {
    .bandTtl__circle {
        transform: translate(50%, -50%);
    }
}

.bandTtl__circle.zoom img{
  transform: scale(1); /* 通常サイズ */
  transition: transform 3s ease; /* ゆっくり拡大 */
}

/* 拡大時 */
.bandTtl__circle.zoom.visible img {
  transform: scale(1.2); /* 少し拡大 */
}
/* about拡大 */
.purpose__R {
  width: 100%; /* grid のカラム幅に合わせる */
  height: 100%;
  overflow: hidden; /* 画像がはみ出さないようにする */
  position: relative;
  border-radius: 50%;
}

.purpose__R img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

/* 画面に入ったら少し拡大 */
.purpose__R img.zoom-in {
  transform: scale(1.2);
}

@media only screen and (max-width: 769px){
  .stickL{
    width: 100%; /* grid のカラム幅に合わせる */
    height: 100%;
    overflow: hidden; /* 画像がはみ出さないようにする */
    position: relative;
    border-radius: 0 36vw 36vw 0;
  }
  .stickL img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
  }
  .stickL img.zoom-in {
    transform: scale(1.2);
  }
}
