@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;700&family=Shippori+Mincho:wght@400;600&display=swap');

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

/* CSS Document */
/*----------------------------------------


body


----------------------------------------*/
* {
  padding: 0;
  margin: 0;
  border: 0;
  vertical-align: top;
}

html,
body {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  height: auto;
}


body {
  font-size: 1.5rem;
  font-size: clamp(1.4rem, 1.4vw, 1.5rem);
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  padding: 0;
  margin: 0;
  width: 100%;
  color: #000;
  line-height: 1.7;
  opacity: 1;
  letter-spacing: 0.2rem;
  font-feature-settings: "palt";
  opacity: 0;
}

img {
  width: 100%;
}

/*----------------------------------------


header


----------------------------------------*/
header {
  width: 100%;
  padding: 20px 2%;
  box-sizing: border-box;
  transition: 0.4s;
  background: #fff;
}

header .logo {
  width: 180px;
  margin: 0 auto;
}

/*----------------------------------------


footer


----------------------------------------*/
footer {
  width: 100%;
  background: #fff;
}

footer .inner {
  margin: 0 auto;
}

footer p.address {
  padding: 15px 0;
  font-size: 1.1rem;
  text-align: center;
}

/*----------------------------------------


div_wrap


----------------------------------------*/
.wrap_div {
  position: relative;
  cursor: pointer;
}

.child_div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100%;
  z-index: 2;
}

/*----------------------------------------


fv


----------------------------------------*/
.fv {
  position: relative;
  width: 100%;
  height: calc(100vh - 120px);
  overflow: hidden;
  transition: 0.2s;
  display: flex;
}

.fv .entrance_contents {
  position: relative;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.fv .entrance_contents::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.0);
  transition: 1s;
}

.fv .entrance_contents::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 1s;
  background: #000;
  opacity: 0;
}

.fv .entrance_contents.time_on.close::after {
  opacity: 0.7;
}

.fv .entrance_contents.time_on:hover:before {
  transform: scale(1.08);
}

.fv .entrance_fukuoka_contents::before {
  background: url(../images/entrance_ph_fukuoka.jpg) no-repeat center top / cover;
}

.fv .entrance_ginza_contents::before {
  background: url(../images/entrance_ph_ginza.jpg) no-repeat center top / cover;
}

.fv .entrance_contents h2 {
  position: relative;
  width: 35%;
  max-width: 250px;
  padding: min(2.5vw, 25px);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  opacity: 0;
  transform: scale(0.92);
  transition: 2.0s;
  transition-delay: 2.0s;
}

.fv .entrance_contents h2.active {
  transform: scale(1);
  opacity: 1;
}

.fv .schedule_area {
  position: absolute;
  top: 10vh;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 400px;
  width: 68%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: min(2vw, 20px) min(2vw, 30px) min(2vw, 30px);
  border-radius: 4px;
}

.fv .schedule_area h3 {
  color: #b29a59;
  /* font-weight: normal; */
  font-family: "urban";
  font-size: clamp(2.4rem, 2.4vw, 3.4rem);
  margin-bottom: 0;
  letter-spacing: 0;
}

.fv .schedule_area ul li {
  text-align: left;
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #ccc;
  color: #fff;
}
.fv .schedule_area ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.fv .schedule_area ul li p {
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  width: 50%;
}

.fv .schedule_area ul li p.date {
  width: 50%;
}

.fv .opening_bnr {
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 300px;
  width: 70%;
}
.entrance_contents .opening_bnr,
.entrance_contents .schedule_area{
  opacity: 0;
  transition: 2s;
  transition-delay: 2.5s;
}
.entrance_contents.on .opening_bnr,
.entrance_contents.on .schedule_area{
  opacity: 1;
}
/* .fv .entrance_contents.close h2.active,
.fv .entrance_contents.close::before {
  opacity: 0.3 !important ;
} */
@media screen and (max-height:780px) {
  .fv .schedule_area {
    top: 3vh;
  }
}

@media screen and (max-width:750px) {

  /*----------------------------------------


body


----------------------------------------*/
  body {
    font-size: 3.2vw;
  }

  /*----------------------------------------


header


----------------------------------------*/
  header {
    padding: 2.6vw 2%;
  }

  header .logo {
    width: 32vw;
  }

  /*----------------------------------------


footer


----------------------------------------*/
  footer p.address {
    padding: 2vw 0;
    font-size: 2.9vw;
  }

  /*----------------------------------------


fv


----------------------------------------*/
  .fv {
    height: calc(100vh - 21vw);
    display: block;
  }

  .fv .entrance_contents {
    width: 100%;

  }

  .fv .entrance_fukuoka_contents {
    background: url(../../images/entrance_ph_fukuoka.jpg) no-repeat center top / cover;
    height: 45%;
  }

  .fv .entrance_ginza_contents {
    background: url(../../images/entrance_ph_ginza.jpg) no-repeat center top / cover;
    height: 55%;
  }

  .fv .entrance_contents h2 {
    width: 36%;
    max-width: 250px;
    padding: 4vw;
    margin-top: 8vw;
  }

  .fv .entrance_contents::after {
    display: none;
  }

  .fv .opening_bnr {
    top: 70%;
    width: 50%;
  }

  .fv .schedule_area {
    top: 5vw;
    width: 68%;
    padding: 2vw 2vw 3vw;
  }

  .fv .schedule_area h3 {
    font-size: 5vw;
  }

  .fv .schedule_area ul li {
    padding: 0.5vw 0;
  }

  .fv .schedule_area ul li p {
    font-size:3.2vw;
  }
}