/*下層ヘッダー*/
#header h1{
	opacity: 1;
	visibility: visible;
}

#countTimer{
	display: none;
}

/*下層見出し*/
#underHead{
	width: 100%;
	height: 200px;
	background-image: url("../img/news/pagebg.jpg");
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

#underHead .underTit{
	color: #fff;
	font-size: 60px;
	letter-spacing: 0.03em;
	font-weight: 700;
	margin-bottom: 1px;
	font-family: 'Barlow Semi Condensed', sans-serif;
}

#underHead .underTitJp{
	color: #fff;
	font-size: 16px;
	letter-spacing: 0.08em;
	font-weight: 700;
	margin-bottom: 0;
}
@media ( max-width : 640px ) {
#underHead{
	height: 142px;
	background-image: url("../img/news/pagebg_sp.jpg");
}

#underHead .underTit{
	font-size: 42px;
	margin-bottom: 1px;
}

#underHead .underTitJp{
	font-size: 14px;
	letter-spacing: 0.07em;
}
}
@media ( max-width : 400px ) {
#underHead{
	height: calc(100vw * 142 / 414);
}

#underHead .underTit{
	font-size: calc(100vw * 42 / 414);
	margin-bottom: calc(100vw * 1 / 414);
}

#underHead .underTitJp{
	font-size: calc(100vw * 14 / 414);
}
}



/*ニュース*/
#news{
	background-color: #f5f5f5;
	padding: 60px 30px;
}
#news::before{
	content: none;
}
#news .newsWrap{
	background: none;
	box-shadow: none;
	padding: 0;
}

#news .newsWrap ul {
	max-width: 850px;
	margin: 0 auto;
}
@media ( max-width : 740px ) {
#news{
	padding: 40px 30px;
}
}
@media ( max-width : 400px ) {
#news{
	padding: calc(100vw * 40 / 414) calc(100vw * 14 / 414);
}
}

/*ニュース個別*/
#newsSingle{
	background-color: #f5f5f5;
	width: 100%;
	padding: 60px 19px 70px;
}
#newsSingle .newsWrap{
	background-color: #fff;
	width: 100%;
	padding: 55px 100px 38px;
	max-width: 900px;
	margin: 0 auto 25px;
}
#newsSingle .newsWrap .newsTit{
	font-size: 21px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 27px;
	word-break: break-all;
	margin-bottom: 18px;
}
.underLine{
	display: block;
	position: relative;
	margin-bottom: 27px;
}
.underLine::before,
.underLine::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	background: #f5f5f5;
	display: block;
	width: 100%;
	height: 5px;
	z-index: 1;
	transform-origin: left center;
}
.underLine::after{
	background: linear-gradient(90deg, rgba(96, 76, 248, 1) 0%, rgba(9, 131, 216, 1) 53.09%, rgba(0, 184, 165, 1) 100%);
	z-index: 2;
	transform: scale(0, 1);
	transition: transform 0.75s cubic-bezier(0.86, 0, 0.07, 1) 0.5s;
	will-change: transform, filter;
}
.underLine::after{
animation-name:underLineAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
  animation-delay: 0.5s;
}

@keyframes underLineAnime{
  from {
	  transform: scale(0, 1);
  }

  to {
	  transform: scale(1, 1);
  }
}

#newsSingle .newsWrap .date{
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	margin-bottom: 20px;
	text-align: right;
	font-family: 'Barlow Semi Condensed', sans-serif;
}

#newsSingle .newsWrap .newsTxt{
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.06em;
	margin-bottom: 0px;
	line-height: 26px;
	margin-bottom: 22px;
}

#newsSingle .newsWrap .img-double{
	display: flex;
	gap:12px 20px;
	margin-bottom: 22px;
}

#newsSingle .newsWrap .img-double img{
	width: calc(50% - 10px);
}

@media ( max-width : 740px ) {
#newsSingle{
	padding: 39px 19px 47px;
}
#newsSingle .newsWrap{
	padding: 36px 18px 38px;
	margin: 0 auto 20px;
}
#newsSingle .newsWrap .newsTit{
	font-size: 19px;
	letter-spacing: 0.05em;
	line-height: 25px;
	margin-bottom: 16px;
}
.underLine{
	margin-bottom: 20px;
}

#newsSingle .newsWrap .date{
	font-size: 12px;
	margin-bottom: 20px;
}

#newsSingle .newsWrap .newsTxt{
	font-size: 14px;
	letter-spacing: 0.03em;
	line-height: 25px;
	margin-bottom: 20px;
}

#newsSingle .newsWrap .img-double{
	flex-wrap: wrap;
	margin-bottom: 20px;
}

#newsSingle .newsWrap .img-double img{
	width: calc(100%);
}
}
@media ( max-width : 400px ) {
#newsSingle{
	padding: calc(100vw * 39 / 414) calc(100vw * 19 / 414) calc(100vw * 47 / 414);
}
#newsSingle .newsWrap{
	padding: calc(100vw * 36 / 414) calc(100vw * 18 / 414) calc(100vw * 38 / 414);
	margin: 0 auto calc(100vw * 20 / 414);
}
#newsSingle .newsWrap .newsTit{
	font-size: calc(100vw * 19 / 414);
	line-height: calc(100vw * 25 / 414);
	margin-bottom: calc(100vw * 16 / 414);
}
#newsSingle .newsWrap .underLine{
	margin-bottom: calc(100vw * 20 / 414);
}

#newsSingle .newsWrap .date{
	font-size: calc(100vw * 12 / 414);
	margin-bottom: calc(100vw * 20 / 414);
}

#newsSingle .newsWrap .newsTxt{
	font-size: calc(100vw * 14 / 414);
	line-height: calc(100vw * 25 / 414);
	margin-bottom: calc(100vw * 20 / 414);
}

#newsSingle .newsWrap .img-double{
	margin-bottom: calc(100vw * 20 / 414);
}
.underLine::before,
.underLine::after{
	height: calc(100vw * 5 / 414);
}
}



/*ABOUT*/
#localNav{
	width: 100%;
	background-color: #000000;
}
#localNav ul{
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}
#localNav ul a{
  width: 200px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 20px;
  transition: .3s;
  margin-left: -1px;
	font-family: 'Barlow Semi Condensed', sans-serif;
	color: #fff;
}
#localNav ul a::before {
  content: "";
  width: 1px;
  height: 60px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
  background-color: #fff;
  position: absolute;
  transition: .3s;
  z-index: 0;
}

#localNav ul a:last-child::after {
  content: "";
  width: 1px;
  height: 60px;
  top: 0;
  bottom: 0;
  right: 0px;
  margin: auto;
  pointer-events: none;
  background-color: #fff;
  position: absolute;
  z-index: 0;
}
#localNav ul li {
  font-weight: 600;
}

@media (min-width: 740px){
#localNav ul a:hover {
  background-color: #fff;
	color: #000;
}
}

@media (max-width: 740px){
#localNav ul a {
  width: 50%;
  height: 52px;
  margin-left: 0;
}
#localNav ul a::before {
  content: none;
}

#localNav ul a:last-child::after {
	height: 52px;
	left: 0px;
	right: auto;
}
}

#aboutUnder{
	width: 100%;
	background-color: #f5f5f5;
	padding: 60px 19px 70px;
}

#aboutUnder .aboutWrap{
	width: 100%;
	max-width: 900px;
	background-color: #fff;
	margin: 0 auto;
	padding: 63px 17px 63px;
}

#aboutUnder .aboutWrap .aboutOne{
	width: 100%;
	max-width: 700px;
	margin: 0 auto 24px;
}

#aboutUnder .aboutWrap .aboutOne:last-of-type{
	margin: 0 auto;
}

#aboutUnder .aboutWrap .aboutOne h4{
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.09em;
	margin-bottom: 8px;
}

#aboutUnder .aboutWrap .aboutOne .txt{
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 20px;
	margin-bottom: 0;
}

#aboutUnder .aboutWrap .aboutOne .txtSmall{
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 16px;
	margin-bottom: 0;
	margin-top: 9px;
}

