@charset "UTF-8";

/*--------------------------------------
mvtkWidget
----------------------------------------*/
#mvtk{
	width:100%;
	min-width: 1200rem;
	margin:80rem auto 0;
}

#mvtkWidget{
	position:relative;
}

#mvtk-widgets-container{
	margin:0 auto;
}

#bnr{
	width:160rem;
  position: absolute;
  bottom: 50rem;
  left: 20rem;
}

#bnr ul li{
	border:none;
  cursor: pointer;
  transition: .2s;
}

#bnr ul li:hover{
	opacity:1.0;
	animation: poyon-bounce 0.6s ease-in-out forwards;
}



/* --------------------------------------------------
animation
-------------------------------------------------- */

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform:scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1.0);
    transform:scale(1.0);
  }
}

@keyframes zoomOut {
  from {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform:scale(1.2);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1.0);
    transform:scale(1.0);
  }
}

@keyframes poyon {
  0%   { transform: scale(0.3, 0.3); }
  20%  { opacity: 1; transform: scale(1.1, 1.1); }
  40%  { opacity: 1; transform: scale(0.8, 0.8); }
  60%  { opacity: 1; transform: scale(1.05, 1.05); }
  80%  { opacity: 1; transform: scale(0.95, 0.95); }
  100% { opacity: 1; transform: scale(1.0, 1.0); }
}

@keyframes blur {
  0% {
	  opacity: 0;
    filter: blur(40rem);
  }
  100% {
	  opacity: 1;
    filter: blur(0);
  }
}

@keyframes maskIn {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(-10px);
  }
}

#mvtk,
#logo ul li,
#date ul li,
.p-topNav ul li,
#bnr ul li img{
	opacity:0;
}

.is-loaded #logo ul li:nth-child(1){
  animation: poyon 0.8s linear 0.6s forwards;
}

.is-loaded #logo ul li:nth-child(2){
  animation: poyon 0.8s linear 0.8s forwards;
}

.is-loaded #logo ul li:nth-child(3){
  animation: poyon 1.0s linear 1.0s forwards;
}

.is-loaded #date ul li:nth-child(1){
  animation: poyon 0.8s linear 1.6s forwards;
}

.is-loaded #date ul li:nth-child(2){
  animation: poyon 0.8s linear 1.8s forwards;
}

.is-loaded .p-topNav ul li:nth-child(1){
  animation: fadeInUp 1.0s cubic-bezier(.17,.67,.3,.92) 2.2s forwards;
}

.is-loaded .p-topNav ul li:nth-child(2){
  animation: fadeInUp 1.0s cubic-bezier(.17,.67,.3,.92) 2.4s forwards;
}

.is-loaded .p-topNav ul li:nth-child(3){
  animation: fadeInUp 1.0s cubic-bezier(.17,.67,.3,.92) 2.6s forwards;
}

.is-loaded #mvtk{
  animation: fadeInUp 1.0s cubic-bezier(.17,.67,.3,.92) 2.8s forwards;
}

.is-loaded #bnr ul li:nth-child(1) img{
  animation: poyon 0.8s linear 3.0s forwards;
}


