@charset "UTF-8";
.videoArea .videoBox{
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
}

.videoArea .videoBox .logo{
   width: 15%;
   display: block;
   margin: 0 auto;
   z-index: 2;
   margin: 17% auto 1rem auto;
}

.videoArea .videoBox h2{
   font-family: 'Noto Serif TC', serif;
   color: #fff;
   letter-spacing: 5px;
   font-size: calc(1px + 1.7vw);
   text-align: center;
   text-shadow: 0 0 10px rgba(0, 0, 0, 0.678);
   z-index: 2;
}

.skipBtnBox{
   position: absolute;
   bottom: 10%;
   left: 50%;
   transform: translateX(-50%);
}

.skipBtnBox .skipBtn {
   color: #fff;
   background: #071760;
   border: none;
   padding: 7px 20px;
   cursor: pointer;
   font-family: "Cinzel", serif;
   font-size: 1rem;
   line-height: 1;
   z-index: 10;
   transition: all 0.4s;
}

.skipBtnBox .skipBtn:hover {
   color: #071760;
   transform: scale(1.2);
   transition: all 0.4s;
   background: #fff;
}


@media (max-width: 991px) {
   .videoArea .videoBox .logo{
      width: 25%;
      display: block;
      margin: 0 auto;
      z-index: 2;
      margin: 47% auto 1rem auto;
   }

   .videoArea .videoBox h2{
      font-size: calc(3px + 3vw);
   }

   .skipBtnBox{
      bottom: 35%;
   }
}

@media (max-width: 767px) {
   .videoArea .videoBox .logo{
      width: 45%;
      display: block;
      margin: 0 auto;
      z-index: 2;
      margin: 55% auto 1rem auto;
   }

   .videoArea .videoBox h2{
      font-size: calc(4px + 5vw);
   }

   .skipBtnBox{
      bottom: 10%;
   }
}