#aboutUnder .aboutWrap .aboutOne .txtSmall span{
	position: relative;
	padding-left: 13px;
	display: block;
}

#aboutUnder .aboutWrap .aboutOne .txtSmall span::before{
	content: "※";
	position: absolute;
	left: 0;
}

#aboutUnder .underLine{
  margin-bottom: 14px;
}

#aboutUnder .underLine::before,
#aboutUnder .underLine::after {
  height: 2px;
}

#aboutUnder .aboutWrap .aboutOne:nth-of-type(2) .underLine::after{
	animation-delay: .54s;
}

#aboutUnder .aboutWrap .aboutOne:nth-of-type(3) .underLine::after{
	animation-delay: .58s;
}

#aboutUnder .aboutWrap .aboutOne:nth-of-type(4) .underLine::after{
	animation-delay: .62s;
}

#aboutUnder .aboutWrap .aboutOne:nth-of-type(5) .underLine::after{
	animation-delay: .66s;
}

#aboutUnder .aboutWrap .aboutOne:nth-of-type(6) .underLine::after{
	animation-delay: .7s;
}

#aboutUnder .aboutWrap .aboutOne:nth-of-type(7) .underLine::after{
	animation-delay: .74s;
}

#aboutUnder .aboutWrap .aboutOne:nth-of-type(8) .underLine::after{
	animation-delay: .78s;
}

#aboutUnder .aboutWrap .aboutOne:nth-of-type(9) .underLine::after{
	animation-delay: .82s;
}

#aboutUnder .linkBtn {
  font-size: 12px;
  width: 200px;
  height: 30px;
  margin: 8px auto 0;
}

#aboutUnder .linkBtn::after {
  width: 5px;
  height: 7px;
  right: 15px;
}
@media ( max-width : 740px ) {
#aboutUnder{
	padding: 39px 19px 39px;
}

#aboutUnder .aboutWrap{
	padding: 36px 17px 36px;
}

#aboutUnder .aboutWrap .aboutOne{
	margin: 0 auto 28px;
}

#aboutUnder .aboutWrap .aboutOne h4{
	font-size: 19px;
	letter-spacing: 0.05em;
	margin-bottom: 9px;
}

#aboutUnder .aboutWrap .aboutOne .txt{
	letter-spacing: 0.06em;
}

#aboutUnder .aboutWrap .aboutOne .txtSmall{
	font-size: 12px;
	margin-top: 11px;
}

#aboutUnder .underLine{
  margin-bottom: 17px;
}

#aboutUnder .linkBtn {
  font-size: 15px;
  width: 226px;
  height: 39px;
  margin: 15px auto 0;
}

#aboutUnder .linkBtn::after {
  width: 9px;
  height: 11px;
}
}

@media ( max-width : 400px ) {
#aboutUnder{
	padding: calc(100vw * 39 / 414) calc(100vw * 19 / 414) calc(100vw * 39 / 414);
}

#aboutUnder .aboutWrap{
	padding: calc(100vw * 36 / 414) calc(100vw * 17 / 414) calc(100vw * 36 / 414);
}

#aboutUnder .aboutWrap .aboutOne{
	margin: 0 auto calc(100vw * 28 / 414);
}

#aboutUnder .aboutWrap .aboutOne h4{
	font-size: calc(100vw * 19 / 414);
	margin-bottom: calc(100vw * 9 / 414);
}

#aboutUnder .aboutWrap .aboutOne .txtSmall{
	font-size: calc(100vw * 12 / 414);
	margin-top: calc(100vw * 11 / 414);
}

#aboutUnder .underLine{
  margin-bottom: calc(100vw * 17 / 414);
}

#aboutUnder .linkBtn {
  font-size: calc(100vw * 15 / 414);
  width: calc(100vw * 226 / 414);
  height: calc(100vw * 39 / 414);
  margin: calc(100vw * 15 / 414) auto 0;
}

#aboutUnder .linkBtn::after {
  width: calc(100vw * 9 / 414);
  height: calc(100vw * 11 / 414);
}
}




/*メッセージ*/
#message{
	width: 100%;
	background-color: #f5f5f5;
	padding: 60px 19px 70px;
}

#message .messageWrap{
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

#message .tabs__menu {
  display: flex;
	gap:0 10px;
}

#message .tabs__menu-item {
  width: calc( 100% / 2 - 5px);
  font-size: 18px;
  font-weight: 700;
	letter-spacing: 0.09em;
  color: #fff;
  background: #c7c7c7;
  cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
}
#message .tabs__menu-item.is-active {
    background: linear-gradient(90deg, rgba(96, 76, 248, 1) 0%, rgba(9, 131, 216, 1) 53.09%, rgba(0, 184, 165, 1) 100%);
    cursor: default;
}

#message .tabs__body {
  display: none;
}
#message .tabs__body.is-active {
    display: block;
}

#message .tabs__body.organizer {
	background-color: #fff;
	padding: 50px 0;
}

#message .tabs__body.organizer .organizerWrap{
	margin: 0 auto;
	max-width: 732px;
}

#message .tabs__body.organizer .organizerWrap .orgOne{
	margin-bottom: 46px;
	padding: 0 16px;
}

#message .tabs__body.organizer .organizerWrap .orgOne .org-img{
	margin-bottom: 14px;
}

#message .tabs__body.organizer .organizerWrap .orgOne .org-txt{
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 23px;
	margin-bottom: 14px;
	word-break: break-all;
}

#message .tabs__body.organizer .organizerWrap .orgOne .org-txt:last-of-type{
	margin-bottom: 0;
}

#message .tabs__body.organizer .organizerWrap .orgOne .org-txt .org-bold{
	font-size: 16px;
	font-weight: 700;
}

#message .tabs__body.organizer .organizerWrap .committee{
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.06em;
	margin: 0 auto;
	display: flex;
	width: 100%;
	height: 44px;
	justify-content: center;
	align-items: center;
	color: #fff;
	background-color: #000;
	max-width: 700px;
}
@media ( max-width : 740px ) {
#message{
	padding: 32px 19px 39px;
}

#message .tabs__menu {
  display: flex;
	gap:0 6px;
}

#message .tabs__menu-item {
  width: calc( 100% / 2 - 3px);
  font-size: 14px;
	height: 45px;
}

#message .tabs__body.organizer {
	padding: 39px 0 0;
}

#message .tabs__body.organizer .organizerWrap .orgOne{
	margin-bottom: 37px;
}

#message .tabs__body.organizer .organizerWrap .orgOne .org-txt{
	font-size: 14px;
	letter-spacing: 0.03em;
	line-height: 24px;
	margin-bottom: 12px;
}

#message .tabs__body.organizer .organizerWrap .committee{
	font-size: 16px;
	height: 42px;
}
}
@media ( max-width : 400px ) {
#message{
	padding: calc(100vw * 32 / 414) calc(100vw * 19 / 414) calc(100vw * 39 / 414);
}

#message .tabs__menu {
	gap:0 calc(100vw * 7 / 414);
}

#message .tabs__menu-item {
  width: calc( 100% / 2 - calc(100vw * 3 / 414));
  font-size: calc(100vw * 14 / 414);
	height: calc(100vw * 45 / 414);
}

#message .tabs__body.organizer {
	padding: calc(100vw * 39 / 414) 0 0;
}

#message .tabs__body.organizer .organizerWrap .orgOne{
	margin-bottom: calc(100vw * 37 / 414);
	padding: 0 calc(100vw * 16 / 414);
}

#message .tabs__body.organizer .organizerWrap .orgOne .org-txt{
	font-size: calc(100vw * 14 / 414);
	line-height: calc(100vw * 24 / 414);
	margin-bottom: calc(100vw * 12 / 414);
}

#message .tabs__body.organizer .organizerWrap .orgOne .org-txt .org-bold{
	font-size: calc(100vw * 16 / 414);
}

#message .tabs__body.organizer .organizerWrap .committee{
	font-size: calc(100vw * 16 / 414);
	height: calc(100vw * 42 / 414);
}
}



