/* CSS Document */

/* ALL_setting
================================================== */
*{
	margin:0;
	padding:0;
	font-family: 'EB Garamond', serif;
	font-size: 16px;
	box-sizing: border-box;
}

.clear{clear:both;}

html , body {
	min-height: 100%;
	height: auto;
	height: 100%;
	background-color: #796aa9;
}


img{
	vertical-align: top;
}

.wf-notosansjapanese { font-family: "Noto Sans JP"; }
.noto_serif{font-family: 'Noto Serif JP', serif;}
.Josefin Sans Regular, Semibold {font-family: 'Josefin Sans', sans-serif;}
.Satisfy{font-family: 'Satisfy', cursive;}
.outfit{font-family: 'Outfit', sans-serif;}
.Kiwi Maru {font-family: 'Kiwi Maru', serif;}
.Zen Maru Gothic {font-family: 'Zen Maru Gothic', sans-serif;}
.garamond{font-family: 'EB Garamond', serif;}



#particles-js{ 
	position:fixed;/*描画固定*/
	z-index:1;/*描画を一番下に*/
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.a_link{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

.pc{ display: inherit!important; }
.sp{ display: none!important; }
@media screen and (max-width: 699px){
.pc{ display: none!important; }
.sp{ display: inherit!important; }
}

.more_text{
	width: 30%;
	margin: 0 auto 4%;
	border: #c3a780 1px solid;
	color: #c3a780;
	font-size: 1em;
	font-weight: bold;
	padding: 1% 0;
	text-align: center;
}

.more_text:hover{
	background-color: #c3a780;
	color: white;
}


@media screen and (max-width: 699px){
	.more_text{
		width: 50%;
		margin: 0 auto 8%;
		border: #c3a780 1px solid;
		color: #c3a780;
		font-size: 1em;
		font-weight: bold;
		padding: 1% 0;
		text-align: center;
	}
}

/* Loading:CSS
================================================== */

#loader {
	width: 100%;
	height: 100vh;
	display: table;
	position: fixed;
	_position: absolute;
	z-index: 999;
}

.loader_box{
	width: 15%;
	margin: auto;
	height: 100vh;
	display: table;
}

.loader_table_cell{
	display: table-cell;
	vertical-align: middle;
}

#fade {
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	-moz-background-size:cover;
	-webkit-background-size:cover;
	-o-background-size:cover;
	-ms-background-size:cover;
	width:100%;
	height:100%;
	display: none;
	background-color: #796aa9!important;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 998;
}

.fade_normal{
	background-color: #796aa9!important;
}

@media screen and (max-width: 699px){
	.loader_box{
		width: 50%;
		margin: auto;
		height: 100vh;
		display: table;
	}
}

/* scroll_icon_setting
================================================== */

/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	z-index: 99;
	left:2%;
	bottom:14%;
    /*全体の高さ*/
	height:50px;
	
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
	position: absolute;
	left:-22px;
	top: -40px;
    /*テキストの形状*/
	color: #000;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	transform: rotate(-90deg);
    text-transform: uppercase;
}

/* 線の描写 */
.scrolldown1::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    /*線の形状*/
	width: 1px;
	height: 30px;
	background: #000;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	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;
	}
}

@media screen and (max-width: 699px){
	.scrolldown1{
		position:absolute;
		z-index: 99;
		left:5%;
		bottom:50%;
		/*全体の高さ*/
		height:50px;
	}
}

/* scroll_animation_setting
================================================== */

.scroll_fade_in{
	opacity: 0;
}

.scroll_fade_up{
	opacity: 0;
}

.scroll_fade_down{
	opacity: 0;
}

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

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

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

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

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

.fadedown{
animation-name:fadeDownAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-50px);
  }

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

.fadeleft{
animation-name:fadeLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
	transform: translateX(-100px);
  }

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

.faderight{
animation-name:fadeRightAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }

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

/* MENU_setting
================================================== */
.menu_box_wrapper2{
	width: 100%;
	height: auto;
	position: fixed;
	z-index: 99;
	top: 0%;
	overflow: hidden;
	background: #0c0b0b;
	transition: all 1.4s ease 0s;
}

.menu_box_fade{
	opacity: 1!important;
	bottom: 5%!important;
}

.menu_box_wrapper{
	width: 100%;
	height: auto;
	z-index: 99;
	padding: 0.6% 0;
	background: #0c0b0b;
	position: fixed;
}



