@charset "utf-8";

html,
body{
  font-family: 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN',YuGothic, '游ゴシック','Hiragino Sans', 'メイリオ', Meiryo, sans-serif;
  color: #ecdeff;
  background: #000;
  font-size: 14px;
/*   -webkit-font-smoothing: antialiased; */
}

#wpadminbar {
  overflow: hidden;
  margin-top: -30px;
  padding-bottom: 15px;
  opacity: 0;
  transition: 0.3s;
  box-sizing: content-box;
}
#wpadminbar:hover {
  opacity: 1;
  margin-top: 0;
  padding-bottom: 0px;
  background: #23282d !important;
}

#wrapper *{
  box-sizing: border-box;
}
img,svg{
  width: 100%;
  max-width: 100%;
  height: auto;
}

#wrapper{
	overflow: hidden;
}
a{
	color: #ecdeff;
}
img.sp{
	display: none !important;
}
.btn{
	padding: 15px 0;
	text-align: center;
}
.btn a{
  background: #ecdeff;
  color: #000;
  display: inline-block;
  padding: 0.7em 3em;
  font-family: "Inconsolata", monospace;
  text-decoration: none;
  border: 1px solid #ecdeff;
  transition: .4s;
  font-size: 125%;
}
.btn a:hover{
  color: #ecdeff;
  background: #000;
  border: 1px solid #ecdeff;
}
.movie_wrapper{
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    z-index: 1;
}

.movie_wrapper iframe,
.movie_wrapper img{
    position: absolute;
    top: 0 ;
    left: 0 ;
    height: 100% ;
    width: 100% ;
}

br.spbr{
  display: none;
}

/***** gimmick *****/
.fadeIn{
  opacity: 0;
  transform: translateY(30px);
  -webkit-transform: translateY(30px);
  transition: .7s;
  -webkit-transition: .7s;
}
.fadeIn.left{
  transform: translateX(-20%);
  -webkit-transform: translateX(-20%);
}
.fadeIn.right{
  transform: translateX(20%);
  -webkit-transform: translateX(20%);
}
.fadeIn.scrollIn{
  transform: translate(0,0) !important;
  -webkit-transform: translate(0,0) !important;
  opacity: 1;
}
/***** gimmick *****/

/***** pageBG *****/
.bg-area{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #e2e2e2;
}
.bg-area img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bg-area:after{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#loading{
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  left: 0;
  top: 0;
  z-index: 999;
}

/***** header *****/
header.toppage-header{
  height: 100vh;
  height: 100svh;
  padding-bottom: 50px;
  z-index: 101;
  background: #000;
  position: relative;
}
.header_wrap{
  max-width: 600px;
  margin: 0 auto;
}
.header_wrap h1{
  z-index: 1; 
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 40%;
}
.header_wrap h1 .title-svg{
  margin-bottom: 5%;
  display: block;
   opacity: 0;
}
.header_wrap h1.show .title-svg{
  opacity: 1;
  transition: .5s ease .5s;
}
.header_wrap h1 .logo-svg{
  display: block;
  position: relative;
}
.header_wrap h1 .logo-svg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  clip-path: inset(0);
  -webkit-clip-path: inset(0);
  transition: .6s ease-out;
  background: url(../img/title_logo_b.svg) no-repeat center top;
  background-size: 100%;
}

.header_wrap h1.show .logo-svg:after {
/*
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path:  inset(0 0 100% 0);
*/
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path:  inset(0 0 0 100%);
}


.toppage-header .header_wrap .timer{
  text-align: center;
  font-size: 1.7em;
  padding-top: 10%;
  opacity: 0;
  -webkit-text-size-adjust: 100%;
}
.toppage-header.ready .header_wrap .timer{
  opacity: 1;
  transition: .5s ease .8s;
}

.timer i{
  display: inline-block;
  width: 1.35em;
  vertical-align: middle;
  margin-right: 0.3em;
  margin-top: -0.2em;
}
.timer time{
  display: inline-block;
  letter-spacing: 0.1em;
  color: #ecdeff;
  font-family: "Inconsolata", monospace;
}

