@charset "utf-8";


main {
	position:relative;
	overflow-x:hidden;
	min-height: 100vh;
}

.global-nav {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    top: -100px;
    z-index: 9999;
    padding: .5rem 2rem;
    background-color: #ffffffeb;
    transition: top 0.3s ease;
}
.global-nav.is-show {
    top: 0;
}

.nav-menu {
    display: flex;
    justify-content: right;
}

.nav-item {
	font-family: 'Shippori Gothic', sans-serif;
	font-weight: bold;
    margin: 0.8rem;
	padding-bottom: 3px;
	position: relative;
}

.nav-item a {
	color: #ffa235d4;
	font-weight: bolder;
}

.nav-item::before {
	background: #ffa235d4;
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	margin: auto;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
  }
.nav-item:hover::before {
	transform-origin: left top;
	transform: scale(1, 1);
}

.head-logo {
    width: 80px;
}

@media screen and (max-width: 768px){
.nav-item::before {
	background: none;
}
  .global-nav {
    justify-content: space-between;
}
}

/*アクティブクラスがついたら位置を0に*/
.nav-menu.panelactive{
    right: 0;
}

@media screen and (max-width: 768px){
/* ナビ */
.nav-menu{
    position:fixed;
    display: block;
    z-index: 999;
    top:0;
    right: -120%;
    width:100%;
    height: 100vh;
    background:#ffffffeb;
    transition: all 0.6s;
	font-size: 2.3rem;
}

.nav-menu.panelactive{
    position: fixed;
    z-index: 999; 
    width: 75%;
    height: 100vh;
    margin: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-menu ul {
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

.nav-menu li{
  list-style: none;
  text-align: center;
  padding: 1rem 1.8rem 1.9rem 1.8rem;
}

.openbtn1{
  position:fixed;
  z-index: 9999;
  right: 10px;
  cursor: pointer;
    width: 50px;
    height:50px;
}

.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 13px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 25px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}
}

/*======== back ============*/

.bg-fixed {
	position: fixed;
	inset: 0;
	background: url(../img/bg_sand.jpg) center / cover no-repeat;
	z-index: -1;
}

.bg-fixed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.12));
}

.sun-wrapper {
  position: fixed;
  top: 20%;
  right: 20%;
  width: 200px;
  height: 200px;
  pointer-events: none;
  z-index: -1;
}

.sun-wrapper {
  position: fixed;
  top: -200px;
  right: -350px;
  width: 800px;
  height: 800px;
  pointer-events: none;
  z-index: -1;
}

.sun-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 215px;
  height: 215px;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.sun-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform-origin: center center;
  transform: translate(-50%, -50%) rotate(0deg);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .sun-wrapper {
    top: -150px;
    right: -250px;
    width: 500px;
    height: 500px;
  }

  .sun-core {
    width: 130px;
    height: 130px;
  }

  .sun-rays {
    width: 500px;
    height: 500px;
  }
}

/*========= animation ==========*/


.sns-btn_x {
	z-index: 5;
	display: flex;
	position: fixed;
	bottom: 90px;
	right: 20px;
	height: 34px;
	max-width: 55px;
	padding: 6px 15px;
	background: #e4973b;
	border-radius: 2rem;
}
.sns-btn_insta {
	z-index: 5;
	display: flex;
	position: fixed;
	bottom: 40px;
	right: 20px;
	max-width: 55px;
	padding: 6px 15px;
	background: #3fd5c9;
	border-radius: 2rem;
}
.sns-area a:hover {
	opacity: .7;
}


#rellax {
	position: relative;
    z-index: -1;
}

.rellax {
	position: absolute;
	}


.left {
	left: -5%;
}
.left-2 {
	left: 0%;
}
.left-3 {
	left: 2%;
}

/* right-10%以上で調整 */
.right {
	right: -10%;
}
.right-2 {
	right: -14%;
}
.right-3 {
	right: -20%;
}

.top-200 {
	top: 200px;
}
.top-400 {
	top: 400px;	
}
.top-600 {
	top: 600px;	
}
.img-S {
	width: 18%;
}
.img-M {
	width: 24%;
}
.img-L {
	width: 30%;
}

  @media screen and (max-width: 768px){

  }

/*========= mainvisual =========*/

.mainvisual img {
	width: 100dvw;
}

/*========= title ============*/

