@charset "utf-8";

* {

  margin: 0;
  padding: 0;
}

html{
  scroll-behavior: smooth;

}

body {

  background-color: #f00;
}

header{
  width: 100%;
}

.wrapper{
  width: 100%;
  height: 100vh;
}

.fadein {
  opacity: 0;
  transform: translate(0, 15px);
  transition: all 0.5s;
}
h2.fadein{
  opacity: 0;
  transform: translate(0, 0px);
  transition: all 1.5s;
  z-index: 3;
}

.fadein.active {
  opacity: 1;
  transform: translate(0, 0);
}

.top_bar {
  font-family: 'Anton', sans-serif;
  display: flex;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  border-bottom: #fff solid 1px;
  /* opacity: 0;  アニメーションさせる時用の最初非表示設定*/
  align-items: center;
  background-color: #f00;

  /* height: 170px; */
}



.top_bar p {

  color: #fff;
  text-align: right;
  align-items: center;

  

}

h1 {
  width: 100%;
  padding: 20px 0;
  margin-left: 10px;
  background-color: #f00;
  color: #fff;
  text-align: left;
  z-index: 9998;
  font-size: 4rem;
  text-shadow: 0.8px 0.8px 0 #043883,
  -0.8px 0.8px 0 #043883,
  0.8px -0.8px 0 #043883,
  -0.8px -0.8px 0 #043883;
}

h1 a {
  text-decoration: none;
  color: #fff;
}

h1 :hover {
  color: #c1a470;
  transition: 0.5s;
}

.contact {
  background-color: #f00;
  padding: 0 auto;
  align-items: center;
  font-size: 3rem;  

}

.contact a {
  text-decoration: none;
  color: #fff;
  text-align: right;
}

.contact :hover {
  color: #c1a470;
  transition: 0.5s;
}

.btn {
  width: 60px;
  background-color: #f00;
  padding: 0 30px;
  text-align: center;
  font-size: 1.5rem;  
}

.btn:hover span {
  background-color: #c1a470;
}
.btn:hover p {
  color: #c1a470;
}

.btn span {
  display: block;
  height: 6px;
  width: 55px;
  margin-bottom: 6px;
  background-color: #fff;
  transition: 0.5s;
}

.btn p{
  color: #fff;
  text-align: left;
  transition: 0.5s;
}

.btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.btn.active span:nth-child(2) {
  opacity: 0;
}

.btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}


nav.global {
  background-color: #f00;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: -150%;
  right: 0;
  z-index: 9997;
  transition: 0.5s;
  padding-top: 55px;
}

nav.global.active {
  top: 0;
  background-color:rgba(255, 0, 0, 0.829);
}

nav.global ul li {
  list-style-type: none;
  text-align: center;
  line-height: 1.1rem;
  margin: 24px auto;
  
}


nav.global ul li a {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  text-decoration: none;
}

nav.global ul li a.l_1,
nav.global ul li a.l_5 {
  font-size: 3rem;
  text-shadow: 1px 1px 0 #c1a470  ,
  -1px 1px 0 #c1a470  ,
  1px -1px 0 #c1a470  ,
  -1px -1px 0 #c1a470 ;
}
nav.global ul li.sns{
  margin: 0;
}

nav.global ul li a br{
  display: block;
  content: "";
  height: 1px;
  margin: 0;

  
}
nav.global ul li a span{
  font-family: 'Anton', sans-serif;
  /* font-family: 'M PLUS 1p', sans-serif; */
  display: block;
  font-size: 0.6rem;
  margin: 0;
  line-height: 0.1rem;
  /* font-weight: 1000; */
  
}


nav.global ul li a.l_1 span{ 
  font-size: 1.5rem;
}

nav.global ul li a:hover {
  color: #c1a470;
  transition: 0.5s;
}

section {
  width: 100%;
  height: 100vh;
  display: flex;
  /* このレイアウト（columのコメント解除）でもいいな */
  flex-direction: row;
  /* flex-direction: column; */
  /* justify-content: center; */
  align-items: center;
  /* padding-top: 100px; */
  padding: 100px 0;
  /* ②↑これだと上下に余白出来ていいけど玉ピン再調整必要だ */
}



