@charset "utf-8";

#page_title {
    background:none;
}
    
            #img_absolute_box img.inside_garage {
            z-index: 1000;
            }
            #img_absolute_box img.only_shutter {
            z-index: 2000;
            }
            #img_absolute_box img.outside_shutter {
            z-index: 3000;
            }

.slide-out-element {
  /* アニメーションの設定: 秒かけて ease-out（だんだん遅く）変化 */
  animation: slideOutUp 30s ease-out forwards;
}

@keyframes slideOutUp {
  0% {
    transform: translateY(0); /* 現在位置 */
  }
  100% {
    transform: translateY(-100vw); /* 画面の右端（画面外）へ完全移動 */
  }
}