.corner-ttl {
  font-family: 'Shippori Gothic', sans-serif;
  font-size: 7rem;
  font-weight: 900;
text-shadow: -2px 4px 1px rgba(0, 0, 0, 0.4), 2px 2px 0px rgba(0, 0, 0, 0.25);
  color: #ffa235d4;
}
section:nth-of-type(even) .corner-ttl {
	color: #3fd5c9;
}

  @media screen and (max-width: 768px){
	.corner-ttl {
	font-size: 4rem;
	text-shadow: -1px 2px 1px rgba(0, 0, 0, 0.4), 1px 1px 0px rgba(0, 0, 0, 0.25);
	}
  }

/*====== announce =========*/

#announce {
	background-image: url('../img/bg_comingsoon.jpg');
	background-repeat: repeat;
	background-position: top left;
	width: 100%;
}

.flow-wrap {
  overflow: hidden;
}

.flow-track {
  display: flex;
  width: max-content;
  animation: flow 35s linear infinite;
  font-family: 'Shippori Gothic', sans-serif;
  font-weight: 900;
}

.flow-track span {
  color: rgb(206, 206, 206);
  font-size: 6rem;
  font-weight: 900;
  padding: 1rem 0;
}

@keyframes flow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
  @media screen and (max-width: 768px){
.flow-track span {
  font-size: 3rem;
}
  }


/*========= news/info ==========*/


#news .content {
	max-width: 1150px;
	position: relative
}
.news-content {
	color: white;
	padding: 8rem 8rem 7rem;
	max-width: 1000px;
}


@media screen and (max-width: 767px) {
	.news-content {
		padding: 4rem 2rem;
	}
}


.news-list{
  list-style: none outside;
  margin: 0;
  padding: 0;
}
.news-list .item .date{
    margin: 0;
    padding: 0 10px;
    width: min-content;
    background: #e4973b;
    color: white;
    font-weight: bold;
}
.news-list .item .title{
    margin: 0;
    width: 100%;
    font-weight: bold;
    padding: .6rem 0 2rem 0;
}
.news-list .item a:hover .title{
  opacity: .7;
}

@media screen and (max-width: 767px){
.news-list .item a{
  flex-wrap: wrap;
  grid-template-columns: auto 80px;
}
}

.news-leaf_r, .news-leaf_l {
    position: absolute;
    top: -70px;
    width: 18%;
}

.news-leaf_r {
	left: -5%;
	transform: rotate(20deg);
}
.news-leaf_l {
    left: 88%;
	transform: scale(-1, 1) rotate(20deg);
}

@media screen and (max-width: 767px){
	.news-leaf_r, .news-leaf_l {
        top: -80px;
        width: 19%;
	}
	.news-leaf_r {
		left: -4%;
		transform: rotate(20deg);
	}
	.news-leaf_l {
		left: 85%;
		transform: scale(-1, 1) rotate(20deg);
	}
}

@media screen and (max-width: 620px){
	.news-leaf_r, .news-leaf_l {
        top: -50px;
        width: 27%;
    }
	.news-leaf_l {
        left: 76%;
        transform: scale(-1, 1) rotate(23deg);
    }
}

/*========= ARTIST ==========*/

#artist {
  position: relative;
}

.grass {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

#artist .content {
  position: relative;
  z-index: 0;
}

.artist-detail {
    position: relative;
}

.artist-name {
	position: absolute;
    bottom: -10px;
    right: -15px;
}
.artist-img {
	box-shadow: -5px 4px 5px #515151;
}

.artist-name img {
    max-height: 90px;
}
@media screen and (max-width: 767px){
.artist-name img {
    max-height: 75px;
}
.artist-name {
    bottom: -15px;
}
}

/*========= TICKET ==========*/

#ticket {
	background-image: url('../img/bg_comingsoon.jpg');
	background-repeat: repeat;
	background-position: top left;
	width: 100%;
}


.ticket-attention {
	line-height: 2.5rem;
}

.ticket-attention li:before {
  content: "※";
  margin-right: 0.5em;
}

.ticket-entry {
	background: #fffffff0;
}
.ticket-entry_title {
	color: white;
	background: #45cfc4e0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.ticket-entry_detail {
  margin: 1.7rem;
}

.sold-out {
	position: absolute;
}
.sold-out img {
    height: 100px;
	max-width: max-content;
}


@media screen and (max-width: 767px){
	.sold-out img {
		height: 65px;
	}
	
}