section#p2,section#p1,section#p5, section#p7 , section#p8, section#p10{
  background-color: #fff;
  color: #f00;
  text-shadow: 1px 1px 0 #fff,
  -1px 1px 0 #fff,
  1px -1px 0 #fff,
  -1px -1px 0 #fff;
  
}

 section#p4, section#p6 {
  background-color: #f00;
  color: #fff;
  text-shadow: 1px 1px 0 #f00,
  -1px 1px 0 #f00,
  1px -1px 0 #f00,
  -1px -1px 0 #f00;
}
section#p3{
  background-color: #c1a470;
  color: #f00;
  background-image: none;
  text-shadow: 1px 1px 0 #fff,
  -1px 1px 0 #fff,
  1px -1px 0 #fff,
  -1px -1px 0 #fff;
}



h2 {
  font-family: 'Anton', sans-serif;
  font-size: 13rem;
  color: #f00;
  padding-left: 70px;
  /* padding-top: 150px; */
  letter-spacing: 2px;
  line-height: 0.8;
  /* text-stroke:1px #fff;
  -webkit-text-stroke: 1px #fff; */
  text-shadow: 3px 3px 0 #fff,
  -3px 3px 0 #fff,
  3px -3px 0 #fff,
  -3px -3px 0 #fff;
}
h2 span{
  font-size: 7rem;
  line-height: 1;
}


h3 {
  font-family: 'Anton', sans-serif;
  width: 100%;
  font-size: 7rem;
  text-align: left;
  padding: 0 0 0 50px;
  line-height: 0.8;
  /* background-color: blue; */


}

section p {
  font-size: 2rem;
  text-align: left;
  font-weight: 900;
  width: 100%;
  padding: 0 0 0 50px;
  font-family: 'M PLUS 1p', sans-serif;
}

section table {
  font-size: 1rem;
  width: 100%;
  text-align: center;
  font-weight: 400;
  background-color: #FFF;
  font-family: 'M PLUS 1p', sans-serif;
  padding: 20px auto;
  margin: 0px auto;
  letter-spacing: 2px;
  line-height: 3;
  box-sizing: border-box;
  /* color: #000; */
  /* text-shadow: none; */
}

section table.info {
  width: 95%;
  /* padding-left: 200px; */

}

section table.pack{
  background-color: #f00;
  color: #FFF;
  text-shadow: none;
  border-bottom: #FFF;
}

section table.info td{
  width: 100px;
}

section table tr {
  /* border-bottom: 1px solid #f00; */
}


section table tr td:first-child {
  /* text-align: left; */
  font-weight: 800;
  width: 20rem;
}

section table tr td:last-child {
  width: 16rem;
  /* background-color: rgb(255, 242, 242); */
}

section table tr td:nth-child(2) {
  width: 16rem;
  /* background-color: rgb(230, 231, 255);  */
}

section table tr :nth-child(6) td {
  background-color: #fff;
  text-align: center;
  font-size: 100%;

}

section table tr td {
  margin-bottom: 100px;
  border-bottom: 1px dashed #c1a470;

}
section table tr td.td_title {
  font-size: 1.5rem;
}

section table tr td span {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 5px;
  text-indent: 2px;
}
section table tr {
  height: 70px; 
  /* height: 50px; */
  /* ①↑これ狭めたらページジャンプ時Priceきちんと出るけど玉ピン再調整必要だ */
  /* 済:①②を一緒に変更したら丁度よくなった */
  line-height: 1;
}


section table.info span {
  font-size: 0.7rem;
  letter-spacing: 0.7px;
  line-height: 0.5;
  
}

.annotation {
  /* background-color: yellow; */
  padding: 10px;
  font-size: 0.7rem;
  text-align: center;
  letter-spacing: 0.01rem;
  font-weight: 400;
  line-height: 2;


}
.annotation span{
  /* background-color: yellow; */
  padding: 10px;
  font-size: 1rem;
  text-align: left;
  letter-spacing: 0.01rem;
  text-decoration: underline;
  font-weight: 800;
  line-height: 3;

}
.pack .annotation{
  font-size: 1rem;
  text-align: center;
}

