@charset "utf-8";

/* ========================================
   下水管接続工事 固有アニメーションCSS
   ======================================== */

/* スクロール表示アニメーション（下水管接続工事固有セレクタ） */
.marker , .pipingP2 , .pipingP1 , .pipingTitle , .contactTitle , .contactInner , .contactItem , .menuBottom{
  opacity: 0;
  transform: translateY(50px);
  transition: 1s;
}
.marker.show , .pipingP2.show , .pipingP1.show , .pipingTitle.show , .contactTitle.show , .contactInner.show , .contactItem.show , .menuBottom.show{
  opacity: 1;
  transform: none;
}

/* 配管画像アニメーション */
.pipingImg img{
  opacity: 0;
  transform: translateY(50px);
  transition: 1s;
}
.pipingImg img.show{
  opacity: 1;
  transform: none;
}