/*
[S Code]
*/
	
	#s-code .inner-frame {
	padding: 2rem;
	}
	
	#s-code .scd-form {
	position: relative;
	margin:0 0 .5em;
	}
	#s-code .scd-form dt {
	width:100%;
	min-height:32px;
	padding:1px;
	background-color:#333;
	position:relative;
	padding-right:36px;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	-o-box-sizing:border-box;
	}
	#s-code .scd-form dt input {
	width:100%;
	min-height:32px;
	border:none;
	background:#FFF;
	padding:3px 12px;
	font-size:.9em;
	font-weight:normal;
	border-radius:0;
	-webkit-border-radius:0;
	-moz-border-radius:0;
	-ms-border-radius:0;
	-o-border-radius:0;
	}
	#s-code .scd-form dd {
	width:36px;
	max-height:32px;
	padding:1px;
	background:none;
	background:#333;
	position:absolute;
	top:0;
	right:0;
	overflow:hidden;
	}
	#s-code .scd-form dd button {
	width:100%;
	height:32px;
	padding:0;
	margin:0;
	border:0;
	cursor:pointer;
	background:#333;
	}
	#s-code .scd-form dd button img {
	max-height:26px;
	margin:0;
	padding:0;
	vertical-align:top;
	}


	
	@media screen and (min-width:901px) and (max-width:1199px) {
	#s-code .scd-form dt {
	min-height:28px;
	padding-right:28px;
	}
	#s-code .scd-form dt input {
	min-height:28px;
	padding:3px 8px;
	font-size:.8em;
	}
	#s-code .scd-form dd {
	width:28px;
	max-height:28px;
	padding:1px;
	}
	#s-code .scd-form dd button {
	height:28px;
	}
	
	}
	
	
	@media screen and (min-width:641px) and (max-width:900px) {
	#s-code .inner-frame {
	width:100%;
	padding:8px 10px;
	display:table;
	}
	
	#s-code .form-box {
	margin:0;
	display:table-cell;
	vertical-align:middle;
	}
	
	#s-code .scd-form {
	position: relative;
	margin:0;
	}
	
	}
	
	
	@media screen and (max-width:640px) {
	#s-code .inner-frame {
	width:100%;
	padding:8px 10px;
	display:table;
	}
		
	#s-code .form-box {
	width:auto;
	display:table-cell;
	vertical-align:middle;
	}
	
	#s-code .scd-form {
	position:relative;
	 margin:0;
	}
	
	#s-code .scd-form dt input {
	min-height:38px;
	padding:3px 8px;
	font-size:.9em;
	}
	#s-code .scd-form dd {
	width:38px;
	max-height:40px;
	padding:0;
	}
	#s-code .scd-form dd button {
	height:40px;
	}
	
	}
	
	@media screen and (max-width:480px) {
	#s-code .inner-frame {
	padding:8px 5px;
	}
	
	#s-code .scd-form dt {
	min-height:36px;
	padding-right:36px;
	}
	#s-code .scd-form dt input {
	min-height:36px;
	padding:2px 8px;
	font-size:.95em;
	}
	#s-code .scd-form dd {
	width:36px;
	height:38px;
	padding:0;
	}
	#s-code .scd-form dd button {
	max-height:38px;
	}
	
	}
	
	@media screen and (max-width:320px) {
	#s-code .inner-frame {
	padding:7px 5px;
	}
	
	}

/*========= GOODS ==========*/
.goods-title {
	background: #45cfc4e0;
	padding: 0.8rem 1rem;
	color: white;
	text-align: center;
}
.goods-item {
  padding: 2rem;
  margin-bottom: 1rem;
  background: #fffffff0;
}

.goods-item p {
  padding-bottom: .9rem;
}

@media screen and (max-width: 767px){
	.goods-item {
		text-align: center;
		padding: 1rem;
	}

	.goods-item img {
		max-height: 150px;
	}
}

/*========= SPONSOR ==========*/

#sponsor .content {
	max-width: 1150px;
}


/*========= button ==========*/

.btn {
	color: #ffa235d4;
	width: 100%;
	border: 2px solid #ffa235d4;
	transition: 0.3s;
	background-color: #ffffff;
  }
  
  .btn:hover {
	box-shadow: 0 0 #ffa235d4;
	color: #fff;
	background-color: #ffa235d4;
  }

.btn_rpp {
	color: #00359d;
	width: 100%;
	border: 2px solid #00359d;
	transition: 0.3s;
	background-color: #ffffff;
  }
  
  .btn_rpp:hover {
	box-shadow: 0 0 #00359d;
	color: #fff;
	background-color: #00359d;
  }

