@charset "UTF-8";

@font-face {
  font-family: "DIN-Next";
  src: url(../font/DIN-Next.woff) format("woff");
}

@-webkit-keyframes loading {
  from {
    opacity: 1;
    z-index: 1000;
  }

  to {
    opacity: 0;
    z-index: -1;
  }
}

@keyframes loading {
  from {
    opacity: 1;
    z-index: 1000;
  }

  to {
    opacity: 0;
    z-index: -1;
  }
}

#loading {
  width: 100%;
  height: 100%;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  pointer-events: none;
}

.hide {
  -webkit-animation: loading 3s;
  animation: loading 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.js-up {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transform: translate3d(0, 40px, 0);
  transform: translate3d(0, 40px, 0);
  opacity: 0;
}

.js-img {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transform: scale(1.5, 1.5);
  -ms-transform: scale(1.5, 1.5);
  transform: scale(1.5, 1.5);
}

.js-on {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

#slide {
  position: relative;
}

#slide li {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  z-index: 0;
}

#slide li.js-show {
  opacity: 1;
  z-index: 2;
}

#slide li.js-next {
  opacity: 0;
  z-index: 1;
}

.js-type {
  position: relative;
  display: inline-block;
}

.js-typo {
  display: block;
}

.cursor {
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  right: -5px;
  width: 2px;
  /* Change colour of Cursor Here */
  background-color: white;
  z-index: 1;
  -webkit-animation: flash 0.5s none infinite alternate;
  animation: flash 0.5s none infinite alternate;
}

@-webkit-keyframes flash {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes flash {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media screen and (min-width: 767px) {
  @-webkit-keyframes underline {
    0% {
      width: 100%;
      height: 4px;
    }

    100% {
      width: 80px;
      height: 4px;
    }
  }

  @keyframes underline {
    0% {
      width: 100%;
      height: 4px;
    }

    100% {
      width: 80px;
      height: 4px;
    }
  }

  .underline {
    position: relative;
    margin-bottom: 56px;
  }

  .underline:before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 4px;
    background: #E44040;
    position: absolute;
    left: 0;
    bottom: -24px;
    -webkit-transition: 1s all;
    transition: 1s all;
  }

  .underline.js-on:before {
    -webkit-animation: underline 1s;
    animation: underline 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }

  #slide {
    padding-bottom: 47.5%;
  }
}

@media screen and (min-width: 767px) {
  .js-typo {
    margin-bottom: 24px;
  }

  .js-typo:last-of-type {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .js-typo {
    margin-bottom: 12px;
  }

  .js-typo:lang(en) {
    margin-bottom: 0px;
    line-height: 2;
  }

  .js-typo:last-of-type {
    margin-bottom: 0;
  }

  #slide {
    padding-bottom: 100%;
  }
}

* {
  margin: 0;
  padding: 0;
  font-family: inherit;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1;
}

html,
body {
  font-size: 1rem;
  width: 100%;
  height: 100%;
  overscroll-behavior-x: none;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

img {
  width: 100%;
  height: auto;
}

a {
  color: #fff;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: block;
}

a:hover {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 1rem;
}

ul,
li {
  display: block;
  list-style-type: none;
}

input {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
}

@media screen and (min-width: 767px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

html {
  height: 100%;
}

body {
  line-height: 1.75;
  font-size: 16px;
  height: 100%;
  position: relative;
  color: #fff;
  background: #000;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  overflow-x: hidden;
}

.wrap {
  margin: 0 auto;
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

.ib {
  display: inline-block;
}

#translate {
  position: fixed;
  top: 32px;
  right: 24px;
  -webkit-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 99;
  font-family: DIN-Next, sans-serif;
  font-weight: normal;
  letter-spacing: 1px;
}

#translate li {
  color: #636363;
}

#translate li:not(:last-of-type) {
  margin-right: 5px;
}

#translate li.to {
  color: #fff;
}

#info_list {
  margin-top: 16px;
  font-size: 1rem;
}

#info_list li {
  position: relative;
  padding-left: 16px;
  clear: both;
  margin-bottom: 12px;
}

#info_list li:last-of-type {
  margin-bottom: 0;
}

#info_list li:before {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  content: '';
  height: 1px;
  width: 8px;
  background: #fff;
}

#info_list dd {
  line-height: 1.5;
}

#info_list dt {
  float: left;
  line-height: 1.5;
}

#info_list .text--small {
  margin-left: -8px;
  margin-top: 4px;
  line-height: 1.5;
}

#info_list .text--small:lang(en) {
  margin-left: 0px;
}

#map_area {
  width: 100%;
}

#map_link {
  margin-top: 16px;
  font-size: 0.9rem;
}

#map_link .arrow:before {
  bottom: 4px;
  margin-left: 0px;
}

@media screen and (min-width: 767px) {
  #translate {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }

  .wrap {
    width: 90%;
    max-width: 1200px;
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  #link {
    display: none;
  }

  #map_area {
    height: 320px;
  }
}