.toppage-header .scroll_annotation{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  height: 62px;
  color: #ecdeff;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  opacity: 0;
}
.toppage-header .scroll_annotation:after{
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  border-left: 1px solid #ecdeff;
  height: 40px;
  font-size: 90%;
  animation: scroll-line 2s ease-out 0s infinite normal;
}
@keyframes scroll-line{
   0% { transform: scaleY(0); transform-origin: top;}
  30% { transform: scaleY(1); transform-origin: top;}
  50% { transform: scaleY(1); transform-origin: bottom;}
  80% { transform: scaleY(0); transform-origin: bottom;}
  100%{ transform: scaleY(0); transform-origin: bottom;}
}
.toppage-header.ready .scroll_annotation{
  opacity: 1;
  transition: .6s ease 1s;
}

/***** nav *****/

/* menu */
#globalnavi{
  position: fixed;
  right: 0;
  top: 0;
  height: 50px;
  width: 100%;
  z-index: 102;
  transform: translateY(0);
  transition: .4s ease 1s;
  opacity: 0;
}
.loading #globalnavi{
  transform: translateY(-100%);
  opacity: 0;
}
#globalnavi.fixed{
  transition: .4s;
}
#globalnavi.--is_show{
  opacity: 1;
}

#globalnavi .menu__toggle{
  position: absolute;
  right: 50px;
  top: 30px;
  width: 50px; 
  height: 50px;
  display: block;
  appearance: none;
  background: transparent;
  border: none;
  z-index: 100;
  display: none;
  cursor: pointer;
}

#globalnavi .menu__toggle:before,
#globalnavi .menu__toggle:after{
  content: "";
  display: block;
  height: 3px;
  background: #ecdeff;
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -5px;
  transition: .3s;
}
#globalnavi .menu__toggle:after{
  margin-top: 5px;
}
#globalnavi .menu__toggle span{
  position: absolute;
  left: auto;
  right: 15px; 
  top: 50%;
  width: 18px;
  margin: 0;
  height: 1px;
  display: block;
  overflow: hidden;
  transition: .3s;
}
#globalnavi.-show{
  width: 100%;
  height: 100vh;
}
#globalnavi.-show .menu__toggle span{
  opacity: 0;
}

#globalnavi.-show .menu__toggle:before{
  transform: rotate(25deg);
  margin-top: 0;
}
#globalnavi.-show .menu__toggle:after{
  transform: rotate(-25deg);
  margin-top: 0;
}

#globalnavi .menu__wrapper{
  background: #ecdeff;
  width: 100%;
  left: auto;
  display: block;
  position: relative;
}
#globalnavi .menu__wrapper .menu-list ul{
  display: flex;
  gap: 7%;
  padding: 0 4em;
  padding-right: 300px;
}
#globalnavi .menu__wrapper .menu-list ul li{
}

#globalnavi .menu__wrapper .menu-list ul li a{
  text-decoration: none;
  color: #000000;
  font-family: "Instrument Serif", serif;
  font-size: 120%;
  line-height: 48px;
  padding-bottom: 2px;
  display: inline-block;
  transition: .3s;
}
#globalnavi .menu__wrapper .menu-list ul li a:hover{
  opacity: 0.4;
}

#globalnavi .menu__wrapper .menu-list ul li.top a{
  width: 2em;
  padding: 0;
  padding-top: 0.7em;
  line-height: 2em;
}
#globalnavi .timer{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-43%);
  font-size: 100%;
}
#globalnavi .timer time{
  color: #000;
}

