@charset "UTF-8";

/**nav**/
.page-nav{
	background: #111;
}
.page-nav ul{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px 0;
}
.page-nav ul li img{
	max-width: 40px;
	min-width: 25px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.page-nav ul li{
	text-align: center;
	border-left: solid 1px #8FC31F;	
}
.page-nav ul li:last-child{
	border-right: solid 1px #8FC31F;	
}
.page-nav ul li a,
.page-nav ul li span{
	font-size: 14px;

}
.page-nav ul li a{
	padding: 20px 20px;
	display: block;
	line-height: 1;
	position: relative;
}
.page-nav ul li a:before{
	content: '';
	display: block;
	position: absolute;
	left: 6px;
	top: 6px;
	width: 14px;
	height: 14px;
}
.page-nav ul li:hover span,
.page-nav ul li:hover a{
	color: #8FC31F;
}
.page-nav ul li:hover a:before{
	background: url(../img/common/titile-ster-bt.png)no-repeat;
	background-size: contain;
}

/**nav-end**/


/**title****/
.mono .title-large.t-en{
	font-size: 60px;
	position: relative;
	text-align: center;
	display: table;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 70px;
}
.mono .title-large.t-en:after,
.mono .title-large.t-en:before{
	content: '';
	display: block;
	width: 28px;
	height: 30px;
	position: absolute;
	background: url(../img/common/titile-ster-top.png)no-repeat;
	background-size: contain;
	background-position: center;
}
.mono .title-large.t-en:before{
	left: -18px;
	top: -4px;
}
.mono .title-large.t-en:after{
	background: url(../img/common/titile-ster-bt.png)no-repeat;
	background-size: contain;
	background-position: center;
	right: -6px;
	bottom: 12px;
	width: 13px;
	height: 13px;
}
.mono .title-large{
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 50px;
}

.mono .bg-gold .title-large.t-en:before{
	background: url(../img/common/titile-ster-top-w.png)no-repeat;
	background-size: contain;
	background-position: center;
}
.mono .bg-gold .title-large.t-en:after{
	background: url(../img/common/titile-ster-bt-w.png)no-repeat;
	background-size: contain;
	background-position: center;
}

.mono .title-large.t-kira:before{
	content: '';
	display: block;
	position: absolute;
	background: url(../img/common/title-kira.png)no-repeat;
	background-size: contain;
	background-position: center;
	left:calc((100% - 35px) / 2);
	top: -46px;
	width: 40px;
	height: 50px;
}

/**title-end****/




/**content****/
.conte-normal{
	padding: 150px 0 150px;
}
.conte-normal + .conte-normal{
	padding: 0px 0 150px;
}

.bg-w .conte-normal{
	padding: 120px 0 120px;
}
.bg-w .conte-normal + .conte-normal{
	padding: 0px 0 120px;
}
.bg-w .conte-normal.d-none + .conte-normal{
	padding: 120px 0 120px;
}
.conte-normal.d-none + .conte-normal{
	padding: 150px 0 150px;
}
.conte-normal.bg-w{
	background: #fff;
	padding-top: 90px;
	padding-bottom: 90px;
}
.conte-normal.bg-w + #banner{
	padding-top: 150px;
}
#gourmet.conte-full{
	padding: 120px 0;
}
#floormap .tab-content {
  padding: 70px 20px;
  width: calc(100% - 40px);
}
.bg-w.bg-access {
  position: relative;
  overflow: hidden;
}
.mono .bg-w.bg-access .bg-parallax{
  background: url(../img/common/bg-access.png) no-repeat left -200px top;
  background-size: 50% auto;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2000px;
  transition: background-position 0.1s linear;
}



/* ------------------------------
   パララックス
------------------------------ */
.mono .rellax-waku{
	position: relative;
	overflow: hidden;
}
.mono .bg-sankaku{
	display: none;
		position: fixed;
		width: 50%;
		height: 600px;
		z-index: 0;
		left: -10%;
		top: -50%;
		animation: fadein 3s ease-in-out infinite;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}






/* 背景画像の見えている高さ */
.parallax {
  /*height: 500px;*/
}

