/* ------------------------------------------------------------------------------------------------------------------
 * ★★★★★【全ページ用追加JSのCSS】★★★★
 * ------------------------------------------------------------------------------------------------------------------*/

/* ハンバーガーメニュー
 * =====================================================*/

/* ===ナビゲーションのためのCSS===*/

/*アクティブになったエリア*/
#g-nav.panelactive{
	position:fixed;
	z-index: 9000;
	top: 0;
	width:100%;
	height: 100vh;
}

/*丸の拡大*/
.circle-bg{
	position: fixed;
	z-index:8000;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: #777;
	transform: scale(0);
	right:-50px;
	top:-50px;
	transition: all .6s;
}

.circle-bg.circleactive{
	transform: scale(50);
	overflow-y:hidden;
}

/*ナビの数が増えた場合縦スクロール*/
#g-nav-list{
	display: none;
	position: fixed;
	z-index: 9000; 
	width: 100%;
	height: 100vh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
	display: block;
}

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

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
	opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
	animation-name:gnaviAnime;
	animation-duration:1s;
	animation-delay:.2s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes gnaviAnime{
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

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


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

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

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

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

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

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

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

/* ===現在地の指定のためのCSS===*/
/*中心から線が外に伸びる*/
.gnavi li a{
	position: relative;
}

.gnavi li a::after {
    content: '';
    position: absolute;
    top:50%;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #000;
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current-menu-item a::after,
.gnavi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

.gnavi li.m-profile a::after,
.gnavi li.m-link a::after{
	background: transparent;
}


/* ------------------------------------------------------------------------------------------------------------------
 * ★★★★★【TOPページ用追加JS】★★★★
 * ------------------------------------------------------------------------------------------------------------------*/
/* TOPのLOAD
 * =====================================================*/
#top-splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#000;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#top-splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#top-splash_logo img {
  width:260px;
}

/* fadeUpをするアイコンの動き */
.fadeUp{
animation-name: fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

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


 /* 【PC/SP共通】スクロールダウンアイコン
 * =====================================================*/
/*スクロールダウン全体の場所*/
.scrolldown1{
	position:absolute;
	left:50%;
	bottom:10px;
	height:50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
	position: absolute;
	left:-15px;
	top: -15px;
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after{
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 30px;
	background: #eee;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}

/* 【TOP/SP】ポップアップOPEN＆CLOSE
 * =====================================================*/
#sp-profile__hidden,
#sp-music__hidden,
#sp-radio__hidden,
#sp-news__hidden{
	/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
	position:fixed;
	z-index: 999;
	/*ナビのスタート位置と形状*/
	top:0;
	right: -120%;
	width:90%;
	height: 100vh;/*ナビの高さ*/
	background:#999;
 	/*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#sp-profile__hidden.panelactive,
#sp-music__hidden.panelactive,
#sp-radio__hidden.panelactive,
#sp-news__hidden.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#sp-profile__hidden.panelactive .content-box,
#sp-music__hidden.panelactive .content-box,
#sp-radio__hidden.panelactive .content-box,
#sp-news__hidden.panelactive .content-box{
    /*ナビの数が増えた場合縦スクロール*/
	position:absolute;/*    position: fixed;*/
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#sp-profile__hidden .content-box,
#sp-music__hidden .content-box,
#sp-radio__hidden .content-box,
#sp-news__hidden .content-box{
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*========= ボタンのためのCSS ===============*/
.sp-profile__openbtn,
.sp-music__openbtn,
.sp-radio__openbtn,
.sp-news__openbtn{
/*	position:fixed;*/
    z-index: 9999;/*ボタンを最前面に*/
/*	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;*/
}

.sp-profile__closebtn,
.sp-music__closebtn,
.sp-radio__closebtn,
.sp-news__closebtn{
    z-index: 9999;
    position: relative;
    top: 50vh;
    display:none;
}

.sp-profile__closebtn.active,
.sp-music__closebtn.active,
.sp-radio__closebtn.active,
.sp-news__closebtn.active{
    display:block;
}

/*×に変化*/
.sp-profile__closebtn span,
.sp-music__closebtn span,
.sp-radio__closebtn span,
.sp-news__closebtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 10%;
  }

.sp-profile__closebtn span:nth-of-type(1),
.sp-music__closebtn span:nth-of-type(1),
.sp-radio__closebtn span:nth-of-type(1),
.sp-news__closebtn span:nth-of-type(1){
	top:15px;	
}

.sp-profile__closebtn span:nth-of-type(2),
.sp-music__closebtn span:nth-of-type(2),
.sp-radio__closebtn span:nth-of-type(2),
.sp-news__closebtn span:nth-of-type(2){
	top:23px;
}

.sp-profile__closebtn span:nth-of-type(3),
.sp-music__closebtn span:nth-of-type(3),
.sp-radio__closebtn span:nth-of-type(3),
.sp-news__closebtn span:nth-of-type(3){
	top:31px;
}

.sp-profile__closebtn.active span:nth-of-type(1),
.sp-music__closebtn.active span:nth-of-type(1),
.sp-radio__closebtn.active span:nth-of-type(1),
.sp-news__closebtn.active span:nth-of-type(1){
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 10%;
}

.sp-profile__closebtn.active span:nth-of-type(2),
.sp-music__closebtn.active span:nth-of-type(2),
.sp-radio__closebtn.active span:nth-of-type(2),
.sp-news__closebtn.active span:nth-of-type(2){
	opacity: 0;
}

.sp-profile__closebtn.active span:nth-of-type(3),
.sp-music__closebtn.active span:nth-of-type(3),
.sp-radio__closebtn.active span:nth-of-type(3),
.sp-news__closebtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 10%;
}


/* ------------------------------------------------------------------------------------------------------------------
 * ★★★★★【固定ページ用追加JS】★★★★
 * ------------------------------------------------------------------------------------------------------------------*/
 
/* 固定ページのロードロード
 * =====================================================*/
/* ===ローディング画面のためのCSS===*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: 888;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* ===画面遷移のためのCSS===*/
/*画面遷移アニメーション*/
.splashbg{
	display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
	display: block;
	content: "";
	position:fixed;
	z-index: 888;
	width: 100%;
	height: 100%;/*vh→%に変更*/
	top: 0;
	left: 0;
	transform: scaleX(0);
	background-color: #fff;/*伸びる背景色の設定*/
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
}

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

/*画面遷移の後現れるコンテンツ設定*/
#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/* コンテンツがヘッダーにおおいかぶさる
 * =====================================================*/
/*ヘッダーサイズ*/
#header{
	width:100%;
	position: relative;
} 

/*ヘッダー画像指定*/
#header:before{
	content:"";
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	height: 500px;
	background-size:cover;
}