#message .tabs__body.performer {
	padding: 20px 0 0;
}
#message .tabs__body.performer img{
	margin-bottom: 20px;
}
#message .tabs__body.performer img:last-of-type{
	margin-bottom: 0px;
}
@media ( max-width : 740px ) {
#message .tabs__body.performer {
	padding: 13px 0 0;
}
#message .tabs__body.performer img{
	margin-bottom: 13px;
}
}
@media ( max-width : 400px ) {
#message .tabs__body.performer {
	padding: calc(100vw * 13 / 414) 0 0;
}
#message .tabs__body.performer img{
	margin-bottom: calc(100vw * 13 / 414);
}
}





/*出演者*/
#message.lineUp .tabs__menu {
  gap: 0 7px;
}
#message.lineUp .tabs__menu-item {
	width: calc( 100% / 3 - 4px);
	font-size: 21px;
	letter-spacing: 0.05em;
	height: 50px;
	font-family: 'Barlow Semi Condensed', sans-serif;
}
#message.lineUp .tabs__menu-item.is-active {
  background: #000;
}

#message.lineUp .tabs__body.organizer {
	margin-top:20px;
	padding-top:0;
	padding-bottom: 10px;
}
#message.lineUp .tabs__body.organizer .organizerWrap {
  max-width: 732px;
}

#message.lineUp .lineUpTit{
	margin-bottom: 40px;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 23px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 70px;
	background:  linear-gradient(90deg, rgba(96, 76, 248, 1) 0%, rgba(9, 131, 216, 1) 53.09%, rgba(0, 184, 165, 1) 100%);
	color: #fff;
}

#message.lineUp .lineUpTit span{
	font-weight: 700;
}

#message.lineUp .tabs__body.organizer .organizerWrap .orgOne .org-img.artisImg {
  margin-bottom: 4px;
}

#message.lineUp .artistName{
	margin-bottom: 17px;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 23px;
	text-align: center;
}

#message.lineUp .artistName3{
	display: flex;
}

#message.lineUp .artistName3 .artistName{
	width: calc(100% / 3);
}

@media ( max-width : 740px ) {
#message.lineUp {
  padding: 20px 19px 39px;
}
#message.lineUp .tabs__menu {
  gap: 7px 7px;
	flex-wrap: wrap;
}
#message.lineUp .tabs__menu-item {
	width: calc( 100% / 2 - 4px);
	font-size: 18px;
	height: 45px;
}

#message.lineUp .tabs__body.organizer {
	margin-top:20px;
	padding-bottom: 1px;
}

#message.lineUp .lineUpTit{
	margin-bottom: 32px;
	font-size: 19px;
	line-height: 24px;
	height: 78px;
	text-align: center;
}

#message.lineUp .tabs__body.organizer .organizerWrap .orgOne .org-img.artisImg {
  margin-bottom: 4px;
}

#message.lineUp .artistName{
	margin-bottom: 10px;
	font-size: 18px;
}

#message.lineUp .artistName.stu{
	margin-bottom: 16px;
}

#message.lineUp .artistName3 .artistName{
	width: calc(100% / 2);
}
}


@media ( max-width : 400px ) {
#message.lineUp {
  padding: calc(100vw * 20 / 414) calc(100vw * 19 / 414) calc(100vw * 39 / 414);
}
#message.lineUp .tabs__menu {
  gap: calc(100vw * 7 / 414) calc(100vw * 7 / 414);
}
#message.lineUp .tabs__menu-item {
	width: calc( 100% / 2 - calc(100vw * 4 / 414));
	font-size: calc(100vw * 18 / 414);
	height: calc(100vw * 45 / 414);
}

#message.lineUp .tabs__body.organizer {
	margin-top:calc(100vw * 20 / 414);
}

#message.lineUp .lineUpTit{
	margin-bottom: calc(100vw * 32 / 414);
	font-size: calc(100vw * 19 / 414);
	line-height: calc(100vw * 24 / 414);
	height: calc(100vw * 78 / 414);
}

#message.lineUp .tabs__body.organizer .organizerWrap .orgOne .org-img.artisImg {
  margin-bottom: calc(100vw * 4 / 414);
}

#message.lineUp .artistName{
	margin-bottom: calc(100vw * 10 / 414);
	font-size: calc(100vw * 18 / 414);
}

#message.lineUp .artistName.stu{
	margin-bottom: calc(100vw * 16 / 414);
}
}





#message.lineUp .tabs__body.organizer.drone .organizerWrap .orgOne .org-img.artisImg {
  margin-bottom: 19px;
}

#message.lineUp .lineUpTit.g7song {
	margin-bottom: 24px;
}

#message.lineUp .tabs__body.organizer.drone .organizerWrap .orgOne .txtSmall {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 16px;
  margin-bottom: 0;
  margin-top: 9px;
}

#message.lineUp .tabs__body.organizer.drone .organizerWrap .orgOne .txtSmall span {
  position: relative;
  padding-left: 13px;
  display: block;
}

#message.lineUp .tabs__body.organizer.drone .organizerWrap .orgOne .txtSmall span::before {
  content: "※";
  position: absolute;
  left: 0;
}

#message.lineUp .spacer {
	height: 20px;
	background-color: #f5f5f5;
}

#message.lineUp .songTit {
	font-size: 23px;
	line-height: 30px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #0983d8;
	text-align: center;
	margin-bottom: 25px;
}

@media (max-width: 870px){
#message.lineUp .lineUpTit.wid830 {
  margin-bottom: 32px;
  font-size: 19px;
  line-height: 24px;
  height: 78px;
  text-align: center;
}
#message.lineUp .lineUpTit.wid830 .sp_only{
		
	
	display: inherit;
}
}

@media (max-width: 740px){
#message.lineUp .tabs__body.organizer.drone .organizerWrap .orgOne .org-img.artisImg {
 	margin-bottom: 14px;
}

#message.lineUp .lineUpTit.g7song {
	margin-bottom: 17px;
}

#message.lineUp .tabs__body.organizer.drone .organizerWrap .orgOne .txtSmall {
  font-size: 12px;
	margin-top: 11px;
}
	
#message.lineUp .spacer {
	height: 25px;
}

#message.lineUp .songTit {
	font-size: 19px;
	line-height: 25px;
	letter-spacing: 0.06em;
	margin-bottom: 20px;
}	
}

@media (max-width: 400px){
#message.lineUp .lineUpTit.wid830 {
  margin-bottom: calc(100vw * 32 / 414);
  font-size: calc(100vw * 19 / 414);
  line-height: calc(100vw * 24 / 414);
  height: calc(100vw * 78 / 414);
}
#message.lineUp .tabs__body.organizer.drone .organizerWrap .orgOne .org-img.artisImg {
 	margin-bottom: calc(100vw * 14 / 414);
}

#message.lineUp .lineUpTit.g7song {
	margin-bottom: calc(100vw * 17 / 414);
}

#message.lineUp .tabs__body.organizer.drone .organizerWrap .orgOne .txtSmall {
  font-size: calc(100vw * 12 / 414);
	margin-top: calc(100vw * 11 / 414);
}
	
#message.lineUp .spacer {
	height: calc(100vw * 25 / 414);
}

#message.lineUp .songTit {
	font-size: calc(100vw * 19 / 414);
	line-height: calc(100vw * 25 / 414);
	margin-bottom: calc(100vw * 20 / 414);
}	
}






/*注意事項*/
#anchorNav{
	width: 100%;
	background-color: #fff;
	padding: 50px 20px;
}
#anchorNav .anchorWrap{
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}
#anchorNav .anchorWrap a{
	color: #fff;
	background-color: #000;
	display: flex;
	align-items: center;
	height: 50px;
	padding-left: 40px;
	margin-bottom: 3px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.09em;
	border: solid 1px #000;
	position: relative;
	transition: .3s;
}
#anchorNav .anchorWrap a:last-child{
	margin-bottom: 0;
}
#anchorNav .anchorWrap a::after{
	content: "";
	position: absolute;
	background-color: #fff;
	width: 9px;
	height: 13px;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	right: 20px;
	transition: .3s;
}