/***** #contents *****/
#contents{
  min-height: calc(100vh - 340px);
  position: relative;
  z-index: 1;
  padding-top: 60px;
}
#contents:before{
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/logo_mazzel.svg) no-repeat center center;
  background-size: 30%;
}
#contents > section{
  position: relative;
  z-index: 1;
}
#contents .inner{
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 100px;
	clear: both;
	width: 100%;
}
#contents p{
  line-height: 1.8em;
}
#contents .section-title{
  color: #ecdeff;
  font-size: 50px;
  font-size: 400%;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  line-height: 1em;
  text-indent: 0.1em;
  margin-bottom: 1.5em;
  text-align: center;
}
#contents .section-title.fadeIn{
  transform: none;
  opacity: 1;
}
#contents .section-title span{
  display: inline-block;
  line-height: 1em;
  position: relative;
  margin: 0 auto;
  color: #412f3e;
}
#contents .section-title span:after {
  content: attr(data-txt);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: .7s ease-out;
  color: #ecdeff;
}
#contents .section-title.scrollIn span:after {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}
#contents .top-section .btn-more{
  padding: 60px 0 0;
  text-align: center;
}
#contents .top-section .btn-more a{
  background: #ecdeff;
  color: #000;
  display: inline-block;
  padding: 0.7em 3em;
  font-family: "Inconsolata", monospace;
  text-decoration: none;
  border: 1px solid #ecdeff;
  transition: .4s;
  font-size: 125%;
}
#contents .top-section .btn-more a:hover{
  color: #ecdeff;
  background: #000;
  border: 1px solid #ecdeff;
}
/***** news,about,goods  *****/
.newslist{
  border-top: 1px solid #412f3e;
}
.newslist .entry a{
  display: block;
  border-bottom: 1px solid #412f3e;
  text-decoration: none;
  padding: 1.5em 0;
  color: #ecdeff;
  font-size: 115%;
  padding-right: 3em;
}
.newslist .entry a:after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  margin-top: -1rem;
  background: url(../img/icon_news.svg) no-repeat center center;
  background-size: 100%;
  
}
.newslist .entry a .time-cat{
  font-family: "Inconsolata", monospace;
  font-size: 112%;
  font-weight: 600;
}
.newslist .entry a .entry-text{
  margin-top: 0.8em;
}
.schedule_table{
  margin-bottom: 1em;
}
.schedule_table .tableitem{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #412f3e;
/*   border-top: 1px solid #ecdeff; */
}
.schedule_table span{
  display: block;
  padding: 1em 1em;
  padding: 1em 0em;
  line-height: 1.5em;
}
.schedule_table .tableitem .date_block{
  width: 45%;
}
.schedule_table .tableitem .pref_block{
  width: 15%;
  text-align: center;
}
.schedule_table .tableitem .place_block{
  width: 40%;
  text-align: left;
}
.schedule_table .tableitem .place_block a:hover{
  transition: .3s;
  color: #ecdeff;
}
.schedule_table .tableitem .place_block small{
  font-size: 88%;
  display: inline-block;
  margin-top: 0.5em;
}
.schedule_table .tableitem .place_block small strong{
  display: block;
}

.schedule_table .tableitem .date_block .col{
  padding: 1.5em 1em;
  display: flex;
  justify-content: space-around;
}
.schedule_table .tableitem .date_block .col:nth-child(2),
.schedule_table .tableitem .date_block .col:nth-child(3){
  border-top: 1px solid #412f3e;
}

.schedule_table .tableitem.table_head{
  font-family: "Inconsolata", monospace;
  font-size: 120%;
  color: #ecdeff;
  font-weight: 500;
}
.schedule_table .tableitem.table_head .col{
  padding: 0 0 0 2.5em;
}
.schedule_table .tableitem.table_head .col .date{

}
.schedule_table .tableitem.table_head .place_block{
  text-align: center;
}

#about .schedule_note{
  font-size: 92%; 
  margin: 2em auto;
}

/* ticket */
#ticket .ticket-sec{
  margin: 50px auto;
  margin: 30px auto;
  border: 1px solid #ecdeff;
  padding: 2em;
  padding-top: 1.5em;
}
#ticket .ticket-sec h3{
  font-size: 125%;
  color: #ecdeff;
  line-height: 1.8em;
  margin-bottom: 0.5em;
  margin-top: 2em;
}
#ticket .ticket-sec h3:first-child{
  margin-top: 0em;
}
#ticket .ticket-sec p{
  margin: 0.5em 0;
}
#ticket .ticket-sec p.note{
  font-size: 92.5%;
  margin-top: 1em;
}
#ticket .ticket-sec p.indent4{
}
#ticket .ticket-sec p small{
  font-size: 95%;
}
#ticket .notes{
  margin-top: 1.5em;
  padding: 1.5em;
  background: rgba( 236,222,255,0.3);
/*
  background: rgba( 255,255,255,0.5);
  color: #000;
*/

}
#ticket .notes ul li{
  font-size: 92.5%;
  line-height: 1.6em;
  padding-left: 1em;
  text-indent: -1em;
}

