@charset "utf-8";

html {
	color: #FFFFFF;
	font-size: 1em;
	-webkit-text-size-adjust: none;
	user-select: none;
	height: 100%;
}

body {
	background: #000000;
	height: 100%;
}

img {
	display: block;
	width: 100%;
}

a {
	display: block;
	text-decoration: none;
	color: #FFFFFF;
}

.modal {
	z-index: 1100;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	display: none;
}

#detail-area {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 0, 0, 0.5);
	border-radius: 5px;
}

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
#closebtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: relative;
	cursor: pointer;
	width: 50px;
	height:50px;
	margin: 0 0 0 auto;
}

/*ボタン内側*/
#closebtn span{
	display: inline-block;
	transition: all .4s;/*アニメーションの設定*/
	position: absolute;
	left: 14px;
	height: 2px;
	border-radius: 5px;
	background: #fff;
	width: 45%;
}

#closebtn span:nth-of-type(1) {
	top:13px;	
}

#closebtn span:nth-of-type(2) {
	top:19px;
}

#closebtn span:nth-of-type(3) {
	top:25px;
}

#closebtn span:nth-of-type(3)::after {
	position: absolute;
	top:5px;
	left:-3px;
	color: #fff;
	font-size: 0.6rem;
	text-transform: uppercase;
	text-align: center;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

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

#closebtn span:nth-of-type(2) {
	opacity: 0;
}

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

#closebtn span:nth-of-type(3)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
	transform: translateY(0) rotate(-45deg);
	top:5px;
	left:4px;
}

#mdetail-area {
	display: table;
	width: 100%;
	max-width: 1500px;
	height: 100%;
	margin: 0 auto;
}

#mdetail-main {
	display: block;
	vertical-align: middle;
}

.mdetail-content {
	overflow: scroll;
	height: 100vh;
	width: 100%;
	/* IE, Edge 対応 */
	/*-ms-overflow-style: none;*/
	/* Firefox 対応 */
	/*scrollbar-width: none;*/
}
/* Chrome, Safari 対応 */
.mdetail-content::-webkit-scrollbar {
 /*display:none;*/
}

.mdetail-content-img {
	display: block;
	/*max-width: 70%;*/
	margin: 0 auto;
	vertical-align: middle;
	padding: 5px;
}

.mdetail-content-info {
	display: block; 
	/*overflow: scroll;*/
	/* IE, Edge 対応 */
	/*-ms-overflow-style: none;*/
	/* Firefox 対応 */
	/*scrollbar-width: none;*/
	vertical-align: top;
	box-shadow: 0 0 2px 1px rgba(255,255,255,0.5);
			padding: 10px;
}

.mdetail-over {
	/*overflow: scroll;*/
	/*height: 50vh;*/
	/* IE, Edge 対応 */
	-ms-overflow-style: none;
	/* Firefox 対応 */
	scrollbar-width: none;
}

.mdetail-over::-webkit-scrollbar {
	display:none;
}

/* Chrome, Safari 対応 */
.mdetail-content-info::-webkit-scrollbar {
 /*display:none;*/
}


.mdetail-name {
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
	padding: 10px;
	border-bottom: 1px dotted #666666;
}

.mdetail-data {
	font-size: 1.2em;
	padding: 20px 0;

}

#opening-section {
	width: 100%;

	background: #000000;
	z-index: 1000;

}

#opening {
	width: 100%;
	display: block;
	margin: 0 auto;
	max-width: 960px;
}


/*header設定*/
#header{
	position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
	/*height: 100vh;*//*高さを全画面にあわせる*/
	
}

#btn-area {
	position: fixed;;
	z-index: 1050;
	top: 20px;
	right: 20px;
	background: rgba(0, 0, 0, 0.8);
	color: #FFFFFF;
}

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
#openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: relative;
	cursor: pointer;
	width: 50px;
	height:50px;
	margin: 0 0 0 auto;
}

