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


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

body {
	background-image: url("../img/back_sp.webp");
	background-attachment: fixed;
	background-repeat: repeat-y;
	background-size: cover;
	font-family:  "Shippori Mincho" , "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	letter-spacing:1.2px;
	font-size: 14px;
	color:#232324;
  }

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.webp");
	background-size:cover;
}
img{
	z-index:-1;
	transition: .8s;
}
a {
	color: #419acb;
	transition: 0.3s;
}
a:hover {
	color: #363437;
  transition: 0.3s;
}
::selection {
	background: #FFFFFF;
	color: #232320;
}
@font-face { 
	font-family: "main-fonts"; 
	src: url("../assets/TrueArtisansRegular-0W2gz.ttf") format("truetype") }
ul{
	padding: 0;
}
   
.spnone{
	display:none;
}
hr{
	margin: 80px;
	border: none;
}
h2{
	font-family: "Tektur", sans-serif;
	letter-spacing: 5px;
	font-weight: bolder;
	font-size: 2.8rem;
	margin-bottom: 50px;
	color: #2ea4e5;
	text-align: left;
	text-shadow: 0px 0px 5px #c3e5f0;
}
.marker.active{
	background-position: -100% 77%;
  }
  
.marker {
	background-image: -webkit-linear-gradient(left, transparent 50%, #2ea4e5 50%);
	background-image: -moz-linear-gradient(left, transparent 50%, #2ea4e5 50%);
	background-image: -ms-linear-gradient(left, transparent 50%, #2ea4e5 50%);
	background-image: -o-linear-gradient(left, transparent 50%, #2ea4e5 50%);
	background-image: linear-gradient(left, transparent 50%, #2ea4e5 50%);
	background-repeat: repeat-x;
	background-size: 200% 1.5px;
	background-position: 0 77%;
	transition: all 2s ease;
  }
/*h2::after{
	content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #419acb;
	margin-top: -15px;
}*/
h3{
	font-family: "Tektur", sans-serif;
	letter-spacing: 5px;
	font-weight: bolder;
	font-size: 35px;
	color: #2ea4e5;
	text-align: center;
	text-shadow: 0px 0px 10px #c3e5f0;
}
h4{
	margin: 5px;
}
.box{
	width: 90%;
	padding:30px 5%;
	color: #232324;
}
.btn{
	display: inline-block;
	margin: 40px 0;
	width: 100%;
	text-align: center;
}
.btn a{
	background: linear-gradient(to right, #182a55, rgb(16, 92, 131));
	color: #fff;
	padding: 20px 25%;
	font-size: 17px;
	position: relative;
}
.btn a::before {
	content: '';
	position: absolute;
	top: calc(50% - 2px);
	right:-20px;
	transform: translateY(calc(-50% - 2px)) rotate(45deg);
	width: 10px;
	height: 1.5px;
	background: #303030;
	transition: .5s;
}
.btn a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -20px;
	transform: translateY(-50%);
	width: 50px;
	height: 1.5px;
	background-color: #303030;
	transition: .5s;
}
.btn a:hover::before{
	right:-25px;
	transition: .5s;
}
.btn a:hover::after{
	right:-25px;
	transition: .5s;
}

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


/*メニュー周辺*/
nav.globalMenuSp {
	font-family: "Tektur", sans-serif;
	font-weight: bold;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    color: #ffffff;
	background: #200d09;
	border-radius:0 0 20px 20px;
    text-align: left;
    transition: all 0.6s;
    width: 100%;
    height:100%;
	letter-spacing: 3px;
	font-size: 1.5rem;
	opacity: 0;
	text-align: center;
}
 
nav.globalMenuSp ul {
    background: linear-gradient(225deg, #182a55, rgb(16, 92, 131));
    margin: 0 auto;
    padding: 0;
    width: 100%;
    z-index: 1;
	height: 100%;
	display: flex;
    flex-flow: column;
    text-align: center;
	justify-content: center;
    }
 
nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 20px 0;
    width: 100%;
}
nav.globalMenuSp ul li:first-child {
	padding-top: 50px;
}
 
nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    width: 100%;
	z-index: -1;
}
nav.globalMenuSp ul li a img{
	width: 30px;
} 
nav.globalMenuSp.active {
	opacity: .9;
	z-index: 10;
}
nav.globalMenuSp.active ul li a{
	z-index: 1;
}
.navToggle {
    display: block;
    position: fixed;   
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 11;
    text-align: center;
	background: #419acb;
}
 
.navToggle span {
    display: block;
    position: absolute;   
    width: 30px;
    border-bottom: solid 2px #ffffff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 13px;
}
 
.navToggle span:nth-child(1) {
    top: 22px;
}
 
.navToggle span:nth-child(2) {
    top: 33px;
}
 
.navToggle.active span:nth-child(1) {
    top: 30px;
    left: 13px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
	border-bottom:solid 3px #ffffff;
}

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

/*TOP周辺*/

#top{
	position: relative;
}
#top .top-grid{
	display: grid;
	grid-template-columns: 100%;
}
.top-right{
	position: relative;
}
.top-right-item{
	position: absolute;
	top: 50%;  
   left: 50%; 
   transform: translateY(-50%) translateX(-50%); 
   width: 100%;
}
.top-right-item img{
	width: 80%!important;
}
#top img{
	position: relative;
}
#top p{
	position: absolute;
	width: auto;
	bottom: 75px;
	padding: 2px 10px 2px 20px;
	left: -10px;
	font-size: 1.1rem;
	background: linear-gradient(225deg, #182a55, rgb(16, 92, 131));
	color: #fff;
	-webkit-transform: skew(-15deg);
  transform: skew(-15deg);
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#105c83), to(#36a0d4));
  background-image: -webkit-linear-gradient(left, #105c83 0%, #36a0d4 100%);
  background-image: linear-gradient(to right, #105c83 0%, #36a0d4 100%);
  display: inline-block;
}
#top p:nth-child(2){
	bottom: 30px;
}
#top .inview{
	width: 100%;
	text-align: center;
}
.inview img,.inview p{
	width: 100%;
	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,.p-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);
	}
  }