@media (min-width: 740px){
#anchorNav .anchorWrap a:hover{
	color: #000;
	background-color: #fff;
}
#anchorNav .anchorWrap a:hover::after{
	background-color: #000;
	right: 15px;
}
}

@media (max-width: 740px){
#anchorNav{
	padding: 1px 0 0;
}
#anchorNav .anchorWrap a{
	height: 52px;
	padding-left: 24px;
	margin-bottom: 1px;
	font-size: 14px;
	letter-spacing: 0.07em;
	border: none;
}
#anchorNav .anchorWrap a::after{
	width: 9px;
	height: 11px;
	right: 15px;
}
}

@media (max-width: 400px){
#anchorNav .anchorWrap a{
	height: calc(100vw * 52 / 414);
	padding-left: calc(100vw * 24 / 414);
	font-size: calc(100vw * 14 / 414);
}
#anchorNav .anchorWrap a::after{
	width: calc(100vw * 9 / 414);
	height: calc(100vw * 11 / 414);
	right: calc(100vw * 15 / 414);
}
}

#noticeList{
	width: 100%;
	background-color: #f5f5f5;
	padding: 60px 19px 70px;
}

#noticeList .noticeWrap{
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

#noticeList .noticeOne{
	width: 100%;
	background-color: #fff;
	padding: 45px 16px 52px;
	margin-bottom: 30px;
}

#noticeList .noticeOne:last-of-type{
	margin-bottom: 0px;
}

#noticeList .noticeOne .noticeOneWrap{
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}

#noticeList .noticeOne .noticeOneWrap h4{
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.07em;
	margin-bottom: 8px;
	padding-left: 25px;
	position: relative;
	line-height: 28px;
}

#noticeList .noticeOne .noticeOneWrap h4 span{
	position: absolute;
	left: 0;
	font-weight: 700;
}

#noticeList .noticeOne .noticeOneWrap .txt{
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.05em;
	margin-bottom: 10px;
	padding-left: 15px;
	position: relative;
	line-height: 21px;
	margin-bottom: 12px;
}

#noticeList .noticeOne .noticeOneWrap .txt .txtBold{
	font-weight: 700;
}

#noticeList .noticeOne .noticeOneWrap .txt .txtSmall{
	font-weight: 700;
	font-size: 12px;
}

#noticeList .noticeOne .noticeOneWrap .txt.last{
	margin-bottom: 31px;
}

#noticeList .noticeOne .noticeOneWrap .txt:last-of-type{
	margin-bottom: 0;
}

#noticeList .noticeOne .noticeOneWrap .txt::before{
	content: "";
	width: 8px;
	height: 8px;
	background-color: #000;
	left: 0;
	top: 7px;
	position: absolute;
}

#noticeList .boderTrigger {
  display: block;
  position: relative;
  margin-bottom: 23px;
}

#noticeList .boderTrigger::before, .boderTrigger::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: #f5f5f5;
  display: block;
  width: 100%;
  height: 2px;
  z-index: 1;
  transform-origin: left center;
}

#noticeList .boderTrigger::after {
	z-index: 2;
	transform: scale(0, 1);
	background: linear-gradient(90deg, rgba(96, 76, 248, 1) 0%, rgba(9, 131, 216, 1) 53.09%, rgba(0, 184, 165, 1) 100%);
}
#noticeList .borderSlide::after {
  animation-name: underLineAnime;
  animation-duration: 0.5s;
	animation-delay: .3s;
  animation-fill-mode: forwards;
transition: transform 0.75s cubic-bezier(0.86, 0, 0.07, 1) 0.5s;
will-change: transform, filter;
}

.button-top {
  position: fixed;
  z-index: 9;
  bottom: 3rem;
  right: 3rem;
	cursor: pointer;
}

.button-top a {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
	background:  linear-gradient(90deg, rgba(96, 76, 248, 1) 0%, rgba(9, 131, 216, 1) 53.09%, rgba(0, 184, 165, 1) 100%);
	position: relative;
	z-index: 0;
}

.button-top a::before {
	content: "";
	position: absolute;
	background-color: #fff;
	width: 13px;
	height: 19px;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	top: -2px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	transform: rotate(-90deg);
	z-index: 0;
}

.button-top a::after {
	content: "";
	position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
	background:  linear-gradient(90deg, rgba(181, 112, 217, 1) 1.73%, rgba(181, 112, 255, 1) 8.49%, rgba(58, 218, 226, 1) 91.61%, rgba(41, 227, 222, 1) 99.88%);
	z-index: -1;
	opacity: 0;
	transition: .3s;
}

.shadow {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(96, 76, 248, 1) 0%, rgba(9, 131, 216, 1) 53.09%, rgba(0, 184, 165, 1) 100%);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 1.5rem rgba(255, 255, 255, 0.7);
  animation: shadow 1.8s cubic-bezier(0.39, 0.575, 0.565, 1) infinite;
}

@keyframes shadow {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  5% {
    transform: scale(1);
    opacity: 0.6;
  }
  60% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.button-top {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.button-top.is-scrolled {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (min-width: 740px) {
.button-top a:hover::after{
	opacity: 1;
}
}

@media screen and (max-width: 740px) {
#noticeList{
	padding: 39px 19px 39px;
}

#noticeList .noticeOne{
	padding: 38px 16px 44px;
	margin-bottom: 26px;
}

#noticeList .noticeOne .noticeOneWrap h4{
	font-size: 19px;
	margin-bottom: 13px;
	padding-left: 27px;
	line-height: 25px;
}

#noticeList .noticeOne .noticeOneWrap .txt{
	font-size: 15px;
	letter-spacing: 0.06em;
	padding-left: 15px;
	line-height: 20px;
	margin-bottom: 17px;
}

#noticeList .noticeOne .noticeOneWrap .txt .txtBlock{
	display: block;
	margin-top: 7px;
}

#noticeList .noticeOne .noticeOneWrap .txt .txtSmall{
	font-size: 15px;
}

#noticeList .noticeOne .noticeOneWrap .txt.last{
	margin-bottom: 32px;
}

#noticeList .noticeOne .noticeOneWrap .txt::before{
	content: "";
	width: 7px;
	height: 7px;
	top: 9px;
}

#noticeList .boderTrigger {
	margin-bottom: 24px;
}

#noticeList .boderTrigger::before, .boderTrigger::after {
  height: 3px;
}

.button-top a {
  width: 52px;
  height: 52px;
}

.button-top a::before {
	width: 14px;
	height: 20px;
}

.button-top a::after {
  width: 52px;
  height: 52px;
}
  .button-top {
    bottom: 1.2rem;
    right: 10px;
  }
}

@media screen and (max-width: 400px) {
#noticeList{
	padding: calc(100vw * 39 / 414) calc(100vw * 19 / 414) calc(100vw * 39 / 414);
}

#noticeList .noticeOne{
	padding: calc(100vw * 38 / 414) calc(100vw * 16 / 414) calc(100vw * 44 / 414);
	margin-bottom: calc(100vw * 26 / 414);
}

#noticeList .noticeOne .noticeOneWrap h4{
	font-size: calc(100vw * 19 / 414);
	margin-bottom: calc(100vw * 13 / 414);
	padding-left: calc(100vw * 27 / 414);
	line-height: calc(100vw * 25 / 414);
}

#noticeList .noticeOne .noticeOneWrap .txt{
	font-size: calc(100vw * 15 / 414);
	padding-left: calc(100vw * 15 / 414);
	line-height: calc(100vw * 20 / 414);
	margin-bottom: calc(100vw * 17 / 414);
}

#noticeList .noticeOne .noticeOneWrap .txt .txtBlock{
	margin-top: calc(100vw * 7 / 414);
}

#noticeList .noticeOne .noticeOneWrap .txt .txtSmall{
	font-size: calc(100vw * 15 / 414);
}

#noticeList .noticeOne .noticeOneWrap .txt.last{
	margin-bottom: calc(100vw * 32 / 414);
}

#noticeList .noticeOne .noticeOneWrap .txt::before{
	width: calc(100vw * 7 / 414);
	height: calc(100vw * 7 / 414);
	top: calc(100vw * 8 / 414);
}

