@charset "UTF-8";
/* CSS Document */


/* ////////////////////////////////////////////////////////////////////////////////

	Common

//////////////////////////////////////////////////////////////////////////////// */
@font-face {
  font-family: 'sns_ico';
  src:
    url('../fonts/sns_ico.ttf?z7sza2') format('truetype'),
    url('../fonts/sns_ico.woff?z7sza2') format('woff'),
    url('../fonts/sns_ico.svg?z7sza2#sns_ico') format('svg');
  font-weight: normal;
  font-style: normal;
}

i.snsIcon {
  font-family: 'sns_ico' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
	color: #000;
}

.icon-search:before { content: "\e908";}
.icon-arrow1_left:before { content: "\e90c";}
.icon-arrow1_bottom:before { content: "\e90d";}
.icon-arrow1_right:before { content: "\e90e";}
.icon-arrow1_top:before { content: "\e90f";}
.icon-arrow2_left:before { content: "\e910";}
.icon-arrow2_bottom:before { content: "\e911";}
.icon-arrow2_right:before { content: "\e912";}
.icon-arrow2_top:before { content: "\e913";}
.icon-link:before { content: "\e914";}
.icon-note:before { content: "\e915";}
.icon-ap:before { content: "\e900";}
.icon-blo:before { content: "\e901";}
.icon-fb:before { content: "\e902";}
.icon-hp:before { content: "\e903";}
.icon-in:before { content: "\e904";}
.icon-line:before { content: "\e905";}
.icon-spo:before { content: "\e906";}
.icon-tt:before { content: "\e907";}
.icon-yt:before { content: "\e909";}
.icon-x:before { content: "\e90a";}
.icon-wb:before { content: "\e90b";}
.icon-arrow3_top:before { content: "\ea3a";}
.icon-arrow3_right:before { content: "\ea3c";}
.icon-arrow3_bottom:before { content: "\ea3e";}
.icon-arrow3_left:before { content: "\ea40";}


html {
	scroll-behavior: smooth;
}
body {
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-size: min(3.2vw, 14px);
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
  background-color: #abebf1;
}

img {
	max-width: 100%;
	height: auto;
}
ul { list-style: none;}

.anim {
	opacity: 0;
  transform: translateY(30px);
	transition: all .6s ease-out;
}
.anim.on {
	opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 821px) {
	
	.sp { display: none;}
	
	a { transition: all 0.3s ease-out;}
	a:hover { opacity: 0.5;}
	
}
@media screen and (max-width: 820px) {
	
	.pc { display: none;}
	
}



body:not(.page--home) .wrap {
  padding-top: 0;
	padding-bottom: 0;
}

body::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  border: #000 solid 4px;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.wrap {
  overflow: hidden;
}

body:not(.page--home) header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  z-index: 100;
}

header .hdrLogo {
  background: url("../images/hdr_cloud.png") no-repeat left top;
  background-size: contain;
  line-height: 0;
  padding: min(5vw, 25px) min(9vw, 70px) min(6vw, 50px) min(6vw, 30px);
}
header .hdrLogo img {
  width: min(22vw, 150px);
}

header .hdrMenu {
/*  padding: 0 min(6vw, 30px);*/
  display: flex;
  flex-direction: column;
  gap: min(2vw, 10px);
  position: relative;
}
header .hdrMenu::after {
  content: "";
  display: block;
  background: url("../images/deco_star_wh.png") no-repeat center center;
  background-size: contain;
  aspect-ratio: 66/68;
  width: min(5vw, 20px);
  position: absolute;
  bottom: -6%;
  right: 0;
}
@keyframes star {
  0% { transform: rotate(-10deg);}
  100% { transform: rotate(10deg);}
}

header .hdrMenu li a {
  display: block;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-family: ouma-devanagari, sans-serif;
  font-weight: 600;
  font-size: min(3vw, 12px);
  letter-spacing: 0.1em;
  padding: min(0.4vw, 2px) min(4vw, 20px) min(0.5vw, 4px);
  border-radius: 100px;
  text-align: center;
}