/*ボタン内側*/
#openbtn span{
	display: inline-block;
	transition: all .4s;/*アニメーションの設定*/
	position: absolute;
	left: 14px;
	height: 2px;
	border-radius: 5px;
	background: #fff;
	width: 45%;
}

#openbtn span:nth-of-type(1) {
	top:13px;	
}

#openbtn span:nth-of-type(2) {
	top:19px;
}

#openbtn span:nth-of-type(3) {
	top:25px;
}

#openbtn span:nth-of-type(3)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:5px;
	left:-3px;
	color: #fff;
	font-size: 0.6rem;
	text-transform: uppercase;
	text-align: center;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

#openbtn.active span:nth-of-type(1) {
    top: 14px;
    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: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

#openbtn.active span:nth-of-type(3)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
	top:5px;
	left:4px;
}

#menu {
	display: none;
	min-width: 200px;
}

.menu-item {
	border-bottom: 1px dotted #666666;
	display: none;
}

.menu-item-padd {
	padding: 10px 0 10px 20px;
	
}

#sns-menu {
	z-index: 1040;
	position: fixed;
	top: 50%;
	right: 0;
	width: 60px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	border-radius: 10px 0 0 10px;
	background: rgba(0, 0, 0, 0.4);
}

.sns-item {
	padding: 8px;
}

#video-section {
	display: none;
}

#video-area {
	position: absolute;
	width: 100%;
}

#video {
	width: 100%;
	display: block;
	margin: 0 auto;

}

#container{
	text-align: center;
	position: relative;

}



#main-content {
	position: absolute;
	z-index: 15;
	width: 100%;
	margin: 0 auto;
}
.img-group {
	position: relative;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

#img-t {
	width: 100%;
	margin: 0 auto;
	position: absolute;
	z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

#img-w {
	width: 100%;
	/*position: absolute;
	z-index: 9;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);*/
}

.img-start {
	/*width: 80%;*/
	margin: 0 auto;
}

.about-section, .artist-section, .movie-section, .contact-section, .access-section, .timetable-section, .news-section, .performance-section {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 20px;
}

.news-section a:hover {
	color: #FFFF00;
}

.about-section, .artist-section, .timetable-section {
	/*display: none;*/
}

.timetable-list {
	display: block;
	padding: 10px;
	width: 100%;
}

.timetable-list-item {
	display: block;
	margin-bottom: 40px;
}

.timetable-line {
	background: #000000;
	display: none;
}

.timetable-ginga {
	background: rgba(255,0,0, 0.6);
}

.timetable-pliocene {
	background: rgba(51,102,255, 0.6);
}

.timetable-head {
	font-size: 1.6em;
	font-weight: bold;
	padding: 10px;
	border-left: 1px solid #000000;
	border-right: 1px solid #000000;
	border-bottom: 2px solid #FFFFFF;
}


.timetable-data {
	border: 1px solid #000000;
	border-bottom: 1px solid #FFFFFF;
	padding: 20px 0;
	font-size: 1.1em;
}

.timetable-member {
	font-weight: bold;
	padding: 10px;
}

.timetable-nomember {
	background: rgba(0, 0, 0, 0.4);
	color: #999999;
}

.timetable-time {
	/*padding: 10px;*/
	font-size: 0.8em;
	display: block;
}


.artist-list {
	display: flex;
	flex-wrap: wrap;
}


.artist-list > div:nth-of-type(1) {
	/*width: 60%;*/
}

.artist-list > div:nth-of-type(2) {
	/*width: 40%;*/
}

.artist-list > div:nth-of-type(3) {
	/*width: 30%;*/
}

.artist-list > div:nth-of-type(4) {
	/*width: 70%;*/
}

.artist-list-item {
	width: 50%;
	padding: 5px;
	display: flex;
	position: relative;
}

.artist-list img {
	box-sizing: border-box;
	width: 100%;

}

.artist-content {
	background-size: cover;
	padding-top: 60%;
	background-position: center;
	width: 100%;
	position: relative;
	border-radius: 10px;
}