#noticeList .boderTrigger {
	margin-bottom: calc(100vw * 24 / 414);
}

.button-top a {
  width: calc(100vw * 52 / 414);
  height: calc(100vw * 52 / 414);
}

.button-top a::before {
	width: calc(100vw * 14 / 414);
	height: calc(100vw * 20 / 414);
}

.button-top a::after {
  width: calc(100vw * 52 / 414);
  height: calc(100vw * 52 / 414);
}
  .button-top {
    right: calc(100vw * 10 / 414);
  }
}




/*アクセス*/
#prohibited{
	width: 100%;
	padding: 50px 19px;
	background-color: #f5f5f5;
}
#prohibited .prohibitedWrap{
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	background-color: #fff;
	border: solid 3px #cb1400;
	padding: 37px 18px 35px;
}
#prohibited .prohibitedWrap .prohibitedWrapper{
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}
#prohibited .prohibitedWrap .prohibitedWrapper h4{
	font-size: 19px;
	font-weight: 700;
	letter-spacing: 0.07em;
	line-height: 28px;
	border-bottom: 2px solid #cb1400;
	color: #cb1400;
	padding-bottom: 7px;
	margin-bottom: 14px;
}

#prohibited .prohibitedWrap .prohibitedWrapper p{
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 21px;
	margin-bottom: 12px;
}

@media screen and (max-width: 740px) {
#prohibited{
	padding: 33px 19px;
}
#prohibited .prohibitedWrap{
	padding: 27px 18px 29px;
}
#prohibited .prohibitedWrap .prohibitedWrapper h4{
	font-size: 19px;
	line-height: 25px;
	border-bottom: 3px solid #cb1400;
	padding-bottom: 12px;
	margin-bottom: 11px;
}

#prohibited .prohibitedWrap .prohibitedWrapper p{
	font-size: 15px;
	letter-spacing: 0.06em;
	line-height: 20px;
	margin-bottom: 13px;
}
}
@media screen and (max-width: 400px) {
#prohibited{
	padding: calc(100vw * 33 / 414) calc(100vw * 19 / 414);
}
#prohibited .prohibitedWrap{
	padding: calc(100vw * 27 / 414) calc(100vw * 18 / 414) calc(100vw * 29 / 414);
}
#prohibited .prohibitedWrap .prohibitedWrapper h4{
	font-size: calc(100vw * 19 / 414);
	line-height: calc(100vw * 25 / 414);
	border-bottom: calc(100vw * 3 / 414) solid #cb1400;
	padding-bottom: calc(100vw * 12 / 414);
	margin-bottom: calc(100vw * 11 / 414);
}

#prohibited .prohibitedWrap .prohibitedWrapper p{
	font-size: calc(100vw * 15 / 414);
	line-height: calc(100vw * 20 / 414);
	margin-bottom: calc(100vw * 13 / 414);
}
}

#anchorNav .anchorWrap a.longTxt span{
	font-weight: 700;
}

#anchorNav .anchorWrap a.comingSoon {
	pointer-events: none;
	color: #666;
}

 #anchorNav .anchorWrap a.comingSoon::before {
  content: "COMING SOON!";
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, rgba(96, 76, 248, 1) 0%, rgba(9, 131, 216, 1) 53.09%, rgba(0, 184, 165, 1) 100%);
  position: absolute;
  right: 0;
  left: 289px;
  width: 120px;
  height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  font-family: 'Barlow Semi Condensed', sans-serif;
  z-index: 3;
}

 #anchorNav .anchorWrap a.comingSoon::after {
	 background-color: #666;
}

@media screen and (max-width: 740px) {
 #anchorNav .anchorWrap a.comingSoon::before {
  font-size: 14px;
  letter-spacing: 0.02em;
  right: 0;
  left: 242px;
  width: 97px;
  height: 19px;
}

#anchorNav .anchorWrap a.longTxt{
	letter-spacing: 0.03em;
}

#anchorNav .anchorWrap a.longTxt span{
	font-size: 12px;
}
}

@media screen and (max-width: 400px) {
 #anchorNav .anchorWrap a.comingSoon::before {
  font-size: calc(100vw * 14 / 414);
  left: calc(100vw * 242 / 414);
  width: calc(100vw * 97 / 414);
  height: calc(100vw * 19 / 414);
}	

#anchorNav .anchorWrap a.longTxt span{
	font-size: calc(100vw * 12 / 414);
}
}

#noticeList.access .noticeOne .noticeOneWrap h4 {
  padding-left: 0;
}
#noticeList.access .noticeOne .noticeOneWrap .txt {
  padding-left: 0;
	margin-bottom: 19px;
}
#noticeList.access .noticeOne .noticeOneWrap .txt::before {
	content: none;
}
#noticeList.access .noticeOne .noticeOneWrap .txt a {
	color: #0983d8;
	text-decoration: underline;
	font-size: 13px;
	transition: .3s;
  font-family: 'Barlow Semi Condensed', sans-serif;
	  letter-spacing: 0.04em;
}

@media screen and (min-width: 740px) {
#noticeList.access .noticeOne .noticeOneWrap .txt a:hover {
	color: #5652f4;
}
}

#noticeList.access .noticeOne .noticeOneWrap iframe{
	width: 100%;
	height: 250px;
	margin-bottom: 20px;
}

.linkBtn.en {
  font-size: 17px;
  letter-spacing: 0.06em;
  font-family: 'Barlow Semi Condensed', sans-serif;
}

.linkBtn.comingSoon {
	pointer-events: none;
	color: #666;
}

.linkBtn.comingSoon::after {
	background-color: #666;
}

.linkBtn.comingSoon::before {
  content: "COMING SOON!";
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, rgba(96, 76, 248, 1) 0%, rgba(9, 131, 216, 1) 53.09%, rgba(0, 184, 165, 1) 100%);
  width: 75px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  order: 1;
}

@media screen and (max-width: 740px) {
#noticeList.access .noticeOne .noticeOneWrap .txt {
	margin-bottom: 17px;
}
#noticeList.access .noticeOne .noticeOneWrap .txt a {
	font-size: 14px;
}

#noticeList.access .noticeOne .noticeOneWrap iframe{
	height: 181px;
	margin-bottom: 14px;
}

.linkBtn.en {
  font-size: 16px;
}

.linkBtn.comingSoon::before {
  font-size: 12px;
	width: 78px;
  height: 16px;
  margin-left: 5px;
}
}

@media screen and (max-width: 400px) {
#noticeList.access .noticeOne .noticeOneWrap .txt {
	margin-bottom: calc(100vw * 17 / 414);
}
#noticeList.access .noticeOne .noticeOneWrap .txt a {
	font-size: calc(100vw * 14 / 414);
}

#noticeList.access .noticeOne .noticeOneWrap iframe{
	height: calc(100vw * 181 / 414);
	margin-bottom: calc(100vw * 14 / 414);
}

.linkBtn.en {
  font-size: calc(100vw * 16 / 414);
}

.linkBtn.comingSoon::before {
  font-size: calc(100vw * 12 / 414);
	width: calc(100vw * 78 / 414);
  height: calc(100vw * 16 / 414);
  margin-left: calc(100vw * 5 / 414);
}
}


#noticeList .noticeOne .noticeOneWrap .accessBox {
	display: flex;
	gap:39px 20px;
	margin-bottom: 20px;
}

#noticeList .noticeOne .noticeOneWrap .accessBox .accessOne{
	margin-bottom: 0px;
}

#noticeList .noticeOne .noticeOneWrap .accessOne {
	margin-bottom: 20px;
}

#noticeList .noticeOne .noticeOneWrap .accessOne:last-of-type {
	margin-bottom: 0px;
}

#noticeList .noticeOne .noticeOneWrap .accessOne h5{
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.07em;
	color: #fff;
	background-color: #000;
	padding-left: 16px;
	margin-bottom: 0px;
	display: flex;
	align-items: center;
	height: 25px;
}

#noticeList .noticeOne .noticeOneWrap .accessOne .accessNotes{
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: #cb1400;
	margin-bottom: 2px;
	margin-top: -4px;
}

