@charset "utf-8";

#header .wrapBox{
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
#header .boxMenu{
	opacity: 0;
}
#header .boxMenu.on{
	opacity: 1;
}
#footer{
	padding-top: 0;
}
#footer::before{
	display: none;
}
@media only screen and (max-width:767px){

}


/* ローディング */
.loader-wrap {
	position: fixed;
	display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
	background: #1a1a1a;
	z-index: 1000;
}
.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  color: #ffffff;
  font-size: 5px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

/* cmnDisabled */
.cmnDisabled{
	position: relative;
}
.cmnDisabled::before{
	content: "受付は終了しました";
	width: 100%;
	height: 100%;
	font-weight: 900;
	font-size: 40px;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	-webkit-justify-content: center;
	align-items: center;
	-webkit-align-items: center;
	color: #fff;
	background: rgba(0,0,0,0.7);
	letter-spacing: 2px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}
@media only screen and (max-width:767px){
	.cmnDisabled::before{
		font-size: 17px;
		letter-spacing: 3px;
	}
}

/*-----------------------------------------------
	index
-----------------------------------------------*/
/*secHero*/
.secHero{
	position: relative;
	background: url(../img/index/bgHero.jpg) center top / cover no-repeat;
	height: 100vh;
	min-height: 850px;
	max-height: 1000px;
}
.secHero .bgVideo{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
	z-index: 2;
	opacity: 0;
	-webkit-transition: all 0.8s ease-in;
    -moz-transition: all 0.8s ease-in;
    -ms-transition: all 0.8s ease-in;
	transition: all 0.8s ease-in;
}
.secHero .bgVideo.on{
	opacity: 1;
}
.secHero .bgVideo video{
	opacity: 0.3;
}
.secHero .wrapBox{
	position: relative;
	height: 100%;
}
.secHero .bgBox{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	align-items: center;
	-webkit-align-items: center;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	z-index: 1;
	overflow: hidden;
	-webkit-transition: all 1s ease-in;
    -moz-transition: all 1s ease-in;
    -ms-transition: all 1s ease-in;
	transition: all 1s ease-in;
	opacity: 0;
}
.secHero .bgBox.on{
	opacity: 1;
}
.secHero .BgLeft{
	width: 70%;
	height: 100%;
	overflow: hidden;
}
.secHero .BgRight{
	width: 30%;
	height: 100%;
}
.secHero .bgTop{
	height: 36.8%;
	overflow: hidden;
}
.secHero .bgBottom{
	height: 63.2%;
	overflow: hidden;
}
.secHero .imgL,
.secHero .imgB,
.secHero .imgT{
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-transform: scale(1);
	transform: scale(1);
}
.secHero .imgL{
	background-image: url(../img/index/bgMainLeft01.jpg);
}
.secHero .imgT{
	background-image: url(../img/index/bgMainTop01.jpg);
}
.secHero .imgB{
	background-image: url(../img/index/bgMainBottom01.jpg);
}

