/*＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/
/*基本設定（滅多に変更しない）*/
/*＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/
body {
	background:#fafafa;
	background-repeat:repeat;
	background-size: 100% auto;
	color:#0f0f0f;
	font-family: 'Noto Sans JP', "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
	animation: bodyFadeIn 2s ease 0s 1 normal;
	-webkit-animation: bodyFadeIn 2s ease 0s 1 normal;
	letter-spacing:1.2px;
  }
  @keyframes bodyFadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
 
@-webkit-keyframes bodyFadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

/*見出し系
---------------------------------------------------------------------------*/
.midashi{
	text-align: center;
	margin: 1.5em 0 2.5em 0;
	font-size:2.5em;
	font-family: 'Shippori Mincho';
	font-weight:700;
	color:#1c1b1c;
	letter-spacing:13px;
	-webkit-animation: glitch03 2s linear infinite;
	animation: glitch03 2s linear infinite;
}


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

a {
  color: #cf0e3e;
  transition: 0.3s;
}

a:hover {
  color: #1b1c1b;
  transition: 0.3s;
  text-decoration: underline;
}

::selection {
    background: #525252;
    }
    
.pcnone{
	display:none;
}

/*スマホで見ると綺麗に改行されているように見えるシステム*/
.clear {
  display: none;
}
.sp{
    display:none;
}

/*フェードインの処理*/
.fadein {
    opacity : 0;
    transform : translate(0, 0px);
    transition : all 1000ms;
    }
 
/* 画面内に入った状態 */
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    }

/*＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/
/*主なdiv設定（必要に応じて変更するところ）*/
/*＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/

/*メニュー周辺*/
#menu_box {
	z-index: 11;
	height: 100px;
	font-size: 14px;
	text-align:right;
	width: 100%;
	letter-spacing:5px;
	position:fixed;
}

#menu_box  a{
	position: relative;
	display: inline-block;
	text-decoration: none;
	font-weight:bold;
	color:#0a0a0a;
}
#menu_box a::after {
	position: absolute;
	bottom: -20px;
	left: 50%;
	content: '';
	width: 1.5px;
	height: 15px;
	background:#0a0a0a;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}

#menu_box a:hover::after {
	transform: scale(1, 1);
}
	
nav ul li {
  display: inline-block;
  margin: 30px 30px 30px 0;
}

.navToggle {
  display: none;
}

#manu{
	display:none;
}

/*追従メニューとトップへ戻るボタンの設定*/
  .fixed {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
  }

  #page-top {
      position: fixed;
       z-index: 10;
      bottom: -20px;
      right: 25px;
      width: 100px;
      margin:0;
  }

  #page-top a {
      text-decoration: none;
      display: block;
  }

  #page-top img {
    width: 120px;
    transition: 0.3s;  
  }
  
  #page-top a:hover img {
  transition: 0.3s;  
  padding-bottom:15px;
}

.clearfix {
    margin: 0 auto;
  }

.top {
	width: 100%;
	margin: 0;
	text-align: center;
}
.top img{
	margin:0;
	width:35%;
	height: auto;
	padding:150px 0 50px 0;
}

.top-fadein {
    font-size: 30px;
    font-weight: bold;
    animation-name: fadeup;
    animation-duration: 4s;
    animation-iteration-count: 1;
}
@keyframes fadeup {
from {
    opacity: 0;
    transform: translateY(0px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/*見出し系
---------------------------------------------------------------------------*/

hr{
	margin:100px 0;
}
  
.box1{
    width:80%;
    padding: 100px 0;
    margin: 0 auto;
}

.box2{
    padding: 10% 10% 15% 10%;
    margin: 0 auto;
	color:#fafafa;
	background:url(../img/background.png);
}
.box2 .midashi{
	color:#fafafa !important;
}

.line{
	height:auto;
	overflow: hidden;
	margin-top:-10%;
}
.line-2{
	height:auto;
	overflow: hidden;
	margin-bottom:-10%;
}
.line img , .line-2 img{
	width:100%;
}

/*お知らせ周辺*/

#news {
	width: 90%;
	margin: 0 auto;
}

.newsList {
	list-style: none;
}

.newsList li {
	border-bottom: 1px dotted #1b1c1b;
}

.newsList li p{
  margin:20px 5px 30px 30px;
  font-size:14px;
}

.date {
  color:#fcfcfc;
  display:inline-block;
  margin-top:30px;
  background:#8c7224;
  padding:5px 10px;
  border-radius:20px;
  font-size:13px;
 }


/*あらすじ周辺*/
#about {
	width:70%;
	font-size: 16px;
	color:#8a0e0e;
	margin: 0 auto;
	text-align: left;
	line-height:1.5em;
	font-family: 'Shippori Mincho';
}
#arasuji {
	font-size: 22px;
	color:#8a0e0e;
	margin: 0 auto;
	text-align: center;
	line-height:2em;
	font-family: 'Shippori Mincho';
	font-weight:700;
}
#arasuji .big{
	font-size:30px;
	font-weight:900;
	-webkit-animation: glitch03 2s linear infinite;
	animation: glitch03 2s linear infinite;
}
#arasuji .big2{
	font-size:30px;
	font-weight:900;
	-webkit-animation: glitch03 2.3s linear infinite;
	animation: glitch03 2.3s linear infinite;
}
#arasuji .small{
	font-size:14px;
	line-height:1em;
}
.arasujimidashi {
	text-align: center;
	font-size:30px;
  }
  