#ticket .ticket-sec.ticket-price{
/*
  background: #ecdeff;
  color: #000;
*/
}
#ticket .ticket-sec.ticket-price h3{
/*   color: #000; */
}
#ticket .ticket-sec.ticket-price p{
  margin-top: 1.5em;
  border-top: 1px solid #412f3e;
  padding-top: 1.5em;
}
#ticket .ticket-sec.ticket-price p strong{
  font-weight: bold;
}

#ticket .ticket-sec.ticket-price .notes{
/*   background: rgb(87 68 109 / 20%); */
  margin: 0 0em 1em;
  padding: 1.5em;
}

#ticket .btn-faq{
  text-align: center;
  margin: 2em 0 0;
}
#ticket .btn-faq a{
  background: #ecdeff;
  color: #000;
  display: inline-block;
  padding: 1.1em 3em 1em;
  text-decoration: none;
  border: 1px solid #ecdeff;
  transition: .4s;
  font-size: 100%;
}

/* goods */

.goodslist{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -6px;
}
.goodslist .goods_item{
  width: 25%;
  padding: 6px;
  padding-bottom: 20px;
  text-align: center;
}
.goodslist .goods_item p{
  font-size: 115%;
  margin-top: 0.5em;
}
.goodslist .goods_item p.price{
  margin-top: 0;
  font-size: 85%;

}

#member .members{
  display: flex;
  flex-wrap: wrap;
}
#member .members li{
  width: 25%;
  padding: 11px 6px;
  text-align: center;
  font-family: "Lexend Deca", serif;
}
#member .members li h3{
  text-align: center;
  border-bottom: 1px solid #ecdeff;
  line-height: 1em;
  padding-top: 1.5em;
  padding-bottom: 0.8em;
  margin-bottom: 0.8em;
  font-size: 86%;
  font-weight: 500;
  letter-spacing: 0.05em;
}
#fanclub .text-body{
  text-align: center;
}
#fanclub .text-body h3{
  font-size: 112%;
  line-height: 1.6em;
  margin: 1.6em auto;
}
#fanclub .text-body p{
  margin-bottom: 1.8em;
}
#fanclub .fc-sitelist {
  display: flex;
  gap: 15px;
}
#fanclub .fc-sitelist li{
  width: 50%;
}
#fanclub .fc-sitelist li a{
  font-family: "Inconsolata", monospace;
  display: block;
  padding: 1.5em 0.5em;
  border: 1px solid #ecdeff;
  text-align: center;
  text-decoration: none;
  color: #ecdeff;
  font-size: 125%;
  transition: .3s;
}
#fanclub .fc-sitelist li a:hover{
  background:  #ecdeff;
  color: #000;
}

#attention .content-area .faq_items{
  border-top: 1px solid #ecdeff;
  margin-bottom: 60px;
}
#attention .content-area .faq_item{
  padding: 1.7em 0;
  border-bottom: 1px solid #ecdeff;
  line-height: 1.6em;
  font-size: 115%;
}
#attention .content-area .faq_item h3{
  padding-left: 2.5em;
  position: relative;
  cursor: pointer;
  padding-right: 2.4em;
}
#attention .content-area .faq_item h3:before{
  content: "Q";
  font-size: 180%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: -0.1em;
  font-family: "Inconsolata", monospace;
  font-weight: normal;
}
#attention .content-area .faq_item h3:after{
  content: "";
  display: block;
  position: absolute;
  top: -0.1em;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  background: url(../img/icon_toggle.svg) no-repeat center center;
  background-size: 100%;
  transition: .3s;
  -webkit-transition: .3s;
  transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
}
#attention .content-area .faq_item.open h3:after{
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
}
#attention .content-area .faq_item .ans{
  padding-left: 2.5em;
  position: relative;
  display: none;
  padding-top: 1em;
}
#attention .content-area .faq_item .ans:before{
  content: "A";
  font-size: 180%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0.5em;
  font-family: "Inconsolata", monospace;
  font-weight: normal;
}
#attention .content-area .faq_item .ans p{
  font-size: 81%;
}


/* news個別ページ */
#contents .pageSection .entry-body a{
  color: #828cff;
}


/***** footer *****/

