﻿@charset "utf-8";
html {
    scroll-behavior: smooth;
}

body {
	color: #fff;
	font-size:16px;
	background-color: #000000 !important;
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	font-weight: 400;
font-style: normal;
	line-height: 1.5;
	overflow-x: hidden;
}
img {
	max-width: 100%;
	height: auto;
}

.imgcenter {
   display: block;
   margin-left: auto;
   margin-right: auto;
}

a {
	color: #fff;
	text-decoration: underline;
	transition: 0.8s;
	-webkit-transition: 0.8s;
}

a:hover {
	opacity: 0.75;
	text-decoration:none;
}

/*-------------------------------------
			PC/SP出し分け
---------------------------------------*/

.pcOnly{display:; !important}
.spOnly{display:none;}
.spOnlyTxt{display:none;}

@media(max-width:768px){
	.pcOnly{display:none;}
	.spOnly{display:block;}
	.spOnlyTxt{display:inline;}
}

/*========= 共通===============*/
.wrap {
	width: 90%;
	margin: 0 auto;
}
article {
	margin-top: 6.5rem;
}
article h2 {
	margin-bottom: 1rem;
}

@media(min-width:768px){
    .wrap {
        width: 960px;
    }
	article {
	margin-top: 8.5rem;
}
	article h2 {
	width: 960px;
		margin: 0 auto 2rem;
}
	
}

/*========= fadeUp ===============*/
.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}

/*========= 画面遷移のためのCSS ===============*/

body{
    background:#000;/*最終的な背景色を指定*/
}

/*右に消えるエリア*/
.splashbg1{
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left:50%;
    transform: scaleX(1);
    background-color: #000;/*伸びる背景色の設定*/
}

@keyframes PageAnime{
	0% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/*左に消えるエリア*/
.splashbg2{
	animation-name:PageAnime2;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	right:50%;
    transform: scaleX(1);
    background-color: #dfc12f;/*伸びる背景色の設定*/
}

@keyframes PageAnime2{
	0% {
		transform-origin:right;
		transform:scaleX(1);
	}

	50% {
		transform-origin:left;
	}
	100% {
		transform-origin:left;
		transform:scaleX(0);
	}
}


/*========= NAVI ===============*/

#g-nav{
    position:fixed;
    z-index: 999;
	bottom:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:rgba(5,5,5,0.85);
    /*動き*/
	transition: all 0.6s;
}

#g-nav.panelactive{
    bottom: 0;
}
#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #dec445;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;font-size: 1.5rem;
}

/* SNSアイコン用のスタイル */
#g-nav li ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    position: static;
    transform: none;
}

#g-nav li ul li {
    width: 40px;
    height: 40px;
}

#g-nav li ul li a {
    padding: 0;
    display: block;
    width: 100%;
    height: 100%;
	color: #fff;
}

#g-nav li ul li a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*========= header ===============*/
header {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
	flex-direction: column;
    align-items: center;
    overflow: hidden;
    background-image: url('../images/bg-top.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

header h1 {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
	flex: 1;
	min-height: 0;
}

header h1 img {
    max-width: 90%;
    max-height: 90%;
	width: auto;
	height: auto;
    object-fit: contain;
}
.topbtn {
	width: 60px;
	margin: 0 auto 5rem;
}

.target {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(20%);
  }
}

@media(min-width:768px){
	header h1 {
		padding: 1rem 0 0;
		flex: 1;
		max-height: calc(100vh - 120px);
	}
    header h1 img {
        width: 65%;
		max-height: 100%;

    }
	.topbtn {
	margin: 2rem auto 0.5rem;
		flex-shrink: 0;
}
}

/*========= ARTIST ===============*/
#artist .arlist{
	width: 96%;
	margin: 0 auto;
}
#artist .arlist p {
	text-align: center;
	font-weight: bold;
	font-size: 1.15rem;
	margin-top: 0.3rem;
}

#artist .next {
	text-align: center;
	font-weight: bold;
	font-size: 1.35rem;
	margin: 1.35rem 0;
}

@media(min-width:768px){
	#artist .arlist{
	width: 600px;
	
}
	#artist .arlist p {
	font-size: 1.4rem;
	margin-top: 0.6rem;
}

#artist .next {
	font-size: 1.8rem;
	margin: 1.7rem 0;
}

}

/*========= TICKET ===============*/
#ticket h3 {
	text-align: center;
	font-weight: bold;
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #dec445;
}

#ticket h4 {
	font-weight: bold;
	font-size: 1.15rem;
	margin-bottom: 0.35rem;
	color: #dec445;
}

#ticket p {
	margin-bottom: 1rem;
}

#ticket .btn a {
	border: 2px solid #dec445;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 290px;
    padding: 10px 25px;
    color: #dec445;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-size: 1.15rem;
	font-weight: bold;
}

#ticket .btn a:hover {
    background: #dec445;
    color: #000;
	opacity: 1;
}
#ticket .btn a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #dec445;
    border-right: 3px solid #dec445;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
#ticket .btn a:hover:after {
    border-color: #000;
}

#ticket .area {
	background-color: #1f1f1f;
	border-radius: 20px;
	padding: 1rem 1.5rem;
}

@media(min-width:768px){
	#ticket h3 {
	font-size: 1.6rem;
	margin-bottom: 1.3rem;
}

#ticket h4 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	text-align: center;
}
#ticket p {
	text-align: center;
	font-size: 18px;
}
	#ticket .btn a {
    max-width: 400px;
    font-size: 1.5rem;
}
}

/*========= MESSAGE ===============*/
#message p {
	margin-bottom: 1.25rem;
}

@media(min-width:768px){
	#message p {
	font-size: 18px;
}
}

/*========= NEWS ===============*/
#news dl dd {
	margin-left: 0.5rem;
}

#news dl dd a {
	color: #ff0000;
}

@media(min-width:768px){
	#news {
		font-size: 18px;
	}
#news dl dd {
	margin-left: 1rem;
}
}

/*========= ABOUT ===============*/
#about dl dt {
	font-weight: bold;
	margin-bottom: 0.25rem;
}

#about dl dd {
	margin-bottom: 1.25rem;
}

#about dl dd ul {
	display: flex;
	align-items:center;
}

#about dl dd ul li {
	width: 65px;
	margin-right: 15px;
}

#about .sns {
	margin-top: 2rem;
}

#about .sns ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	list-style: none;
}

#about .sns ul li {
	width: 35px;
	height: 35px;
	margin: 0;
}

#about .sns ul li a {
	display: block;
	width: 100%;
	height: 100%;
}

#about .sns ul li a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media(min-width:768px){
	#about {
		text-align: center;
	}
	#about dl dd ul {
	display: flex;
	align-items:center;
		justify-content: center;
}
}


/*========= footer ===============*/
footer {
	margin: 3.5rem 0 1rem;
}
footer div {
	width: 120px;
	margin: 0 auto 1.5rem;
}
footer p {
	font-size: 12px;
	text-align: center;
}

@media(min-width:768px){
	footer {
	margin: 5rem 0 1rem;
}
	footer div {
	width: 180px;
}
}