.arasujinaiyou {
	text-align: center;
	font-size:18px;
	line-height:2;
}


	
/*キャスト周辺*/
#cast {
  margin-bottom:100px;
}

#staff p{
	font-size:30px;
	text-align:center;
	line-height:25px;
	font-weight:900;
	margin:0;
}

#staff .small{
	font-size:12px;
	font-weight:400;
	margin:50px 0 10px 0;
}

.oya {
  display: flex;
  justify-content: center;
}

.castList {
	max-width:250px;
	text-align:center;
	margin:30px ;
}

.castList:hover{
	-webkit-animation: hover 0.1s ease forwards;
    animation: hover 0.1s ease forwards;
}


.castName {
    text-align: center;
    font-size: 16px;
    margin:5px 0 25px 0;
    letter-spacing:5px;
	font-weight:900;
}
.charaName {
    text-align: center;
	margin:0;
	font-size: 12px;
}

.castList a img {
	width:100%;
  transition: 0.3s;   /*ゆっくりホバーするための指定（出る時）*/
}

.castList a:hover img {
  transition: 0.3s;   /*ゆっくりホバーするための指定（入る時）*/
}

.hoka {
   width: 100%;
  text-align: center;
  font-size: 16px;
}

.hoka img{ 
 width: 250px ;
 height; auto ;
  text-align: center;

}


/*公演日程周辺*/
#schedule {
	margin: 0 auto;
	position:relative;
}

#schedule .naiyou{
	font-size:16px;
	line-height:30px;
	margin:50px 0 50px 20px;
}

#schedule .naiyou::before{
	content: '■';
	color:#0a0a0a;
	margin-left:-20px;
}

.scheBig{
	font-weight:bold;
	font-size:1.4em;
}

table.sche{
	border-collapse:collapse;
	width:900px;
	padding:15px 0;
	text-align:center;
	border-top:3px solid #515B57;
	border-bottom:3px solid #515B57;
	margin:20px 0;
}

table.sche tr{
}

table.sche th{
	padding:15px 10px;
	color:#fff;
	border-top:1px dotted #515B57;
	background:#8a0e0e;
}

table.sche td{
	border-top:1px dotted #515B57;
	background:rgba(255,255,255,0.7);
	padding:5px 5px 20px 5px;
	font-size:11px;
}

.hoshi::before{
	content:"○";
	font-size:14px;
}

.day{
	padding:10px 0 0 0 !important;
	font-weight:bold;
	font-size:16px !important;
	width:10%;
}

.week{
	border-style:none !important;
	padding-bottom:10px !important;
}

.sat{
	color:#4D80C3;
}

.sun{
	color:#E35C63;
}

.time{
	font-size:14px;
	font-weight:bold;
	color:#8a0e0e;
}

.scroll {
    overflow: auto;
    white-space: nowrap;
}
	.scroll::-webkit-scrollbar{height:10px;}
    .scroll::-webkit-scrollbar-track{background:#dddddd;}
    .scroll::-webkit-scrollbar-thumb{background:#f5f5f5;}


/*チケット情報周辺*/
  #ticket {
    width: 80%;
    margin: 0 auto;
    margin-top: -20px;
    padding-top: 20px;
}

.ticBox{
	padding: 50px;
	font-size:15px;
	background:rgba(255,255,255,.8);
	margin-top:50px;
	font-family: 'Noto Sans JP';
}

#ticket .naiyou{
	margin-left:40px;
}

#ticket .naiyou::before{
	content: '■';
	color:#1c1b1c;
	margin:0 5px 0 -20px;
}

#ticket .name{
	background:#8a0e0e;
	display:block;
	color:#fff;
	font-size:16px;
	font-weight:700;
	padding:10px ;
}

.senkou{
	margin-bottom:50px;
}

.ticket-content {
	margin:0 0 0 15px;
}

.ticket-content::before{
	content: '※';
	margin:0 0 0 -20px;
}

.seat{
	font-size:16px;
	font-weight:bold;
}

.seatName{
	color:#8a0e0e;
	font-family:'noto sans JP';
	font-weight:900;
	font-size:20px;
}

 
/*Goods周辺*/
#goods{
}

.goodsOya {
  display: flex;
  gap:30px;
  margin:30px 0;
}

.goodsList {
	max-width:250px;
	text-align:center;
	vertical-align:bottom;
}

.goodsList img{
	width:100%;	
}

.goodsName{
	text-align:left;
	font-family: 'Noto Sans JP';
  font-weight:bold;
}
.goodsName2{
	display:block;
	text-align:left;
	border-bottom: transparent;
}