#siteFooter{
	text-align: center;
	background: #ecdeff;
	z-index: 100;
	position: relative;
	overflow: hidden;
	padding: 60px 20px;
  align-items: center;
  color: #000;
}
#siteFooter .slide-sns{
  position: fixed;
  right: 30px;
  top: 0;
  height: 100%;
  width: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 50px 0 100px;
  box-sizing: border-box;
  z-index: 100;
  transition: .3s;
  mix-blend-mode: difference;
  -webkit-mix-blend-mode: difference;
}
#siteFooter .footer-links{
	position: relative;
	text-align: center;
}
#siteFooter .footer-links li{
  
}
#siteFooter .footer-links li a{
  display: inline-block;
  padding: 0.5em 1.6em;
  color: #000;
  font-size: 125%;
  font-family: "Inconsolata", monospace;
  text-decoration: none;
  position: relative;
}
#siteFooter .footer-links li a:after{
  content: "";
  display: block;
  position: absolute;
  width: 1.6em;
  height: 1.6em;
  right: 0;
  top: 0.2em;
  background: url(../img/icon_link.svg) no-repeat center center;
  background-size: 100%;
}

#siteFooter .footer-links li.bmsg-link{
  width: 80px;
  margin: 2em auto;
}
#siteFooter .footer-links li.bmsg-link a{
  padding: 0;
}
#siteFooter a{
  transition: .3s;
}
#siteFooter a:hover{
  opacity: 0.5;
}
#siteFooter .footer-links li.bmsg-link a:after{
  content: none;
}
#siteFooter p.copyright{
  font-family: "Inconsolata", monospace;
  font-weight: 300;
}





/*** pages ***/
#contents .pageSection .pager{
  overflow: hidden;
}
#contents .pageSection .pager:after{
  clear: both;
}
#contents .pageSection .pager h2{
  display: none;
}
#contents .pageSection .pager a{
  color: #ecdeff;
  display: inline-block;
  font-size: 1em;
  font-family: "Lexend Deca", serif;
}
#contents .pageSection .pager .page-numbers{
  display: none;
}
#contents .pageSection .pager .nav-links{
  padding: 60px 0 15px;
  text-align: center;
  font-size: 125%;
}
#contents .pageSection .pager a.prev{
  padding: 0 3rem;
  display: inline-block;
  background: url(../img/btn-prev.svg) no-repeat left center;
  background-size: 2rem;
  line-height: 3em;
  text-decoration: none;
}
#contents .pageSection .pager a.next{
  padding: 0 3rem;
  display: inline-block;
  background: url(../img/btn-next.svg) no-repeat right center;
  background-size: 2rem;
  line-height: 3em;
  text-decoration: none;
}


/* news_single */
#contents .pageSection article{
  padding-bottom: 60px;
}
#contents .pageSection .entry-head{
  padding-bottom: 2em;
  margin-bottom: 2em;
  border-bottom: 1px solid #ecdeff;
}
#contents .pageSection .entry-head time{
  font-size: 130%;
  font-family: "Inconsolata", monospace;
  font-weight: 600;
  margin-bottom: 0.6em;
  display: block;
}
#contents .pageSection .entry-head h1{
  line-height: 1.6em;
  font-size: 115%;
  font-weight: normal;
}
#contents .pageSection .entry-body img{
  width: auto;
  max-width: 100%;
  margin: 0.5em 0;
}
#contents .pageSection .entry-body .movie_wrapper{
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  z-index: 1;
}
#contents .pageSection .entry-body .movie_wrapper iframe{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
#contents .pageSection .body-text a:hover,
#contents .pageSection .entry-body a:hover{
  transition: .3s;
  color: #ecdeff;
}
#contents .pageSection .btn-back{
  padding-top: 60px;
}

/***** fanclub *****/
#fanclub .content-area .dmy{
  background: #616161;
  color: #FFF;
  text-align: center;
  padding: 100px 60px;
  font-size: 115%;
}



/* ps */
.ps__rail-y,
.ps__rail-y:hover{
  opacity: 1;
  border-right: 1px solid #5b5b5b;
  background: transparent !important;
}
.ps__thumb-y{
  right: 0;
  background: #999;
  width: 4px;
  border-radius: 0;
}
.ps__rail-y:hover .ps__thumb-y{
  width: 4px;
  background: #e2e2e2;
}


@media (orientation: portrait){
  .bg-area{
    background: url(../img//main_new.jpg) no-repeat center center #e2e2e2;
    background-size: 130%;
  }
  .bg-area img{
    opacity: 0;
  }
}
@media (max-width: 980px){
  #globalnavi .menu__wrapper .menu-list ul{
    gap: 4%;
  }
  .newslist .entry a:after,
  #attention .content-area .faq_item h3:after{
    right: 1em;
  }
}