.secHero .bgBox.active .imgL.on,
.secHero .bgBox.active .imgT.on,
.secHero .bgBox.active .imgB.on{
	animation: scale 2.2s cubic-bezier(.3,.8,.4,1);
}
@keyframes scale {
	0%{
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	20%{
	  -webkit-transform: scale(1.2);
	  transform: scale(1.2);
  }
  	100%{
	  -webkit-transform: scale(1);
	  transform: scale(1)
	}
}

.secHero .imgL img{
	-webkit-clip-path: inset(0 0 0 100%);
	clip-path: inset(0 0 0 100%);
}

.secHero .bgBox.active .imgL img.on{
	z-index: 100;
	animation: slideL 1s cubic-bezier(.8,.3,.4,1) forwards;
}

@keyframes slideL {
	0%{
		-webkit-clip-path: inset(0 0 0 100%);
		clip-path: inset(0 0 0 100%);
  	}
	100%{
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
	}
}
.secHero .imgL img.ie{
	transform: translateX(100%);
}
.secHero .bgBox.active .imgL img.ie.on{
	z-index: 100;
	animation: slideLIE 1s cubic-bezier(.8,.3,.4,1)   forwards;
}
@keyframes slideLIE {
	0%{
		transform: translateX(100%);
  	}
	100%{
		transform: translateX(0);
	}
}

.secHero .imgT img{
	-webkit-clip-path: inset(100% 0 0 0);
	clip-path: inset(100% 0 0 0);
}

.secHero .bgBox.active .imgT img.on{
	z-index: 100;
	animation: slideT 1s cubic-bezier(.8,.3,.4,1)   forwards;
}

@keyframes slideT {
	0%{
		-webkit-clip-path: inset(0 0 100% 0);
		clip-path: inset(0 0 100% 0);
  	}
	100%{
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
	}
}

.secHero .imgT img.ie{
	transform: translateY(-100%);
}
.secHero .bgBox.active .imgT img.ie.on{
	z-index: 100;
	animation: slideTIE 1s cubic-bezier(.8,.3,.4,1)   forwards;
}
@keyframes slideTIE {
	0%{
		transform: translateY(-100%);
  	}
	100%{
		transform: translateY(0);
	}
}

.secHero .imgB img{
	-webkit-clip-path: inset(0 0 100% 0);
	clip-path: inset(0 0 100% 0);
}

.secHero .bgBox.active .imgB img.on{
	z-index: 100;
	animation: slideB 1s cubic-bezier(.8,.3,.4,1)   forwards;
}

@keyframes slideB {
	0%{
		-webkit-clip-path: inset(0 100% 0 0);
		clip-path: inset(0 100% 0 0);
  	}
	100%{
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
	}
}

.secHero .imgB img.ie{
	transform: translateX(-100%);
}
.secHero .bgBox.active .imgB img.ie.on{
	z-index: 100;
	animation: slideBIE 1s cubic-bezier(.8,.3,.4,1)   forwards;
}
@keyframes slideBIE {
	0%{
		transform: translateX(-100%);
  	}
	100%{
		transform: translateX(0);
	}
}

.secHero .boxContent{
	position: relative;
	z-index: 3;
	max-width: 1920px;
	height: 100%;
	margin: 0 auto;
}
.secHero .logo{
	position: absolute;
	top: 24%;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding-right: 20px;
	-webkit-transition: opacity .6s ease-in;
    -moz-transition: opacity .6s ease-in;
    -ms-transition: opacity .6s ease-in;
	transition: opacity .6s ease-in;
	opacity: 0;
	z-index: 10;
}
.secHero .logo.on{
	opacity: 1;
}
.secHero .logo img{
	max-width: 931px;
	height: auto;
}
.secHero .tit{
	position: absolute;
	top: 36%;
	left: 0;
	right: 0;
	font-size: 100px;
	line-height: 120px;
	text-shadow: 0px 2px #000;
	opacity: 0;
}
.secHero .tit.on{
	opacity: 1;
}
.secHero .boxDay{
	bottom: 6%;
	left: 0;
	right: 0;
	position: absolute;
	width: 250px;
	height: 250px;
	border: solid 1px #FFF;
	border-radius: 50%;
	margin: 0 auto;
	z-index: 1;
	-webkit-transition: opacity .5s ease-in,bottom .5s ease-in;
    -moz-transition: opacity .5s ease-in,bottom .5s ease-in;
    -ms-transition: opacity .5s ease-in,bottom .5s ease-in;
	transition: opacity .5s ease-in,bottom .5s ease-in;
	opacity: 0;
}
.secHero .boxDay.on{
	opacity: 1;
	bottom: 3%;
}
.secHero .boxDay::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 284px;
	height: 128px;
	background: center no-repeat url(../img/index/bgDays.png);
	z-index: -1;
}
.secHero .boxDay .num{
	display: block;
    padding: 20px 0 10px;
	font-size: 120px;
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 0px 2px #000;
    font-family: 'Roboto Condensed', sans-serif;
}
.secHero .boxBottom{
	position: absolute;
	bottom: -150px;
	left: 0;
	right: 0;
	max-width: 1920px;
	transition: 0.45s all cubic-bezier(0.65, 0.05, 0.36, 1);
	-webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
	opacity: 0;
}
.secHero .boxBottom.on{
	opacity: 1;
	-webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}
.secHero .boxBottom img{
	width: 100%;
	height: auto;
}
.secHero .boxImg{
	position: absolute;
    bottom: -32%;
	right: 0;
	-webkit-transition: opacity .5s ease-in,right .2s ease-in;
    -moz-transition: opacity .5s ease-in,right .2s ease-in;
    -ms-transition: opacity .5s ease-in,right .2s ease-in;
	transition: opacity .5s ease-in,right .2s ease-in;
	opacity: 0;
}
.secHero .boxImg.on{
	opacity: 1;
	right: 5%;
}
@media only screen and (max-width:1660px){
	.secHero .imgL {
		padding-top: 95%;
	}
	.secHero .imgT {
		padding-top: 82%;
	}
	.secHero .imgB {
		padding-top: 140%;
	}
	.secHero .boxImg {
		right: 0;
	}
}
@media only screen and (max-width:1500px){
	.secHero .boxBottom{
		bottom: -110px;
	}
	.secHero .boxImg {
		right: 0;
		bottom: -25%;
	}
	.secHero .boxImg img{
		width: 300px;
		height: auto;
	}
}
@media only screen and (max-width:767px){
	.secHero{
		min-height: 600px;
		height: 100vh;
		background-image: url(../img/index/bgHero_sp.jpg);
		overflow: hidden;
	}
	.secHero .bgVideo{
		bottom: 0;
	}
	.secHero .bgBox{
		display: block;
	}
	.secHero .BgLeft{
		width: 100%;
	}
	.secHero .imgL {
		height: 100%;
		padding-top: 0;
	}
	.secHero .BgRight{
		display: none;
	}
	.secHero .logo {
		width: 300px;
		padding: 0;
		top: 24%;
	}
	.secHero .logo img{
		max-width: none;
	}
	.secHero .tit{
		top: 44%;
		font-size: 40px;
		line-height: 50px;
	}
	.secHero .bnrTicket{
		width: 92%;
		margin: 0 auto 12%;
	}
	.secHero .boxDay{
		bottom: 12%;
		width: 155px;
		height: 155px;
	}
	.secHero .boxDay.on {
		bottom: 8%;
	}
	.secHero .boxDay::after{
		background-size: contain;
		background-position: bottom;
		width: 170px;
	}
	.secHero .boxDay .num{
		font-size: 70px;
		padding-bottom: 0;
	}
	.secHero .boxDay .day img{
		width: 70px;
		height: auto;
	}
	.secHero .boxBottom {
		bottom: -25px;
		left: -25%;
		right: -25%;
	}
	.secHero .boxImg {
		bottom: -25px;
		right: -140px;
		width: 140px;
	}
	.secHero .boxImg.on {
		right: 0;
	}
	.secHero .boxImg img {
		width: 100%;
	}
}