footer {
  font-family: 'Anton', sans-serif;
  width: 100%;
  background-color: #f00;
  color: #fff;
  padding: 0 auto;
  
}

footer h3 {
  opacity: 0;
  width: 100%;
  font-size: 22rem;
  line-height: 0.9;
  text-align: center;
  padding: 50px 0 0 0;
  margin: 0 auto;

  /* background-color: aqua; */
}
footer h3 span{
  display: none;
}

footer p {
  font-size: 200%;
  text-align: center;
  margin-bottom: 10px;
  /* line-height: 0.8; */

}

footer p small {
  line-height: 3;
  font-size: 80%;
  font-weight: 100;

  /* background-color: aqua; */
}

div.content_l {
  width: 40%;
  /* background-color: blue; */

}

div.content_r {
  width: 60%;
  /* background-color: yellow; */

}

address {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 10px auto;
  padding-left: 100px;
  font-style: normal;
  /* text-align: center; */
  /* background-color: aqua; */
}

/* アクセスの地図埋め込み */
iframe {
  margin: 10px 100px;

}

dl {
  padding-left: 100px;
  font-weight: 300;
  font-size: 0.8rem;
}

dt {
  padding-top: 10px;
  font-weight: 900;
}

section#p4 {

  position: relative;
  /* background-color: black; */
  /* background-image: url(images/pin.svg); */
}

section#p4 img {
  position: absolute;
  bottom: -150px;
  right: -550px;
  /* background-color: aqua; */
}

@keyframes img_vis_ani {
  0% {
    background-image: url(../images/img_visu_1.jpg);
  }
   25% {
    background-image: url(../images/img_visu_1.jpg);
  } 
   50% {
    background-image: url(../images/img_visu_1.jpg);
  } 
   75% {
    background-image: url(../images/img_visu_1.jpg);
  } 
   100% {
    background-image: url(../images/img_visu_1.jpg);
  } 
}

#p1 {
  background-image: url(../images/img_visu_1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
    /* アニメーション設定 */
    /* 適用するアニメーション名を指定(上述で定義) */
    animation-name: img_vis_ani;
    /* アニメーションの時間 */
    animation-duration: 100s;
    /* アニメーションの繰り返し回数(デフォは1回のみ) */
    /* animation-iteration-count: 100; */
    /* アニメーション再生方向 */
    /* animation-direction: normal; */
    animation-timing-function: linear;
      /* opacity: 0;  アニメーションさせる時用の最初非表示設定*/
    opacity: 1;
}


#p2{
  background-image: url(../images/img_bg_2.jpg);
  background-repeat: repeat;
  background-position: -200px -200px;
  background-size: contain;
}

#p2 .content_l{
  /* background-image: url(../images/staff_1.jpg); */
  /* height: 100%; */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left 50px;
  /* background-color: #c1a470; */
  padding-top: 20px;
  
}

#p3{
  /* position: relative; */
  background-image: url(../images/img_bg_2.jpg);
  background-repeat: repeat;
  /* background-position: left -20px; */
  background-position: -120px 700px;
  background-size: cover;
  height: auto;
}

#p4 {
  background-image: url(../images/pin.svg);
  background-repeat: no-repeat;
  background-position: right top;
  
}

#p5{
  background-image: url(../images/img_bg_2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: -53px -80px;
}

#p6{
  background-image: url(../images/img_bg_1.jpg);
  background-position: -53px top;
  height: auto;
}

#p6 .content_r p{
  padding: 20px 0px;
  text-align: center;
  /* font-size: 1.5rem; */
}

#p7{
  height: 400px;
  background-image: url(../images/img_bg_3.JPG);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left -250px;

}
#p8{
  background-image: url(../images/img_bg_2.jpg);
  background-repeat: repeat;
  /* background-position: -200px -200px; */
  background-size: cover;
}
#p8 span{
  font-size: 2rem;
}
#p8 .content_r p{
  padding: 20px 0px;
  text-align: center;
  font-size: 1.4rem;
}
#p9{
  color: #c1a470;
  text-align: center;
  margin: 0 auto;
}

section#p10{
  color:#c1a470;
  background-image: url(../images/img_bg_2.jpg);
  height: auto;
}
/* top_anime関連 */
.top_anime{
  color: #f00;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-image: url(../images/img_top.jpg);
  background-repeat: no-repeat;
      /* アニメーション設定 */
    /* 適用するアニメーション名を指定(上述で定義) */
    animation-name: top_ani;
    /* アニメーションの時間 */
    animation-duration: 8s;
    /* アニメーションの繰り返し回数(デフォは1回のみ) */
    animation-iteration-count: 1;
    /* アニメーション再生方向 */
    animation-direction: normal;
}
@keyframes top_ani {
  0% {
    background-position: left -100px;
  }

   100% {
    background-position: right -100px;
  } 
}
/* 画面右隅に配置の予約、レーン空きボタン */
.guide{
  writing-mode: vertical-rl;
  width: 50px;
  height: 170px;
  background-color: #c1a470;
  color: #fff;
  position: fixed;
  bottom:40px;
  right: 0px;
  font-family: 'M PLUS 1p', sans-serif;
  line-height: 2.9;
  font-weight: 500;
  font-size: 1.1rem;
  text-align: center;
}
.guide :hover{
  color: #f00;
}
.g1{
  bottom:230px;
}


/* skipper関連 */
#container {
  background-color: #fff;
  width: 600px;
  height: 600px;
}
.skippr-nav-container{
  display: none;
}

/* bowl_anime関連 */
.ball {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 160px;
  transform-origin: center;  
  z-index: 300;
}



.pin {
  width: 50px;
  height: 150px;
  position: absolute;
  top: -300px;
  left: 1000px;
  z-index: 299;

  transform-origin: bottom right;
}
#b_1 {
  transform: rotate(-360deg);
  transition: 1s;
}
    .ball {
      border-radius: 50%;
      width: 50px;
      height: 50px;

      position: absolute;
      top: 195px;
      cursor: url(images/player_before.png) 50 50,grab;
      /* background-color: #fff; */
      /* background-color: red; */
      /* transform: rotate(-360deg);
      transition: 1s; */
      transform-origin: center;  

    }

    .pin {
      width: 50px;
      height: 150px;
      /* background-color: red; */
      position: absolute;
      top: -300px;
      left: 1000px;
      /* transform: rotate(90deg); */
      /* border: 1px solid #000; */
      transform-origin: bottom right;
    }
    #b_1 {
      transform: rotate(-360deg);
      transition: 1s;
    }
    #b_2 {
      position: absolute;
      top: 365px;
      transform: rotate(-360deg);
      /* transition: 1s; */
    }
    #b_3 {
      position: absolute;
      top: calc(11400px + 128vh);
      transform: rotate(-360deg);
      /* transition: 1s; */
    }
    #b_3mini{
      position: absolute;
      top: calc(10400px + 128vh);
      transform: rotate(-360deg);
      display: none;
    }

    .pin_1 {
      position: absolute;
      left: 850px;
      top: -1830px;
    }
    .pin_11 {
      position: absolute;
      left: 850px;
      top: calc(11300px + 128vh);
      
    }

    .pin_2 {
      position: absolute;
      left: 925px;
      top: -1830px;
    }
    .pin_22 {
      position: absolute;
      left: 925px;
      top: calc(11300px + 128vh);
    }

    .pin_3 {
      position: absolute;
      left: 950px;
      top: -1830px;
      transform-origin: bottom left;
    }
    .pin_33 {
      position: absolute;
      left: 950px;
      top: calc(11300px + 128vh);
      transform-origin: bottom left;
    }

    .pin_4 {
      position: absolute;
      left: 1025px;
      top: -1830px;
    }
    .pin_44 {
      position: absolute;
      left: 1025px;
      top: calc(11300px + 128vh);
    }

    .pin_5 {
      position: absolute;
      left: 1050px;
      top: -1830px;
      transform-origin: bottom left;
    }
    .pin_55 {
      position: absolute;
      left: 1050px;
      top: calc(11300px + 128vh);
      transform-origin: bottom left;
    }

    .pin_6 {
      position: absolute;
      left: 1075px;
      top: -1830px;
    }
    .pin_66 {
      position: absolute;
      left: 1075px;
      top: calc(11300px + 128vh);
    }

    .pin_7 {
      position: absolute;
      left: 1150px;
      top: -1830px;
      transform-origin: bottom left;
    }
    .pin_77 {
      position: absolute;
      left: 1150px;
      top: calc(11300px + 128vh);
      transform-origin: bottom left;
    }

    .pin_8 {
      position: absolute;
      left: 1175px;
      top: -1830px;
    }
    .pin_88 {
      position: absolute;
      left: 1175px;
      top: calc(11300px + 128vh);
    }

    .pin_9 {
      position: absolute;
      left: 1200px;
      top: -1830px;
      transform-origin: bottom left;
    }
    .pin_99 {
      position: absolute;
      left: 1200px;
      top: calc(11300px + 128vh);
      transform-origin: bottom left;
    }

    .pin_10 {
      position: absolute;
      left: 1225px;
      top: -1830px;
    }
    .pin_1010 {
      position: absolute;
      left: 1225px;
      top: calc(11300px + 128vh);
    }

    @keyframes rotate{
      0%{
        transform: rotate(-360);
      }
      100%{
        transform: rotate(0);
      }
    }
    .rotate{
      /* アニメーション繰り返しする前の待機時間して */
      animation: rotate 0.6s infinite;
    }

  /* レスポンシブ対応の為一旦アニメーションなしに */
    .ball {
      /* display: none; */
    }
    .pin {
      /* display: none; */
    }

    /* ランキング表 */
    iframe.ranking{
      width: 98%;
      height: 100vh;
      margin: 0 auto;
      z-index: 4;
    }
    /* スマホ時だけ改行する */
    .br_sp,.br_sp2{
      display: none;
    }

    /* ルール */
    dl.rule{
      font-family: 'M PLUS 1p', sans-serif;
      font-size: 1.3rem;
      font-weight: 400;
      width: 90%;
      margin: 0 auto;
      padding: 0;

    }
    dl.rule dt{
      font-size: 1.5rem;
      padding-top:30px;
    }
    section table tr.line{

      height: 40px;

     
    }