@media (max-width: 768px){
	html, body{
		font-size: 13px;
	}
  .toppage-header h1.sitelogo{
    width: 75%;
  }
  #globalnavi {
    overflow: visible;
    height: 50px;
    background: #ecdeff;
  }
  #globalnavi.-show {
    height: auto;
  }
  #globalnavi .menu__toggle{
    display: block;
    right: 0;
    top: 0;
    width: 40px;
    height: 50px;
  }
  #globalnavi .menu__toggle:before,
  #globalnavi .menu__toggle:after{
    right: 25%;
    width: 50%;
    height: 2px;  
    margin-top: -3px;
    background: #000;
  }
  #globalnavi .menu__toggle:after {
    margin-top: 3px;
  }
  #globalnavi.-show .menu__toggle:before,
  #globalnavi.-show .menu__toggle:after{
    background: #000;
  }
  #globalnavi .menu__wrapper{
    position: absolute;
    right: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    transition: .5s;
    transform: translateY(-101%);
  }
  #globalnavi.-show .menu__wrapper{
    transform: translateY(0%);
  }
  #globalnavi .menu__wrapper .menu-list{
    width: 100vw;
  }
  #globalnavi .menu__wrapper .menu-list ul{
    flex-direction: column;
    padding: 0 15px;
    padding-top: 80px;
  }
  #globalnavi .menu__wrapper .menu-list ul li a{
    line-height: 2.4em;
    font-size: 180%;
    padding-left: 1em;
  }
  #globalnavi .menu__wrapper .menu-list ul li.top a{
    padding-left: 0;
    font-size: 136%;
  }
  #globalnavi .timer{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    transform: none;
/*     padding: 20px 15px; */
    padding: 18px 15px 15px;
    text-align: left;
    font-size: 100%;
    background: #ecdeff;
  }
  #contents{
    min-height: calc(100vh - 235px);
  }
  #contents:before{
    background-size: 60%
  }
  #contents .inner{
    padding: 120px 40px 20px;
    padding-right: 50px;
  }
  .newslist .entry a{
    padding-right: 2em;
  }
  .newslist .entry a:after,
  #attention .content-area .faq_item h3:after{
    right: 0;
  }
  .schedule_table .tableitem .date_block .col{
    padding: 1em 0;
    display: block;
  }
  .schedule_table .tableitem .date_block .col span{
    display: block;
    padding: 0;
  }
  .schedule_table .tableitem .date_block{
/*     width: 32%; */
    width: 27%;
  }
  .schedule_table .tableitem .pref_block{
    width: 23%;
  }
  .schedule_table .tableitem .place_block{
    width: 50%;
    text-align: left;
    padding-right: 0;
  }
  #contents .top-section .btn-more,
  #contents .pageSection .btn-back{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #siteFooter .slide-sns{
    right: 15px;
    width: 20px;
  }
  #contents .pageSection article{
    padding-bottom: 20px;
  }
  #fanclub .fc-sitelist{
    max-width: 480px;
    margin: 0 auto;
    flex-direction: column;
  }
  #fanclub .fc-sitelist li{
    width: 100%;
  }