@media screen and (max-width: 768px) {
  #translate {
    font-size: 1rem;
    top: 24px;
  }

  .wrap {
    width: calc(100% - 48px);
  }

  #link {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #000;
    z-index: 10;
    font-family: DIN-Next, sans-serif;
    max-width: 1000px;
    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;
  }

  #guide_link {
    width: 100%;
    height: 90px;
    -webkit-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  #guide_link #start {
    line-height: 1.1;
    font-size: 1.1rem;
    min-width: 65px;
  }

  #guide_link #start .cool_arrow {
    display: inline-block;
    width: 15px;
    height: 5px;
    background: url("../svg/cool_arrow.svg") no-repeat;
    background-size: auto 100%;
    margin-left: 5px;
    vertical-align: 4px;
  }

  #ios,
  #android {
    margin-left: 10px;
    width: 40%;
  }

  .os {
    font-size: 0.75rem;
    position: relative;
    padding-left: 15px;
    line-height: 1;
    margin-bottom: 5px;
  }

  .os .triangle {
    position: absolute;
    top: 3px;
    left: 0;
    border-right: 3px solid transparent;
    border-top: 5px solid #fff;
    border-left: 3px solid transparent;
    margin-right: 5px;
  }

  .btn {
    width: 100%;
    height: auto;
    max-height: 60px;
  }

  .btn img {
    width: 100%;
    height: auto;
  }

  .btn a {
    display: block;
  }

  .btn#android_btn {
    border: 1px solid #A6A6A6;
    border-radius: 7px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    line-height: 1;
    position: relative;
  }

  .btn#android_btn .btn_text {
    font-size: 0.9rem;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .btn#android_btn .btn_text .ott_logo {
    display: inline-block;
    width: 13px;
    height: 20px;
    background: url("../svg/ott_logo.svg") no-repeat;
    margin-right: 7px;
    background-size: auto 100%;
    vertical-align: -5px;
  }

  #map {
    margin-top: 16px;
  }

  #map_area {
    height: 240px;
  }
}

.button--ticket {
  width: 100%;
  height: 64px;
  border-radius: 8px;
  background: #E44040;
  text-align: center;
  position: relative;
  margin-top: 48px;
}

.button--ticket:lang(en),
.en-ticket-button {
  /* min-height: 64px; */
  /* height: auto; */
  padding: 10px 48px 10px 16px;
  line-height: 1.5;
}

.button--ticket + .button--ticket {
  margin-top: 24px;
}

.button--ticket .arrow {
  position: absolute;
}

.count {
  position: absolute;
  color: #E44040;
}

.count .now {
  font-family: DIN-Next, sans-serif;
}

#share {
  font-family: DIN-Next, sans-serif;
  font-size: 0.8rem;
  text-align: center;
}

#share li {
  width: calc(100% / 3 - 10px);
  height: 35px;
  line-height: 35px;
  border-radius: 4px;
  margin-top: 24px;
  padding-top: 1px;
}

#share li a {
  margin-bottom: -0px;
}

#share li .icon {
  display: inline-block;
  width: 15px;
  height: 10px;
  margin-right: 5px;
  background-size: auto 100%;
  margin-top: -2px;
}

#share li#facebook {
  background: #3A5A9A;
}

#share li#facebook .icon {
  margin-right: 3px;
  background: url("../svg/facebook.svg") no-repeat;
}

#share li#twitter {
  background: #1DA1F2;
}

#share li#twitter .icon {
  background: url("../svg/twitter.svg") no-repeat;
}

#share li#line {
  background: #00B900;
}

#share li#line .icon {
  margin-right: 1px;
  background: url("../svg/line.svg") no-repeat;
}

.arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
}