/*NEWS*/
#news-sns{
	margin: 50px 0;
}
#news-sns .grid{
	display: grid;
	grid-template-columns: 100%;
}
#news-sns .grid ul li{
	list-style: none;
	padding: 15px 0;
}
#news-sns .grid ul li+li{
	border-top: solid 1px #707074;
}
#news-sns .grid ul{
	padding:0 20px;
}
#news-sns ul li span{
	font-weight: bold;
	margin-bottom: 10px;
}

/*CAST*/
#cast{
	margin: 50px auto;
	text-align: center;
}
#cast img{
	clip-path: polygon(0 15px, 100% 0, 100% calc(100% - 15px), 0 100%);
	width: 100%;
	filter: drop-shadow(0px 0px 5px #296d8f);
}
#cast .cast-img{
	position: relative;
	margin-bottom: 10px;
}
#cast .cast-img:after{
	clip-path: polygon(0 15px, 100% 0, 100% calc(100% - 15px), 0 100%);
	content: "";
	width: 100%;
	height: 100%;
	background: #2ea4e5;
	position: absolute;
	top: 1px;
	left: 6px;
	z-index: -1;
}
#cast .cast-first{
	width: 56%;
	margin:0 auto 70px auto;
}
.chara-name{
	font-size: 14px;
	color: #419acb;
}
.cast-name{
	font-size: 18px;
}
.cast-grid{
	margin: 30px auto;
	display: grid;
	grid-template-columns: 46% 46%;
	row-gap: 40px;
	justify-content: space-between;
}
#cast .performer img{
	clip-path: border-box;
	margin: 10px 0 30px 0;
}
.staff{
	margin:100px 0 30px 0;
	text-align: center;
}
.staff ul li{
	margin-bottom: 40px;
	list-style: none;
}
.staff ul li span{
	display: block;
}
.staff ul:nth-child(n+2) li span{
	font-size: 16px!important;
}
.staff ul li span:first-child{
	font-size: 14px!important;
	margin-bottom: 10px;
}
.staff ul li span:nth-child(2){
	font-size: 22px;
	line-height: 20px;
}
.staff ul li span:nth-child(2) small{
	font-size: 12px;
}
.performer{
	margin: 100px 0 50px;
}
.performer p{
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 40px;
}
.performer ul{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.performer ul li{
	width: 33%;
	list-style: none;
	margin: 10px 0;
}

/*SCHEDULE/TICKET*/
#schedule{
	text-align: center;
	margin: 50px auto;
}
#schedule .day{
	font-family: "Tektur", sans-serif;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 3px;
	margin: 5px 0;
}
#schedule .day span{
	font-size: 28px;
	font-weight: bold;
}
#schedule .place{
	font-size: 20px;
	font-weight: bold;
}
#schedule img{
	width: 100%;
	text-align: center;
	margin: 50px 0 10px;
}