/*secContents*/
.secContents{
	position: relative;
	padding: 70px 0 96px;
}
.secContents .boxDate .txtDate{
	position: relative;
	padding-bottom: 25px;
	font-size: 60px;
	letter-spacing: 4px;
	z-index: 3;
}
.secContents .txtDate span{
	font-size: 40px;
}
.secContents .boxDate .txt{
	font-size: 30px;
	line-height: 54px;
	letter-spacing: 2px;
}
.secContents .boxDate .txt span{
	font-size: 20px;
}
.secContents .boxDate .txtNote{
	font-size: 18px;
}
.secContents .bnrTicket{
	margin-top: 45px;
}
.secContents .bnrEve{
	display: block;
	width: 1000px;
	margin: 100px auto 0;
}
.secContents .bnrEplus{
	display: inline-block;
	margin-top: 60px;
}
.secContents .boxCorona{
	width: 600px;
	margin: 100px auto 0;
	background: #fff;
	border-radius: 3px;
	overflow: hidden;
	box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.2);
}
.secContents .btnCorona{
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	flex-direction: column;
	-webkit-flex-direction: column;
	background: #ec1600;
	color: #fff;
	font-weight: 500;
	height: 100px;
	border: 1px solid #fff;
	border-radius: 3px;
	font-size: 14px;
	text-decoration: none;
}
.secContents .txtCorona01{
	font-size: 20px;
	letter-spacing: 0.5px;
	font-weight: bold;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
}
.secContents .txtCorona01::before{
	content: "";
	display: block;
	width: 24px;
	height: 28px;
	background: url(../img/notes/imgBtnCorona.gif) center top / cover no-repeat;
	margin-right: 10px;
}
.secContents .txtCorona02{
	margin-top: 10px;
	letter-spacing: 1px;
}
.secContents .txtCoronaNote{
	font-size: 14px;
	line-height: 2.14;
	margin-top: 13px;
	letter-spacing: 1px;
}
@media only screen and (max-width:767px){
	.secContents{
		padding: 0 0 50px;
	}
	.secContents .boxDate .txtDate{
		padding: 35px 0 10px;
		font-size: 22px;
		letter-spacing: 3px;
	}
	.secContents .txtDate  span{
		font-size: 14px;
	}
	.secContents .boxDate .txt{
		font-size: 18px;
		line-height: 1.45;
		letter-spacing: 1px;
	}
	.secContents .boxDate .txt span{
		font-size: 10px;
	}
	.secContents .boxDate .txtNote{
		font-size: 13px;
		margin-top: 10px;
	}
	.secContents .bnrEve{
		width: 92%;
		margin: 30px auto 0;
	}
	.secContents .bnrEplus{
		width: 92%;
		margin: 20px auto 0;
	}
	.secContents .boxCorona{
		width: 100%;
		margin-top: 15px;
	}
	.secContents .btnCorona{
		height: auto;
		font-size: 11px;
		line-height: 18px;
		flex-direction: column;
		-webkit-flex-direction: column;
		padding: 10px 7px;
	}
	.secContents .btnCorona::before{
		width: 16px;
		height: 18px;
		margin: 0 0 5px 0;
	}
	.secContents .boxCorona{
		width: 92%;
		margin-top: 25px;
	}
	.secContents .btnCorona{
		height: auto;
		font-size: 12px;
	}
	.secContents .txtCorona01{
		font-size: 13px;
		display: block;
		line-height: 1.62;
	}
	.secContents .txtCorona01::before{
		margin: 0 auto 7px;
	}
	.secContents .txtCorona02{
		margin-top: 3px;
		font-size: 11px;
		letter-spacing: 0.5px;
	}
	.secContents .txtCoronaNote{
		width: 92%;
		margin: 12px auto 0;
		text-align: left;
		font-size: 11px;
		line-height: 1.64;
		letter-spacing: 0.5px;
	}
}
@media only screen and (max-width:374px){
	.secContents .txtCorona01{
		font-size: 12.5px;
	}
}
@media only screen and (max-width:359px){
	.secContents .boxDate .txtDate{
		letter-spacing: 1px;
	}
}