/* 背景画像 */
.parallax::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: -2;
  background: url(../img/common/sp-img.jpg) center center / cover no-repeat;
  background: url(../img/common/sp-img.jpg) center bottom 20% / cover no-repeat;
}
.much-color{
	position: relative;
}
.much-color:before{
	content: '';
	display: block;
	position: absolute;
	height: 100%;
	width: 100%;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 43%, rgba(143, 195, 31, 1) 56%);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 43%, rgba(255, 255, 255, 1) 56%);
  background-repeat: no-repeat;
  background-size: 100% 200%; /* 背景サイズを縦に拡大してアニメ効果を出す */
  animation: gradientMove 6s ease-in-out infinite;
  opacity: 1;
}
@keyframes gradientMove {
  0% {
    background-position: center 10%;
  }
  25% {
    background-position: center 20%;
  }
  50% {
    background-position: center 0;
  }
  75% {
    background-position: center 20%;
  }
  100% {
    background-position: center 10%;
  }
}

/*横のアニメーション**/
@keyframes gradientSlide {
  0% {
    background-position: left center;
  }
  100% {
    background-position: right center;
  }
}

/**content-end****/





.mono button{
	border: none;
	background: none;
}
.mono button.bt-purchase{
	position: relative;
}
.mono button.bt-purchase a,
.mono button.bt-purchase.bt-small a{
	color: #fff;
	display: block;
	padding: 8px 16px;
	background: #111;
	border-radius: 50px;
	position: relative;
	z-index: 1;
	font-weight: bold;
	letter-spacing: 0;
	font-size: 14px;
	line-height: 1;
}
.mono button.bt-purchase:after,
.mono button.bt-purchase.bt-small:after{
    content: '';
    display: block;
    width: 84%;
    height: 90%;
    background: #fff;
    position: absolute;
    left: 7%;
    top: 5px;
    border-radius: 50px;
    border: solid 1px #111;
	/*mix-blend-mode: multiply;*/
}

.mono button.bt-purchase.bt-normal a{
	padding: 12px 24px;
	border-radius: 50px;
	font-size: 14px;
	min-width: calc(180px - 48px);
	position: relative;
}
.mono button.bt-purchase:after{
	width: 90%;
	height: 100%;
	left: 5%;
	top: 4px;
	border-radius: 50px;
}
.mono button.bt-normal.shiro{
	position: relative;
}
.mono button.bt-normal.shiro a{
    color: #111;
    display: block;
    padding: 12px 32px;
    background: #fff;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    font-weight: bold;
    letter-spacing: 0;
    font-size: 14px;
    line-height: 1;
    border: solid 1px #111;
}
.mono button.bt-normal.shiro:after{
	content: '';
	display: block;
	width: 90%;
	height: 90%;
	background: #111;
	position: absolute;
	left: 10px;
	top: 6px;
	border-radius: 50px;
}
.mono button.bt-normal.shiro:before{
	content: '';
	display: block;
	width: 10px;
	height: 5px;
	background: url(../img/common/i-arrow-bl.png)no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	right: 20px;
	top: calc((100% - 5px) / 2);
	z-index: 2;
}
.mono .conte-button {
	display:   flex;
	justify-content: center;

}

.mono button.bt-purchase.bg-green a,
.mono button.bt-purchase.bt-small.bg-green a{
	color: #111;
	background: #8fc31f;
	border: solid 1px #111;
}
.mono button.bt-purchase.bg-green:after{
	width: 86%;
    height: 100%;
    left: 7%;
    top: 2px;
}

.mono .m-auto{
	margin-left: auto;
	margin-right: auto;
	display: table;
}


.mono .bg-lv{
	background: #8fc31f;
}




/**keyplayer***************/