@media screen and (min-width: 821px) {
  #globalNavi {
    display: block !important;
    position: absolute;
    top: min(6vw, 30px);
    right: min(6vw, 30px);
  }
  #menuButton,
  .menuTtl {
    display: none !important;
  }
  
  header .hdrMenu::after {
    transform: rotate(-10deg);
    animation: star 1s linear 0s infinite alternate;
  }
}
@media screen and (max-width: 820px) {
	
  #globalNavi {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #abebf1;
  }
  #globalNavi .inrWrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 10vh;
  }
  #globalNavi .menuTtl {
    width: min(50vw, 340px);
    line-height: 0;
    margin-bottom: min(10vw, 80px);
  }
  
  header .hdrMenu::before {
    content: "";
    display: block;
    background: url("../images/deco_cloud.png") no-repeat center center;
    background-size: contain;
    aspect-ratio: 438 / 226;
    width: min(26vw, 180px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: translate(-20%, -50%);
  }
/*
  header .hdrMenu::after {
    bottom: max(-10vw, -80px);
    right: min(7vw, 40px);
  }
*/
  header .hdrMenu li a {
    font-size: min(4.2vw, 24px);
    padding: min(0.4vw, 2px) min(18vw, 140px) min(0.5vw, 4px);
  }
  
  #menuButton {
    display: block;
    width: min(10vw, 40px);
    height: min(10vw, 40px);
    z-index: 9000;
    position: relative;
    margin-right: min(5vw, 30px);
  }
  #menuButton span {
    display: block;
    background: #000;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transition: all 0.4s;
  }
  #menuButton span:nth-child(1) { transform: translateY(-350%) rotate(0deg);}
  #menuButton span:nth-child(2) { transform: translateY(250%) rotate(0deg);}
  #menuButton span:nth-child(3) { transform: translateY(-50%);}
  #menuButton.active span:nth-child(1) { transform: translateY(-50%) rotate(45deg);}
  #menuButton.active span:nth-child(2) { transform: translateY(-50%) rotate(-45deg);}
  #menuButton.active span:nth-child(3) { opacity: 0;}
	
}




footer {
  width: 100%;
  padding: min(18vw, 140px) min(5vw, 60px) min(8vw, 60px);
	display: flex;
	justify-content: flex-end;
  align-items: flex-end;
}
.sns-nav {
  display: flex;
  gap: min(3vw, 15px);
}
.sns-nav a {
  background-color: #000;
  border-radius: 50%;
  width: min(7vw, 40px);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.sns-nav a i {
  color: #fff;
  font-size: min(4vw, 20px);
}

footer .copyright {
  font-family: ouma-devanagari, sans-serif;
  font-weight: 600;
  font-size: min(3vw, 12px);
  letter-spacing: 0.1em;
}


@media screen and (max-width: 820px) {

  

}

#op {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #abebf1;
  width: 100vw;
  height: 100vh;
  z-index: 9998;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  animation: op 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0.8s forwards;
  pointer-events: none;
}
@keyframes op {
  0% { opacity: 1;}
  100% { opacity: 0;}
}
#op > div {
  line-height: 0;
  width: min(24vw, 180px);
  transform: scale(0.4);
  opacity: 0;
  animation: pan 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0s forwards;
}
@keyframes pan {
  0% { transform: scale(0.4); opacity: 0;}
  100% { transform: scale(1); opacity: 1;}
}



/* ////////////////////////////////////////////////////////////////////////////////

	mainvisual

//////////////////////////////////////////////////////////////////////////////// */
#mainvisual {
  width: 100vw;
  height: 100vh;
  height: 100svh;
  position: relative;
}
#mainvisual::before,
#mainvisual::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../images/deco_cloud.png") no-repeat center center;
  background-size: contain;
  aspect-ratio: 438/226;
  width: min(30vw, 180px);
  animation: cloudDeco 1.5s cubic-bezier(0.45, 0, 0.55, 1) 0s infinite alternate;
}
#mainvisual::before {
  top: -3%;
  right: 5%;
}
#mainvisual::after {
  bottom: -3%;
  left: -4%;
}
@keyframes cloudDeco {
  0% { transform: translateY(0);}
  100% { transform: translateY(-10px);}
}

