/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Hind", sans-serif;
  color: #25283D;
  background-color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	 box-sizing : border-box;
}

.cd-auto-hide-header a {
  color: #8F3985;
  text-decoration: none;
}

/* -------------------------------- 

1. Auto-Hiding Navigation - Simple

-------------------------------- */
.cd-auto-hide-header {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: #000;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}
.cd-auto-hide-header::after {
  clear: both;
  content: "";
  display: block;
}
.cd-auto-hide-header.is-hidden {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.pc { display: none !important; }
.sp { display: block !important; }




@media only screen and (min-width: 960px) {
  .cd-auto-hide-header {
    height: 90px;
  }
.pc { display: block !important; }
.sp {display: none !important; }
	
}

.cd-auto-hide-header .logo,
.cd-auto-hide-header .nav-trigger {
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cd-auto-hide-header .logo {
  left: 5%;
}
.cd-auto-hide-header .logo a, .cd-auto-hide-header .logo img {
	
  display: block;
}

.cd-auto-hide-header .nav-trigger {
  /* vertically align its content */
  display: table;
  height: 100%;
  padding: 0 1em;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #25283D;
  font-weight: bold;
  right: 0;
  border-left: 1px solid #f2f2f2;
}
.cd-auto-hide-header .nav-trigger span {
  /* vertically align inside parent element */
	color: #8F3985;
  display: table-cell;
  vertical-align: middle;
}
/*ハンバーガーメニュー*/
.cd-auto-hide-header .nav-trigger em, .cd-auto-hide-header .nav-trigger em::after, .cd-auto-hide-header .nav-trigger em::before {
  /* this is the menu icon */
  display: block;
  position: relative;
  height: 2px;
  width: 22px;
  background-color: #8F3985;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.cd-auto-hide-header .nav-trigger em {
  /* this is the menu central line */
  margin: 6px auto 14px;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
}
.cd-auto-hide-header .nav-trigger em::before, .cd-auto-hide-header .nav-trigger em::after {
  position: absolute;
  content: '';
  left: 0;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}
.cd-auto-hide-header .nav-trigger em::before {
  /* this is the menu icon top line */
  -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
          transform: translateY(-6px);
}
.cd-auto-hide-header .nav-trigger em::after {
  /* this is the menu icon bottom line */
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
}
@media only screen and (min-width: 960px) {
  .cd-auto-hide-header .nav-trigger {
    display: none;
  }
}

.cd-auto-hide-header.nav-open .nav-trigger em {
  /* transform menu icon into a 'X' icon */
  background-color: rgba(255, 255, 255, 0);
}
.cd-auto-hide-header.nav-open .nav-trigger em::before {
  /* rotate top line */
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.cd-auto-hide-header.nav-open .nav-trigger em::after {
  /* rotate bottom line */
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.cd-primary-nav {
  display: inline-block;
  float: right;
  height: 100%;
  padding-right: 5%;
}
/*アコーディオンメニュー*/
.cd-primary-nav > ul {
  position: absolute;
  z-index: 2;
  top: 75px;
  left: 0;
  width: 100%;
  background-color: #000;
  display: none;
  box-shadow: 0 14px 20px rgba(0, 0, 0, 0.2);
}
/*menu内文字*/
.cd-primary-nav > ul a {
  /* target primary-nav links */
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  color: #8F3985;
  font-size: 1.8rem;
  border-top: 1px solid #f2f2f2;
}
/*menu内文字*/
.cd-primary-nav > ul a:hover, .cd-primary-nav > ul a.active {
  color: #fff;
}
@media only screen and (min-width: 960px) {
  .cd-primary-nav {
    /* vertically align its content */
    display: table;
  }
  .cd-primary-nav > ul {
    /* vertically align inside parent element */
    display: table-cell;
    vertical-align: middle;
    /* reset mobile style */
    position: relative;
    width: auto;
    top: 0;
    padding: 0;
    background-color: #000;
    box-shadow: none;
  }
  .cd-primary-nav > ul::after {
    clear: both;
    content: "";
    display: block;
  }
  .cd-primary-nav > ul li {
    display: inline-block;
    float: left;
    margin-right: 1.5em;
  }
  .cd-primary-nav > ul li:last-of-type {
    margin-right: 0;
  }
  .cd-primary-nav > ul a {
    /* reset mobile style */
    height: auto;
    line-height: normal;
    padding: 0;
    border: none;
  }
}

.nav-open .cd-primary-nav ul,
.cd-primary-nav ul:target {

	
	
	/* アコーディオンメニュー表示に重要*/
  display: block;
}
@media only screen and (min-width: 960px) {
  .nav-open .cd-primary-nav ul,
  .cd-primary-nav ul:target {
    display: table-cell;
  }
 /* アコーディオンメニュー表示に重要　ここまで */
}


/* -------------------------------- 

1. Auto-Hiding Navigation - Simpleここまで

-------------------------------- */








/* -------------------------------- 

Main content

-------------------------------- */
.ss-main-content {
  padding: 0px 5% 2em;
  overflow: hidden;
}

.ss-main-content.sub-nav-hero.secondary-nav-fixed {
  margin-top: 50px;
}
/*本文コード*/
.ss-main-content p {
  max-width: 960px;
  line-height: 1.6;
  margin: 1.5em auto;
  font-family: "David Libre", serif;
  color: #a5a8a9;
}
/*本文コードここまで*/

	




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



	
	.ss-main-content {
    padding-top: 0px;
  }
  .ss-main-content.sub-nav {
    padding-top: 150px;
  }
  .ss-main-content.sub-nav-hero.secondary-nav-fixed {
    margin-top: 70px;
  }
  .ss-main-content p {
    font-size: 2.4rem;
  }
}



.sns_links {
	max-width: 540px;
	margin:auto;
	margin-top:95px;
	text-align: center;
	background-color: #000;
	heigh:50px;
	
}


.tw {
	margin-right: 15px;
    background: url("../img/tw_over.png") no-repeat;
}
.tw a {
    display: inline-block;
}
.tw a:hover {
	background-color: transparent; /* IE6対応 */
}
.tw a:hover img {
    visibility: hidden;
}

.fb {
	margin-right: 15px;
    background: url("../img/fb_over.png") no-repeat;
}
.fb a {
    display: inline-block;
}
.fb a:hover {
	background-color: transparent; /* IE6対応 */
}
.fb a:hover img {
    visibility: hidden;
}
.yt {
	margin-right: 15px;
    background: url("../img/yt_over.png") no-repeat;
}
.yt a {
    display: inline-block;
}
.yt a:hover {
	background-color: transparent; /* IE6対応 */
}
.yt a:hover img {
    visibility: hidden;
}
.inst {
	margin-right: 15px;
    background: url("../img/inst_over.png") no-repeat;
}
.inst a {
    display: inline-block;
}
.inst a:hover {
	background-color: transparent; /* IE6対応 */
}
.inst a:hover img {
    visibility: hidden;
}
.sc {
	margin-right: 15px;
    background: url("../img/sc_over.png") no-repeat;
}
.sc a {
    display: inline-block;
}
.sc a:hover {
	background-color: transparent; /* IE6対応 */
}
.sc a:hover img {
    visibility: hidden;
}



/*TOP Page*/
.imgspace {
	max-width: 98%;
	margin:auto;
	text-align: center;
	background-color: #000;
	heigh:auto;
	
}

.imgspace img{
	width:100%;}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc_top { display: block !important; }
.sp_top { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 960px) {
    .pc_top { display: none !important; }
    .sp_top { display: block !important; }
	.snstimeline { display: none !important; }
	.sns_tube { display: none !important; }
}


.snstimeline {
	max-width: 98%;
	margin-top:20px;
	text-align: center;
	heigh:900px;
	color: #FFFFFF;
	font-size: xx-large;
	font-weight: bold;
    font-family: serif;
	display: flex;
	justify-content: center; 
}

.twbox{
	width:400px;
	height: 810px;
	margin-right: 20px;
}

.sns_tube {
	max-width: 98%;
	margin-top:20px;
	text-align: center;
	heigh:900px;
	color: #FFFFFF;
	font-size: xx-large;
	font-weight: bold;
    font-family: serif;
}



.sns_tw{
	width:400px;
	height:900px;
}






/*GIG Information*/
.gig{
	background-size:cover;
	background-image:url("../gig/image/gigback.png");
	background-attachment: fixed;
	margin:0;
	width: 100%;
	height: 100%;
}

.giginfo {
  max-width: 100%;
  text-align: center;
  margin-top: 92px;
  color: #fff;
}
.giginfo h1{
font-size: larger;
	margin-top: 0em;
	font-weight: bold;
  color:fuchsia;
}
.giginfo h2{
	font-size: 1.2em;
	font-weight: bold;
	padding: auto;
  color:#D072F4;
}
.giginfo p{
	font-size: 0.9em;
	padding: auto;
  color:#fff;
}
.ss{
	font-size: 1.3em;
	font-weight: bold;
	padding: auto;
  color:#E600E0;
}

.giginfo a{
	font-size: 1em;
	font-weight: bold;
	padding: auto;
  color:#FD0000;
}

.gigdate {
	background-color:rgba(85,85,85,0.7);
	margin:auto;
	margin-bottom:2em;
	padding: 0.5em;
	max-width:960px;
	color:#000;
	border-radius: 30px;
}


/*Bandページ*/

.band{
	background-attachment: fixed;
	margin-top:0;
	width: 100%;
	height: 100%;
}

@media (max-width: 960px) {
  .band {
	   box-sizing : border-box;
	  background-size:cover;
    background-image:url("../band/img/bandback960.png");
	  overflow-x: hidden !important;
	  }
.banddata{
	width:auto;
	max-width:960px;
	
}
	.banddata h1{
			font-size: 1.2em;
		
	}
.banddata p{
		max-width:100%;
	}
}
@media (min-width: 960px) {

  .band {
	  background-size:cover;
    background-image:url("../band/img/bandback.jpg");
	   }
	.banddata h1{
			font-size: 1.5em;
	}
.banddata p{
		font-size: 1.2em;
	}
}

.banddata{
	background-color:rgba(38,38,38,0.70);
	margin:auto;
	text-align: center;
	margin-top:0em;
	padding: 0.5em;
	max-width:520px;
	color:#000;
}
.banddata h1{
	background-image:url("../band/img/sstagar.png");
	background-repeat: no-repeat;
	margin:auto;
	width:350px;
	height: 80px;
	padding-top: 42px;
	font-weight: bold;
	text-shadow: #000;
	color:#CD73F6;
	}
.banddata p{
	margin:auto;
	width:400px;
	padding-top:1em;
	padding-bottom:1em;
	font-weight: bold;
	text-align: center;
	color:#FFFFFF;
	}
.sslogo{
	background-image:url("../band/img/sslogo.png");
	background-repeat: no-repeat;
	margin:auto;
	width:30px;
	height: 30px;
		}

