 /*＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/
/*基本設定（滅多に変更しない）*/
/*＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/


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

body {
	background: #fffefa;
	color:#363437;
	font-family:  "Noto Sans JP" , "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	letter-spacing:1.2px;
	font-size: 14px;
  }

main{

}
main::before{
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	height:100vh;
	background-repeat:repeat-y;
	background-position:50% 100%;
	background-image:url("../img/back_sp.png");
	background-size:contain;
}

	a {
		color: #fa739e;
		transition: 0.3s;
	  }
	  a:hover {
		  color: #363437;
		transition: 0.3s;
	  }
	  ::selection {
		  background: #FFFFFF;
		  color: #232320;
	  }
	  ul{
		  padding: 0;
	  }
		 
	  .spnone{
		  display:none;
	  }
	  hr{
		  margin: 80px;
		  border: none;
	  }
	  h1{
		font-family: "Russo One";
		letter-spacing: 5px;
		color: #fa739e;
		font-size: 2.1rem;
		text-align: center;
		margin-bottom: 50px;
	}
	h1 span:nth-child(2){
		color: #59c8f7;
	}
	  .box{
		  width: 90%;
		  padding: 50px 5%;
	  }
	  
	  /*フェードインの処理*/
	  .fadein {
		  opacity : 0;
		  transform : translate(0, 0px);
		  transition :1s;
		  -webkit-transform: scale(1);
				  transform: scale(1);
	  }
	  /* 画面内に入った状態 */
	  .fadein.scrollin {
		  opacity : 1.3;
		  transform : translate(0, 0);
		  transform: translateY(0);
			-webkit-transform: scale(1);
				  transform: scale(1);
		  }
	  .delay-02{
		  animation-delay: .2s;
	  }
	  .delay-04{
		  animation-delay: .4s;
	  }
	  .delay-08{
		  animation-delay: .8s;
	  }
	  .delay-12{
		  animation-delay: 1.2s;
	  }
	  .delay-16{
		  animation-delay: 1.6s;
	  }
	  
#refund .whitebox{
	background: #ffffff;
	box-shadow: 0 0 10px 10px rgba(209, 209, 209, 0.2);
	padding: 20px;
	line-height: 25px;
}
#refund h3{
	margin: 10px 0 20px 0;
	text-align: center;
	font-weight: bold;
}	
	  
/*TOP周辺*/
#top{
	position: relative;
}
#top .layer{
	position: absolute;
	right: 0;
	top: 50%;
	width: 70px;
	z-index: 1;
	overflow: hidden;
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
#top .layer img{
	transform:rotate(5deg);
}
#top .inview{
	width: 100%;
}
#top .inview img{
	width: 100%;
}
.inview img {
	opacity: 0;
	-moz-transition: -moz-transform 0.5s linear;
	-webkit-transition: -webkit-transform 0.5s linear;
	-o-transition: -o-transform 0.5s linear;
	-ms-transition: -ms-transform 0.5s linear;
	transition: transform 0.5s linear;
	-webkit-animation-duration: 1.5s;
	animation-duration: 2.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
  }
  .img-blur {
	-webkit-animation-name: imageBlur;
	animation-name: imageBlur;
	opacity: 1;
	transition: .8s;
  }
  
  @-webkit-keyframes imageBlur {
	from {
	  opacity: 0;
	  -webkit-filter: blur(15px);
	  -moz-filter: blur(15px);
	  -ms-filter: blur(15px);
	  -o-filter: blur(15px);
	  filter: blur(15px);
	}
  
	to {
	  opacity: 1;
	  -webkit-filter: blur(0px);
	  -moz-filter: blur(0px);
	  -ms-filter: blur(0px);
	  -o-filter: blur(0px);
	  filter: blur(0px);
	}
  }
  @keyframes imageBlur {
	from {
	  opacity: 0;
	  -webkit-filter: blur(15px);
	  -moz-filter: blur(15px);
	  -ms-filter: blur(15px);
	  -o-filter: blur(15px);
	  filter: blur(15px);
	}
  
	to {
		opacity: 1;
	  -webkit-filter: blur(0px);
	  -moz-filter: blur(0px);
	  -ms-filter: blur(0px);
	  -o-filter: blur(0px);
	  filter: blur(0px);
	}
  }

/**/
#notice{
	text-align: center;
}
#notice div{
	padding: 30px 15px;
	background: #f1f1f1;
	font-size: 14px;
	height: 500px;
}
#notice .right{
	text-align: right;
	margin-top: 30px;
}