.arrow:before {
  position: absolute;
  margin: auto;
  content: "";
  vertical-align: middle;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (min-width: 767px) {
  .button--ticket {
    width: 360px;
  }

  .button--ticket .arrow {
    right: 32px;
  }

  .arrow:before {
    top: 0;
    bottom: 5px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    margin-left: 5px;
  }

  .count {
    bottom: -120px;
    left: 0;
  }

  .count .now {
    font-size: 4rem;
    margin-bottom: -10px;
  }

  .count .sla {
    font-size: 2.5rem;
    margin: 0 6px;
  }

  .count .all {
    font-size: 2.5rem;
  }

  #share {
    width: 360px;
  }

  .logo {
    width: 320px;
  }

  .logo--header {
    width: 200px;
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 768px) {
  .button--ticket {
    width: 100%;
  }

  .button--ticket .arrow {
    right: 16px;
  }

  .logo {
    width: 60%;
  }

  .arrow:before {
    top: 0;
    bottom: 5px;
    left: 3px;
    width: 4px;
    height: 4px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    margin-left: 5px;
  }

  .count {
    top: calc(100vw - 76px);
    right: 0px;
  }

  .count .now {
    font-size: 4rem;
    margin-bottom: -10px;
  }

  .count .sla {
    font-size: 2.5rem;
    margin: 0 6px;
  }

  .count .all {
    font-size: 2.5rem;
  }

  .logo--header {
    width: 150px;
    margin-bottom: 8px;
  }
}

.text--title {
  font-family: ten-mincho, serif;
  letter-spacing: 2px;
  line-height: 1.75;
}

.text--subTitle {
  font-family: ten-mincho, serif;
  letter-spacing: 1px;
}

.text--introduction {
  margin-bottom: 20px;
}

.text--introduction:last-of-type {
  margin-bottom: 0;
}

.text {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.text:last-of-type {
  margin-bottom: 0;
}

.text:lang(en) {
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.text--button {
  font-size: 1rem;
  line-height: 1.25;
}

.text--small {
  font-size: 90%;
}

.text--subTitle {
  display: inline-block;
  line-height: 1.5;
}

.text--subTitle .text--small {
  font-size: 75%;
}

.text--copyright {
  opacity: 0.75;
}

@media screen and (min-width: 767px) {
  h1 {
    margin-top: -32px;
  }

  .text--title {
    font-size: 2rem;
    text-align: center;
  }

  .text--left {
    text-align: left;
  }

  .text--subTitle {
    font-size: 1.75rem;
    display: inline-block;
    line-height: 1.75;
  }

  .text--subTitle .text--small {
    margin-left: 8px;
    font-size: 75%;
  }

  .text--copyright {
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    margin: 0 32px;
  }

  .text--title {
    font-size: 1.25rem;
    text-align: center;
  }

  .text--title.text--left {
    margin: 72px 0;
  }

  .text--subTitle {
    font-size: 1.25rem;
    margin: 48px 0 24px;
    padding-bottom: 8px;
    border-bottom: 4px solid #E44040;
  }

  .text--subTitle .text--small {
    margin-left: 4px;
  }

  .text--copyright {
    font-size: 0.75rem;
  }
}

.block {
  display: block;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.justify--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify--end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.justify--between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify__between--4 {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.justify__between--4 li {
  width: calc(50% - 12px);
  margin-bottom: 24px;
}

.justify__between--4 li:nth-last-of-type(1),
.justify__between--4 li:nth-last-of-type(2) {
  margin-bottom: 0;
}

.align--top {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.align--center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.align--bottom {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.order--1 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.order--2 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.margin--center {
  margin-right: auto;
  margin-left: auto;
}

.culumn--img {
  overflow: hidden;
  border-radius: 8px;
}

@media screen and (min-width: 767px) {
  .flex--pc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .justify--center--pc {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .culumn--2 {
    width: 47.5%;
  }

  .culumn--3 {
    width: 30%;
  }

  .culumn--text {
    margin-top: -120px;
    position: relative;
  }
}

header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #000;
  position: relative;
  overflow: hidden;
}

header:after {
  content: "";
  display: block;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

h1 {
  z-index: 3;
}

.video {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

@media (aspect-ratio: 16 / 9),
(min-aspect-ratio: 16 / 9) {
  .video {
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media (max-aspect-ratio: 16 / 9) {
  .video {
    height: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.content {
  position: relative;
}

#copyright {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 3;
  text-align: center;
}

@media screen and (min-width: 767px) {
  header {
    width: 100%;
    height: 100%;
  }

  #monster {
    background: url("../images/monster__bg--pc.png") center center/auto 100% no-repeat;
    padding: 160px 0;
  }

  #monster .wrap {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .content {
    margin-top: 120px;
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  #end {
    margin-top: 80px;
  }

  #info {
    margin-top: -80px;
    background: url("../images/meipam--pc.png") top center/auto 100% no-repeat;
  }

  #info .wrap {
    padding: 160px 0 80px;
  }

  #copyright {
    bottom: 32px;
  }
}

@media screen and (max-width: 768px) {
  main {
    padding-bottom: 135px;
  }

  header {
    height: calc(100% - 90px);
  }

  #monster {
    background: url("../images/monster__bg--sp.png") top center/auto 100% no-repeat;
    padding-top: 48px;
  }

  .content {
    margin-top: 96px;
  }

  #info {
    margin: 48px auto;
  }

  #info .wrap {
    border-top: 1px solid #636363;
    padding-top: 48px;
  }

  #end {
    margin-top: 48px;
  }

  #copyright {
    bottom: 24px;
  }
}

.fix_button {
  position: fixed;
  right: 24px;
  bottom: 32px;
  flex-wrap: wrap;
  margin-top: 0;
  width: 240px;
}

.fix_button a {
  margin: auto;
  margin-top: 12px;
  /* width: 240px; */
  width: 100%;
}

.fix_button .button--ticket + .button--ticket {
  margin-top: 12px;
}

.fix_button a:lang(en) {
  padding: initial;
}

@media screen and (max-width: 768px) {
  .fix_button {
    right: 2%;
    bottom: 96px;
    margin: auto;
    width: 96%;
  }
  .fix_button a {
    margin: 0 auto;
    width: 48%;
  }
  .fix_button .button--ticket + .button--ticket {
    margin-top: 0;
  }
  .fix_button a br,
  .fix_button a span {
    display: none;
  }
}