@charset "utf-8";
/* ==================================================
   Splash screen: SVGロゴアウトラインアニメーション → 幕開き
================================================== */

#splash{
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #000;
  transition: transform 1s cubic-bezier(.76,0,.24,1);
}
#splash.is-open{
  transform: translateY(-100%);
  pointer-events: none;
}

#splash_logo{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

#splash_logo svg{
  display: block;
  width: min(560px, 70vw);
  height: auto;
}

/* ODマークと下部の小さい英字、全パスを同時に輪郭描画 */
/* アニメーション前：Vivusが動く前から線を非表示にしておき、一瞬全体が見えるのを防ぐ */
#splash_logo svg path{
  fill: none;
  fill-opacity: 0;
  stroke: #fff;
  stroke-width: 6;
  stroke-dasharray: 20000;
  stroke-dashoffset: 20000;
  transition: fill-opacity .5s;
}

/* Vivusの描画完了後、doneクラスが付与された時：全パス一斉に白く塗りつぶす */
#splash_logo svg.done path{
  fill: #fff;
  fill-opacity: 1;
  stroke: none;
}