.btn-gr {
	color: #45cfc4e0;
	width: 100%;
	height: 40px;
	border: 2px solid #45cfc4e0;
	transition: 0.3s;
	background-color: #ffffff;
  }
  
  .btn-gr:hover {
	box-shadow: 0 0 #45cfc4e0;
	color: #fff;
	background-color: #45cfc4e0;
  }

/*========= cl-text ==========*/

.cl-gr {
    color: #3bc3b8;
}
.cl-bl {
    color: #0089d2;
}
.cl-wt {
    color: white;
}
.cl-rpp {
	color:#00359d;
}
.bg-wt {
	background: #fffffff0;
}
.bg-og {
	background: #fdb055b5;
}
.bg-gr {
	background: #3bc3b8;
}
.bg-rpp {
	background: linear-gradient(90deg, rgba(0, 53, 157, 1) 0%, rgba(25, 14, 87, 1) 100%);
}

/*========= footer ==========*/

footer {
	display: flex;
  	justify-content: center;
	padding: 2rem 0; /* 上下の余白 */
}
#footer {
  max-width: 1100px;
}

.content-circle {
    border-radius: 110px;
    padding: 5rem 6rem;
}

.event-info p {
    display: grid;
    gap: 40px;
    grid-template-columns: 165px 1fr;
    align-items: baseline;
    padding: .5rem 1rem;
    line-height: 2.3rem;
}   

.event-info p .subtitle {
    font-weight: bold;
	text-align: end;
    padding: .3rem 0rem;
}

@media screen and (max-width: 767px) {
	.content-circle {
    border-radius: 80px;
    padding: 5rem 3rem;
	}
	.event-info {
    padding: 4rem;
	}
    .event-info p {
        grid-template-columns: 1fr;
		gap: 10px;
        line-height: 1.8rem;
        padding: .5rem 0rem;
    }
	.event-info p .subtitle {
	text-align: left;
}
}

.copyright {
  background-color: #1a1818;
  color: white;
  display: flex;
  justify-content: center;
}



/*========= FAQ ==========*/
#faq {
margin-top: 8rem;
}
#faq .content{
	max-width: 1100px;
}
.faq-list {
	background: white;
	padding: 5rem 3rem;
}
.faq-list .item .title{
	font-weight: bold;
	background-color: black;
	color: white;
	padding: .8rem;
}

@media screen and (max-width: 767px){
	.faq-list {
		padding: 2rem;		
	}
}

.accordion {
	padding: 2.3rem;
	background: white;
}

.toggle {
	display: none;
}

.faq {
	position: relative;
	margin-bottom: 1rem;
}

.question,.anser {
	transform: translateZ(0);
	transition: all 0.3s;
}

.question {
	border: solid 1px #999;
	padding: 1rem 2.2rem 1rem 1rem;
	display: block;
	color: #333;
}

.question span,.anser span {
	font-size: 2.3rem;
    padding-right: 0.6rem;
    color: #45cfc4e0;
    line-height: 0;
}

.question:after,.question:before {
	content: "";
	position: absolute;
	right: 1.25rem;
	top: 0;
  bottom: 0;
  margin: auto;
	width: 4px;
	height: 1.75rem;
	background-color: #999;
	transition: all 0.3s;
}

.question:after {
	transform: rotate(90deg);
}

.anser {
	max-height: 0;
	overflow: hidden;
}

.anser div {
	margin: 0;
	padding: 2rem 1rem 2rem;
	line-height: 1.8;
}

.anser div a {
	color: #007bff;
    text-decoration: none;
    background-color: transparent;
}
.anser div a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.toggle:checked + .question + .anser {
	transition: max-height 1s ease-in-out;
}

.toggle:checked + .question:before {
	transform: rotate(90deg) !important;
}

/*========= ACCESS ==========*/

.access-content {
	background: white;
	padding: 6rem;
	max-width: 1100px;
}

.access-content .title{
	font-weight: bold;
}

@media screen and (max-width: 767px){
	.access-content {
		padding: 3rem;		
	}
}

/*========= movie modal ==========*/

    /* 背景を暗くするオーバーレイ */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.8);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }
    .modal-content {
      position: relative;
      max-width: 90%;
      max-height: 90%;
    }
    .close-button {
      position: absolute;
      top: -20px;
      right: -20px;
      background: #fff;
      color: #000;
      border: none;
      font-size: 30px;
      font-weight: bold;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      cursor: pointer;
      box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }