@charset "UTF-8";
/*アニメーション*/
@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 100; } }
@keyframes slidein {
  from {
    transform: translateX(-10px); }
  to {
    transform: translateX(0px); } }
.blinking {
  -webkit-animation: blink 1.0s ease-in-out infinite alternate;
  -moz-animation: blink 1.0s ease-in-out infinite alternate;
  animation: blink 1.0s ease-in-out infinite alternate; }

@-webkit-keyframes blink {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-moz-keyframes blink {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes blink {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/*メディアクエリ*/
/*フォントサイズ*/
.display_flex {
  display: -webkit-flex;
  display: flex; }

.flex_align_items_center {
  align-items: center;
  /* 4 */ }

.flex_align_end {
  justify-content: flex-end;
  /* 3 */ }

.flex_space_between {
  justify-content: space-between; }

.flex_column {
  flex-direction: column; }

.flex_fill {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; }

.flex1 {
  flex: 1; }

a.decoration_none {
  text-decoration: none;
  color: inherit; }

.box_shadow {
  /* box-shadow */
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1); }

/*トランジション*/
/*画像パス*/
/*メディアクエリ*/
/*マージン用*/
body, html {
  width: 100%;
  height: 100%; }

body {
  background-color: black;
  min-width: 320px;
  background-image: url("../image/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; }

img.bganime {
  position: fixed;
  z-index: 0;
  opacity: 0; }

div.menu_list_container {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding-right: 80px;
  padding-left: 80px;
  display: -webkit-flex;
  display: flex;
  z-index: 9;
  background-color: white;
  align-items: center;
  min-height: 64px; }
  @media screen and (max-width: 840px) {
    div.menu_list_container {
      padding-right: 8px;
      padding-left: 8px; } }

div.menu_list {
  flex: 1;
  text-align: center;
  cursor: pointer; }

img.footer_menu {
  height: 32px; }
  @media screen and (max-width: 840px) {
    img.footer_menu {
      height: 16px; } }

img#back_btn {
  position: fixed;
  bottom: 20px;
  right: 60px;
  z-index: 10;
  cursor: pointer;
  width: 66px;
  height: 128px;
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s; }
  img#back_btn:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2); }
  img#back_btn.menu {
    right: 16px;
    bottom: 80px; }
  @media screen and (max-width: 840px) {
    img#back_btn {
      right: 16px;
      width: 56px;
      height: 110px; } }

#wrap {
  width: 100%;
  height: 100%; }
  #wrap #bg {
    width: 700px;
    height: 300px; }

#video-background,
#video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto; }

#video-background {
  z-index: -2; }

#video-overlay {
  z-index: -1; }

div#logo {
  z-index: 99;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  background-image: url("../image/bg.png");
  background-size: cover;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -moz-transition: opacity 2s;
  -o-transition: opacity 2s;
  -webkit-transition: opacity 2s;
  transition: opacity 2s; }
  div#logo img.logo {
    width: 50%;
    height: auto;
    max-width: 320px; }
  div#logo.hide {
    opacity: 0; }

div#menu_container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5; }
  div#menu_container a.demae {
    top: 10%;
    right: 5%;
    -moz-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    width: auto;
    height: 32px;
    display: block;
    cursor: pointer;
    position: absolute;
    height: auto;
    opacity: 0;
    height: 32px;
    width: 320px; }
    div#menu_container a.demae.show {
      opacity: 1; }
  div#menu_container img.menu_btn {
    -moz-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    width: 300px;
    height: auto;
    display: block;
    cursor: pointer;
    position: absolute;
    width: 80%;
    height: auto;
    max-width: 300px;
    opacity: 0; }
    div#menu_container img.menu_btn.show {
      opacity: 1; }
    div#menu_container img.menu_btn.about {
      top: 20%;
      left: 5%; }
    div#menu_container img.menu_btn.menu {
      top: 35%;
      right: 8%; }
    div#menu_container img.menu_btn.map {
      top: 50%;
      left: 8%; }
    div#menu_container img.menu_btn.reservation {
      top: 65%;
      right: 5%; }
    div#menu_container img.menu_btn.staff {
      top: 80%;
      left: 3%; }
    @media screen and (max-width: 840px) {
      div#menu_container img.menu_btn {
        width: 65%; } }

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

div#contents_container {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: -200px;
  left: 0;
  z-index: 3;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 8px;
  padding-top: 64px;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
  -moz-transition: opacity 1s, top 1s, left 1s;
  -o-transition: opacity 1s, top 1s, left 1s;
  -webkit-transition: opacity 1s, top 1s, left 1s;
  transition: opacity 1s, top 1s, left 1s; }
  div#contents_container.show {
    top: 0;
    opacity: 1; }
  div#contents_container div.contents {
    width: 90%;
    padding: 32px;
    background-image: url("../image/bg.png");
    background-size: cover;
    max-width: 740px;
    margin: auto;
    min-width: 304px;
    top: 0;
    left: 0;
      /*
    & div.separator{
      display: flex;
      display: -webkit-flex;
      flex:auto;
      flex-wrap: wrap;
      justify-content: center;
    }
    & div.responsive{
      flex:auto;
      display: flex;
      display: -webkit-flex;
      flex-wrap:inherit;
      @media screen and (max-width: 840px) {
        flex-wrap: wrap;
      }
    }
    & img{
      width: 100%;
      height: auto;
      flex: 1;
      max-width: 338px;
      @media screen and (max-width: 840px) {
        flex: inherit;
        max-width:unset;
      }
    }

      */ }
    @media screen and (max-width: 840px) {
      div#contents_container div.contents {
        padding: 8px; } }

div#header_bar {
  width: 100%;
  height: 56px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: #000000c9;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  padding: 0 8px; }
  div#header_bar img.header_logo {
    width: auto;
    height: 36px;
    margin-right: auto; }
  div#header_bar button {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    background-color: #1b253396;
    border-radius: 4px;
    border: none;
    background-size: auto 32px;
    background-repeat: no-repeat;
    background-position: center; }
    div#header_bar button:hover {
      background-color: #1b4584b0; }
  div#header_bar button#sound {
    height: 40px;
    width: 128px;
    margin-right: 8px;
    background-image: url("../image/sound_on.svg"); }
  div#header_bar button#movie {
    height: 40px;
    width: 48px;
    background-image: url("../image/movie_play.svg"); }
    div#header_bar button#movie.pause {
      background-image: url("../image/movie_pause.svg"); }

button {
  background-color: #1b4f9c;
  cursor: pointer;
  color: white;
  text-shadow: 0px 1px 6px rgba(45, 45, 45, 0.5);
  /* default*/
  font-size: 14px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  min-width: 96px;
  width: 100%; }
  @media screen and (min-width: 1400px) {
    button {
      font-size: 16px; } }
  button body.big_font {
    font-size: 16px; }
    @media screen and (min-width: 1400px) {
      button body.big_font {
        font-size: 18px; } }

div#video-cover {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: hidden;
  background-image: url("../video/cover_l.gif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; }
  div#video-cover.port {
    background-image: url("../video/cover_p.gif"); }

div#video-cover-wrapper {
  position: absolute; }

/*# sourceMappingURL=common.css.map */