/* secCancel */
.secCancel{
	width: 1000px;
	margin: 60px auto 0;
	border: 1px solid #fff;
	padding: 50px 50px 75px;
}
.secCancel .tit{
	font-size: 24px;
	line-height: 1.67;
	color: #fff;
	font-weight: bold;
}
.secCancel .txt{
	font-size: 13px;
	line-height: 1.85;
	text-align: left;
	margin-top: 15px;
}
.secCancel .txt + .txt{
	margin-top: 25px;
	text-align: right;
}
.secCancel .boxLink{
	margin-top: 23px;
}
.secCancel .txtLink{
	color: #fff600;
	font-weight: 900;
	font-size: 24px;
	text-decoration: none;
	border-bottom: 1px solid #fff600;
	padding-bottom: 7px;
}
@media only screen and (max-width:767px){
	.secCancel{
		width: 92%;
		margin-top: 30px;
		padding: 15px 15px 30px;
	}
	.secCancel .tit{
		font-size: 17px;
		line-height: 1.64;
	}
	.secCancel .txt{
		font-size: 12px;
		line-height: 1.64;
		margin-top: 10px;
	}
	.secCancel .txt + .txt,
	.secCancel .boxLink{
		margin-top: 15px;
	}
	.secCancel .txtLink{
		font-size: 15px;
		padding-bottom: 3px;
	}
}

/* secCorona */
.secCorona{
	width: 900px;
	margin: 51px auto 0;
	border: 1px solid #fff;
}
.secCorona .tit{
	font-size: 15px;
	line-height: 1.74;
	letter-spacing: 1px;
	text-align: center;
	font-weight: bold;
	padding: 23px;
	border-bottom: 1px solid #fff;
}
.secCorona .boxTxt{
	padding: 27px 40px;
}
.secCorona .txt01,
.secCorona .txt02{
	font-size: 12px;
	line-height: 2.17;
	text-align: left;
}
.secCorona .txt02{
	margin-top: 15px;
	letter-spacing: 1px;
	text-align: right;
}
@media only screen and (max-width:767px){
	.secCorona{
		width: 92%;
		margin-top: 30px;
	}
	.secCorona .tit{
		font-size: 13px;
		line-height: 1.62;
		letter-spacing: 0;
		padding: 13px 5px;
	}
	.secCorona .boxTxt{
		padding: 15px;
	}
	.secCorona .txt01,
	.secCorona .txt02{
		font-size: 11px;
		line-height: 1.64;
	}
	.secCorona .txt02{
		margin-top: 17px;
		letter-spacing: 0.5px;
		font-size: 11px;
	}
}
@media only screen and (max-width:359px){
	.secCorona .tit{
		font-size: 11px;
	}
}

/* secNote */
.secNote{
	width: 900px;
	margin: 41px auto 0;
	border: 1px solid #fff;
	text-align: left;
}
.secNote .boxHead{
	padding: 22px 20px 29px;
	border-bottom: 1px solid #fff;
}
.secNote .boxBody{
	padding: 22px 20px 32px;
}
.secNote .txtHead01{
	font-size: 14px;
	line-height: 23px;
	font-weight: bold;
	color: #fff600;
}
.secNote .txtHead02{
	font-size: 13px;
	margin-top: 5px;
}
.secNote .titBody{
	font-size: 13px;
	font-weight: bold;
}
.secNote .titBody + .txtBody{
	margin-top: 10px;
}
.secNote .txtBody{
	font-size: 13px;
	line-height: 21px;
}
.secNote .txtBody + .txtBody{
	margin-top: 10px;
}
.secNote .txtBody.clrBlack{
	color: #000;
}
.secNote .fYellow{
	color: #fff600;
	text-decoration: underline double;
}
@media only screen and (max-width:767px){
	.secNote{
		width: 92%;
		margin-top: 25px;
	}
	.secNote .tit{
		font-size: 13px;
		line-height: 1.62;
		letter-spacing: 0;
		padding: 13px 5px;
	}
	.secNote .boxHead,
	.secNote .boxBody{
		padding: 15px;
	}
	.secNote .txtHead01{
		font-size: 12px;
		line-height: 1.64;
	}
	.secNote .txtHead02{
		font-size: 11px;
		line-height: 1.64;
		margin-top: 8px;
	}
	.secNote .titBody{
		font-size: 12px;
	}
	.secNote .txtBody{
		font-size: 11px;
		line-height: 1.64;
	}
	.secNote .txtBody + .txtBody{
		margin-top: 5px;
	}
}
@media only screen and (max-width:359px){
	.secNote .tit{
		font-size: 11px;
	}
}

/* secTicket */
.secContents .secTicket{
    display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin: 0 auto;
	padding: 102px 0 0;
}
.secTicket .boxTicket01,
.secTicket .boxTicket02{
	position: relative;
	display: flex;
	display: -webkit-flex;
	width: 48%;
}
.secTicket .boxTit{
    position: absolute;
    top: -5%;
    left: 4%;
	z-index: 1;
	display: inline-block;
	padding: 3px 5px;
	background: #000;
    font-size: 40px;
    letter-spacing: 3px;
    line-height: 1;
	z-index: 100;
}
.secTicket .wrapBox{
	border: solid 5px #FFF;
	overflow: hidden;
	width: 100%;
}
.secTicket .boxTicket01 .bgImg,
.secTicket .boxTicket02 .bgImg {
	position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 60px 0 35px;
    box-sizing: border-box;
    color: #FFFFFF;
    text-decoration: none;
}
.secTicket .boxTicket01 .bgImg:after,
.secTicket .boxTicket02 .bgImg:after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -ms-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
.secTicket .boxTicket01 .bgImg:after {
    background: url(../img/index/bgTicket01.jpg) no-repeat center center / cover;
}
.secTicket .boxTicket02 .bgImg:after {
    background: url(../img/index/bgTicket02.jpg) no-repeat center center / cover;
}
.secTicket .inner{
	position: relative;
	z-index: 1;
}

