@charset "utf-8";

/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}
#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width:991px) {

#splash-logo span{font-size: 0.9rem;}

	
}



/*========= 画面遷移のためのCSS ===============*/



/*画面遷移の後現れるコンテンツ設定*/

#wrapper{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #wrapper{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}


/*===========================================================*/
/*ナビが下から上 */
/*===========================================================*/




#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  bottom: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #e80034;
  /*動き*/
  transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  bottom: 0;
}
/*ナビゲーションの縦スクロール*/
#g-nav #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}


#g-nav li.tw img{width: 33px;}
#g-nav li.yt img{width: 33px;}

@media screen and (max-width:991px) {

#footer #g-nav {font-size: 1rem;padding-top: 30px;}

	
}



/*===========================================================*/
/*MENU× */
/*===========================================================*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 0;
  right: 0;
  cursor: pointer;
  width: 70px;
  height: 70px;
  border-left: 2px solid #ccc;
  border-bottom: 2px solid #ccc; background: rgba(0,0,0,1);
}
/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all .4s; /*アニメーションの設定*/
  position: absolute;
}
.openbtn span:nth-of-type(1), .openbtn span:nth-of-type(3) {
  height: 2px;
  background: #ccc;
  width: 30%;
  opacity: 0;
  top: 22px;
  left: 22px;
}
.openbtn span:nth-of-type(2) {
  top: 22px;
  left: 18px;
  text-transform: uppercase;
  color: #ccc;
  font-size: 0.9rem;
}


@media screen and (max-width:550px) {
  .openbtn span:nth-of-type(2) {
    font-size: 0.8rem;
  }
}
.openbtn span:nth-of-type(3) {
  top: 35px;
}
/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/
.openbtn.active span:nth-of-type(1), .openbtn.active span:nth-of-type(3) {
  opacity: 1;
}
.openbtn.active span:nth-of-type(1) {
  top: 28px;
  left: 25px;
  transform: translateY(6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 40px;
  left: 25px;
  transform: translateY(-6px) rotate(45deg);
}
/*===========================================================*/
/*メニュー*/
/*===========================================================*/
#header {
  height: 70px; /*高さ指定*/
  width: 100%; /*横幅指定*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.7);
  color: #ccc;
  text-align: center;
  padding: 20px;
}

#header.fixed {
  position: fixed;
  z-index: 999; 
  top: 0; 
  left: 0; 
}
#pc-nav ul:first-child {
  list-style: none;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  margin: 0 0 0 130px;
}
@media screen and (max-width:991px) {
  #header {margin-top:-90px; background: rgba(0,0,0,0);
  }
}/**/
#pc-nav ul {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  margin: 0 0 0 5%;
}
#pc-nav li a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 0 15px;
  transition: all 0.3s;
}
#pc-nav li.current a, #pc-nav li a:hover {
  color: #e80034;
}



/*===========================================================*/
/*スクロール線*/
/*===========================================================*/
.scrollgress {
  z-index: 99; /*他のposition指定しているエリアより前に出すためz-indexの数字を大きく*/
}
/*
---------------------------------------------
btn-チケットe4a215;
---------------------------------------------
*/


/*チケットボタン*/
.btn-ticket a:link,.btn-ticket a:visited{
 display: flex;
  justify-content: space-between;
  align-items: center;
	border: solid 2px #333;
  margin: 0.8rem auto;
  padding: 0.5rem 1.5rem;
  color: #333;
  font-size: 1.2rem;
  font-weight: 700;
  background-color: #f5f5f5;
  border-radius: 50vh;
  transition: 0.3s;
  width:100%; max-width:90%;
box-shadow: 5px 5px 0 rgba(150, 150, 150, 0.4);
    transform: rotate(-2deg);
  -moz-transform: rotate(-2deg);
  -webkit-transform: rotate(-2deg);text-decoration: none;
}



.btn-ticket a:hover {	border-color:transparent;	
  text-decoration: none;
  background-color: #e80034;color: #fff;
box-shadow: none;    transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}


.btn-ticket a::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 3px solid #e80034;
  border-right: 3px solid #e80034;
 transform: rotate(45deg); 
}

