@charset "utf-8";
/*
@import url("https://fonts.googleapis.com/css?family=Oswald");
@import url("https://fonts.googleapis.com/css?family=Open+Sans");
*/
@import url("https://fonts.googleapis.com/css?family=Teko");
@import url("https://fonts.googleapis.com/css?family=Teko");
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap');

/*================================================
　汎用
================================================ */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}

body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
}



img {
    width: 100%;
    vertical-align: baseline;
}



* {
    position: relative;
    font-weight: 100;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}



ul {
    list-style: none;
}



a {
    z-index: 100;
}
a:link {
    color: black;
    text-decoration: none;
}
a:visited {
    color: black;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.5s;
}

.s a:link {opacity: 1;}
.s a:visited {opacity: 1;}
.s a:hover {opacity: 1;}



br.pc {display: block;}
br.m {display: none;}
br.sp {display: none;}

.m br.pc {display: none;}
.m br.m {display: block;}
.m br.sp {display: none;}

.s br.pc {display: none;}
.s br.m {display: none;}
.s br.sp {display: block;}


.pc {display: block;}
.sp {display: none;}
.s .pc {display: none;}
.s .sp {display: block;}



.sec__line {
  width: 100%;
}



#loader {
  width: 100vw;
  height: 100vh;
  z-index: 5000;
  position: fixed;
  top: 0;
  left: 0;
  background: white;
}


/*------------------------------------------------------------------
 body ------------------------------------------------------------
------------------------------------------------------------------*/
body {
    background: #201c1c;
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
    letter-spacing: 1.5px;
    line-height: 2;
    margin: 0;
    color: #fafafa;
}
body.s {
  line-height: 1.6;
}





/*------------------------------------------------------------------
 container ------------------------------------------------------
------------------------------------------------------------------*/
.container {
    position: relative;
    width: 100%;
}





/*------------------------------------------------------------------
 content ---------------------------------------------------------
------------------------------------------------------------------*/
.content {
  width: 100%;;
  overflow: hidden;
}


/*------------------------------------------------------------------
 movie --------------------------------------------------------------
------------------------------------------------------------------*/
.movie {
  position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
  height: 39vw;/*高さを全画面にあわせる*/
}
.m .movie {
  height: 34vw;
}
.s .movie {
  height: 36vw;
}

.movie .movie__innner {
  position: fixed;
  top: 0;
  right:0;
  left:0;
  bottom:0;
  overflow: hidden;
}

.video {
  /*天地中央配置*/
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}
.s .video {
  width: 100vh;
  min-height: auto;
  min-width: auto;
  top: 0;
  width: 100vh;
  transform: translate(-50%, 0);
}

/*見出し設定*/
h1{
  /*要素の配置*/
  position:absolute;
  /*要素を天地中央寄せ*/
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  /*見た目の調整*/
  color:#fff;
  text-shadow: 0 0 15px #666;
}




/* フェードイン */
.fadein {
  opacity: 0;
  transform : translate(0, 100px);
  transition : all 1s;
}
.fadein.active{
  opacity : 1;
  transform : translate(0, 0);
}

/*------------------------------------------------------------------
 mv_text --------------------------------------------------------------
------------------------------------------------------------------*/
.mv_text {
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 20%;
  text-align: center;
  font-size: 7rem;
  text-shadow: 5px 5px 10px #201c1c;
}
@media (max-width:1000px) {
  .mv_text {
    font-size: 6rem;
  }
}
@media (max-width:850px) {
  .mv_text {
    font-size: 5rem;
  }
}
@media (max-width:720px) {
  .mv_text {
    font-size: 7rem;
    top: 0;
  }
}
@media (max-width:650px) {
  .mv_text {
    font-size: 6rem;
  }
}
@media (max-width:560px) {
  .mv_text {
    font-size: 5rem;
  }
}
@media (max-width:470px) {
  .mv_text {
    font-size: 4rem;
  }
}
@media (max-width:380px) {
  .mv_text {
    font-size: 3rem;
  }
}