.secTicket .boxPriceMain {
    display: inline-block;
    text-align: left;
	margin-bottom:40px;
}
.secTicket .boxPrice {
	display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
}
.secTicket .boxPrice + .boxPrice{
	margin-top:15px;
}
.secTicket .priceTit{
	font-size:24px;
	border:1px solid #fff;
	padding:20px 12px;
	font-weight:bold;
	min-width:142px;
	text-align:center;
}
.secTicket .priceTxt{
	font-size:50px;
	font-weight:bold;
	line-height:50px;
	letter-spacing:1.5px;
	padding-left:12px;
}
.secTicket .priceTxt span{
	font-size:22px;
}
.secTicket .bottomPrice{
	text-align:right;
	color:#fff600;
	font-size:18px;
	line-height:20px;
	font-weight:bold;
}
.secTicket .boxDate .tit{
	width: 150px;
	height: 60px;
	border: 1px solid #fff;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	font-size: 28px;
	letter-spacing: 1px;
	margin: 0 auto;
}
.secTicket .date{
	display: inline-block;
	margin: 25px 0 20px;
    padding: 0px 8px 3px;
    font-size: 40px;
	line-height: 1.2;
	letter-spacing: 2px;
	background: #000;
}
.secTicket .date.fix{
	letter-spacing: 2px;
}
.secTicket .date span {
	font-size: 23px;
}
.secTicket .txtWait{
	margin: -5px 0 10px;
	font-size: 18px;
	line-height: 1.56;
	letter-spacing: -0.5px;
	text-align: center;
	color: #ff9e01;
	font-weight: 500;
}
.secTicket .note{
	width: 580px;
	max-width: calc(100% - 40px);
	margin: 0 auto;
	text-align: left;
	font-size: 18px;
	line-height: 1.56;
	letter-spacing: -0.5px;
	font-weight: normal;
}
.secTicket .btn{
	display: block;
	width: 320px;
	height: 70px;
	border: solid 1px #FFFFFF;
	margin: 70px auto 0;
	text-align: center;
	font-size: 30px;
	line-height: 68px;
	color: #FFFFFF;
	text-decoration: none;
	text-shadow: 0px 2px #000;
	z-index: 10;
}
@media only screen and (max-width:1600px){
	.secTicket .date{
		font-size: 32px;
	}
}
@media only screen and (max-width:1500px){
	.secTicket .boxTit{
		font-size: 32px;
	}
}
@media only screen and (max-width:1300px){
	.secTicket .date{
		font-size: 30px;
	}
}
@media only screen and (max-width:767px){
	.secContents .secTicket{
		display: block;
		padding: 50px 0 0;
	}
	.secTicket .boxTicket01,
	.secTicket .boxTicket02{
		width: 100%;
	}
	.secTicket .boxTicket02{
		margin-top: 35px;
	}
	.secTicket .boxTit{
		font-size: 17px;
	}
	.secTicket .wrapBox{
		border: solid 3px #FFF;
	}
	.secTicket .boxTicket01 .bgImg,
	.secTicket .boxTicket02 .bgImg{
		padding: 30px 0 20px;
	}
	.secTicket .boxPriceMain {
		width: 90%;
		margin-bottom: 25px;
	}
	.secTicket .boxPrice{
		text-align: right;
	}
	.secTicket .priceTit{
		min-width: inherit;
		width: 30%;
		font-size: 15px;
		padding: 20px 0;
	}
	.secTicket .priceTxt{
		width: calc(100% - 30% - 5px);
		font-size: 27px;
		line-height: 1.8;
		letter-spacing: 0.5px;
		padding-left: 5px;
	}
	.secTicket .priceTxt span {
		font-size: 15px;
	}
	.secTicket .boxDate .tit{
		width: 100px;
		height: 30px;
		font-size: 15px;
		letter-spacing: 0.5px;
	}
	.secTicket .date{
		margin: 10px 0 15px;
		padding: 3px 5px;
		font-size: 18px;
		font-weight: bold;
		line-height: 1;
		letter-spacing: 1px;
	}
	.secTicket .date span {
		font-size: 14px;
	}
	.secTicket .txtWait{
		font-size: 13px;
		margin: -8px 0 8px;
	}
	.secTicket .note{
		font-size: 11px;
		font-weight: bold;
	}
	.secTicket .btn {
		width: 190px;
		height: 45px;
		margin-top: 25px;
		font-size: 18px;
		line-height: 43px;
	}
}