@media screen and (max-width: 740px) {
#noticeList .noticeOne .noticeOneWrap .accessBox {
	gap:19px 20px;
	margin-bottom: 20px;
	flex-wrap: wrap;
	margin-top: 33px;
}

#noticeList .noticeOne .noticeOneWrap .accessOne {
	margin-bottom: 20px;
}

#noticeList .noticeOne .noticeOneWrap .accessOne h5{
	font-size: 13px;
	padding-left: 15px;
	height: 26px;
}

#noticeList .noticeOne .noticeOneWrap .accessOne .accessNotes{
	font-size: 12px;
	margin-bottom: 4px;
	margin-top: -2px;
	letter-spacing: -0.01em;
}
}

@media screen and (max-width: 400px) {
#noticeList .noticeOne .noticeOneWrap .accessBox {
	gap:calc(100vw * 19 / 414) calc(100vw * 20 / 414);
	margin-bottom: calc(100vw * 20 / 414);
	margin-top: calc(100vw * 33 / 414);
}

#noticeList .noticeOne .noticeOneWrap .accessOne {
	margin-bottom: calc(100vw * 20 / 414);
}

#noticeList .noticeOne .noticeOneWrap .accessOne h5{
	font-size: calc(100vw * 13 / 414);
	padding-left: calc(100vw * 15 / 414);
	height: calc(100vw * 26 / 414);
}

#noticeList .noticeOne .noticeOneWrap .accessOne .accessNotes{
	font-size: calc(100vw * 12 / 414);
	margin-bottom: calc(100vw * 4 / 414);
	margin-top: calc(100vw * -2 / 414);
}
}







/*チケット*/
#ticketChoice{
	width: 100%;
	padding: 60px 19px 50px;
}
#ticketChoice .choiceWrap{
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

#ticketChoice .choiceWrap h3{
  margin-bottom: 0px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  background: linear-gradient(90deg, rgba(96, 76, 248, 1) 0%, rgba(9, 131, 216, 1) 53.09%, rgba(0, 184, 165, 1) 100%);
  color: #fff;
	padding-top: 4px;
}

#ticketChoice .choiceWrap h3 span{
  font-weight: 700;
}

#ticketChoice .choiceWrap p{
  margin-bottom: 0px;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.06em;
	text-align: center;
	margin-top: 11px;
}

#ticketChoice .choiceWrap .imgWrap{
	padding: 10px 0 25px;
	background-color: #f5f5f5;
	text-align: center;
}

#ticketChoice .choiceWrap .imgWrap img{
	max-width: 700px;
	width: 100%;
}

@media screen and (max-width: 740px) {
#ticketChoice{
	padding: 20px 19px 18px;
}

#ticketChoice .choiceWrap h3{
  font-size: 20px;
	padding-top: 3px;
	text-align: center;
	line-height: 24px;
}

#ticketChoice .choiceWrap p{
  font-size: 13px;
	margin-top: -1px;
}

#ticketChoice .choiceWrap .imgWrap{
	padding: 10px 0 15px;
}
}

@media screen and (max-width: 400px) {
#ticketChoice{
	padding: calc(100vw * 20 / 414) calc(100vw * 19 / 414) calc(100vw * 18 / 414);
}

#ticketChoice .choiceWrap h3{
  font-size: calc(100vw * 20 / 414);
	padding-top: calc(100vw * 3 / 414);
	line-height: calc(100vw * 24 / 414);
}

#ticketChoice .choiceWrap p{
  font-size: calc(100vw * 13 / 414);
	margin-top: calc(100vw * -1 / 414);
}

#ticketChoice .choiceWrap .imgWrap{
	padding: calc(100vw * 10 / 414) 0 calc(100vw * 15 / 414);
}
}


#message.ticket {
	padding-top: 40px;
}

#message.ticket .tabs__menu {
	margin-bottom: 15px;
}

#message.ticket .tabs__menu-item.real.is-active {
  background: linear-gradient(90deg, rgba(93, 38, 254, 1) 0%, rgba(187, 97, 223, 1) 100%);
}

#message.ticket .tabs__menu-item.metaverse.is-active {
  background: linear-gradient(90deg, rgba(170, 3, 9, 1) 0%, rgba(234, 14, 12, 1) 100%);
}

#message.ticket .tabs__body.organizer {
	padding-top: 34px;
	padding-bottom: 1px;
}