#ticket{
	margin: 50px auto;
}
.ticket-box{
	font-size: 18px;
	padding: 15px 0;
	border-top: 1px solid #364c57;
	border-bottom: 1px solid #364c57;
}
.ticket-box:nth-child(n+2){
	border-top: none;
}
.ticket-box .left{
	text-align: left;
	font-weight: bold;
}
.ticket-box .right{
	text-align: right;
}
.ticket-box .right span{
	font-size: 14px;
}
.ticket-schedule{
	margin: 80px 0;
	font-size: 15px;
	line-height: 30px;
}
.senkou-title{
	font-size: 15px;
	font-weight: bold;
}
.ticket-schedule-item:nth-child(n+2){
	margin-top: 30px;
}
.ticket-special{
	border: 1px solid #707074;
	padding: 15px;
	margin-bottom: 15px;
	background: rgba(255, 255, 255,.3);
}
.ticket-grid+.ticket-grid{
	margin-top: 25px;	
}
.ticket-special .title,
.ticket-resale .title{
	font-weight: bold;
	text-align: center;
	font-size: 18px;
	margin: 5px 0 30px 0;
}
.ticket-resale .title{
	margin-bottom: 30px;
}
.ticket-special .title::before,
.ticket-resale .title::before{
	content: "◆";
	color: #105c83;
	margin-right: 12px;
	font-size: 14px;
}
.ticket-special .title::after,
.ticket-resale .title::after{
	content: "◆";
	color: #105c83;
	margin-left: 12px;
	font-size: 14px;
}
.ticket-special img{
	text-align: center;
	margin:10% 15%;
	width: 70%;
}
.ticket-resale{
	padding: 15px;
	margin:20px 0;
	background: rgba(184, 184, 184, 0.3);
}
.tokuten{
	background: #008ad6;
	color: #fff;
	padding: 3px;
	display: block;
	margin:40px 0 20px 0;
	border-radius: 20px;
	text-align: center;
	font-size: 13px;
}
.ticket-btn{
	width: 100%;
}
.ticket-btn{
	margin-top: 18px;
}
.ticket-btn a{
	padding: 10px;
	border-radius: 30px;
	background: #008ad6;
	color: #fff;
	text-align: center;
	display: block;
}

/*GOODS*/
#goods{
	margin: 50px auto;
}
.goods-grid{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 0 50px 0;
}
.goods-grid li{
	width: 46%;
	list-style: none;
	background: #fff;
	padding:5px 5px 20px 5px;
}
.goods-grid li:nth-child(n+3){
	margin-top: 15px;
}
.goods-grid p{
	margin-left: 5px;
}
.goods-grid li img{
	width: 100%;
}
.goods-grid .goods-name{
	margin: 10px 0 10px 5px;
	font-size: 16px;
	font-weight: bold;
}
.goods-grid .price{
	margin-bottom: 10px;
}

/*QA*/
#qa{
	margin: 50px auto;
}
dl.accordion {
    margin:0 auto;
    padding:0;
	text-align: left;
  }

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

dl.accordion dd {
    padding:10px;
    line-height:1.5;
    display:none;
	margin-left: 10px;
}
dl.accordion span{
	text-indent: -15px;
	padding-left: 15px;
	display: block;
}
.qa-text{
	margin: 40px 0 0 0;
}

/*COUTION*/
#coution{
	padding-top: 100px;
}
#coution h4{
	text-align: center;
	margin-bottom: 50px;
	font-weight: bold;
	font-size: 18px;
}
.coution-btn a{
	width: 90%;
	border: 2px solid #008ad6;
	background: #fff;
	padding: 10px 0px;
	display: inline-block;
	box-shadow: 0 0 5px #b2c7d2;
	font-weight: bold;
	font-size: 14px;
	border-radius: 20px;
}
.coution-btn,
.va-btn{
	margin: 20px auto;
	text-align: center;
}