/*secTicketBox*/
.secContents .secTicketBox{
    display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin: 0 auto;
	padding: 60px 0 0;
}
.secTicketBox .boxTicket01In,
.secTicketBox .boxTicket02In{
	width: 48%;
}
.secTicketBox .boxTicket01In img,
.secTicketBox .boxTicket02In img{
	width: 100%;
	height: auto;
}
@media only screen and (max-width:767px){
	.secContents .secTicketBox{
		display: block;
		padding: 30px 0 0;
	}
	.secTicketBox .boxTicket01In,
	.secTicketBox .boxTicket02In{
		width: 100%;
	}
	.secTicketBox .boxTicket02In{
		padding-top: 20px;
	}
}
/*secEPlus */
.secContents .secEPlus{
	width: 1000px;
	margin: 100px auto 0;
	background: #000;
}
.secContents .secEplus .bnrEPlus{
	display: block;
}
@media only screen and (max-width:767px){
	.secContents .secEPlus{
		width: 92%;
		margin-top: 20px;
	}
}
/*secJTB*/
.secContents .secJTB{
	width: 1000px;
	margin: 100px auto 0;
	background: #000;
}
@media only screen and (max-width:767px){
	.secContents .secJTB{
		width: 92%;
		margin-top: 20px;
	}
}
/*secTicketBox*/
.secContents .secShuttleBus{
    display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin: 0 auto;
	padding: 90px 0 0;
}
.secShuttleBus .boxBus01,
.secShuttleBus .boxBus02{
	width: 48.125%;
	background: #000;
}
.secShuttleBus .boxBus01 img,
.secShuttleBus .boxBus02 img{
	width: 100%;
	height: auto;
}
@media only screen and (max-width:767px){
	.secContents .secShuttleBus{
		display: block;
		padding: 20px 0 0;
	}
	.secShuttleBus .boxBus01,
	.secShuttleBus .boxBus02{
		width: 100%;
	}
	.secShuttleBus .boxBus02{
		margin-top: 20px;
	}
}
/*secTerume */
.secContents .secTerume{
	width: 1000px;
	margin: 100px auto 0;
	background: #000;
}
.secContents .secTerume .bnrTerume{
	display: block;
}
@media only screen and (max-width:767px){
	.secContents .secTerume{
		width: 92%;
		margin-top: 20px;
	}
}
/*secSatanic */
.secContents .secSatanic{
	width: 1000px;
	margin: 100px auto 0;
	background: #000;
}
.secContents .secSatanic .bnrSatanic{
	display: block;
}
@media only screen and (max-width:767px){
	.secContents .secSatanic{
		width: 92%;
		margin-top: 20px;
	}
}
/*secLink*/
.secLink{
	position: relative;
	z-index: 0;
	background: #000;
	overflow: hidden;
}
.secLink .bgVideo{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.secLink .linkList{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 100px 0 150px;
}
.secLink .linkList li{
	width: 33.3%;
	overflow: hidden;
	background: #000;
}
.secLink .linkList .item{
	position: relative;
	display: block;
	text-decoration: none;
}
.secLink .linkList .item::after{
	position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
	bottom: 0;
	transform: scale(1);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}
.secLink .linkList .artist::after{background: center / cover no-repeat url(../img/index/bgLink01.jpg?210415);}
.secLink .linkList .timetable::after{background: center / cover no-repeat url(../img/index/bgLink02.jpg?210513);}
.secLink .linkList .ticket::after{background: center / cover no-repeat url(../img/index/bgLink03.jpg?210415);}
.secLink .linkList .floor::after{background: center / cover no-repeat url(../img/index/bgLink04.jpg);}
.secLink .linkList .access::after{background: center / cover no-repeat url(../img/index/bgLink05.jpg?210415);}
.secLink .linkList .goods::after{background: center / cover no-repeat url(../img/index/bgLink06.jpg);}

.secLink .linkList .item:hover:after{
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.secLink .linkList .wrapBox{
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	padding: 142px 0;
}
.secLink .linkList .titCmn{
	padding-top: 30px;
	font-size: 20px;
	letter-spacing: 1px;
	color: #FFF;
	text-decoration: none;
}
.secLink .linkList .txtCmn{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	align-items: center;
	-webkit-align-items: center;
}
.secLink .linkList .item.none:hover::after{
    opacity: 1;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.secLink .linkList .item.none .wrapBox::before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0,0,0,0.8);
	z-index: 10;
}
.secLink .linkList .item.none .wrapBox::after{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: url(../img/index/txtCommingSoon.png) no-repeat center;
	z-index: 11;
}
@media only screen and (max-width:767px){
	.secLink .bgVideo{
		display: none;
	}
	.secLink{
		background: #ec6800;
	}
	.secLink .linkList{
		padding: 0;
		width: 100%;
	}
	.secLink .linkList li{
		width: 49.8%;
		margin-bottom: 1px;
	}
	.secLink .linkList .wrapBox{
		padding: 45px 0;
	}
	.secLink .linkList .titSubCmn img{
		height: 20px;
		width: auto;
	}
	.secLink .linkList .titCmn {
		padding-top: 10px;
		font-size: 10px;
	}
	.secLink .linkList .txtCmn{
		top: 23px;
		bottom: 23px;
	}
	.secLink .linkList .txtCmn img{
		height: 100%;
		width: auto;
	}
	.secLink .linkList .item.none .wrapBox::after{
		background-size: auto 37px;
	}
}

/*secSns*/
.secSns{
	position: relative;
	background: center bottom / cover no-repeat url(../img/index/bgSns.gif);
}
.secSns .wrapBox{
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	z-index: 1;
}
.secSns .boxLeft{
	position: relative;
	width: 57.5%;
	padding: 140px 0;
}
.secSns .boxRight{
	position: relative;
	width: 37.5%;
	padding: 140px 0;
}
.secSns .boxTit{
    position: absolute;
    top: 60px;
    left: -50px;
    width: 275px;
    height: 125px;
    padding-top: 40px;
}
.secSns .boxLeft .boxTit{
	background-image: url(../img/index/bgMovie.png);
}
.secSns .boxRight .boxTit{
	background-image: url(../img/index/bgTopics.png);
}
.secSns .movie{
	position: relative;
	width: 100%;
	padding-top: 62.5%;
}
.secSns .movie iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.secSns .snsList{
	display: -webkit-flex;
	display: flex;
	padding-top: 6%;
}
.secSns .snsList li{
	position: relative;
	width: 25%;
	padding-top: 25%;
}
.secSns .tw{background: #1DA1F1;}
.secSns .fb{background: #1777F1;}
.secSns .insta{background: #FFFFFF;}
.secSns .line{background: #01B901;}
.secSns .snsList li a{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	align-items: center;
	-webkit-align-items: center;
	
}
.secSns .boxTwitter{
	position: relative;
	width: 100%;
	padding-top: 143%;
	background: #FFF;
}
.secSns .boxTwitter .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	padding: 0 0 70px;
}
.secSns .boxTwitter iframe {
    width: 100% !important;
    height: 100% !important;
}
.secSns .btnFollow{
	position: absolute;
    bottom: 0;
    left: 0;
	display: block;
	width: 100%;
	height: 70px;
	background: #57ACED;
	font-size: 16px;
	color: #FFFFFF;
	text-align: center;
	line-height: 70px;
	letter-spacing: 1px;
	text-decoration: none;
}
.secSns .btnFollow::before{
    content: "";
    display: inline-block;
    background-image: url(../img/index/icoTwitter.png);
    background-size: 20px 16px;
    background-position: center;
    background-repeat: no-repeat;
    width: 20px;
	height: 16px;
	vertical-align: middle;
}


/*YouTubeなしの場合*/
.secSns .wrapBox{
	display: block;
	width: 1000px;
	margin: 0 auto;
}
.secSns .boxRight{
	width: 750px;
	margin: 0 auto;
	padding-bottom: 0;
}
.secSns .boxTwitter{
	padding: 0;
}
.secSns .boxTwitter .inner{
	position: relative;
}
.secSns .boxTwitter iframe{
	height:660px !important;
}
.secSns .boxSns{
	width: 920px;
	margin: 0 auto;
	padding-bottom: 70px;
}
.secSns{
	position: relative;
}
.secSns.lazyloaded::before,
.secSns.lazyloaded::after{
	content: "";
	width: calc((424 / 1920) * 100vw);
	height: calc((318 / 1920) * 100vw);
	min-width: 291px;
	min-height: 218px;
	background: url(../img/index/imgBnr.png) center top / cover no-repeat;
    position: absolute;
	top: calc(100% - 15.1vw);
	z-index: 100;
}
.secSns.lazyloaded::before{
    left: 20px;
}
.secSns.lazyloaded::after{
	right: 20px;
}
@media only screen and (max-width:1800px){
	.secSns.lazyloaded::before,
	.secSns.lazyloaded::after{
		width: calc((424 / 1920) * 50vw);
		height: calc((318 / 1920) * 50vw);
		top: calc(100% - 11.3vw);
	}
}
@media only screen and (max-width:1580px){
	.secSns.lazyloaded::before,
	.secSns.lazyloaded::after{
		top: calc(100% - 3.78vw);
	}
}
@media only screen and (max-width:1320px){
	.secSns.lazyloaded::before,
	.secSns.lazyloaded::after{
		top: calc(100% - 70px);
	}
}
@media only screen and (max-width:767px){
	.secSns{
		padding-bottom: 50px;
		background-position: left bottom;
		background-image: url(../img/index/bgSns_sp.gif);
	}
	.secSns .wrapBox{
		z-index: auto;
	}
	.secSns.lazyloaded::before{
		width: 185px;
		height: 139px;
		min-width: auto;
		min-height: auto;
		top: calc(100% - 80px);
		left: calc(50% - 92.5px);
	}
	.secSns.lazyloaded::after{
		display: none;
	}
	.secSns::after{
		background-size: contain;
	}
	.secSns .wrapBox{
		display: block;
	}
	.secSns .boxLeft,
	.secSns .boxRight{
		width: 100%;
		padding: 80px 0 0;
	}
	.secSns .boxTit{
		width: 150px;
		height: 70px;
		top: 35px;
		left: -45px;	
		background-size: contain;
		background-repeat: no-repeat;
		padding-top: 20px;
	}
	.secSns .boxTit img{
		height: 16px;
		width: auto;
	}
	.secSns .boxTwitter {
		padding: 0;
	}
	.secSns .boxTwitter .inner {
		position: relative;
		padding: 0;
	}
	.secSns .boxTwitter iframe {
		height: 475px !important;
	}
	.secSns .btnFollow {
		position: relative;
		height: 65px;
		font-size: 12px;
		line-height: 65px;
	}
	.secSns .snsList{
		padding-top: 8%;
	}
	.secSns .snsList li{
		z-index: 1000;
	}
	.secSns .snsList li img{
		width: 36px;
		height: auto;
	}
	.secSns .snsList .line img{
		width: 46px;
	}
	/*YouTubeなしの場合*/
	.secSns .wrapBox{
		width: 92%;
	}
	.secSns .boxSns{
		width: 100%;
		padding-bottom: 0;
		position: relative;
		z-index: 1000;
	}
}

/*secBnr*/
.secBnr .bnrList{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	padding-top: 100px;
}
.secBnr .bnrList li{
	width: 24%;
	max-width: calc(340px + 2%);
	padding: 0 1%;
}
.secBnr .bnrList li:only-child{
	padding: 0;
	width: 340px;
}
.secBnr .bnrList li a{
	display: block;
	text-decoration: none;
}
.secBnr .bnrList li .boxImg{
	position: relative;
	width: 100%;
	max-width: 340px;
	padding-top: 48%;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.secBnr .bnrList li .boxImg .wrapImg{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: center;
	background-size: cover;
	transform: scale(1);
    transition: transform 0.3s ease;
}
.secBnr .bnrList li a:hover .wrapImg{transform: scale(1.1);}
.secBnr .bnrList li .boxImg img{
	width: 100%;
	height: auto;
}
.secBnr .bnrList .txt{
	padding-top: 25px;
	font-size: 17px;
	letter-spacing: 1px;
	color: #FFF;
}
@media only screen and (max-width:767px){
	.secBnr .wrapBox{
		width: 96%;
		margin: 0 auto;
	}
	.secBnr .bnrList{
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		padding-top: 80px;
	}
	.secBnr .bnrList li{
		width: 50%;
		padding: 0;
		max-width: none;
	}
	/* .secBnr .bnrList li:last-child{
		padding-top: 15px;
	} */
	.secBnr .bnrList li .boxImg{
		width: 92%;
		max-width: 166px;
		margin: 0 auto;
		padding-top: 0;
		border-radius: 0;
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
		border-bottom-left-radius: 10px;
	}
	.secBnr .bnrList li .boxImg .wrapImg{
		position: static;
	}
	.secBnr .bnrList .txt{
		padding-top: 10px;
		font-size: 12px;
		letter-spacing: 0px;
		line-height: 20px;
	}
	.secBnr .img{
		width: 95px;
		height: auto;
		top: auto;
		bottom: -145px;
		/*バナー増えたら*/
		/* bottom: -85px; */
		left: -40px;
	}
}
/*secSponsor*/
.secSponsor .cmnTitBox{
	padding: 100px 0 0;
}
.secSponsor .sponsorList{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.secSponsor .sponsorList li{
	width: 300px;
	margin-right: 25px;
	padding: 0.75% 0;
}
.secSponsor .sponsorList li:last-child{
	margin-right: 0;
}
.secSponsor .sponsorList .item{
	display: block;
	width: 100%;
	padding-top: 50%;
}
@media only screen and (max-width:767px){
	.secSponsor{
		padding: 0;
	}
	.secSponsor .cmnTitBox{
		padding: 50px 0 0;
	}
	.secSponsor .sponsorList{
		justify-content: flex-start;
		-webkit-justify-content: flex-start;
		max-width: 313px;
	}
	.secSponsor .sponsorList::after{
		display: none;
	}
	.secSponsor .sponsorList li{
		width: 48%;
		margin-right: 4%;
		padding: 0 0 3%;
	}
	.secSponsor .sponsorList li:nth-child(2n){
		margin-right: 0;
	}
}

/* secImg */
.secImg li{
	margin-top: 50px;
}
@media only screen and (max-width:767px){
	.secImg{
		width: 92%;
		margin: 0 auto;
	}
	.secImg li{
		margin-top: 25px;
	}
}


/*アニメーション*/
.txtSlide {
    position: relative;
    display: inline-block;
    z-index: 2;
}
.txtSlide::after {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    animation: titAnimation .2s cubic-bezier(0,.94,.72,.93) .3s forwards;
    z-index: -1;
}
.boxTicket01 .boxTit::after,
.boxTicket01 .date::after {
    background: #00a0e9;
}
.boxTicket02 .boxTit::after,
.boxTicket02 .date::after {
    background: #ff9e01;
}

@keyframes titAnimation {
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
	}
}

@keyframes titMainAnimation {
	0%{
		width: 0%;
	}
	100%{
		width: 90%;
	}
}