#mainvisual h1 {
  position: absolute;
  width: 78vh;
  max-width: 80%;
  aspect-ratio: 25/22;
  line-height: 0;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: cloud 2s cubic-bezier(0.45, 0, 0.55, 1) 0s infinite alternate;
}
@keyframes cloud {
  0% { transform: translate(-50%, -50%);}
  100% { transform: translate(-50%, -48%);}
}
#mainvisual h1 .ttl1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  
  opacity: 0;
  animation: op01 1s ease-out 3s forwards;
  z-index: 1;
}
#mainvisual h1 .ttl2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  animation: op01 1s ease-out 4s forwards;
  z-index: 2;
}
#mainvisual h1 .ttl3 {
  opacity: 0;
  animation: op01 1.5s ease-out 2s forwards;
}
@keyframes op01 {
  0% { opacity: 0;}
  100% { opacity: 1;}
}

#mainvisual .sns-nav {
  position: fixed;
  bottom: min(6vw, 30px);
  left: min(5vw, 30px);
  z-index: 2;
}

#mainvisual .scroll {
  position: absolute;
  bottom: min(6vw, 30px);
  right: min(5vw, 30px);
  height: min(12vw, 60px);
  width: min(4vw, 20px);
  overflow: hidden;
}
#mainvisual .scroll::before {
  content: "";
  display: block;
  background-color: #000;
  width: 3px;
  height: 100%;
  margin: 0 auto;
}
#mainvisual .scroll::after {
  content: "";
  display: block;
  background-color: #fff;
  border: #000 solid 3px;
  border-radius: 50%;
  width: min(4vw, 20px);
  height: min(4vw, 20px);
  position: absolute;
  top: 0;
  left: 0;
  animation: scrl 2s linear 0s infinite;
}
@keyframes scrl {
  0% { top: calc(0% - min(4vw, 20px));}
  100% { top: 100%;}
}

@media screen and (max-width:820px) {
  
  #mainvisual::before {
    display: none;
  }
  
  #mainvisual h1 {
    top: 46%;
  }
  
  #mainvisual .scroll {
    width: 16px;
  }
  #mainvisual .scroll::after {
    width: 16px;
    height: 16px;
  }
  
}


section {
  padding: min(8vw, 60px) 0;
}
.contentWrap {
  max-width: 1200px;
  padding: 0 min(5vw, 60px);
  margin: 0 auto;
}

h2 {
  text-align: center;
  font-size: min(2.8vw, 16px);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: min(6vw, 40px);
}
h2 strong {
  font-family: ouma-devanagari, sans-serif;
  font-size: 2.8em;
  font-weight: 500;
  display: block;
  letter-spacing: 0.1em;
  padding: 0 1em;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
h2 strong::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 100%;
  background: url("../images/deco_star01.png") no-repeat left center;
  background-size: min(4vw, 22px);
}
h2 strong::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1em;
  height: 100%;
  background: url("../images/deco_star02.png") no-repeat right center;
  background-size: min(4vw, 22px);
}

.whiteBox {
  background-color: #fff;
  border: #000 solid 2px;
  border-radius: min(2vw, 10px);
  padding: min(5vw, 40px);
  position: relative;
}
.whiteBox + .whiteBox {
  margin-top: min(6vw, 30px);
}