@keyframes show {
	0% {
		top:0%;
	}
	100% {
		top:0%;
	}
}

.menu_box{
	text-align: center;
	font-family: 'EB Garamond', serif;
}

.menu_box ul{
	margin:0;
	padding:0;
}

.menu_box ul li{
	list-style: none;
	display: inline-block;
	padding:0.5% 1%;
	color: #796aa9;
}

.menu_box ul li a{
	text-decoration: none;
	color: #796aa9;
	font-size: 1em;
	font-family: 'EB Garamond', serif;
	letter-spacing: 3px;
	padding: 0 10px;
	vertical-align: middle;
	
}

.menu_icon{
	width: 3.4%;
	vertical-align: middle;
}

.menu_box ul li a:hover{
	opacity: 0.7;
}

/* Contents
================================================== */

.discography_new_box{
	width: 100%;
	letter-spacing: -1em;
	padding: 3% 0;
}

.discography_new_album_img{
	width: 50%;
	box-sizing: border-box;
	display: inline-block;
	padding: 0 2% 0 0;
	vertical-align: top;
}

.discography_new_album_text{
	width: 50%;
	box-sizing: border-box;
	display: inline-block;
	letter-spacing: normal;
	padding: 2% 0 0 2%;
	vertical-align: top;
	color: white;
}

.discography_new_album_text2{
	width: 100%;
	box-sizing: border-box;
	display: inline-block;
	letter-spacing: normal;
	padding: 1% 0 1% 0%;
	vertical-align: top;
	color: white;
}

.main_contents{
	width: 100%;
	min-height: 100vh;
	background-color: #796aa9;
}

.main_wrapper{
	width: 100%;
	min-height: 100vh;
	padding: 0px 0 0 0;
	letter-spacing: -1em;
}