.goodsBun{
	font-size:12px;
	text-align:left;
	margin-bottom:20px;
}


  /*Q＆A周辺*/
  #qa {
     margin: 0 auto;
    text-align: left;
  }

  dl.accordion {
    margin:0 auto;
    padding:0 40px;
  }

  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{
	font-size:14px;
}

#coution .naiyou{
	margin-left:20px;
	color:#cf0e3e;
	font-weight:bold;
}

#coution .naiyou::before{
	content: '<<';
	color:#cf0e3e;
	margin:0 5px 0 -20px;
}

#coution .naiyou::after{
	content: '>>';
	color:#cf0e3e;
	margin-left:5px;
}

#coution .p{
	margin:0 0 0 20px;
}

#coution .p::before{
	content: '■';
	margin:0 5px 0 -20px;
}

.coution{
	text-align:center;
	margin:0 auto;	
}

.coution img{
	width:25%;
	margin-bottom:50px;
}

.coution img:hover{
	-webkit-animation: hover 0.1s ease forwards;
    animation: hover 0.1s ease forwards;
}

/*ヘッダーバナー周辺*/

.copy {
	background:#160506;
	padding:40px 0;
	color:#fff;
	text-align:center;
	font-size:12px;
	line-height:25px;
}

.copy img{
	width:180px;
	margin-top:-20%;
}

.copy img:hover{
	-webkit-animation: hover 0.1s ease forwards;
    animation: hover 0.1s ease forwards;
}

.mede{
	background:#3b3b3b;
	font-size:15px;
	text-align:center;
	color:#fafafa;
	padding: 100px 0;
	letter-spacing:3px;
}

.banner p {
	background: #B4B7B9;
	color: #fff;
	height: 70px;
	width: auto;
}

.banner a img {
  transition: 0.3s;   /*ゆっくりホバーするための指定（出る時）*/
  height: 50px;
  width: auto;
  margin: 10px;
}

.banner a:hover img {
  opacity: 0.5;   /*透明度の指定*/
  transition: 0.3s;   /*ゆっくりホバーするための指定（入る時）*/
}


@-webkit-keyframes glitch03 {
  0% {
    opacity: 0;
  }

  1% {
    opacity: 1;
  }

  49% {
    transform: skew(0) rotate(0);
  }

  50% {
    transform: skew(25deg) rotate(-15deg);
  }

  51% {
    transform: skew(0) rotate(0);
  }

  78% {
    opacity: 1;
  }

  79% {
    opacity: 0;
  }

  80% {
    opacity: 1;
  }

  91% {
    transform: rotate(0);
  }

  92% {
    transform: rotate(8deg);
  }

  93% {
    transform: rotate(0);
  }

  100% {}
}

@keyframes glitch03 {
  0% {
    opacity: 0;
  }

  1% {
    opacity: 1;
  }

  49% {
    transform: skew(0) rotate(0);
  }

  50% {
    transform: skew(25deg) rotate(-15deg);
  }

  51% {
    transform: skew(0) rotate(0);
  }

  78% {
    opacity: 1;
  }

  79% {
    opacity: 0;
  }

  80% {
    opacity: 1;
  }

  91% {
    transform: rotate(0);
  }

  92% {
    transform: rotate(8deg);
  }

  93% {
    transform: rotate(0);
  }

  100% {}
}

@-webkit-keyframes glitch04 {
  0% {
    opacity: 1;
    transform: translate(0, 2rem);
  }

  1% {
    opacity: 1;
    transform: translate(0, 0);
  }

  48% {
    transform: translate(0, 0);
  }

  49% {
    transform: skew(0) rotate(0) translate(-0.2rem, -0.1rem);
  }

  50% {
    transform: skew(25deg) translate(0.3rem, 0rem);
  }

  51% {
    transform: skew(0) rotate(0) translate(0, 0);
  }

  78% {
    opacity: 1;
    transform: translate(0, 0);
  }

  79% {
    opacity: 1;
    transform: translate(1rem, -0.15rem);
  }

  80% {
    opacity: 1;
    transform: translate(0, 0);
  }

  100% {}
}


@-webkit-keyframes hover {
	0% {
	  opacity: 1;
	}
  
	30% {
	  opacity: 0;
	  transform: scaleX(1.6);
	}
  
	50% {
	  opacity: 1;
	  transform: scaleX(1.2);
	}
  
	85% {
	  opacity: 0;
	  transform: scaleX(1);
	}
  
	100% {
	  opacity: 1;
	  transform: scaleX(1);
	}
  }
  
  @keyframes hover {
	0% {
	  opacity: 1;
	}
  
	30% {
	  opacity: 0;
	  transform: scaleX(1.6);
	}
  
	50% {
	  opacity: 1;
	  transform: scaleX(1.2);
	}
  
	85% {
	  opacity: 0;
	  transform: scaleX(1);
	}
  
	100% {
	  opacity: 1;
	  transform: scaleX(1);
	}
  }


}