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


@media screen and (min-width:768px){
body {
	background: #fffefa;
	background-image: url("../img/back.webp");
	background-attachment: fixed;
	background-repeat: repeat-y;
	background-size: cover;
	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;
	color:#200d09;
  }


a {
  color: #a1946f;
  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;
}
   
.pcnone{
	display:none;
}
hr{
	margin: 80px;
	border: none;
}
h1{
	font-family: "main-fonts";
	letter-spacing: 5px;
	color: #200d09;
	font-size: 3.6rem;
	text-align: center;
	margin-bottom: 100px;
}
.box h1{
	color: #ffffff!important;
}

.box{
	width: 80%;
	padding:30px 10%;
	background: #200d09;
	color: #fffefa;
}
.box2{
	width: 80%;
	padding:5% 10%;
}
svg{
	margin-top: -10px;
	margin-bottom: -10px;
}


/*フェードインの処理*/
.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: "main-fonts"; 
    position: fixed;
    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: 1.5px;
	font-size: 2.3rem;
	opacity: 0;
	text-align: center;
	z-index: -1;
}
 
nav.globalMenuSp ul {
    background: #200d09;
    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 20px 20px;
    width: 100%;
}
nav.globalMenuSp ul li:first-child {
	padding-top: 50px;
}
 
nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    width: 100%;
}
nav.globalMenuSp ul li a img{
	width: 30px;
}
nav.globalMenuSp.active {
	opacity: 1;
	z-index: 1;
}
.navToggle {
    display: block;
    position: fixed;   
    right: 0;
    top: 0;
    width: 70px;
    height: 70px;
    cursor: pointer;
    z-index: 10;
    text-align: center;
	background: #200d09;
	border-radius:0 0 0 80px;
}
 
.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;
    right: 13px;
}
 
.navToggle span:nth-child(1) {
    top: 20px;
}
 
.navToggle span:nth-child(2) {
    top: 30px;
}
 
.navToggle.active span:nth-child(1) {
    top: 30px;
    right: 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 .inview{
	width: 100%;
	text-align: center;
}
#top .inview img{
	width: 70%;
	margin: 15% auto 10% auto;
}
.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);
	}
  }

/*あらすじ*/
#about{
	font-size: 18px;
	text-align: center;
}
#about p{
	line-height: 40px;
}
#about .point{
	position: relative;
	margin: 40px 0;
	color: #a1946f;
}
#about .point::before{
	content: "";
	position: absolute;
	background: #a1946f;
	height: 1px;
	width: 30px;
	bottom: -10px;
	right: 0;
	left: 0;
	margin: 0 auto;
}

/*SCHEDULE/TICKET*/
#schedule{
	text-align: center;
}
#schedule .time{
	margin-top: 40px;
}
#schedule .time p{
	display: inline-block;
	margin: 0 5px;
	background: #fffefa;
	padding: 5px 15px;
	border: 2px solid #200d09;
	border-radius: 20px;
	font-size: 14px;
	font-weight: bold;
}
#schedule .grid{
	display: grid;
	justify-content: center;
	grid-template-columns: 30% 30%;
	margin: 30px 0;
	gap: 0 3%;
	font-weight: bold;
	font-size: 20px;
}
#schedule .grid img{
	width: 100%;
	max-width: 280px;
	margin: 15px 0;
	border-radius: 10px;
}
#schedule .day{
	border-bottom: 2px solid #200d09;
	display: inline-block;
	font-size: 19px;
	font-weight: bold;
	padding-bottom: 10px;
	width: 150px;
}
#schedule .sche-box:nth-child(n+2){
	margin-top: 100px;
}
.place{
	background: #ffffff;
	padding:50px 20px;
	border-radius: 20px;
	margin:100px 0 30px 0;
}
.place::before{
	content: "劇場";
	background: #200d09;
	padding: 5px 10px;
	border-radius: 20px;
	color: #fffefa;
	position: absolute;
	top: -15px;
	right: 0;
	left: 0;
	margin: 0 auto;
	width: 60px;
}
.streaming{
	background: #ffffff;
	width: 60%;
	margin: 20px auto;
	padding-bottom: 15px;
	border-radius: 20px;
}
.streaming-title{
	background: #200d09;
	color: #ffffff;
	padding: 5px 0;
	margin-bottom: 10px;
	border-radius: 20px 20px 0 0;
}
.archive-link{
	margin-top: 120px;
}
.archive-link a{
	background: linear-gradient(to right, #200d09, rgb(105, 35, 2));
	color: #fff;
	padding: 18px 60px;
	font-size: 17px;
	position: relative;
}
.archive-link a::before {
	content: '';
	position: absolute;
	top: calc(50% - 2px);
	right:-20px;
	transform: translateY(calc(-50% - 2px)) rotate(45deg);
	width: 10px;
	height: 1.5px;
	background: #fff;
	transition: .5s;
}
.archive-link a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -20px;
	transform: translateY(-50%);
	width: 50px;
	height: 1.5px;
	background-color: #fff;
	transition: .5s;
}
.archive-link a:hover::before{
	right:-25px;
	transition: .5s;
}
.archive-link a:hover::after{
	right:-25px;
	transition: .5s;
}


#ticket{

}
#ticket .title{
	border-bottom: 1px dotted #fffefa;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
#ticket .content{
	line-height: 35px;
}
#ticket .content:nth-child(3){
	margin-top: 50px;
}
#ticket table tr td{
	vertical-align: top;
	padding-top: 40px;
}
#ticket table tr td:first-child{
	width: 40%;
}
#ticket .btn{
	margin: 50px 0;
}
#ticket .btn a{
	padding: 15px 80px;
	border-radius: 100px;
	background: #a1946f;
	color: #200d09;
}
#ticket .btn a:hover{
	background: #756844;
}
#ticket dl.accordion{
	padding: 0;
	position: relative;
}
#ticket dl+dl{
	margin-top: 20px;
}
#ticket dt{
	padding:10px 15px;
	background: #e3ded4;
	color: #200d09;
	border: none;
	font-weight: bold;
}
#ticket dd{
	margin: 20px 0;
}


/*GOODS*/
#goods{

}

/*QA*/
#qa{

}
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;
}

/*ARCHIVE*/
#archive{
	text-align: center;
}
#archive .grid{
	display: grid;
	justify-content: center;
	grid-template-columns: 30% 30%;
	margin: 30px 0;
	gap: 0 3%;
	font-weight: bold;
	font-size: 20px;
}
#archive .grid img{
	width: 100%;
	max-width: 280px;
	margin: 15px 0;
	border-radius: 10px;
}
#archive .day{
	border-bottom: 2px solid #200d09;
	display: inline-block;
	font-size: 19px;
	font-weight: bold;
	padding-bottom: 10px;
	width: 150px;
}
#archive .sche-box:nth-child(n+2){
	margin-top: 70px;
}
.archive-white-box{
	padding: 40px;
	background: #fff;
	border-radius: 20px;
}
.archive-title{
	margin-top: -85px;
	text-align: left;
	font-size: 3.5rem;
	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;
}
.x-icon img{
	width: 30px!important;
	margin: 0!important;
}

}