.main_image_box{
	width: 50%;
	min-height: 100vh;
	letter-spacing: normal;
	display: inline-block;
	vertical-align: top;
	background-image: url("../image/main_img.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: fixed;
	left: 0;
	background-color: #796aa9;
}

.main_image_logo{
	width: 28%;
	bottom: 2%;
	left: 2%;
	position: fixed;
}

.main_image_logo2{
	width: 10%;
	bottom: 2%;
	left: 39%;
	position: fixed;
}

.main_contents_box{
	width: 50%;
	min-height: 100vh;
	letter-spacing: normal;
	display: inline-block;
	vertical-align: top;
	background-color: #382751;
	padding: 120px 5% 0 5%;
	position: absolute;
	right: 0;
}

.contents_box{
	padding: 80px 0;
}

.contents_title{
	font-family: 'EB Garamond', serif;
	font-size: 4em;
	color: #c3a780;
	text-align: center;
	word-wrap: break-word;
	line-height: 5rem;
	letter-spacing: 0.4rem;
}

.contents_title2{
	font-family: 'EB Garamond', serif;
	font-size: 4em;
	color: #c3a780;
	text-align: center;
	word-wrap: break-word;
	line-height: 5rem;
	letter-spacing: 0.4rem;
}

.contents_title3{
	font-family: 'EB Garamond', serif;
	font-size: 3em;
	color: #c3a780;
	text-align: center;
	word-wrap: break-word;
	line-height: 4rem;
	letter-spacing: 0.4rem;
}

.contents_text_style1{
	font-size: 1.2em;
	line-height: 1.8em;
	padding: 30px 0 0 0;
	color: white;
	text-align: center;
}

.contents_text_style2{
	text-align: center;
	font-family: 'EB Garamond', serif;
	color: #c3a780;
	font-size: 2em;
}

.contents_logo{
	width: 56%;
	margin: 40px auto 0;
}

.news_box{
	background-color: #0c0b0b;
	padding: 3% 4% 4%;
}

.news_box_style1{
	padding: 20px;
	border-bottom: 1px solid #fff;
	width: 90%;
	margin: auto;
}

.news_data{
	width: 20%;
	display: inline-block;
	color: #c3a780;
	vertical-align: top;
}

.news_text_style1{
	width: 78%;
	display: inline-block;
	color: white;
	vertical-align: top;
}

.album_text_box_style1{
	width: 83%;
	display: inline-block;
	vertical-align: middle;
}

.album_text_box_style2{
	width: 15%;
	display: inline-block;
	vertical-align: middle;
}

.album_text_style1{
	color: white;
	font-size: 1em;
}

.album_text_style2{
	color: white;
	font-size: 1em;
}

.discography_wrapper{
	letter-spacing: -1em;
	padding: 30px 0 0 0;
}

.discography_box_style1_pc{
	letter-spacing: normal;
	width: 50%;
	display: inline-block;
	padding: 0 2%;
	margin-bottom: 30px;
	vertical-align: top;
	position: relative;
}

.discography_box_style1_pc:hover{
	opacity: 0.7;
}

.discography_box_style1_sp{
	display: none;
}

.discography_text_style1{
	text-align: center;
	font-family: 'EB Garamond', serif;
	font-size: 1em;
	color: #c3a780;
	padding: 0 0 6px 0;
}

.discography_text_style2{
	text-align: center;
	color: white;
	padding: 6px 0 0 0;
}



.discography_text_style3{
	color: #c3a780;
	font-size: 1.2em;
}

.biography_text_style1{
	color: white;
	line-height: 1.8em;
	padding: 20px 0 0 0;
	text-align: center;
}

.event_text_style1{
	color: white;
	line-height: 1.8em;
	padding: 20px 0 0 0;
	text-align: left;
}

.event_text_style1 a{
	color: yellow;
	font-weight: 1em;
}

.event_text_style2{
	border-left: 2px solid #c3a780;
	padding:0 0 0 20px;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1.6em;
	color: #c3a780;
}

.event_text_style3{
	font-size: 1.6em;
	padding: 6px 6px 0 ;
	margin: 0 0 0px 0;
	font-weight: bold;
	line-height: 1.6em;
	color: rgb(56, 39, 81);
	background-color: #c3a780;
}

.event_text_style4{
	border-left: 2px solid #c3a780;
	padding:0 0 0 20px;
	margin: 0 0 20px 0 ;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1.6em;
	color: #c3a780;
}

.live_goods_text_style1{
	text-align: center;
	color: white;
	font-size: 2em;
	padding: 20px 0 0 0;
}

.copyright{
	color: white;
	text-align: center;
	padding: 20px 0 40px 0;
}

.goods_box{
	width: 49%;
	margin: 20px auto;
	display: inline-block;
	padding: 0 2%;
	vertical-align: top;
}

.goods_text{
	color: white;
	margin: 10px 0;
	text-align: center;
}


/* Discgraphy
================================================== */

.link_bt{
	width: 98%;
	padding: 2%;
	border: 1px solid #e1b454;
	color:#e1b454;
	text-align: center;
	font-weight: bold;
	font-size: 1.2em;
	margin: 10px auto;
	position: relative;
}

.link_bt:hover{
	opacity: 0.7;
}

.link_bt_white{
	width: 98%;
	padding: 2%;
	border: 1px solid #fff;
	color:#fff;
	text-align: center;
	font-weight: bold;
	font-size: 1.2em;
	margin: 10px auto;
	position: relative;
	opacity: 0.5;
}

.comment_bt{
	width: 100%;
	border: 2px solid #e1b454;
	color: #e1b454;
	position: relative;
	border-radius: 30px;
	font-size: 1vw;
}

.comment_bt:hover{
	background-color: #e1b454;
	color: white;
}

.comment_top{
	width: 100%;
	vertical-align: top;
}

.comment_bottom{
	width: 100%;
	vertical-align: top;
}

.comment_bottom img{
	vertical-align: top;
}

.comment_center{
	width: 100%;
	padding: 5% 5%;
	background-color: #382751;
}

.comment_top_wrapper{
	width: 39%;
	display: inline-block;
	vertical-align: top;
	padding: 0 2%;
}

.comment_text_wrapper{
	width: 59%;
	display: inline-block;
	vertical-align: top;
	letter-spacing: normal;
	line-height: 1.6em;
	color: #fff;
	padding: 0 2%;
}

.comment_top_icon{
	width: 20%;
	letter-spacing: normal;
	display: inline-block;
	vertical-align: middle;
}

.comment_top_text{
	width: 49%;
	padding-left: 5%;
	letter-spacing: normal;
	display: inline-block;
	vertical-align: middle;
	line-height: 2.4em;
}

.comment_top_text_2{
	width: 80%;
	letter-spacing: normal;
	display: inline-block;
	vertical-align: middle;
	line-height: 1.8em;
}

.comment_top_text_style1{
	font-size: 3vw;
	
	color: #7d6a5d;
}

.comment_top_text_style2{
	font-size: 1.2vw;
}

.comment_top_text_style1_2{
	font-size: 2.4vw;
	color: #7d6a5d;
}

.comment_top_text_style2_2{
	font-size: 1vw;
}



#comment_wrapper{
	width: 100%;
	margin: auto;
}