/*VA*/
.va-btn a{
	width: 90%;
	border: 2px solid #008ad6;
	background: linear-gradient(-20deg, #008ad6 0%, #03529c 100%);
	color: #fff;
	padding: 10px 0px;
	display: inline-block;
	box-shadow: 0 0 5px #b2c7d2;
	font-weight: bold;
	font-size: 14px;
	border-radius: 20px;
}
#va{
	padding: 70px 0;
}
#va h2{
	font-size: 3rem;
}
.va-midashi{
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
}
.va-midashi::before{
	content:"◆";
	color: #008ad6;
	margin-right: 5px;
}
.va-content-text{
	
}
.va-content-text span{
	display: block;
	text-indent: -15px;
	padding-left: 15px;
}
.va-content-text span::before{
	content: "・";
}
#va ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 30px 0;
	text-align: center;
}
#va ul li{
	width: 44%;
	margin: 20px 2%;
	list-style: none;
}
#va ul li img{
	clip-path: polygon(0 0, 100% 15px, 100% 100%, 0 calc(100% - 15px));
	width: 100%;
	filter: drop-shadow(0px 0px 5px #296d8f);
}
#va ul li .cast-img{
	position: relative;
	margin-bottom: 10px;
}
#va ul li .cast-img:after{
	clip-path: polygon(0 0, 100% 15px, 100% 100%, 0 calc(100% - 15px));
	content: "";
	width: 100%;
	height: 100%;
	background: #2ea4e5;
	position: absolute;
	top: 2px;
	left: 5px;
	z-index: -1;
	transition: .5s;
}
#va ul li .cast-img:hover::after{
	clip-path: polygon(0 0, 100% 15px, 100% 100%, 0 calc(100% - 15px));
	content: "";
	width: 95%;
	height: 95%;
	background: #2ea4e5;
	position: absolute;
	top: 9;
	left: 0px;
	z-index: -1;
	transition: .5s;
}
#va .cast-name{
	font-size: 18px;
}
#va .chara-name{
	font-size:14px
}
.va-sub-midashi{
	text-align: center;
	margin:60px auto 10px auto;
}
.va-sub-midashi p{
	padding: 5px 40px;
	background: #008ad6;
	border-radius: 20px;
	display: inline-block;
	color: #fff;
}

/*special*/
#special{
	padding: 100px 0;
	text-align: center;
	margin: 0 auto;
}
.wait-btn{
	max-width: 300px;
	margin: 30px auto 0 auto;
}
.wait-btn a{
	padding: 10px;
	border-radius: 30px;
	background: #939393;
	color: #fffdfd;
	text-align: center;
	display: block;
}

.special-btn{
	max-width: 300px;
}
.special-btn:nth-child(n+2){
	margin-top: 15px;
}
.special-btn a{
	padding: 10px;
	border-radius: 30px;
	background: #008ad6;
	color: #fff;
	text-align: center;
	display: block;
}
.special-btn a:hover{
	background: #006196;
	transition: .5s;
}



/*ARCHIVE*/
#archive{
	text-align: center;
}
#archive .grid{
	display: grid;
	justify-content: center;
	grid-template-columns: 45% 45%;
	margin: 20px 0;
	gap: 0 3%;
	font-weight: bold;
	font-size: 17px;
}
#archive .grid img{
	width: 100%;
	margin: 15px 0;
	border-radius: 10px;
}
#archive .day{
	border-bottom: 2px solid #200d09;
	display: inline-block;
	font-size: 17px;
	font-weight: bold;
	padding-bottom: 10px;
	width: 150px;
}
#archive .sche-box:nth-child(n+2){
	margin-top: 50px;
}
.archive-white-box{
	padding: 20px;
	background: #fff;
	border-radius: 20px;
	margin-top: 70px;
}
.archive-title{
	margin-top: -45px;
	text-align: left;
	font-size: 2rem;
	font-weight: bold;
}

/*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{
	position: relative;
	text-align: center;
	padding:15px 0;
	font-size: 14px;
}
#footer img{
	width: 200px;
	margin: 50px 0;
}


  }


