@charset "UTF-8";
/* CSS Document */


/*-------------- ヘッダアニメーション --------------*/

/* lottie-container は背景レイヤー */
#lottie-container {
  position: absolute;    /* 背景として固定配置 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
 
  z-index: 999999;
 
}

#lottie-container svg {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  min-height: 100% !important;
  width: auto !important;
  height: auto !important;
}

