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


@media screen and (min-width:768px){
body {
	background: #1e1d1e;
	background-image: url("../img/back_v3.webp");
	background-attachment: fixed;
	background-size: cover;
	color:#f8f8f8;
	font-family:  "Noto Sans JP" , "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	letter-spacing:1.2px;
	font-size: 16px;
  }


a {
  color: #fa739e;
  transition: 0.3s;
}
a:hover {
	color: #363437;
  transition: 0.3s;
}
::selection {
	background: #FFFFFF;
	color: #232320;
}
ul{
	padding: 0;
}
   
.pcnone{
	display:none;
}
hr{
	margin: 80px;
	border: none;
}
h1{
	font-family:"Dela Gothic One";
	letter-spacing: 7px;
	font-size: 2.8rem;
	text-align: center;
	margin-bottom: 100px;
}

.box{
	width: 80%;
	padding: 10%;
}
.box-slant{
	position: relative;
	width: 80%;
	padding: 10%;
	margin: 100px 0;
}
.box-slant::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .4);
    transform: skewY(-7deg);
    z-index: -1;
}
.nikukyu{
	width: 100px;
	margin: 100px 0;
	text-align: center;
}


/*フェードインの処理*/
.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);
}

.scale-up {
	opacity : 0;
	transform : translate(0, 0px);
	transition :.3s;
	-webkit-transform: scale(.9);
            transform: scale(.9);
}
.scale-up.scrollin {
    opacity : 1;
    transform : translate(0, 0);
	transform: translateY(0);
	  -webkit-transform: scale(1);
            transform: scale(1);
}



/*メニュー周辺*/
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%;
    height:100%;
	font-family:"Dela Gothic One";
	letter-spacing: 1.5px;
	font-size: 2.2rem;
	background: #f8f8f8;
	align-items: center;
    display: flex;
}
 
nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    z-index: 1;
	height: 100%;
	justify-content: center;
    display: flex;
    flex-flow: column;
	text-align: center;
}
 
nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 15px 0 ;
    width: 30%;
}
nav.globalMenuSp ul li:first-child {
	padding-top: 50px;
}
 
nav.globalMenuSp ul li a {
    display: block;
    color: #cf0808;
    width: 100%;
}
 
nav.globalMenuSp.active {
    transform: translateX(70%);
}
.navToggle {
    display: block;
    position: fixed;   
    right: 15px;
    top: 15px;
    width: 40px;
    height: 51px;
    cursor: pointer;
    z-index: 10;
    text-align: center;
}
 
.navToggle span {
    display: block;
    position: absolute;   
    width: 40px;
    border-bottom: solid 3px #cf0808;
    -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: #cf0808;
    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 #cf0808;
}

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

/*TOP周辺*/

#top{
	position: relative;
	text-align: center;
	margin-bottom: 100px;
}
#top .grid{
	display: grid;
	grid-template-columns: 50% 50%;
}
#top img{
	width: 100%;
}
#top p{
	font-family:"Dela Gothic One";
}
#top .notice{
	position: relative;
	color: #ffffff;
}
#top .notice div{
	width: 100%;
	position: absolute;
	margin: 0 auto;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
#top .notice img{
	width: 80%;
}
#top .notice p{
	text-shadow: 0 0 8px #1c1225;
}
#top .notice .place{
	font-size: 2.7rem;
	letter-spacing: 8px;
}
#top .notice .day{
	font-size: 1.3rem;
	letter-spacing: 5px;
}

#top .inview{
	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: 1.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);
	}
  }




#popup ,
#popup2 {
  display: none; /* label でコントロールするので input は非表示に */
}
.popup-open ,
.popup-open2 {
  cursor: pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
	background-image: linear-gradient(135deg, #59c8f7 55%, #fa739e);
	padding: 20px 50px;
	color: #ffffff;
	margin: 0 15px;
}
.popup-open2 {
	background: #c3c3c3;
	background-image: linear-gradient(135deg, #c3c3c3 55%, #b6b6b6);
	color: #232320;
}
.popup-overlay ,
.popup-overlay2{
  display: none; /* input にチェックが入るまでは非表示に */
}
#popup:checked ~ .popup-overlay ,
#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-window ,
.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-text ,
.popup-text2 {
  margin: 0;
  text-align: left;
}
.popup-text:not(:last-of-type) ,
.popup-text2:not(:last-of-type) {
  margin-bottom: 1em
}
.popup-close ,
.popup-close2{
  cursor: pointer;
  position: absolute;
  top: -26px;
  right: 0;
  transition: .5s;
}

/*ARASUJI*/
#arasuji{
	background: rgba(0, 0, 0, .4);
	font-weight: bold;
	font-size: 17px;
	line-height: 30px;
	width: 70%;
	margin: 0 auto;
	border-radius: 20px;
}

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


#schedule .time-table{
	width: 70%;
	text-align: center;
	border-collapse: collapse;
	margin: 0 15%;
}
#schedule .time-table tr:first-child{
	background-color: rgba(255, 255, 255, .8);
	color: #1c1225;
}
#schedule .time-table tr td{
	width: 30%;
	padding: 18px 0;
}
#schedule .time-table tr+tr{
	border-top: 1px dotted #5a5a5a;
}
#schedule .time-table tr td+td{
	border-left: 1px dotted #5a5a5a;
}
#schedule .time-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 tr td .cast{
	text-align: left;
	display: inline-block;
	padding-top: 10px;
	font-size: 14px;
}
#schedule .time-table tr td:first-child{
	width: 20%;
}
#schedule .time-table tr .sat{
	background: rgba(113, 148, 255,.8);
}
#schedule .time-table tr .sun{
	background: rgba(255, 96, 96,.8)
}
#schedule h3{
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	color: #59c8f7;
	margin: 30px 0;
}