/*------------------------------------------------------------------
 slider --------------------------------------------------------------
------------------------------------------------------------------*/
.slide_container {
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.slide_wrapper {
  display: flex;
  animation: slide-flow 50s infinite linear 1s both;
}
.slide{
  object-fit:cover;
}
@keyframes slide-flow {
  0% {transform: translateX(0);}
  100% {transform: translateX(-100%);}
}
.slide_container.sp {
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.slide_wrapper.sp {
  display: flex;
  animation: slide-flow 50s infinite linear 1s both;
}



/*------------------------------------------------------------------
 contentbody --------------------------------------------------------------
------------------------------------------------------------------*/
.contentbody {
    position: relative;;
    min-height: 100%;
    z-index: 1;
    background-color: #201c1c;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../img/bg.png);

}



/*------------------------------------------------------------------
 ticket --------------------------------------------------------------
------------------------------------------------------------------*/
.ticket {
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.ticket__inner {
  width: 100%;
  padding: 120px 0;
}
.s .ticket__inner {
  padding: 60px 0 0;
}

.ticket__ttl {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto 0px;
}
.s .ticket__ttl {
  margin: 0 auto 32px;
}
.ticket__ttl img {
  margin: auto;
  width: 52%;
}
/* .s .ticket__ttl img {
  margin: auto;
  width: 100%;
  padding: 0 20px;
} */


.ticket__content {
  width: 100%;
  height: auto;
  max-width: 1366px;
  margin: auto;
  padding: 70px 80px;
}
.s .ticket__content {
  max-width: initial;
  padding: 0 15px;
}



.ticket__target {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.ticket__target--head {
  display: block;
  padding: 0.5em 1em;
  background: #3f4c73;
  color: white;
  border-bottom: 3px solid #005a99;
}
.s .ticket__target--head {
  font-size: 18px;
  line-height: 1em;
  padding: 0.65em 1em 0.5em;
}
.ticket__target--txt {
  display: block;
-webkit-box-flex:1;
-ms-flex:1 1 10%;
flex:1 1 10%;
  padding: 0.5em 1em;
  border-bottom: 3px solid #005a99;
}
.s .ticket__target--txt {
  font-size: 18px;
  padding: 0.65em 1em 0.5em;
}


.ticket__table {
  width: 100%;
  text-align: center;
}
.s .ticket__table + table {
  margin-top: 20px;
}
.ticket__table tr {
  background: white;
  border: 2px solid #005a99;
}
.ticket__table th {
  background: #005a99;
  padding: 1em;
  color: white;
  vertical-align: middle;
}
.ticket__table th + th {
  border-left: 2px solid white;
}
.ticket__table td {
  padding: 1em;
  vertical-align: middle;
}
.ticket__table td + td {
  border-left: 2px solid #005a99;
}

.ticket__table img {
  width: 6em;
  height: auto;
  padding: 0 0.5em 0 0;
}

.ticket__table span {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ticket__table span + span {
  margin-top: 1em;
}



.ticket__attention {
  display: block;
  margin-top: 20px;
  padding-left: 1.5em;
}
.ticket__attention:before {
  content: "※";
  position: absolute;
  color: red;
  left: 0;
}


/* セクション共通 */
.container {
  max-width: 1200px;
  margin: 148px auto 0;
}
.s .container {
  margin: 55px auto 0;
}
.content__ttl {
  width: 100%;
  text-align: center;
  padding-top: 120px;
  margin-top: -120px;
}
.content__ttl img {
  width: 90.8%;
  margin: auto;
}
.s .content__ttl {
  padding-top: 0;
  margin: 0 auto;
}





/*------------------------------------------------------------------
 ticket --------------------------------------------------------------
------------------------------------------------------------------*/
.ticket {
  background: white;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ticket__inner {
  width: 100%;
  padding: 110px 0 70px;
  margin: auto;
  overflow: hidden;
}
.s .ticket__inner {
  padding: 60px 0 40px;
}

.ticket__ttl {
  width: 100%;
  max-width: 1232px;
  text-align: center;
  margin: -140px auto 0;
  padding: 140px 16px 0;
}
.s .ticket__ttl {
  margin: -80px auto 0;
  padding: 80px 16px 0;
}
.ticket__ttl span {
  width: 100%;
  background: url('../img/h2_bg_white.jpg');
  background-position: center;
  background-repeat: repeat-x;
  background-size: contain;
}
.ticket__ttl span img {
  height: 63px;
  width: auto;
}

.s .ticket__ttl {
  width: 100%;
  max-width: initial;
  margin: -80px auto 0;
  padding: 80px 16px 25px;
}
.s .ticket__ttl span {
  width: 100%;
  background: none;
}
.s .ticket__ttl span img {
  height: auto;
  width: 100%;
}



/*------------------------------------------------------------------
 plan --------------------------------------------------------------
------------------------------------------------------------------*/
.plan {
  background: white;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.plan__inner {
  width: 100%;
  padding: 120px 0 100px;
  margin: auto;
  overflow: hidden;
}
.s .plan__inner {
  padding: 60px 0 105px;
}

.plan__ttl {
  width: 100%;
  max-width: 1232px;
  text-align: center;
  margin: -140px auto 0;
  padding: 140px 16px 0;
}
.s .plan__ttl {
  margin: -80px auto 0;
  padding: 80px 16px 0;
}
.plan__ttl span {
  width: 100%;
  background: url('../img/h2_bg_white.jpg');
  background-position: center;
  background-repeat: repeat-x;
  background-size: contain;
}
.plan__ttl span img {
  height: 63px;
  width: auto;
}

.s .plan__ttl {
  width: 100%;
  max-width: initial;
  margin: -80px auto 0;
  padding: 80px 16px 25px;
}
.s .plan__ttl span {
  width: 100%;
  background: none;
}
.s .plan__ttl span img {
  height: auto;
  width: 100%;
}

.plan__content {
  max-width: 1200px;
  margin: auto;
  padding: 40px 10px 0;
}

.s .plan__content {
  padding: 0 15px;
}

/*------------------------------------------------------------------
 introduction --------------------------------------------------------------
------------------------------------------------------------------*/
.introduction {
  width: 100%;
  position: relative;
  margin: auto;
  padding: 100px 20px 0;
  max-width: 1200px;
  text-align: center;
}
.s .introduction {
  padding: 32px 16px 0;
}
.introduction__ttl {
  width: 100%;
  text-align: center;
  padding-top: 120px;
  margin-top: -120px;
}
.introduction__ttl img {
  width: 90.8%;
  margin: auto;
}
.s .introduction__ttl {
  padding-top: 0;
  margin: 0 auto;
}
.introduction_txt {
  line-height: 2;
}
.s .introduction_txt {
  padding-top: 32px;
}


.introduction__block {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding:  56px 10px 0;
  align-items: flex-end;
}
.s .introduction__block {
  padding: 16px 0 0;
}
.introduction__image {
  position: relative;
  width: 100%;
  margin-bottom: 90px;
}
.introduction__image .item01 {
  position: absolute;
  z-index: 1;
  top: 35%;
  left: 15%;
  width: 122.9%;
}
.s .introduction__image .item01 {
  left: 0;
  right: 0;
  top: 40%;
  width: 100%;
}


.introduction__image a {
  box-sizing: 4px 48px rgba(0, 0, 0, 0.3);;
}


/*------------------------------------------------------------------
 sec__list --------------------------------------------------------------
------------------------------------------------------------------*/
.sec__list {
  width: 100%;
  position: relative;
  margin: 120px auto 0;
}
.s .sec__list {
  margin-top: 20px;
}
.sec__list__block {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 120px;
}
.s .sec__list__block:nth-of-type(1),
.s .sec__list__block {
  margin-top: 60px;
}
.sec__list__block:nth-of-type(1) {
  margin-top: 0;
}
.sec__list__image {
  position: relative;
  width: 60%;
}
.s .sec__list__image {
  width: 100%;
}
.sec__list__txt {
  width: 40%;
  background-color: rgba(32, 28, 28, 0.9);
  padding: 4em;
  left: -20%;
}
.m .sec__list__txt {
  padding: 2em;
}
.s .sec__list__txt {
  width: 100%;
  left: 0;
  padding: 24px 16px;
}
.sec__list__block:nth-of-type(even) {
  flex-flow: row-reverse;
}
.s .sec__list__block:nth-of-type(even) {
  flex-flow: column wrap;
}
.sec__list__block:nth-of-type(even) .sec__list__txt {
  left: 20%;
}
.s .sec__list__block:nth-of-type(even) .sec__list__txt {
  left: 0;
}
.list__txt {
  padding-top: 2em;
}
.s .list__txt {
  padding-top: 12px;
}
.history__ttl img {
  max-width: 39.7%;
}
.s .history__ttl img {
  max-width: 50.4%;
}
.stories__ttl img {
  max-width: 36.4%;
}
.s .stories__ttl img {
  max-width: 50.1%;
}
.trivia__ttl img {
  max-width: 28.7%;
}
.s .trivia__ttl img {
  max-width: 39.4%;
}
.list__btn {
  padding-top: 2.4em;
  font-size: 2rem;
}
.s .list__btn {
  padding-top: 36px;
}
.list__btn a {
  display: inline-block;
  line-height: 3;
  padding: 0 3em;
  border: 1px solid #fafafa;
  color: #fafafa;
  position: relative;
}







.m .list__btn a {
  padding: 0 1.6em;
}
.list__btn a::after {
  content: "";
  background-image: url(../img/btn_arrow.png);
  background-repeat: no-repeat;
  background-size: inherit;
  width: 75px;
  height: 13px;
  position: absolute;
  top: 42%;
  right: -12%;
  transform: translate(12%, -42%);
}
.m .list__btn a::after {
  right: -24%;
}
/*------------------------------------------------------------------
 banner --------------------------------------------------------------
------------------------------------------------------------------*/
.banner {
  width: 100%;
  position: relative;
}
.banner__block {
  padding:  56px 20px 120px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.s .banner__block {
  padding: 16px 16px 60px;
}
.banner__image {
  width: 48.5%;
}
.s .banner__image {
  margin: 16px auto 0;
  width: 100%;
}
.s .banner__image:nth-of-type(1) {
  margin-top: 0;
}
.banner__image a {
  box-sizing: 4px 48px rgba(0, 0, 0, 0.3);;
}






/*---------------- 戻るボタン ----------------*/
.top-bottun {
  position: relative;
  height: 0px;
  z-index: 9799;
}

.top-bottun li {
  position: fixed;
  bottom: 20px;
  right: 20px;
  transition: opacity .4s ease-out;
}
.top-bottun li a {
  display: block;
  width: 72px;
  cursor: pointer;
}
.s .top-bottun li a {
  width: 56px;
}
.top-bottun li a img {
  width: 100%;
}
.s .top-bottun li {
  bottom: 10px;
}
.s .top-bottun li a img {
  width: 100%;
}


/*================================================
menu
================================================ */
header {
  z-index: 10000;
}
.nav__logo {
  padding: 20px 16px;
  display: block;
}
.s .nav__logo {
  padding: 12px;
}
.nav__logo img {
  width: 51px;
  height: 43px;
}

.menuBtn {
  display: block;
  width: 60px;
  height:60px;
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
}
.menuBtn span {
  display: block;
  background: #fff;
  width: 32px;
  height: 2px;
  position: absolute;
  left: 14px;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
}
.menuBtn span:first-child {
  top: 16px;
}
.menuBtn span:nth-child(2) {
  margin-top: -1px;
  top: 50%;
}
.menuBtn span:last-child {
  bottom: 16px;
}
.menuBtn.-is-active span:first-child {
  -webkit-transform: translateY(13px) rotate(45deg);
  -moz-transform: translateY(13px) rotate(45deg);
  -ms-transform: translateY(13px) rotate(45deg);
  transform: translateY(13px) rotate(45deg);
}
.menuBtn.-is-active span:nth-child(2) {
    opacity: 0;
}
.menuBtn.-is-active span:last-child {
  -webkit-transform: translateY(-13px) rotate(-45deg);
  -moz-transform: translateY(-13px) rotate(-45deg);
  -ms-transform: translateY(-13px) rotate(-45deg);
  transform: translateY(-13px) rotate(-45deg);
}


.menuInner {
  width: 20vw;
  height: 130vh;
  z-index: 3000;
  position: fixed;
  top: -150vh;
  right: 0;
  background: #201c1c;
  background-repeat: repeat;
  background-position: center;
  background-size: auto;
}
.s .menuInner {
  width: 100vw;
  height: 130vh;
  z-index: 3000;
  position: fixed;
  top: -150vh;
  /* top: 0; */
  left: 0;
}
.s .menuInner__wrapper {
  width: 100%;
  height: 100vh;
}
.menuInner__content {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  padding: 40px 40px;
  transform: translateY(0%) translateX(-50%);
  -webkit- transform: translateY(0%) translateX(-50%);
}
.s .menuInner__content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0 40px;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
.menuInner ul {
  padding: 0 20px;
  margin: 40px auto 70px;
  position: relative;
}
.s .menuInner ul {
  padding: 0 40px;
  margin: 0 auto 70px;
}
.menuInner ul li {
  margin-bottom:  40px;
}
.menuInner ul li:nth-last-child(1) {
  margin-bottom: 0;
}
.menuInner ul li a {
  display: block;
  margin: auto;
  width: 100%;
}
.menuInner a {
  display: block;
  margin: auto;
  width: 64%;
  color: #ccc;
}
.menuInner a:visited {
  color: #ccc;
}
.menuInner ul li:nth-of-type(1) img {
  width: 35.5%;
}
.menuInner ul li:nth-of-type(2) img {
  width: 77.5%;
}
.menuInner ul li:nth-of-type(3) img {
  width: 77%;
}
.menuInner ul li:nth-of-type(4) img {
  width: 61%;
}