/*下にかぶさるエリア*/
#container-main{
	position: relative;
	z-index:1;
	background:#000;
}


/* ------------------------------------------------------------------------------------------------------------------
 * ★★★★★【Galleryページ】（gallery.js）★★★★
 * ------------------------------------------------------------------------------------------------------------------*/
 
/* スタート時は要素自体を透過0にするためのopacity:0;を指定する
 * =====================================================*/
.randomScroll .box,
.randomBox .box{
	opacity: 0;
	padding-bottom:0px;
}
/* 動かしたい動き（今回は” ふわっ” を採用）
  * =====================================================*/

.fadeIn {
	animation-name:fadeInAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

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



/* ------------------------------------------------------------------------------------------------------------------
 * ★★★★★【Musicページ】（music.js）★★★★
 * ------------------------------------------------------------------------------------------------------------------*/

/*tabの形状*/
.mus-tab{
	display: flex;
	flex-wrap: wrap;
    justify-content: space-evenly;
}
.mus-tab li a{
	display: block;
    margin: 0 0px;
    padding: 5px;
    position: relative;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
	font-size:0.9em;
  }

@media screen and (min-width:768px) {
	.mus-tab li a{
    margin: 0 0px;
    padding: 10px 15px;
		font-size:1em;
  }
}

@media screen and (min-width:992px) {
	.mus-tab li a{
    margin: 0 2px;
    padding: 10px 20px;
  }
}
.mus-tab li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: all 0.4s ease-out;
  }
.mus-tab li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: all 0.4s ease-out;
  }
.mus-tab li.active a:before {
    width: 50%;
  }
.mus-tab li.active a:after {
    width: 50%;
  }

/*liにactiveクラスがついた時の形状*/
.mus-tab li.active a{
}


/*エリアの表示非表示と形状*/
.mus-area {
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
	padding:50px 20px;
}

/*areaにis-activeというクラスがついた時の形状*/
.mus-area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}