@charset "UTF-8";
/**************************************************
 基本設定
**************************************************/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: #000;
}

main {
  display: block;
}

.link__anchor a img {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.link__anchor a img:hover {
  opacity: 0.7;
}

.container {
  opacity: 0;
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 1200px;
  overflow: hidden;
}

/**************************************************
 header
**************************************************/
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1200px;
}

.top__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 20px;
  right: 20px;
}

.top__sns li {
  margin-left: 15px;
}

.top__share {
  position: absolute;
  top: 70px;
  right: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 290px;
  text-align: center;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.top__share.active {
  opacity: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.is_hidden {
  opacity: 0;
}

#checkin_iframe, .normal-button {
  width: 100px !important;
}

/**************************************************
 top
**************************************************/
.top {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
}

main {
  width: 964px;
  text-align: center;
}

.top__date {
  margin-top: 43px;
}

.top__mark {
  margin-top: 38px;
}

/**************************************************
 nav
**************************************************/
nav {
  position: absolute;
  top: 20px;
  left: 20px;
}

/**************************************************
 banner
**************************************************/
.top__bnr--japan {
  position: absolute;
  bottom: 86px;
  right: 20px;
}

/**************************************************
 footer
**************************************************/
footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.top__towap {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.top__paramount {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

/**************************************************
 YouTube
**************************************************/
.yt-overlay {
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 150;
}

.yt-overlay.transparent {
  background-color: black;
}

.yt-overlay:after {
  position: relative;
}

.yt-close {
  display: none;
  position: absolute;
  top: -50px;
  right: -60px;
  cursor: pointer;
  z-index: 300;
}

.yt-video {
  position: relative;
  width: 1000px;
  height: 562.5px;
  z-index: 150;
}

.yt-player {
  width: 1000px;
  height: 562.5px;
  z-index: 200;
}

.yt-loader {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  width: 128px;
  height: 128px;
  z-index: 0;
}

.yt-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
}

.yt-tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  color: #dd171b;
  border: 1px solid #dd171b;
  height: 35px;
  cursor: pointer;
}

.yt-tab.active {
  color: #fff;
  background-color: #dd171b;
  cursor: auto;
}

/**************************************************
 CSSアニメーション
**************************************************/
.is_loaded.container {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.is_loaded .top__logo {
  -webkit-animation-name: fadeInSlide;
          animation-name: fadeInSlide;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.is_loaded .top__date,
.is_loaded .top__mark,
.is_loaded nav,
.is_loaded .top__sns,
.is_loaded .top__towap,
.is_loaded .top__paramount,
.is_loaded .top__bnr--japan {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInSlide {
  from {
    opacity: 0;
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px);
  }
  60% {
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px);
  }
  60% {
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
