/*＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/
/*基本設定（滅多に変更しない）*/
/*＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/
body {
	background: #fff;
	color:#232320;
	font-family:  'Zen Antique', "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	letter-spacing:1.2px;
	font-size: 14px;
  }



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

a {
  color: #9B893F;
  transition: 0.3s;
}
a:hover {
	color: #332B25;
  transition: 0.3s;
}
::selection {
	background: #FFFFFF;
	color: #232320;
}
ul{
	padding: 0;
}
   
.pcnone{
	display:none;
}
hr{
	margin: 80px;
	border: none;
}
h1{
	text-align: center;
	margin-bottom: 100px;
}
h1 img{
	height: 130px;
}
.box{
	width: 80%;
	padding: 10%;
}

/*フェードインの処理*/
.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;
}
/*
.fadein:nth-of-type(2){
	-moz-transition-delay:0.2s;
	-webkit-transition-delay:0.2s;
}
.fadein:nth-of-type(3){
	-moz-transition-delay:0.4s;
	-webkit-transition-delay:0.4s;
}  
.fadein:nth-of-type(4){
	-moz-transition-delay:0.6s;
	-webkit-transition-delay:0.6s;
}
*/


/*メニュー周辺*/
#header{
	text-align: center;
}
.globalMenuSp{
}
.navToggle{
	display: none;
}
#manu{
	padding: 15px 0;
}
#manu li{
	display: inline-block;
	font-size: 18px;
}
#manu li+li{
	padding-left: 30px;
}
#manu li a{
	color: #9B893F;
}

/*TOP周辺*/
#top{
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.top-content{
	position: absolute;
	bottom: 30px;
	width: 100%;
	margin: 50px 0;
}
.top-content img:first-child{
	width: 70%;
	max-width: 560px;
	margin: 50px 0;
}
#top .inview img{
	width: 100%;
	max-width: 950px;
	position: relative;
	margin-bottom: 100px;
}
.size-sm{
	font-size: 0.8em;
}
.size-mid{
	font-size: 2em;
}
.size-lar{
	font-size: 3em;
}
#top .line{
	margin: 30px 0;
}
.top-bottom-content{
	position: absolute;
	bottom: -100px;
	z-index: 1;
	left: 0;
	right: 0;
	width: 70%;
	margin: 0 auto;
}
.top-bottom-content img{
	max-width: 850px;
	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);
	}
  }

.end{
	color: #9B893F;
	font-size: 20px;
	letter-spacing: 1.3px;
	line-height: 35px;
}
  
/*あらすじ*/
#about{
	background-image: url("../img/story_back_pc.png");
	background-size: cover;
	font-size: 16px;
	line-height: 35px;
	position: relative;
	padding: 20% ;
	width: 60%;
}
#about::before{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	background-image: url("../img/story_lace_top_pc.png");
	background-repeat:repeat-x;
	background-size: auto 150px;
	height: 150px;
	width: 100%;
}
#about::after{
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	background-image: url("../img/story_lace_bottom_pc.png");
	background-repeat:repeat-x;
	background-size: auto 150px;
	height: 150px;
	width: 100%;
}

/*CAST/STAFF*/
#cast{
	background-image: url("../img/cast_staff_back_repeat_pc.png");
	background-size: auto;
	font-size: 16px;
	line-height: 35px;
	position: relative;
	text-align: center;
	padding-top: 20%;
}
#cast .grid-main{
	grid-template-columns: 48% 48%;
	justify-content: space-between;
	margin: 0 auto;
	width: 100%;
	display: grid;
	padding: 5% 0;
}
#cast .grid{
	margin: 0 auto;
	width: 80%;
	background: #fff;
	padding: 10% 5%;
	display: grid;
	grid-template-columns: 100%;
	justify-content: space-between;
	gap: 80px 0;
}
#cast .grid1{
	margin: 0 auto;
	background: #fff;
	padding: 10% 5%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 80px 10%;
}
#cast .grid2{
	margin: 0 auto;
	background: #fff;
	padding: 0% 5% 10% 5%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 50px 5%;
}
#cast hr{
	width: 100%;
	display: block;
	margin: 0;
}
#cast .grid1 div , #cast .grid2 div{
	width: 30%;
}
#cast .grid img , #cast .grid1 img , #cast .grid2 img{
	width: 100%;
}
.chara-name{
	font-size: 15px;
	color: #9B893F;
	line-height: 25px;
}
.cast-name{
	font-size: 22px;
	letter-spacing: 2px;
}
.ensemble{
	background: #ffffff;
	padding:5% 0 10% 0;
}
.ensemble span{
	font-size: 20px;
	display: block;
	padding-bottom: 30px;
}
#staff{
	margin-top: 100px;
}
#staff ul li{
	display: inline-block;
}
#staff ul li+li{
	padding-left: 15px;
}
#staff ul li strong{
	font-size:20px
}