.whiteBox:first-of-type::before {
  content: "";
  display: block;
  position: absolute;
  background: url("../images/deco_cloud.png") no-repeat center center;
  background-size: contain;
  aspect-ratio: 438/226;
  width: min(30vw, 180px);
  animation: cloudDeco2 1.5s cubic-bezier(0.45, 0, 0.55, 1) 0s infinite alternate;
  top: 0;
  right: 0;
  z-index: 1;
  transform: translate(50%, -50%);
}
@keyframes cloudDeco2 {
  0% { top: 0;}
  100% { top: -20px;}
}
.whiteBox:last-of-type::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../images/deco_cloud.png") no-repeat center center;
  background-size: contain;
  aspect-ratio: 438/226;
  width: min(30vw, 180px);
  animation: cloudDeco3 1.5s cubic-bezier(0.45, 0, 0.55, 1) 0s infinite alternate;
  bottom: 0;
  left: 0;
  z-index: -1;
  transform: translate(-50%, 50%);
}
@keyframes cloudDeco3 {
  0% { bottom: 0;}
  100% { bottom: -20px;}
}




#schedule .s-table {
	width: 100%;
	border-collapse: collapse;
}
#schedule .s-table thead th {
	padding: 1em 0;
	text-align: center;
	font-size: 12px;
	border-bottom: solid 1px #000;
	vertical-align: middle;
}
#schedule .s-table td {
	padding: min(5vw, 25px) 0;
	font-size: min(3.2vw, 14px);
	text-align: center;
	vertical-align: middle;
	border-bottom: solid 1px #000;
	position: relative;
}
#schedule .s-table td + td::before {
	width: 1px;
	height: 84%;
	content: "";
	background: #000;
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
#schedule .s-table td.soldout::after {
	content: "SOLD OUT";
	font-size: 19px;
	color: #f6ab00;
	display: inline-block;
	position: absolute;
	left: -1em;
	top: 17%;
	transform: rotate(-15deg);
}
#schedule .s-table .day {
	width: 125px;
  font-family: "ouma-devanagari", sans-serif;
  font-weight: 700;
}
#schedule .s-table.type2 .day {
	width: 125px;
}
#schedule .s-table .date {
	font-size: min(3.8vw, 20px);
	display: inline-block;
	vertical-align: middle;
}
#schedule .s-table .youbi {
	padding-left: 0.5em;
	display: inline-block;
	vertical-align: middle;
  font-size: min(3vw, 12px);
}
#schedule .s-table .time {
	width: 140px;
	font-weight: bold;
}
#schedule .s-table .area {
	width: 90px;
	font-weight: bold;
}
#schedule .s-table .venue {
	padding-left: 3%;
	padding-right: 3%;
	font-weight: bold;
	line-height: 1.2;
	text-align: left;
  font-size: min(3.6vw, 18px);
}
#schedule .s-table .info {
  text-align: left;
	padding-left: 3%;
	padding-right: 3%;
}
#schedule .s-table a {
  color: #000;
  text-decoration: underline;
  word-break: break-all;
}
#schedule .new {
	margin: 50px 0 25px;
	padding: 0.5em 0;
	font-size: 24px;
	color: #fff;
	text-align: center;
	background: #0136e4;
}

@media screen and (max-width:820px) {
	#schedule .s-table td {
		padding: 2vw 0;
		line-height: 1.3;
	}
	#schedule .s-table td.soldout::after {
		font-size: 11px;
		white-space: nowrap;
		top: 10%;
		left: 0;
	}
	#schedule .s-table .day,
	#schedule .s-table.type2 .day {
		width: 20%;
		box-sizing: border-box;
	}
	#schedule .s-table .date {
		white-space: nowrap;
	}
	#schedule .s-table .youbi {
		padding-left: 0;
		display: block;
	}
	#schedule .s-table .youbi .holiday {
		margin: 0 0 0 1em;
		display: inline-block;
		font-size: 1.3vw;
		vertical-align: baseline;
	}
	#schedule .s-table .area {
		width: 18%;
		box-sizing: border-box;
		white-space: nowrap;
	}
	#schedule .s-table .venue {
		width: 62%;
		box-sizing: border-box;
		padding-right: 0 !important;
		padding-left: 0.8em !important;
		line-height: 1.5;
	}
	#schedule .s-table .time2 {
		margin-top: 0.4em;
		display: block;
    font-size: min(3vw, 12px);
	}
	#schedule .s-table .info2 {
		display: block;
    font-size: min(3vw, 12px);
    margin-top: min(2vw, 10px);
	}
}