.btn-ticket a:hover::after {
  content: '';
  width: 10px;
  height:10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

@media screen and (max-width:991px) {

.pro-btn{
 display: flex;
  justify-content: space-between;
  align-items: center;
	border: solid 2px #333;
  margin: 0.5rem 0;
  padding:  0.5rem 0.3rem 0.5rem 0.5rem;
  color: #333;font-weight: 400;
  font-size: 0.6rem;
  background-color: #f5f5f5;line-height:1.4;
  border-radius: 5vh;
  transition: 0.3s;
  width: 96%; max-width: 200px;
box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.4);
}
    
.btn-ticket a{
  font-size:0.9rem;
  width: 100%; max-width: 98%;
}

} /*end*/

/*
---------------------------------------------
btn-ticket-kokuchi　告知チケットe4a215;
---------------------------------------------
*/
.tour-kokuchi{margin: 0 auto;text-align: center;width: 450px;}
.btn-ticket-kokuchi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 ;
  padding: 1rem 1rem;
  width: 100%;
  max-width: 450px;
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;line-height:1.4;
  background-color: #ffff33;
  box-shadow: 0 5px 0 #333;
  transition: 0.3s;

}
.btn-ticket-kokuchi::after {
  content: '';
  width: 15px;
  height: 15px;
  border-top: 3px solid  #333;
  border-right: 3px solid #333;
  transform: rotate(45deg);
}
.btn-ticket-kokuchi:hover {
  transform: translateY(3px);
  text-decoration: none;
  background-color: #ffff33;
  box-shadow: 0 2px 0 #333;
}
@media screen and (max-width:991px) {
	
	.tour-kokuchi{margin: 0 auto;text-align: center;width:100%;}
  .btn-ticket-kokuchi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 1rem 1rem;
    width: 100%;
    max-width: 600px;
    color:  #333;
    font-size: 1rem;
    font-weight: 600;
    background-color: #ffff33;
    box-shadow: 0 5px 0 #333;
    transition: 0.3s;
  
  }
} /*end*/
@media screen and (max-width:768px) {
  .btn-ticket-kokuchi{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 1rem 1rem;
    width: 86%;
    max-width: 400px;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    background-color: #ffff33;
    box-shadow: 0 5px 0 #333;
    transition: 0.3s;
   
  }
} /*end*/



/*===========================================================*/
/*ページトップ*/
/*===========================================================*/
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e80034;
  width: 60px;
  height: 50px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
}
#page-top a:hover {
  background: #777;
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateX(100px);
}
/*　左の動き　*/
#page-top.LeftMove {
  animation: LeftAnime 0.5s forwards;
}
@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*　右の動き　*/
#page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}
/*===========================================================*/
/*アコーディオン
/*===========================================================*/
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 30px auto;
}
.accordion-area li {
  margin: 10px 0;
}
.accordion-area section {
  border: 1px solid #ccc;
}
/*アコーディオンタイトル*/
.title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: normal;
  padding: 1% 3% 1% 50px;
  transition: all .5s ease;
}
@media screen and (max-width:768px) {
  .accordion-area {
    list-style: none;
    width: 90%;
    max-width: 90%;
    margin: 30px auto;
  }
  .title {
    font-size: 0.9rem;
  }
}
/*アイコンの＋と×*/
.title::before, .title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #e80034;
}
.title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.title.close::before {
  transform: rotate(45deg);
}
.title.close::after {
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
  margin: 0 3% 1% 3%;
  padding: 3%;
}
.box p {
  font-size: 0.8rem;
  font-weight: normal;
}
/*===========================================================*/
/*@keyframes*/
/*===========================================================*/
/*左から*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(232, 0, 51, 1) 80%); /*伸びる背景色の設定 #e80034*/
}
@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左へ*/
.flipLeft {
  animation-name: flipLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  opacity: 0;
}
@keyframes flipLeftAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/* zoomOut */
.zoomOut {
  animation-name: zoomOutAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
@keyframes zoomOutAnime {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
  }
}
/* 変形*/
.smooth {
  animation-name: smoothAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  transform-origin: left;
  opacity: 0;
}
@keyframes smoothAnime {
  from {
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgLRextendTrigger, .bgappearTrigger, .fadeUpTrigger, .flipLeftTrigger, .zoomOutTrigger .fadeDownTrigger, .smoothTrigger {
  opacity: 0;
}
/*===========================================================*/
/* スクロールするとヘッダー上部固定/
/*===========================================================*/
#top-main {
  width: 100%;
  height: 100%;
  position: relative;
  background: #000;
  margin-top: -75px;
}
@media screen and (max-width:768px) {
  #top-main {
    width: 100%;
    height: 100%;
    position: relative;
  }
} /*end*/
#container {
  position: relative;
  z-index: 1;
  background: #000;
}