/*SCHEDULE/TICKET*/
#schedule{
	background: #faf9f5;
}
#schedule::before{
	content: "";
	background-image: url("../img/frame_top_pc.png");
	background-size: contain;
	width: 100%;
	height: 163px;
	display: block;
	margin-bottom: -100px;
    background-position: center center;
    background-repeat: no-repeat;
}
#schedule::after{
	content: "";
	background-image: url("../img/frame_bottom_pc.png");
	background-size: contain;
	width: 100%;
	height: 163px;
	display: block;
    background-position: center center;
    background-repeat: no-repeat;
}
#schedule .size-mid{
	text-align: center;
	letter-spacing: 1.6px;
	margin-bottom: 50px;
	font-size: 23px;
	font-weight: bold;
}
.sche{
	text-align: center;
}
.sche img{
	width: 60%;
}

#ticket{
	margin-top: 100px;
	text-align: center;
}
#ticket ul li{
	display: block;
	margin: 50px ;
	padding-top: 50px;
	line-height:30px;
}
#ticket ul li+li{
	border-top: 1px solid #CCCCCC;
}
#ticket ul li:first-child{
	padding-top: 0;
}
#ticket ul li span{
	color:#9B893F;
	font-size: 22px;
	display: block;
	padding-bottom: 20px;
}
#ticket ul li a img{
	width: 300px;
	margin: 30px 0;
	transition: .3s;
}
#ticket ul li a:hover img{
	box-shadow: 0 0 15px rgba(92,89,78,0.5);
	transition: .3s;
}

/*GOODS*/
#goods{
	background-image: url("../img/cast_staff_back_repeat_pc.png");
	background-size: auto;
	font-size: 16px;
	line-height: 35px;
	position: relative;
	text-align: left;
}
#goods .goods-box{
	border-bottom:1px solid #CCCCCC;
	padding-bottom:30px;
	margin-bottom:50px;
}
#goods .goods-title{
	color: #9B893F;
	font-size: 22px;
	margin: 20px 0;
}
#goods .goods-img{
	width:70%;
	margin:15px 0;	
}
#goods .white-box{
	background: #ffffff;
	margin: 0 auto;
	width: 80%;
	background: #fff;
	padding: 5%;
}
.dvd img{
	width: 40%;
}
.dvd p{
	padding: 20px 0;
}
.dvd-streaming-midashi{
	color: #9B893F;
	font-size: 26px;
	text-align: center;
	margin: 30px 0;
}

/*QA*/
#qa{
	padding-bottom: 250px;
	background: #faf9f5;
}
dl.accordion {
    margin:0 auto;
    padding:0 40px;
	text-align: left;
  }

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

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

/*COUTION*/
.coution{
	text-align: center;
}
.coution a img{
	width: 300px;
	transition: .5s;
}
.coution a img:hover{
	opacity: .8;
	transition: .5s;
}
.cou-midashi{
	font-size: 20px !important;
	font-weight: bold;
	margin:30px 0;
}
#coution p{
	font-size: 14px;
}
.cou-sub-midashi{
	color: #fafafa;
	margin:30px 0 10px 0;
}

/*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;
	background: #9B893F;
	color: #fff;
}

/*ローディング画面*/

.loading {
	position: fixed;
	z-index: 1000;
	width: 100%;
	height: 100vh;
	margin: -20px 0 0 0 ;
	padding: 0 0 20px 0;
	background: #faf9f5;
  }
  .loading.hide {
	opacity: 0;
	pointer-events: none;
	transition: opacity 800ms;
  }
  .loading .circle {
	display: block;
	position: relative;
	top: calc( 50% - 150px );
	width: 250px;
	height: 250px;
	margin: 0 auto;
	animation: loading 10s linear infinite;
  }
  .loading .circle img{
	width: 250px;
  }
  @keyframes loading {
	0%  {transform: rotate(0);}
  100%  {transform: rotate(360deg);}
  }

}