#ticket .price {
  font-size: min(3.8vw, 20px);
  font-weight: bold;
  margin-bottom: min(3vw, 15px);
}
#ticket .note {
  font-size: min(3vw, 12px);
}
#ticket .note a {
  color: #000;
  text-decoration: underline;
}

#ticket h3 {
  font-size: min(3.8vw, 20px);
  margin-bottom: min(3vw, 15px);
}
#ticket .flexBox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: min(4vw, 20px);
  gap: min(6vw, 30px);
}
#ticket .ticketInfo .apli {
  background-color: #abebf1;
  padding: 0.2em 1em;
  font-size: min(3.2vw, 14px);
  font-weight: 600;
  border-radius: min(1vw, 4px);
  width: fit-content;
  margin-bottom: min(2vw, 10px);
}
#ticket .ticketInfo p {
  font-size: min(3.2vw, 14px);
}


#ticket .flexBox > p {
  font-size: min(4.6vw, 20px);
  font-weight: 600;
}

a.ticketBtn {
  background-color: #000;
  color: #abebf1;
  text-decoration: none;
  font-size: min(3.2vw, 14px);
  padding: min(4vw, 20px) min(7vw, 50px) min(4vw, 20px) min(4vw, 20px);
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
#ticket a.ticketBtn {
  margin: 0;
}
a.ticketBtn::after {
  content: "";
  display: block;
  width: min(4vw, 10px);
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  right: min(4vw, 20px);
  transform: translateY(-50%) rotate(45deg);
  border-top: #abebf1 solid 2px;
  border-right: #abebf1 solid 2px;
}

@media screen and (max-width:820px) {
  
  #ticket .flexBox {
    flex-direction: column;
  }
  
}


#special h3 {
  text-align: center;
  font-size: min(4.8vw, 36px);
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  font-feature-settings: "palt";
  width: fit-content;
  margin: 0 auto min(6vw, 30px);
}
#special a.ticketBtn {
  min-width: min(40vw, 240px);
}

.campaign .lead {
  text-align: center;
  font-size: min(3.6vw, 18px);
  margin-bottom: min(6vw, 30px);
}
.campaignGoods {
  line-height: 0;
  max-width: 460px;
  margin: 0 auto min(6vw, 30px);
}
.campaignDetail > li {
  display: flex;
  padding: min(4vw, 20px) 0;
  border-bottom: #000 solid 1px;
}
.campaignDetail > li .ttl {
  width: 160px;
  font-weight: 600;
  font-size: min(3.4vw, 16px);
}
.campaignDetail > li .txt {
  width: calc(100% - 160px);
}
.campaignDetail > li .txt p {
  font-size: min(3.4vw, 16px);
}
.campaignDetail > li .txt .notes {
  list-style: disc;
  padding-left: 1em;
}
.campaignDetail > li .txt p + .notes {
  margin-top: min(2vw, 15px);
}

@media screen and (max-width:820px) {
  
  .campaignDetail > li {
    flex-direction: column;
    gap: min(3vw, 15px);
  }
  .campaignDetail > li .ttl {
    width: 100%;
  }
  .campaignDetail > li .txt {
    width: 100%;
  }
  
}

.contactWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(4vw, 20px);
  width: fit-content;
  margin: 0 auto;
}
.contactWrap .ticketBtn {
  width: 100%;
  font-size: min(3.4vw, 14px);
  padding: min(3vw, 20px) min(10vw, 80px) min(3vw, 20px) min(6vw, 30px);
}
.contactWrap .ticketBtn::after {
  right: min(5vw, 30px);
}

@media screen and (max-width:820px) {
  
  
  
}

.comingsoon {
  text-align: center;
  font-size: min(4.2vw, 24px);
  font-weight: 600;
  padding: min(8vw, 60px) 0;
}