.comment_hide{
	display: none;
	position: relative;
	z-index: 99;

}

@media screen and (max-width: 699px){
	.discography_new_album_img{
		width: 100%;
		box-sizing: border-box;
		display: block;
		padding: 0 0 4% 0;
		vertical-align: top;
	}

	.discography_new_album_text{
		width: 100%;
		box-sizing: border-box;
		display: block;
		letter-spacing: normal;
		padding: 0 0 0 0%;
		color: white;
	}

	.comment_bt{
		width: 100%;
		border: 2px solid #e1b454;
		color: #e1b454;
		position: relative;
		border-radius: 30px;
		font-size: 3vw;
	}
	.comment_top_icon{
		width: 30%;
		letter-spacing: normal;
		display: inline-block;
		vertical-align: middle;
	}

	.comment_top_text{
		width: 65%;
		padding-left: 5%;
		letter-spacing: normal;
		display: inline-block;
		vertical-align: middle;
		line-height: 1em;
	}

	.comment_top_text_style1{
		font-size: 6vw;

		color: #7d6a5d;
	}

	.comment_top_text_style2{
		font-size: 3vw;
	}
	
	.comment_top_text_style1_2{
		font-size: 7vw;

		color: #7d6a5d;
	}

	.comment_top_text_style2_2{
		font-size: 4vw;
	}
	
	.comment_top_wrapper{
		width: 100%;
		display: block;
		vertical-align: top;
		padding: 0;
	}
	
	.comment_text_wrapper{
		width: 100%;
		display: block;
		vertical-align: top;
		letter-spacing: normal;
		line-height: 1.6em;
		font-size: 4vw;
		color: #fff;
		padding-top: 20px;
	}
}



/* Smartphone_Setting
================================================== */

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

	.main_image_box{
		width: 100%;
		min-height: 90vh;
		letter-spacing: normal;
		display: block;
		vertical-align: top;
		background-image: url("../image/main_img.jpg");
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		position: relative;
		left: 0;
		background-color: #796aa9;
	}

	.main_image_logo{
		width: 66%;
		bottom: 3%;
		left: 3%;
		position: absolute;
	}
	.main_image_logo2{
		width: 25%;
		bottom: 2%;
		left: auto;
		right: 3%;
		position: absolute;
	}
	.main_contents_box{
		width: 100%;
		min-height: 100vh;
		letter-spacing: normal;
		display: inline-block;
		vertical-align: top;
		background-color: #382751;
		padding: 20px 5% 0 5%;
		position: relative;
		right: 0;
	}

	.contents_title{
		font-family: 'EB Garamond', serif;
		font-size: 3em;
		color: #c3a780;
		text-align: center;
		word-wrap: break-word;
		line-height: 4rem;
		letter-spacing: 0.4rem;
	}

	.contents_title2{
		font-family: 'EB Garamond', serif;
		font-size: 2em;
		color: #c3a780;
		text-align: center;
		word-wrap: break-word;
		line-height: 3rem;
		letter-spacing: 0.4rem;
	}

	.contents_title3{
		font-family: 'EB Garamond', serif;
		font-size: 2em;
		color: #c3a780;
		text-align: center;
		word-wrap: break-word;
		line-height: 3rem;
		letter-spacing: 0.4rem;
	}

	.contents_text_style1{
		font-size: 1em;
		line-height: 1.8em;
		padding: 30px 0 0 0;
		color: white;
		text-align: center;
	}

	.contents_box{
		padding: 40px 0;
	}

	.news_data{
		width: 100%;
		display: block;
		color: #c3a780;
		vertical-align: top;
	}

	.news_text_style1{
		width: 100%;
		display: block;
		color: white;
		vertical-align: top;
	}

	.news_box_style1{
		padding: 10px 20px;
		border-bottom: 1px solid #fff;
		width: 100%;
		margin: auto;
	}

	.discography_box_style1_pc{
		display: none;
	}

	.discography_box_style1_sp{
		letter-spacing: normal;
		width: 100%;
		display: block;
		padding: 0 2%;
		margin-bottom: 30px;
		vertical-align: top;
		position: relative;
	}
	
	.biography_text_style1{
		color: white;
		line-height: 1.8em;
		padding: 20px 0 0 0;
		text-align: left;
	}
	
	.goods_box{
		width: 100%;
		margin: 20px auto;
	}
	
}