#popup {
  display: none; /* label でコントロールするので input は非表示に */
}
.popup-open {
  cursor: pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
	background-image: linear-gradient(135deg, #59c8f7 55%, #fa739e);
	width: 100%;
	padding: 15px 0;
	color: #ffffff;
	width: 100%;
	display: block;
}
.popup-overlay {
  display: none; /* input にチェックが入るまでは非表示に */
}
#popup:checked ~ .popup-overlay {
  display: block;
  z-index: 99999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transition: .5s;
}
.popup-window {
  width: 90vw;
  max-width: 560px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 6px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup-text {
  margin: 0;
  text-align: left;
  overflow: scroll;
    height: 500px;
	font-size: 13px;
}
.popup-text:not(:last-of-type) {
  margin-bottom: 1em;
}
.popup-close {
  cursor: pointer;
  position: absolute;
  top: -26px;
  right: 0;
  transition: .5s;
}


#popup2 {
  display: none; /* label でコントロールするので input は非表示に */
  margin-bottom: 15px;
}
.popup-open2 {
  cursor: pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
	background-image: linear-gradient(135deg, #59c8f7 55%, #fa739e);
	width: 100%;
	padding: 15px 0;
	color: #ffffff;
	width: 100%;
	display: block;
	background: #c3c3c3;
	background-image: linear-gradient(135deg, #c3c3c3 55%, #b6b6b6);
	color: #232320;
	margin-bottom: 15px;
}
.popup-overlay2 {
  display: none; /* input にチェックが入るまでは非表示に */
}
#popup2:checked ~ .popup-overlay2 {
  display: block;
  z-index: 99999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transition: .5s;
}
.popup-window2 {
  width: 90vw;
  max-width: 560px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 6px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup-text2 {
  margin: 0;
  text-align: left;
  overflow: scroll;
    height: 500px;
	font-size: 13px;
}
.popup-text2:not(:last-of-type) {
  margin-bottom: 1em;
}
.popup-close2 {
  cursor: pointer;
  position: absolute;
  top: -26px;
  right: 0;
  transition: .5s;
}

/*あらすじ*/
#about{
	line-height: 25px;
}
#about .about-midashi{
	font-weight:bold;
	color: #59c8f7;
	font-size: 1.05rem;
	margin-bottom: 5px;
}
#about .about-sub-midashi{
	background: #59c8f7;
	padding: 0px 5px;
	font-size: 11px;
	color: #ffffff;
	margin: 15px 0 5px 0;
	display: inline-block;
}
#about .name{
	font-weight:bold;
}
#about div{
	margin: 50px 0;
}
#about div:last-child{
	margin-bottom: 0;
}


/*SCHEDULE/TICKET*/
#schedule{
	
}
#schedule .sub-midashi{
	background: #59c8f7;
	padding: 3px 10px;
	display: inline-block;
	color: #ffffff;
	font-size: 14px;
	font-weight: normal;
	margin-bottom: 5px;
}
#schedule .sche-block{
	margin:70px 0 50px 0;
	font-weight: bold;
}
#schedule .sche-block p span{
	font-size:1.2rem;
	margin: 0 3px;
}
#schedule .sche-block p span:first-child{
	margin-left: 0;
}

#schedule .time-table{
	background: #ffffff;
	box-shadow: 0px 0px 15px 3px rgba(93, 93, 93, .1);
	border-radius: 20px;
	width: calc(100% - 40px);
    padding: 30px 20px;
}
#schedule .time-table table{
	width: 100%;
	text-align: center;
	border-collapse: collapse;
}
#schedule .time-table table tr td{
	width: 40%;
	padding: 15px 0;
}
#schedule .time-table table tr+tr{
	border-top: 1px dotted #c3c3c3;
}
#schedule .time-table table tr td+td{
	border-left: 1px dotted #c3c3c3;
}
#schedule .time-table table tr td .time{
	font-weight: bold;
	background: repeating-linear-gradient(135deg, #d1d1d1, #d1d1d1 1px, #fff 1px, #fff 8px);
    font-size: 13px;
    width: 90%;
    display: block;
    margin: 0 5%;
	padding: 3px 0;
}
#schedule .time-table table tr td .cast{
	text-align: left;
	display: inline-block;
	padding-top: 10px;
	font-size: 14px;
}
#schedule .time-table table tr td:first-child{
	width: 20%;
}
#schedule .time-table table tr .sat{
	color: #59c8f7;
}
#schedule .time-table table tr .sun{
	color: #fa739e
}
#schedule h3{
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	color: #59c8f7;
	margin: 10px 0;
}
#schedule .haiyaku{
	margin-bottom: 50px;
}
#schedule .haiyaku tr td:first-child{
	width: 10% !important;
}
#schedule .haiyaku tr td{
	width: 30% !important;
}

