@charset "utf-8";

main {
	position:relative;
	overflow-x:hidden;
}

.global-nav {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    top: 0;
    position: fixed;
    z-index: 9999;
    padding: .5rem 2rem;
    background-color: #ffffffeb;
}

.nav-menu {
    display: flex;
    justify-content: right;
}

.nav-item {
    margin: 0.8rem;
	padding-bottom: 3px;
	position: relative;
}

.nav-item a {
	color: #366d41;
	font-weight: bolder;
}

.nav-item::before {
	background: #366d41;
	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:#FFF;
    transition: all 0.6s;
	font-size: 2.3rem;
}

.nav-menu.panelactive{
    position: fixed;
    z-index: 999; 
    width: 100%;
    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;
  border-bottom: 1px solid rgb(149 149 149);
}

.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%;
}
}

 
/*========= animation ==========*/


.sns-btn_x {
	z-index: 5;
	display: flex;
	position: fixed;
	bottom: 90px;
	right: 20px;
	height: 34px;
	max-width: 55px;
	padding: 6px 15px;
	background: black;
	border-radius: 2rem;
}
.sns-btn_insta {
	z-index: 5;
	display: flex;
	position: fixed;
	bottom: 40px;
	right: 20px;
	max-width: 55px;
	padding: 6px 15px;
	background: black;
	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 {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 700px;
	background-image: url(../img/back.png);
	background-size: cover;
	background-position: center;
}
@media screen and (max-width: 768px){
	.mainvisual {
		height: 100vh;
		background-image: url(../img/back_sp.png);	
	}
}

/*========= news/info ==========*/

#news {
	background: #366d41;
}

#news .content {
	max-width: 1150px;
	position: relative
}
.news-content {
	background: white;
	padding: 4rem 8rem 7rem;
}

@media screen and (max-width: 767px) {
	.news-content {
		background: white;
		padding: 4rem 2rem;
	}
}


.news-list{
  list-style: none outside;
  margin: 0;
  padding: 0;
}
.news-list .item a{
	text-decoration: none;
	border-bottom: 1px solid #CCC;
	padding: 20px 0px;
	align-items: center;
}
.news-list .item:first-child a{
  border-top: 1px solid #CCC;
}
.news-list .item .date{
  margin: 0;
  min-width: 120px;
  color: #999;
  padding: 0 20px 0 0;
}
.news-list .item .title{
  margin: 0;
  width: 100%;
}
.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-list .item .date{
  min-width: 100px;
}
.news-list .item .title{
  margin-top: 10px;
}
}

.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-detail img {
	box-shadow: 10px 10px 0px 0px #366d41;
	transition: all .3s ease;
}
.artist-detail img:hover {
	box-shadow: -10px -10px #366d41;
}
.artist-detail p {
	color: #366d41;
    text-shadow: 2px 2px 0px rgb(245 245 245);
	font-size: 2rem;
}
@media screen and (max-width: 767px){
	.artist-detail p {
		font-size: 1.4rem;
	}
	.artist-detail img {
		box-shadow: 5px 5px 0px 0px #366d41;
	}
	.artist-detail img:hover {
		box-shadow: -5px -5px #366d41;
	}
}


/*========= TICKET ==========*/
.ticket-price {
  border-top: solid .3em #366d41;
  border-bottom: solid .3em #366d41;
  background: #fffffff0;
  padding: 2rem;
  margin: 2rem;
}

.ticket-attention li:before {
  content: "※";
  margin-right: 0.5em;
}

.ticket-entry {
	background: #fffffff0;
}
.ticket-entry_title {
	color: white;
	background: #366d41;
	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){
	.ticket-entry_title {
		height: 50px;
	}
	.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: #366d41;
	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: #366d41;
	width: 100%;
	height: 40px;
	border: 2px solid #366d41;
	transition: 0.3s;
	box-shadow: 5px 5px 0px 0px rgba(54, 109, 65, 1);
	background-color: #ffffff;
  }
  
  .btn:hover {
	box-shadow: 0 0 #366d41;
	color: #fff;
	background-color: #366d41;
  }

/*========= cl-text ==========*/

.cl-gr {
    color: #366d41;
}
.cl-bl {
    color: #0089d2;
}

/*========= footer ==========*/

footer {
  background: #366d41;
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
#footer {
  max-width: 1100px;
  display: flex;
  color: white;
}

.event-info p {
 padding-bottom: 1.3rem;
}

.event-info p a {
	color: white;
}
   

.event-info p .subtitle {
    background: white;
    color: black;
    font-weight: bold;
    padding: .3rem .5rem;
    margin-right: 1rem;
}

.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: #366d41;
    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;		
	}
}