.mono .attention{
	display: flex;
	align-items:  flex-end;
	justify-content: center;
	margin-bottom: 70px;
}
.mono .attention .ph{
	flex-grow: 2;
	max-width: 615px;
}
.mono .attention .detail{
	flex-grow: 1;
	max-width: 400px;
	margin-left: 50px;
	padding-bottom: 70px;
}
.mono .attention .posi span{
	color: #fff;
	line-height: 1;
	transform: skewX(-10deg);
}
.mono .attention .posi{
	display: flex;
	align-items:  flex-end;
	position: relative;
	padding-left: 60px;
	line-height: 1;
}
.mono .attention .posi .p-posi{
	font-size: 40px;
	position: absolute;
	bottom: 30px;
	left: 0;
}
.mono .attention .posi .p-num{
	font-size: 200px;
}
.mono .attention .name-ja{
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 4px;
	transform: skewX(-10deg);
}
.mono .attention .name-en{
	padding: 2px 4px;
	background: #8fc31f;
	display: inline-block;
	transform: skewX(-10deg);
	margin-bottom: 20px;
}
.mono .attention .tx{
	font-size: 14px;
	margin-bottom: 24px;
}
.mono .bg-player{
	position: relative;
	padding: 100px 0;
}
.mono .bg-player:before{
	content: '';
	display: block;
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background: url(../img/common/bg-2526.png)no-repeat;
	background-position: center top 150px;
	background-size: contain;
	opacity: 0.2;
}
/**/
#keyplayer.conte-normal{
	padding: 120px 0 0;
}
#keyplayer .slider_container{
	padding-bottom: 40px;
}
.mono .bg-p15{
	background: url(../img/player/pc1920-p15-02.jpg)no-repeat;
	background-position: center top;
	background-size: cover;
}
.mono .p-main{
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 100px;
	position: relative;
}
.mono .p-main .p-detail:after{
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	width: 110%;
	height: 100%;
	top: 2px;
	left: -10%;
	background: #111;
	transform: skewX(-15deg);
}
.mono .p-main .p-detail{
	display: flex;
	max-width: 700px;
	padding: 10px 15px;
	color: #fff;
	position: absolute;
	z-index: 1;
	bottom: -30px;
	left: 0;
}
.mono .p-main .p-detail,
.mono .p-main .p-detail a,
.mono .p-main .p-detail span,
.mono .p-main .p-detail p{
	color: #fff;
	font-size: 12px;
}
.mono .p-main .player{
	position: relative;
	display: table;
	margin: 0 auto; 
}
.mono .p-main .player .name-tag span{
	display: block;
}
.mono .p-main .player .name-tag .name{
	font-size: 24px;
}
.mono .p-main .player .name-tag .t-ja{
	font-size: 14px;
	font-weight: bold;
	margin-top: -3px;
}
.mono .p-main .player.lv-p15 .ph{
	max-width: 350px;
	position: relative;
	left: calc((100% - 350px) / 2);
}
.mono .p-main .lv-p15 .name-tag{
	position: absolute;
	left: -17%;
	top: 25%;
}


/**/


/**event***************/

.event-card .ph{
	line-height: 1;
	border-radius: 6px 40px 0 0;
	border: solid 1px #111;
	overflow: hidden;
}
.event-card .bt,
.event-card .category{
	padding: 4px 6px;
	text-align: center;
	font-size: 10px;
	font-weight: bold;
	position: relative;
	top: -1px;
}
.event-card .category{
	background: #111;
	color: #fff;
}
#gourmet .event-card .category{
	min-height: 2.5rem;
	position: relative;
	top: -3px;
}
.event-card .tx{
	display: none;
}

.event-card .bt{
	background: #8fc31f;
	position: relative;
}
#gourmet .event-card .bt {
    background: #b09d60;
    position: relative;
}
#gourmet .event-card .category:after,
.event-card .bt:after{
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background: url(../img/common/i-kado-w.png)no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	bottom: 4px;
	right: 4px;
}
#gourmet .event-card .category:after{
	background: url(../img/common/i-kado-go.png)no-repeat;
	background-size: contain;
	background-position: center;
}

#goods .event-card .ph {
	border: solid 1px #111;
	background: #fff;
}
#goods .event-card .ph{
	position: relative;
}
#goods .event-card .ph .price{
	position: absolute;
	bottom: 15px;
	right: 6px;
	font-weight: bold;
	font-size: 12px;
	color: #111;
}
#goods .event-card .goods-name{
	padding: 15px 12px;
	position: relative;
	margin-top: 20px;
	font-size: 12px;
	text-align: center;
}
#goods .event-card .goods-name:after,
#goods .event-card .goods-name:before{
	width: calc(100% - 24px);
	height: 1px;
	background: #111;
	position: absolute;
	top: 3px;
	left: 12px;
}
#goods .event-card .goods-name:before{
	top: auto;
	bottom: 3px;
	left: 12px;
}

.event-card .goods-name span{
	position: absolute;
}
.event-card .goods-name span:nth-child(1){
	top: 0;
	left: 0;
}
.event-card .goods-name span:nth-child(2){
	top: 0;
	right: 0;
}
.event-card .goods-name span:nth-child(3){
	bottom: 0;
	right: 0;
}
.event-card .goods-name span:nth-child(4){
	bottom: 0;
	left: 0;
}
.event-card .goods-name img{
	width: 7px;
	height: auto;
}

.no{
	position: relative;
}
.no:before{
  content: '0';
  display: inline-block;
  z-index: 1;
  position: absolute;
}
.food-card.no:before,
.event-card.no:before{
  background: #111;
  padding: 2px 6px 0;
  color: #fff;
  top: 0px;
  left: -0px;
  font-size: 24px;
  line-height: 1;
  font-family: "BLG Hudson";
}
.no.no01:before{
  content: '1';
}
.no.no02:before{
  content: '2';
}
.no.no03:before{
  content: '3';
}
.no.no04:before{
  content: '4';
}
.no.no05:before{
  content: '5';
}
.no.no06:before{
  content: '6';
}
.no.no07:before{
  content: '7';
}
.no.no08:before{
  content: '8';
}
.no.no09:before{
  content: '9';
}
.no.no10:before{
  content: '10';
}
.no.no11:before{
  content: '11';
}
.no.no12:before{
  content: '12';
}
.no.no13:before{
  content: '13';
}
.no.no14:before{
  content: '14';
}
.no.no15:before{
  content: '15';
}
.no.no16:before{
  content: '16';
}
.no.no17:before{
  content: '17';
}
.no.no18:before{
  content: '18';
}
.no.no19:before{
  content: '19';
}
.no.no20:before{
  content: '20';
}
.no.no-a:before{
  content: 'A';
}
.no.no-b:before{
  content: 'B';
}
.no.no-c:before{
  content: 'C';
}
.no.no-d:before{
  content: 'D';
}
.no.no-e:before{
  content: 'E';
}
.no.no-f:before{
  content: 'F';
}
.no.no-g:before{
  content: 'G';
}
.no.no-h:before{
  content: 'H';
}
.no.no-i:before{
  content: 'I';
}
.no.no-j:before{
  content: 'J';
}
.no.no-k:before{
  content: 'K';
}

.no-thumbs .bg-bl{
	position: relative;
	padding-left: 34px;
	height: 30px;
	display: flex !important;
	align-items:  center;
	background: url(../img/common/button-bg-bl.png)no-repeat;
	background-size: contain;
	background-position: left center;	
}
.no-thumbs .bg-bl,
.no-thumbs .thumb-tx{
	font-size: 10px;
	font-weight: bold;
}
.no-thumbs .bg-bl .no:before{
	display: none;
}
.no-thumbs .bg-bl .no{
	width: 25px;
	height: 30px;
	display: block;
	color: #fff;
	position: absolute;
	top: 3px;
	left: 3px;
	padding-top: 4px;
	text-align: center;
	font-family: "BLG Hudson";
}

.no-thumbs .bg-bl.bg-gold{
	background: url(../img/common/button-bg-gold.png)no-repeat;
	background-size: contain;
	background-position: left center;	
}




#gourmet .slider_container .swiper + .swiper{
	margin-top: 20px;
}


.mono .t-kakomi{
	padding: 0px 6px;
	background: #111;
	color: #fff;
	display: inline-block;
	margin-right: 10px;
	line-height: 1.2;
}
#ticket .conte-button{
	margin-top: 30px;
}
#ticket .conte-button + .bt-purchase{
	margin: 15px auto 0;
	display: table;
}


#access .hosoku{
	display: flex;
	align-items:  center;
	margin-top: 50px;
}
#access .hosoku div + div{
	margin-left: 50px;
}
.hosoku div{
	flex: 1;
}
.route.to-left,
.route + .route {
	margin-top: 50px;
}
.route.to-left{
	margin-right: calc((100% - 900px) / 2);
}
.route address:before{
	width: 22%;
	height: 100%;
	background: url(../img/common/bg-kitaeru-l.jpg)no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
.route address{
	padding: 36px 0;
	padding-left: calc(22% + 30px);
	border: solid 1px #111;
	border-left: none;
	background: #fff;
	border-radius: 0px 80px 80px 0;
	position: relative;
}
.route address .title{
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 10px;
}

.route address,
.route p{
	font-size: 16px;	
}
.to-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

/* 表示されたときのスタイル */
.to-left.on {
  opacity: 1;
  transform: translateX(0);
}


#access #ac-kitaeru{
	margin-bottom: 16px;
}
#access #ac-kitaeru img{
	max-width: 185px;
	width: 100%;
	height: auto;
}
#access #ac-ikikata img{
	max-width: 180px;
	width: 100%;
	height: auto;
}
.route{
	position: relative;
}
.route #ac-ikikata{
	position: absolute;
	left: 0px;
	bottom: -6px;
}
.route .youtube-waku:after,
.route .youtube-waku:before{
	width: 1px;
	height: 25px;
	background: #111;
	position: absolute;
	transform:skewX(-45deg);
}
.route .youtube-waku:before{
	top: -5px;
	left: 5px;
}
.route .youtube-waku:after{
	bottom: -5px;
	right: 5px;
}
.mono .youtube-waku{
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
}
iframe.youtube{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#access .conte-button{
	margin-top: 50px;
}


.mono .conte-banner{
	display: flex;
	align-items:  center;
	justify-content: flex-start;
}
.mono .conte-banner li{
	flex: 1 1 auto;
	margin: 0 15px;
}
.mono #tournament{
	position: relative;
}
.mono #tournament .waku-1200{
	position: relative;
	z-index: 1;
}

.mono .hanabi{
	display: none;
	position: relative;
}
.mono .hanabi.on {
	display: block;
}
.mono .hanabi.on img{
	position: absolute;
	top: -650px;
	left: 1%;
    animation: sparkle 5s ease-in-out forwards infinite;
  animation-delay: 0.3s;
  max-width: 400px;
  width: 100%;
  height: auto;
}
.mono .hanabi.on img:nth-child(2){
	position: absolute;
	left: auto;
	right: -6%;
	top: -900px;
    animation: sparkle 5s ease-in-out forwards infinite;
  max-width: 600px;
  width: 100%;
  height: auto;
}
.mono .hanabi.on img:nth-child(3){
	position: absolute;
	left: auto;
	right: 0%;
	top: -500px;
    animation: sparkle 5s ease-in-out forwards infinite;
  animation-delay: 0.9s;
  max-width: 300px;
  width: 100%;
  height: auto;
}

@keyframes sparkle {
  0% { opacity: 0; transform: scale(0); }
  15% { opacity: 0.8; transform: scale(0);}
  30% { opacity: 0; transform: scale(1.4);}
	100% { opacity: 0; transform: scale(0); }
}


/****/
.mono .gameday-info{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 120px;
}
.mono .gameday-info .event-card,
.mono .gameday-info .game-tx{
	flex: 1 1 auto;
}
.mono .gameday-info .event-card{
	margin-left: 90px;
}
.mono .gameday-info .game-tx p{
	padding: 15px 10px;
	border-top: solid 1px #111;
	border-bottom: solid 1px #111;
	margin-bottom: 30px;
}
.mono .gameday-info .game-tx button{
	margin-left: auto;
	margin-right: auto;
	display: table;
}

.mono .gameday-info .event-card .category{
	position: relative;
	top: -2px;
}