#ticket .ticket-about{
	font-weight: bold;
	width: 70%;
    margin: 0 auto;
}
#ticket .title{
	font-weight: bold;
	border-bottom: 1px solid #ffffff;
	padding-bottom:7px;
	font-size: 1.2rem;
	margin-bottom: 15px;
}
#ticket .ticket-about table{
	font-size: 1.2rem;
	line-height: 35px;
}
#ticket .ticket-about table tr td:first-child{
	width: 30%;
	vertical-align: top;
}
#ticket .ticket-schedule{
	margin:50px auto 30px auto;
	width: 70%;
}
#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 #483953;
}
#ticket .ticket-schedule table tr td{
	display: block;
	margin: 20px 0;
}
#ticket .ticket-schedule table tr td:first-child{
	font-weight: bold;
	padding-bottom: 5px;
}
#ticket .ticket-btn a{
	background: #cf0808;
	border: 2px solid #cf0808;
	padding: 15px 0;
	text-align: center;
	color: #ffffff;
	width: 100%;
	font-size: 13px;
	display: block;
	margin: 20px 0;
}
#ticket .ticket-btn a:hover{
	background: #ffffff;
	transition: .5s;
	color:#cf0808;
}


/*CAST/STAFF*/
#cast{
	text-align: center;
}
#cast .grid{
	display: grid;
	grid-template-columns: 23% 23% 23%;
	justify-content: center;
	gap: 80px 6%;
	font-weight: bold;
	text-align: left;
}
#cast .grid img{
	width: 100%;
}
#cast .grid .chara-name{
	margin: 10px 0;
	font-size: 16px;
	letter-spacing: 3px;
	font-weight: bold
}
#cast .grid .as{
	font-size: 14px;
	margin-right: 5px;
	color: #cf0808;
}
#cast .grid p{
	font-size: 14px;
	font-weight: normal;
}

table.staff{
	text-align: left;
	margin: 0 auto;
	font-size: 22px;
}
table.staff tr td:first-child{
	width: 80px;
	font-weight: bold;
}
table.staff tr td:nth-child(2){
	text-align: left;
	display: inline-block;
	letter-spacing: 3px;
}
table.staff td{
	padding: 10px 0;
}

/*GOODS*/
#goods{

}
#goods .grid{
	display: grid;
	grid-template-columns: 31% 31% 31%;
	justify-content: space-between;
	margin: 50px 0;
}
#goods .title{
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: bold;
}
#goods .price{
	text-align: right;
	padding: 0 0 8px 0;
	border-bottom: 1px dotted #ffffff;
	margin-bottom: 10px;
}
#goods .grid div:nth-child(n+4){
	margin-top: 30px;
}

#goods .grid img ,
#goods .grid2 img{
	width: 100%;
	margin: 10px 0;
}
#goods .grid2{
	display: grid;
	grid-template-columns: 23% 23% 23% 23%;
	justify-content: space-between;
}
.goods-category{
	background: #cf0808;
	padding: 3px 20px;
	border-radius: 15px;
	display: inline-block;
	margin-bottom: 20px;
}
.goods-main-box{
	margin: 40px 0;
}
.goods-sub-box{
	margin: 30px 0;
}



/*QA*/
#qa p{
	margin-top:30px;
	font-size: 14px;
}
dl.accordion {
    margin:0 auto;
    padding:0 40px;
	text-align: left;
  }

dl.accordion dt {
    border-bottom: 2px dotted #999;
    height:45px;
    text-indent:10px;
    line-height:40px;
    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{
	background: #000000;
	color: #d1d1d1;
	position: relative;
	text-align: center;
	padding: 15px 0;
	font-size: 14px;
}
#footer img{
	width: 200px;
	margin: 50px 0;
}

}