#ticket .ticket-about{
	font-weight: bold;
}
#ticket .title{
	font-weight: bold;
	color: #59c8f7;
	font-size: 1.1rem;
	margin-bottom: 10px;
}
#ticket .ticket-about table{
	font-size: 1.1rem;
	line-height: 30px;
}
#ticket .ticket-about table tr td:first-child{
	width: 30%;
}
#ticket .ticket-schedule{
	margin:50px 0 30px 0;
}
#ticket .ticket-schedule table{
	width: 100%;
    margin: 20px 0;
	border-collapse: collapse;
}
#ticket .ticket-schedule table tr:nth-child(n+2){
	border-top: 1px solid #363437;
}
#ticket .ticket-schedule table tr td{
	display: block;
	margin: 20px 0;
	line-height: 25px;
}
#ticket .ticket-schedule table tr td:first-child{
	font-weight: bold;
	padding-bottom: 5px;
}
#ticket .ticket-btn a{
	background: #fa739e;
	padding: 10px 0;
	text-align: center;
	color: #ffffff;
	width: 100%;
	font-size: 13px;
	display: block;
	margin: 10px 0;
}



/*CAST/STAFF*/
#cast{

}
#cast .grid{
	display: grid;
	grid-template-columns: 30% 30% 30%;
	justify-content: space-between;
	gap: 35px 1%;
	font-weight: bold;
}
#cast .grid img{
	width: 100%;
}
#cast .grid .cast-box:nth-of-type(odd) p span{
	color: #fa739e;
}
#cast .grid .cast-box:nth-of-type(even) p span{
	color: #59c8f7;
}
#staff table{
	text-align: left;
	margin: 0 auto;
}
#staff table tr td:first-child{
	width: 20%;
	font-size: 14px;
	font-weight: bold;
}
#staff table tr td:nth-child(2){
	text-align: left;
	display: inline-block;
	font-size: 16px;
}
#staff table td{
	padding: 10px 0;
}


/*GOODS*/
#goods{
	
}


/*QA*/
#qa{

}
dl.accordion {
    margin:0 auto;
    padding:0 ;
	text-align: left;
  }

dl.accordion dt {
    border-bottom: 2px dotted #999;
    text-indent:10px;
    line-height:30px;
    cursor:pointer;
}

dl.accordion dd {
    padding:10px 40px 10px 10px;
    line-height:1.5;
    display:none;
}


/*PAGE-TOP*/
.scroll-up {
	position: absolute;
	top: -180px;
	right: 0px;
	left: 0;
	margin: 0 auto;
	z-index: 1;
	width: 150px;
  }
.scroll-up .scroll-text {
	width: 100%;
	position: relative;
}
.scroll-up .scroll-icon {
	width: 120px;
	position: absolute;
	top: 50%;
	left: 50%;
	line-height: 1;
	transform: translate(-50%, -50%);
	
}
.scroll-icon img{
	width: 120px;
}
.scroll-up .scroll-icon a img{
	transition: .5s;
}
.scroll-up .scroll-icon a img:hover {
	transform: scale(1.1);
	transition: .5s;
}
.scroll-up .scroll-text img {
	width: 100%;
	animation: rotate-anime 10s linear infinite;
}
@keyframes rotate-anime {
  0%  {transform: rotate(0);}
  100%  {transform: rotate(360deg);}
}

/*footer*/
#footer{
	color: #fa739e;
	position: relative;
	text-align: center;
	padding: 15px 0;
}
#footer img{
	width: 150px;
	margin: 50px 0;
}

/*メニュー周辺*/
nav.globalMenuSp {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    color: #fa739e;
    text-align: left;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    opacity: 0.9;
    height:100%;
	font-family: "Russo One";
	letter-spacing: 1.6px;
	font-size: 1.4rem;
}
 
nav.globalMenuSp ul {
    background: linear-gradient(90deg, rgb(250, 115, 158), rgb(89, 200, 247));
    margin: 0 auto;
    padding: 0;
    width: 100%;
    z-index: 1;
	height: 100%;
    }
 
nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 20px 0 20px 20px;
    width: 100%;
}
nav.globalMenuSp ul li:first-child {
	padding-top: 100px;
}
 
nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    width: 100%;
}
 
nav.globalMenuSp.active {
    transform: translateX(10%);
}
.navToggle {
    display: block;
    position: fixed;   
    right: 15px;
    top: 15px;
    width: 35px;
    height: 51px;
    cursor: pointer;
    z-index: 10;
    text-align: center;
}
 
.navToggle span {
    display: block;
    position: absolute;   
    width: 35px;
    border-bottom: solid 3px #fa739e;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 0px;
}
 
.navToggle span:nth-child(1) {
    top: 5px;
}
 
.navToggle span:nth-child(2) {
    top: 20px;
}
 
.navToggle span:nth-child(3) {
    border: none;
    color: #fa739e;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
}
.navToggle.active span:nth-child(1) {
    top: 15px;
    left: 0px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
	border-bottom:solid 3px #ffffff;
}

.navToggle.active span:nth-child(2) {
    top: 15px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
	border-bottom:solid 3px #ffffff;
}
.navToggle.active span:nth-child(3) {
	color: #ffffff;
}


  }