/*---------------------------------------
 スクロールダウンボタン
--------------------------------------- */

    .scroll {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      position: absolute;
      width: 100%;
      /* ↓位置調整 */
      height: 70%;
      z-index: 2;
      /* background: #333; */
    }

    .container {
      position: relative;
      width: 24px;
      height: 24px;
    }
    
    .chevron {
      position: absolute;
      width: 28px;
      height: 8px;
      opacity: 0;
      transform: scale3d(0.5, 0.5, 0.5);
      animation: move 3s ease-out infinite;
    }
    
    .chevron:first-child {
      animation: move 3s ease-out 1s infinite;
    }
    
    .chevron:nth-child(2) {
      animation: move 3s ease-out 2s infinite;
    }
    
    .chevron:before,
    .chevron:after {
      content: ' ';
      position: absolute;
      top: 0;
      height: 100%;
      width: 51%;
      background: #fff;
      
    }


    
    .chevron:before {
      left: 0;
      transform: skew(0deg, 30deg);
    }
    
    .chevron:after {
      right: 0;
      width: 50%;
      transform: skew(0deg, -30deg);
    }
    
    @keyframes move {
      25% {
        opacity: 1;
    
      }
      33% {
        opacity: 1;
        transform: translateY(30px);
      }
      67% {
        opacity: 1;
        transform: translateY(40px);
      }
      100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
      }
    }
    
    .text {
      /* ↓コメント化で文字が上に、解除で文字が下に */
      display: block;
      margin-top: 75px;
      margin-left: -30px;
      font-size: 12px;
      font-weight: 100;
      color: #f00;
      text-transform: uppercase;
      white-space: nowrap;
      opacity: .25;
      animation: pulse 2s linear alternate infinite;
    }
    

    @keyframes pulse {
      to {
        opacity: 1;
      }
    }

        /* スクロールダウンボタン 終わり  */

        /* 終了結果報告ページ */
        p.fin{
          text-align: center;
          font-size: 2.1rem;
          line-height: 2;
          padding: 50px 0;
        }
        

    