/*   sp_modal */
  #modal .modal-contents{
    left: 0;
    padding: 50px 40px;
    padding-right: 15px;
  }
  #modal .modal-main{
  }
  #modal .modal-main .modal-detail.modal-prof{
    flex-direction: column;
    padding: 0 7%;
  }
  #modal .modal-main .modal-detail.modal-prof .member_photo,
  #modal .modal-main .modal-detail.modal-prof .member_text{
    width: auto;
    padding: 0;
  }
  #modal .modal-main .modal-detail.modal-prof .member_text{
    padding: 5px 0;
  }
  #modal .modal-main .modal-detail.modal-prof .member_text .name{
    line-height: 2em;
  }
  #modal .modal-main .modal-detail.modal-disco .information{
    flex-direction: column;
  }
  #modal .modal-main .modal-detail.modal-disco .information .disco-head{
    width: 100%;
    padding: 0;
  }
  #modal .modal-main .modal-detail.modal-disco .information .disco-head .jkt{
    width: 50%;
  }
  #modal .modal-main .modal-detail.modal-disco .information .disco-body{
    padding: 0;
  }
  #modal .modal-main .modal-detail.modal-disco .buy-link {
    right: 15px;
    bottom: -21px;
  }
  #modal .modal-close{
    top: 7px;
    right: 7px;
  }
  #modal .modal-close:before, 
  #modal .modal-close:after{
    width: 26px;
    left: 8px;
    height: 1px;
  }
  .ps__thumb-y{
    width: 2px;
  }
}
@media (max-width: 640px){
  #contents .inner{
    padding: 80px 20px 20px;
    padding: 120px 20px 55px;
    padding-right: 40px;
  }
  #contents .section-title{
    margin-bottom: 1em;
  }
  #siteFooter .slide-sns{
    right: 10px;
    width: 18px;
    gap: 26px;
  }
  .goodslist .goods_item{
    width: 33.33%;
    width: 50%;
  }
  #contents .goodslist .goods_item p{
    font-size: 100%;
    line-height: 1.5em;
  }
  #contents .goodslist .goods_item p.price{
    font-size: 90%;
    line-height: 2em;
  }
  #member .members li{
    width: 50%;
    padding: 5px 6px 11px;
  }
  #attention .content-area .faq_item{
    font-size: 110%;
  }
  #attention .content-area .faq_item .ans p{
    font-size: 90%;
  }
  #attention .content-area .faq_item h3:before,
  #attention .content-area .faq_item .ans:before{
    font-size: 160%;
  }
  #attention .content-area .faq_item h3:after{
    top: 0;
    height: 100%;
  }
  #siteFooter{
    padding: 25px 20px;
  }
  #siteFooter .footer-links li.bmsg-link{
    margin: 1.5em auto;
  }
}
@media (max-width: 480px){
	html, body{
		font-size: 12px;
	}
  br.spbr{
    display: inline;
  }
	#globalnavi .menu__toggle{
  	padding: 0;
  	width: 60px;
	}
	#globalnavi .menu__toggle:before, 
	#globalnavi .menu__toggle:after{
  	right: 16.66%;
  	width: 33.34%;
	}
	#contents{
  	padding-top: 0;
	}
	.toppage-header .header_wrap .timer{
/*   	font-size: 1.5em; */
	}

  .schedule_table .tableitem .date_block{
    width: 29%;
    font-size: 95%;
  }
  .schedule_table .tableitem .pref_block{
    width: 18%;
    font-size: 95%;
  }
  .schedule_table .tableitem .date_block .time{
    font-size: 92%;
  }
  .schedule_table .tableitem .place_block{
    width: 53%;
  }
  .schedule_table .tableitem .place_block small{
    line-height: 1.5em;
  }
  .schedule_table .tableitem.table_head .col{
    padding-bottom: 0.5em;
  }
  .schedule_table .tableitem.table_head .time{
    font-size: 90%;
  }
  #about .schedule_note{
    margin: 1em auto;
  }
  #ticket .ticket-sec{
    padding: 1.5em 1em;
    padding: 1em 1.5em;
  }
  #ticket .notes,
  #ticket .ticket-sec.ticket-price .notes{
    padding: 0.7em;
  }


  #modal .modal-main .modal-detail.modal-prof .member_text{
    font-size: 92%;
  }
  #profile .member-list li{
    padding: 5px;
  }
  #contents .section-title{
    font-size: 330%;
  }
  .newslist .entry a:after,
  #attention .content-area .faq_item h3:after{
    width: 1.5rem;
  }
  .newslist .entry a,
  #attention .content-area .faq_item h3{
    padding-right: 2.2rem;
  }
  .newslist .entry a,
  #attention .content-area .faq_item{
    padding-top: 1.2em;
    padding-bottom: 1.2em;
  }
  #contents .pageSection .entry-head{
    padding-bottom: 1.2em;
    margin-bottom: 1.4em;
  }
}

@media (max-height: 640px){
  .header_wrap{
    max-width: 75vh;
  }
  header.toppage-header{
    padding-bottom: 25px;
  }
  .header_wrap .timer{
    font-size: 4.5vh;
    padding-top: 15px;
  }
  .toppage-header .scroll_annotation{
    height: 36px;
  }
  .toppage-header .scroll_annotation:after{
    height: 20px;
  }
}