.artist-detail {
	position: absolute; 
	bottom: 0; 
	left: 0; 
	width: 100%;
	height: 100%;
	padding: 5px;
	color: #FFFFFF;
	transition: 0.5s;
	text-shadow:0 0 4px #000000,0 0 4px #000000,0 0 4px #000000,0 0 4px #000000;
	display: table;
	font-weight: bold;

}

.artist-detail:hover {
	opacity: 0;
}

.artist-name {
	display: table-cell;
	height: 100%;
	background: rgba(255,255,0,0.15);
	vertical-align: middle;
	border-radius: 10px;
	user-select: none;
	font-size: 0.8em;
}

.artist-list-item:nth-of-type(1) .artist-content {
	padding-top: 85%;
}
.artist-list-item:nth-of-type(2) .artist-content {
	padding-top: 85%;
}

.artist-list-item:nth-of-type(3) .artist-content {
	padding-top: 80%;
}

.performance-section .title-main {
	font-size: 2em;
}

.performance-detail {
	margin-bottom: 10px;
}

.performance-name {
	font-size: 0.8em;
	font-weight: bold;
	/*text-shadow:0 0 2px #FF0000,0 0 2px #FF0000,0 0 2px #FF0000,0 0 2px #FF0000;*/
}

/*スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
	position: fixed; 
	z-index: 120;
	bottom:0;
	right:8%;
	margin-bottom : 20px;
    /*矢印の動き1秒かけて永遠にループ*/
	animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }

/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
	position: absolute;
	left:-20px;
	bottom:10px;
    /*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #eee;
    transform: skewX(-31deg);
}

.scrolldown4:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	right:0;
    /*矢印の形状*/
	width:1px;
	height: 50px;
	background:#eee;
}

.section-title {
	padding: 20px 0;
	/*font-size: 2.5em;*/
	margin-bottom: 20px;
}

.title-btborder {
	border-bottom: 1px solid #FFFFFF;
}

.title-main {
	font-size: 2.5em;
	font-weight: bold;
}

.title-sub {
	font-size: 0.8em;
	margin-bottom: 20px;
}

#contact {
	/* font-size: 1.5em; */
}

#footer {
	height: 40px;
	position: fixed;
	bottom: 0;
}

/*footerまでスクロールしたら消す*/
.is-hidden {
  visibility: hidden;
  opacity: 0;
}

@media only screen and (min-width: 300px) {
	.artist-name {
		font-size: 0.9em;
	}
	.performance-name {
		font-size: 1em;
	}

}

@media only screen and (min-width: 500px) {
	.artist-name {
		font-size: 1.2em;
	}
	.performance-name {
		font-size: 1.2em;
	}

}
@media only screen and (min-width: 600px) {
	.artist-name {
		font-size: 1.5em;
	}
	.mdetail-name {
		font-size: 1.8em;
	}
	.performance-name {
		font-size: 1.5em;
	}
}
@media only screen and (min-width: 700px) {
	.artist-name {
		font-size: 1.8em;
	}
	.performance-name {
		font-size: 1.8em;
	}
}
@media only screen and (min-width: 900px) {
	.timetable-list {
		display: table;
	}
	.timetable-list-item {
		display: table-cell;
		margin-bottom: 0;
	}
	
	.timetable-line {
		display: block;
	}

	.timetable-time {
		display: none;
	}
	
	.timetable-member {
		display: table;
		margin: 0 auto;
	}
	.member-item {
		display: table-cell;
	}
	
	#mdetail-main {
		display: table-cell;
	}
	.mdetail-content {
		display: table;
		/*height: 100vh;*/
		padding: 5px;
		overflow: unset;
		height: auto;
	}

	.mdetail-content-img {
		display: table-cell;
		width: 50%;
	}
	.mdetail-content-info {
		display: table-cell;
		width: 50%;
	}
	.mdetail-data {
		padding: 20px 0;
	}
	
	.mdetail-over {
		overflow: scroll;
		height: 50vh;
	}
}

@media only screen and (min-width: 1100px) {
	

	.mdetail-data {
		font-size: 1.4em;
	}
}