#message.ticket .tabs__body.organizer .organizerWrap {
  padding: 0 16px;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne {
  margin-bottom: 50px;
  padding: 0 0px;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne:last-of-type {
  margin-bottom: 50px;
  padding: 0 0px;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .ticketTit{
	display: flex;
justify-content: center;
align-items: center;
	margin-bottom: 33px;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .ticketTit .onoffBox{
	position: relative;
	display: flex;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .ticketTit .on{
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #8c44ee;
	position: absolute;
	z-index: 1;
	display: inline-flex;
	left: 0;
	top: 0;
	overflow: hidden;
	clip-path: inset(0 100% 0 0);
	opacity: 0;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .ticketTit .on.txtColor{
	clip-path: inset(0 0 0 0);
	animation-name:txtColor;
	opacity: 1;
	animation-duration: .9s;
	animation-fill-mode:forwards;


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

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .ticketTit .on span{
	font-size: 28px;
	font-weight: 600;
	color: #fff;
	content:"1";
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 39px;
	height: 39px;
	background-color: #8c44ee;
	font-family: 'Barlow Semi Condensed', sans-serif;
	border-radius: 50%;
	margin-right: 11px;
	padding-bottom: 2px;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .ticketTit .off{
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #8c44ee;
	position: relative;
	left: 0;
	top: 0;
	color: #c7c7c7;
	z-index: 0;
	display: inline-flex;
	width: 100%;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .ticketTit .off span{
	font-size: 28px;
	font-weight: 600;
	color: #fff;
	content:"1";
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 39px;
	height: 39px;
	background-color: #c7c7c7;
	font-family: 'Barlow Semi Condensed', sans-serif;
	border-radius: 50%;
	margin-right: 11px;
	padding-bottom: 2px;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne h4{
	font-size: 19px;
	font-weight: 700;
	letter-spacing: 0.07em;
	color: #fff;
	background: linear-gradient(90deg, rgba(93, 38, 254, 1) 0%, rgba(187, 97, 223, 1) 100%);
	margin-bottom: 0;
	display: flex;
	height: 40px;
	justify-content: center;
	align-items: center;
	position: relative;
	padding-bottom: 1px;
}

#message.ticket .tabs__body.organizer .spacer{
	width: 100%;
	height: 20px;
	background-color: #f5f5f5;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne h4.second{
	margin: 45px 0 10px;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .imgBox{
	margin: 0 0 10px;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .imgBox2{
	margin: 0 0 15px;
}

.linkBtn.makuake{
	width: 345px;
	height: 70px;
	background : linear-gradient(90deg, rgba(93, 38, 254, 1) 0%, rgba(187, 97, 223, 1) 100%);
	border: none;
	margin-bottom: 5px;
	padding-right: 22px;
}

.linkBtn.ticket{
	width: 345px;
	margin-bottom: 1px;
}

.linkBtn.makuake.pia{
	font-size: 17px;
	letter-spacing: 0.03em;
	align-items: baseline;
	padding-top: 7px;
	margin-top: 28px;
}

.linkBtn.makuake.pia2{
	font-size: 18px;
	letter-spacing: 0.07em;
}

.linkBtn.makuake.pia::after {
  top: 0;
  bottom: 0;
  margin: auto;
}

.linkBtn.makuake.pia .en{
	font-size: 33px;
	font-weight: 700;
	font-family: 'Barlow Semi Condensed', sans-serif;
}
.linkBtn.makuake.pia .en.slash{
	margin-left: 8px;
}
.linkBtn.makuake.pia .en.slash::after{
	content: "";
	background-color: #fff;
	height: 24px;
	width: 2px;
	display: inline-block;
	transform: skewX(-15deg);
	margin: 0 5px 0 5px;
}

.linkBtn.makuake.pia .day{
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-right: 2px;
}

.linkBtn.makuake::before{
	content: "";
	position: absolute;
	left: 0;
	width: 345px;
	height: 70px;
	background : linear-gradient(90deg, rgba(181, 112, 217, 1) 1.73%, rgba(181, 112, 255, 1) 8.49%, rgba(58, 218, 226, 1) 91.61%, rgba(41, 227, 222, 1) 99.88%);
	z-index: -1;
	opacity: 0;
	transition: .3s;
}

.linkBtn.makuake.pia::before{
	top: 0;
}

.linkBtn.makuake::before{
	content: "";
	position: absolute;
	left: 0;
	width: 345px;
	height: 70px;
	background : linear-gradient(90deg, rgba(181, 112, 217, 1) 1.73%, rgba(181, 112, 255, 1) 8.49%, rgba(58, 218, 226, 1) 91.61%, rgba(41, 227, 222, 1) 99.88%);
	z-index: -1;
	opacity: 0;
	transition: .3s;
}

.linkBtn.makuake img{
	max-width: 150px;
	margin-right: 9px;
	margin-bottom: 4px;
	height: auto;
	width: 100%;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne h4.second span{
	position: absolute;
	right: 20px;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.07em;
	bottom: 12px;
}

@media screen and (min-width: 740px) {
.linkBtn.makuake:hover{
	color: #fff;
}
.linkBtn.makuake:hover::before{
	opacity: 1;
}
.linkBtn.makuake:hover::after{
	background-color: #fff;
}
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .ticketNotes{
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #cb1400;
	margin-bottom: 0;
	text-align: center;
}



@media screen and (max-width: 740px) {
#message.ticket {
	padding-top: 20px;
}

#message.ticket .tabs__menu {
	margin-bottom: 15px;
}

#message.ticket .tabs__body.organizer {
	padding-top: 26px;
	padding-bottom: 1px;
}

#message.ticket .tabs__body.organizer .organizerWrap {
  padding: 0 16px;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne {
  margin-bottom: 45px;
}
	
#message.ticket .tabs__body.organizer .organizerWrap .orgOne:last-of-type {
  margin-bottom: 41px;
}
	
#message.ticket .tabs__body.organizer .organizerWrap .orgOne.marb:last-of-type {
  margin-bottom: 26px;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .ticketTit{
	margin-bottom: 22px;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .ticketTit .on{
	font-size: 23px;
	letter-spacing: 0.05em;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .ticketTit .on span{
	font-size: 21px;
	width: 29px;
	height: 29px;
	margin-right: 8px;
	padding-bottom: 2px;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .ticketTit .off{
	font-size: 23px;
	letter-spacing: 0.05em;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .ticketTit .off span{
	font-size: 21px;
	width: 29px;
	height: 29px;
	margin-right: 8px;
	padding-bottom: 2px;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne h4{
	font-size: 16px;
	height: 39px;
}

#message.ticket .tabs__body.organizer .spacer{
	height: 13px;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne h4.second{
	margin: 26px 0 6px;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .imgBox{
	margin: 0 0 0px;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .imgBox2{
	margin: 0 0 19px;
}

.linkBtn.makuake{
	width: 278px;
	height: 52px;
	margin-bottom: 7px;
	padding-right: 22px;
}

.linkBtn.ticket{
	width: 278px;
	height: 39px;
	margin-bottom: 0px;
}

.linkBtn.makuake.pia{
	font-size: 14px;
	letter-spacing: 0.05em;
	padding-top: 4px;
	margin-top: 18px;
}

.linkBtn.makuake.pia2{
	font-size: 14px;
	letter-spacing: 0.05em;
}

.linkBtn.makuake.pia .en{
	font-size: 29px;
}
.linkBtn.makuake.pia .en.slash{
	margin-left: 4px;
}
.linkBtn.makuake.pia .en.slash::after{
	height: 21px;
	width: 2px;
	margin: 0 5px 0 5px;
}

.linkBtn.makuake.pia .day{
	font-size: 12px;
	margin-right: 1px;
}
	
.linkBtn.makuake img{
	max-width: 129px;
	margin-right: 8px;
	margin-bottom: 4px;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .ticketNotes{
	font-size: 12px;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne h4.second.pia{
	height: 58px;
	flex-wrap: wrap;
	padding-top: 3px;
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne h4.second span{
	position:inherit;
	right: 0px;
	font-size: 13px;
	letter-spacing: 0.06em;
	bottom: 0;
	display: block;
	width: 100%;
	text-align: center;
	margin-top: -17px;
}

.linkBtn.makuake::before{
	content:none;
}
}

@media screen and (max-width: 400px) {
#message.ticket {
	padding-top: calc(100vw * 20 / 414);
}

#message.ticket .tabs__menu {
	margin-bottom: calc(100vw * 15 / 414);
}

#message.ticket .tabs__body.organizer {
	padding-top: calc(100vw * 26 / 414);
	padding-bottom: calc(100vw * 1 / 414);
}

#message.ticket .tabs__body.organizer .organizerWrap {
  padding: 0 calc(100vw * 16 / 414);
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne {
  margin-bottom: calc(100vw * 45 / 414);
}
	
#message.ticket .tabs__body.organizer .organizerWrap .orgOne:last-of-type {
  margin-bottom: calc(100vw * 41 / 414);
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .ticketTit{
	margin-bottom: calc(100vw * 22 / 414);
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .ticketTit .on{
	font-size: calc(100vw * 23 / 414);
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .ticketTit .on span{
	font-size: calc(100vw * 21 / 414);
	width: calc(100vw * 29 / 414);
	height: calc(100vw * 29 / 414);
	margin-right: calc(100vw * 8 / 414);
	padding-bottom: calc(100vw * 2 / 414);
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .ticketTit .off{
	font-size: calc(100vw * 23 / 414);
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .ticketTit .off span{
	font-size: calc(100vw * 21 / 414);
	width: calc(100vw * 29 / 414);
	height: calc(100vw * 29 / 414);
	margin-right: calc(100vw * 8 / 414);
	padding-bottom: calc(100vw * 2 / 414);
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne h4{
	font-size: calc(100vw * 16 / 414);
	height: calc(100vw * 39 / 414);
}

#message.ticket .tabs__body.organizer .spacer{
	height: calc(100vw * 13 / 414);
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne h4.second{
	margin: calc(100vw * 26 / 414) 0 calc(100vw * 6 / 414);
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .imgBox2{
	margin: 0 0 calc(100vw * 19 / 414);
}

.linkBtn.makuake{
	width: calc(100vw * 278 / 414);
	height:calc(100vw * 52 / 414);
	margin-bottom: calc(100vw * 7 / 414);
	padding-right: calc(100vw * 22 / 414);
}

.linkBtn.ticket{
	width: calc(100vw * 278 / 414);
	height: calc(100vw * 39 / 414);
}

.linkBtn.makuake.pia{
	font-size: calc(100vw * 14 / 414);
	padding-top: calc(100vw * 4 / 414);
	margin-top: calc(100vw * 18 / 414);
}

.linkBtn.makuake.pia2{
	font-size: calc(100vw * 14 / 414);
	
}

.linkBtn.makuake.pia .en{
	font-size: calc(100vw * 29 / 414);
}
.linkBtn.makuake.pia .en.slash{
	margin-left: calc(100vw * 4 / 414);
}
.linkBtn.makuake.pia .en.slash::after{
	height: calc(100vw * 21 / 414);
	width: calc(100vw * 2 / 414);
	margin: 0 calc(100vw * 5 / 414) 0 calc(100vw * 5 / 414);
}

.linkBtn.makuake.pia .day{
	font-size: calc(100vw * 12 / 414);
	margin-right: calc(100vw * 1 / 414);
}
	
.linkBtn.makuake img{
	max-width: calc(100vw * 129 / 414);
	margin-right: calc(100vw * 8 / 414);
	margin-bottom: calc(100vw * 4 / 414);
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne .ticketNotes{
	font-size: calc(100vw * 12 / 414);
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne h4.second.pia{
	height: calc(100vw * 58 / 414);
	padding-top: calc(100vw * 3 / 414);
}

#message.ticket .tabs__body.organizer .organizerWrap .orgOne h4.second span{
	font-size: calc(100vw * 13 / 414);
	margin-top: calc(100vw * -17 / 414);
}
	
#message.ticket .tabs__body.organizer .organizerWrap .orgOne.marb:last-of-type {
  margin-bottom:  calc(100vw * 26 / 414);
}
}




#message.ticket .tabs__body.organizer.metaverse .organizerWrap .orgOne .ticketTit .on {
  color: #cb1400;
}

#message.ticket .tabs__body.organizer.metaverse .organizerWrap .orgOne .ticketTit .on span {
  background-color: #cb1400;
}

#message.ticket .tabs__body.organizer.metaverse .organizerWrap .orgOne h4 {
  background:  linear-gradient(90deg, rgba(170, 3, 9, 1) 0%, rgba(234, 14, 12, 1) 100%);
}

.linkBtn.makuake.meta {
  background: linear-gradient(90deg, rgba(170, 3, 9, 1) 0%, rgba(234, 14, 12, 1) 100%);
}

#message.ticket .appLink{
	width: 100%;
	display: flex;
	gap:0 20px;
	background-color: #feecec;
	padding:25px 6px 40px;
	justify-content: center;
}

#message.ticket .appLink a{
	display: flex;
	width: 260px;
	height: 60px;
	background-color: #fff;
	border-radius: 30px;
	justify-content: center;
	align-items: center;
	gap:0 15px;
	transition: .3s;
}

#message.ticket .appLink a img{
	max-width: 45px;
}

#message.ticket .appLink a p{
	font-size: 15px;
	letter-spacing: 0.05em;
	margin-bottom: 0;
	color: #cb1400;
	font-weight: 700;
	line-height: 18px;
	transition: .3s;
}

#message.ticket .appLink a p span{
	font-size: 13px;
	font-weight: 400;
}

@media screen and (min-width: 740px) {
#message.ticket .appLink a:hover{
	background-color: #cb1400;
}
#message.ticket .appLink a:hover p{
	color: #fff;
}
}



@media screen and (max-width: 740px) {
#message.ticket .appLink{
	gap:0 6px;
	padding:15px 6px 26px;
}

#message.ticket .appLink a{
	width: 162px;
	height: 52px;
	border-radius: 26px;
	gap:0 7px;
}

#message.ticket .appLink a img{
	max-width: 36px;
}

#message.ticket .appLink a p{
	font-size: 14px;
	letter-spacing: 0.06em;
	line-height: 17px;
}

#message.ticket .appLink a p span{
	font-size: 12px;
	letter-spacing: 0.03em;
}
}
@media screen and (max-width: 400px) {
#message.ticket .appLink{
	gap:0 calc(100vw * 6 / 414);
	padding:calc(100vw * 15 / 414) calc(100vw * 6 / 414) calc(100vw * 26 / 414);
}

#message.ticket .appLink a{
	width: calc(100vw * 162 / 414);
	height: calc(100vw * 52 / 414);
	border-radius: calc(100vw * 26 / 414);
	gap:0 calc(100vw * 7 / 414);
}

#message.ticket .appLink a img{
	max-width: calc(100vw * 36 / 414);
}

#message.ticket .appLink a p{
	font-size: calc(100vw * 14 / 414);
	line-height:calc(100vw * 17 / 414);
}

#message.ticket .appLink a p span{
	font-size: calc(100vw * 12 / 414);
}
}



.linkBtn.access{
background-color: #CB1400;
font-size: 14px;
letter-spacing: 0.05em;
height: 40px;
border: 1px solid #CB1400;
}

.linkBtn.access::after {
  width: 7px;
  height: 10px;
  right: 17px;
}

@media (min-width: 740px){
.linkBtn.access:hover {
  color: #CB1400;
  background-color: #fff;
}
	
.linkBtn.access:hover::after {
  background-color: #CB1400;
	right: 12px;
}
}

@media (max-width: 740px){
.linkBtn.access{
	font-size: 14px;
	letter-spacing: 0.06em;
	width: 227px;
	height: 45px;
}

.linkBtn.access::after {
  width: 9px;
  height: 11px;
  right: 13px;
}
}

@media (max-width: 400px){
.linkBtn.access{
	font-size: calc(100vw * 14 / 414);
	width: calc(100vw * 227 / 414);
	height: calc(100vw * 45 / 414);
}

.linkBtn.access::after {
  width: calc(100vw * 9 / 414);
  height: calc(100vw * 11 / 414);
  right: calc(100vw * 13 / 414);
}
}

/*Q&A*/
#faq{
	width: 100%;
	background-color: #f5f5f5;
	padding: 60px 19px 70px;
}

#faq .faqWrap{
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.accordion-container {
    width: 100%;
    margin: 0 auto;
    display: block;
}

#accordion .lump {
    width: 100%;
    display: block;
    margin: 0 0 20px;
	position: relative;
}

#accordion .lump:last-of-type {
    margin: 0 0 0px;
}

#accordion .lump::before {
	position: absolute;
	left: 40px;
	content: "Q.";
	font-size: 16px;
	font-weight: 700;
    letter-spacing: 0.09em;
	color: #fff;
	z-index: 1;
	top: 12px;
}

.accordion-container .accordion-title {
    position: relative;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.09em;
    pointer-events: inherit;
    font-size: 16px;
	color: #fff;
	line-height: 28px;
	background-color: #000;
	padding: 11px 70px 11px 70px;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.accordion-container .accordion-title::after {
	content: "";
	position: absolute;
	background-color: #fff;
	width: 9px;
	height: 13px;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	right: 20px;
	transition: .3s;
    transform: rotate(90deg);
}

.accordion-container .accordion-title.open::after {
    transform: rotate(-90deg);
}

.accordion-container .accordion-content {
	background-color: #fff;
	padding: 35px 16px 35px;
}

.accordion-container .accordion-content p{
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 21px;
	max-width: 700px;
	margin: 0 auto 7px;
}

.accordion-container .accordion-content p:last-of-type{
	margin-bottom: 0;
}


@media (max-width: 740px){
#faq{
	padding: 39px 19px 39px;
}

#accordion .lump {
    margin: 0 0 14px;
}

#accordion .lump::before {
	left: 16px;
	font-size: 14px;
    letter-spacing: 0.07em;
	top: 14px;
}

.accordion-container .accordion-title {
    letter-spacing: 0.07em;
    font-size: 14px;
	line-height: 19px;
	padding: 16px 43px 16px 38px;
}

.accordion-container .accordion-title::after {
	width: 9px;
	height: 11px;
	right: 13px;
}

.accordion-container .accordion-content {
	padding: 18px 16px 23px;
}

.accordion-container .accordion-content p{
	font-size: 15px;
	letter-spacing: 0.06em;
	line-height: 20px;
	margin: 0 auto 7px;
}
}

@media (max-width: 400px){
#faq{
	padding: calc(100vw * 39 / 414) calc(100vw * 19 / 414) calc(100vw * 39 / 414);
}

#accordion .lump {
    margin: 0 0 calc(100vw * 14 / 414);
}

#accordion .lump::before {
	left: calc(100vw * 16 / 414);
	font-size: calc(100vw * 14 / 414);
	top: calc(100vw * 14 / 414);
}

.accordion-container .accordion-title {
    font-size: calc(100vw * 14 / 414);
	line-height: 19px;
	padding: calc(100vw * 16 / 414) calc(100vw * 43 / 414) calc(100vw * 15 / 414) calc(100vw * 38 / 414);
}

.accordion-container .accordion-title::after {
	width: calc(100vw * 9 / 414);
	height: calc(100vw * 11 / 414);
	right: calc(100vw * 13 / 414);
}

.accordion-container .accordion-content {
	padding: calc(100vw * 18 / 414) calc(100vw * 16 / 414) calc(100vw * 23 / 414);
}

.accordion-container .accordion-content p{
	font-size: calc(100vw * 15 / 414);
	line-height: calc(100vw * 20 / 414);
	margin: 0 auto calc(100vw * 7 / 414);
}
}