@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=Noto+Serif+JP:wght@400;700;900&display=swap');

/* ================================
   全画面・固定の黄色フレーム
   （コンテンツを押し広げない／クリック妨げない）
   ================================ */
:root{
  --frame-color: #f11869; /* フレーム色 */
  --frame-size: 20px;     /* フレーム太さ */
}
@media (max-width: 768px){ :root{ --frame-size: 10px; } }
@media (max-width: 480px){ :root{ --frame-size: 0; } }
body::before{
  content:"";
  position: fixed;
  inset: 0;
  border: var(--frame-size) solid var(--frame-color);
  pointer-events: none;
  z-index: 99999;
  box-sizing: border-box;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: YakuHanJP, 'Noto Sans JP', 'ヒラギノ角ゴ Pro W6', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    color: #231815;
    width: 100%;
    line-height: 1.8;
}
@media screen and (max-width:992px) {
    body {
        font-size: 1.1em;  
    }

}/*end*/



.youtube-content {padding: 60px 0;
    width: 100%;
    max-width: 900px;margin: auto;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width:992px) {
   
.youtube-content {padding: 60px 0 0;
    width: 100%;
    max-width: 90%;
}
} /*end*/


/* ------------
* common 
 ------------ */
ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}
a {
    color: #333;
    outline: none;
    text-decoration: none;
}
a:hover, a:active {
    text-decoration: none;
}
*:focus {
    outline: none;
}
img {
    width: 100%;
    height: auto;
}
a:hover img{
	opacity:0.5;
	-moz-opacity:0.5;
	filter:alpha(opacity = 50);
}
.text-center {
    text-align: center;
    margin: 0 auto;
}
.text-left {
    text-align: left;
    margin: 0;
}
.text-right {
    text-align: right;
    margin: 0;
}
.red {
    color:#f11869;
}
p {
    text-align: justify;
}


.copycopy{ text-align: center; font-size: 1.3rem;font-weight: 700;margin: auto; line-height: 1.4;}
#wrapper {
    width: 100%;
    overflow: hidden;  

    background:#fdf638;
}
/* ガツン見出し */
/* ===== 全体中央配置 ===== */
.headline-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}

/* ===== H2（見出し） ===== */
.headline {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 900;
  color: #000;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15),
               0 0 6px rgba(255, 255, 255, 0.4);
  margin: 0;
  padding: 0.3em 0.5em;
  position: relative;
  z-index: 2;
  line-height: 1.1;
}

/* ===== 下の行（span） ===== */
.headline .orb {
  display: block;      /* ← 改行 */
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  text-shadow: none;
  margin-top: 0.4em;
}

/* ===== 雷 ===== */
.lz-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* 雷アイコン */
.lz {
  --size: 15px;
  --dur: 0.5s;
  position: absolute;
  top: 35%; /* ← ⚡ H2により近く（下から上に寄せる） */
  width: var(--size);
  height: calc(var(--size) * 1.3);
  background: url("../img/monogram1.svg") center/contain no-repeat;
  opacity: 1;
  will-change: transform;
  animation: shake var(--dur) ease-in-out infinite alternate;
}

/* ===== 左3個 ===== */
.lz:nth-child(1) { left: -50px; top: 5%; animation-delay: 0s;   }
.lz:nth-child(2) { left: -30px; top: 20%; animation-delay: .15s; }
.lz:nth-child(3) { left: -10px; top: 40%; animation-delay: .3s;  }

/* ===== 右3個 ===== */
.lz:nth-child(4) { right: -10px; top: 40%; animation-delay: .05s; }
.lz:nth-child(5) { right: -30px; top: 20%; animation-delay: .2s;  }
.lz:nth-child(6) { right: -50px; top: 5%; animation-delay: .35s; }

/* ===== ぶるぶるアニメ ===== */
@keyframes shake {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(2px, -2px) rotate(3deg); }
  50%  { transform: translate(-2px, 1px) rotate(-3deg); }
  75%  { transform: translate(1px, -1px) rotate(2deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}


/* ------------------------------------------------------------------- 
 * responsive:
 * h2
 * ------------------------------------------------------------------- */
@media screen and (max-width:992px) {
    
.copycopy{ font-size: 1rem;}
    

    
} /*end*/


/* ------------
 * font-family
 ------------ */
.copyright, .entry-date, nav, h3, h2 {

}



/* ------------------------------------------------------------------- 
 * loading
 * ------------------------------------------------------------------- */
.fixed_bg {
    background-color: #eee;
    background-size: cover;
    background-position: center center;
    display: block;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}
.fixed_bg.active {
    opacity: 1;
}
.fixed_bg.active.normal {
    opacity: .05;
}
.fixed_logo {
    position: fixed;
    top: 15%;
    left: 48%;
    z-index: 1;
    width: 60%;
    height: auto;
    margin: 0 auto;
    animation: sk-scaleout 1s 1;
}
.fixed_logo_img {
    width: 25px;
}
.loading {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background-color: #fef963;
}
.loading .loader {
    width: 200px;
    height:50px;
    margin: 0 auto;
    animation: loader 2s infinite ease-in-out;
}
.loading .loader img {
      width: 200px;
    height:50px; transform: rotate(-5deg);
}
@keyframes loader {
    0% {
       filter: blur(0px);

    }
       50% {
        filter: blur(50px);
    }
    100% {
  
        filter: blur(0px);
    }
}


/* ------------------------------------------------------------------- 
 * top
 * ------------------------------------------------------------------- */
#LVhome {
width: 100%;margin: -15px 0 0 0;padding: 0;
  

}
.home-area{
width: 100%;margin: 0;padding: 0;
  

}



/* ------------------------------------------------------------------- 
 * responsive:
 * top/*#nav-bg { height:  60px;/*background: #f11869;
 * ------------------------------------------------------------------- */
@media screen and (max-width:992px) {

#LVhome {
width: 100%;margin: -15px 0 0 0;
  

}   
    
} /*end*/

#LVintro, #info,#stage {	    height: auto;
    position: relative;
    padding: 0;
    margin:0;
    width: 100%;
    background-image: url("../img/cloudP.jpg");
    background-size: cover;
}
#LVintro{	    height: auto;
    position: relative;
    margin-top:-30px;padding: 60px 0;
}

#theater {	
    margin:0;
    width: 100%;
    height: auto;
    position: relative;
    padding: 0;
    background-image: url("../img/cloudY.jpg");
    background-size: cover;
}



/* ------------------------------------------------------------------- 
 * intro
 * ------------------------------------------------------------------- */

.LVintro-content {
    width: 100%;
    max-width: 40%;
    padding: 0;
    margin: auto;
    color: #f11869;
       /* transform: rotate(-3deg);*/
}

.soon{
    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
}
.ougi{
    transform-origin: center bottom;
    /*animation: yurayura 3s linear infinite;*/
}

@keyframes yurayura {
  0% , 100%{
      transform: rotate(3deg);
  }
  50%{
      transform: rotate(-3deg);
  }
}
/* ------------------------------------------------------------------- 
 * responsive:
 * intro
 * ------------------------------------------------------------------- */
@media screen and (max-width:992px) {
   
.LVintro-content {
    width: 100%;
    max-width:80%;
}
} /*end*/

/*
---------------------------------------------
ちまちまアイコン
---------------------------------------------
*/
#LVintro .icon-01, #LVintro .icon-01 canvas {
    position: absolute;
    top: 3%;
    left:  20%;
    width: 10%;
}
#LVintro .icon-02, #LVintro .icon-02 canvas {
    position: absolute;
    top: 3%;
    right: 20%;
    width: 10%;
}
#ticket .icon-03, #ticket .icon-03 canvas {
    position: absolute;
    top: 0%;
    left: 10%;
    width: 20%;
}
#ticket .icon-04, #ticket.icon-04 canvas {
    position: absolute;
    top: 0%;
    right: 10%;
    width: 20%;
}
.apng-image {
    width: 100%;
    height: auto;
    display: block;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * ちまちまアイコン
 * ------------------------------------------------------------------- */
@media screen and (max-width:992px) {
#LVintro .icon-01, #LVintro .icon-01 canvas {
    position: absolute;
    top: 0%;
    left:  10%;
    width: 120px;
}
#LVintro .icon-02, #LVintro .icon-02 canvas {
    position: absolute;
    top: 0%;
    right: 10%;
    width: 120px;
}
    #ticket .icon-03, #ticket .icon-03 canvas {
        position: absolute;
        top: 0%;
        left: 1%;
        width: 30%;
    }
    #ticket .icon-04, #ticket.icon-04 canvas {
        position: absolute;
        top: 0%;
        right: 1%;
        width: 30%;
    }
}


/* ------------------------------------------------------------------- 
 * topics
 * ------------------------------------------------------------------- */
#LVtopics {
      margin:0;
    width: 100%;
    padding:60px 0;

}
.LVtopics-content {
    width: 100%;
    max-width: 900px;
    padding: 0;
    margin: auto;
}
.news-box{margin: auto;ont-size: 0.9em;border-top: 6px solid #f11869;border-bottom: 6px solid #f11869;}




ul.feed {
	width: 100%;max-width:100%;
	overflow: hidden;
}

ul.feed li{border-bottom: 1px dotted #999;padding: 10px;}

ul.feed li span {color: #f11869;margin-right: 15px;
   
}

ul.feed a:link,ul.feed a:visited{color: #333;}
ul.feed a:hover{color: #f11869;}

/* ------------------------------------------------------------------- 
 * responsive:
 * topics
 * ------------------------------------------------------------------- */
@media screen and (max-width:992px) {
 
    .LVtopics-content {
    width: 100%;
    max-width: 90%;
    padding: 0;
    margin: auto;
}
    
 




} /*end*/

/*
---------------------------------------------
info
---------------------------------------------
*/
#info {
  padding: 60px 0;
}

.info-content {
    width: 100%;
    max-width: 900px;
    padding: 0;
    margin: auto;
}


#info .infotable {border-collapse:collapse;text-align: center;font-size: 0.9em;background: #f5f5f5;color:#333;}
#info .infotable th{ padding: 0.8rem;vertical-align: top;}
#info .infotable tr {border-top:1px dotted #333;}
#info .infotable tr:first-child{border-top: 6px solid #f11869;}
#info .infotable tr:last-child{border-bottom: 6px solid #f11869;}
#info .infotable td{font-weight: 500;padding: 0.8rem;text-align: left;}

#info .infotable .midashi{color:#f11869;border: 3px solid #f11869;padding:0.2rem 0.8rem 0.4rem;}

#info a:link {color:#333;text-decoration: underline;}
#info a:visited {color:#333;text-decoration: underline;}
#info a:active{color:#333;text-decoration: underline;}
#info a:hover {color:#000;text-decoration: none;}

.kome {font-size: 0.8rem;line-height: 1.5;
  list-style: none;
  padding-left: 1.2em;
  margin-top: 0.4em;margin-left: 0.2em;
}
.kome li {
  text-indent: -1.2em;
}
.kome li:before {
  content: "※";
  margin-right: 0.2em;
}
.ten {font-size: 0.8rem;line-height: 1.5;
  list-style: none;
  padding-left: 1.2em;
  margin-top: 0.4em;margin-left: 0.2em;
}
.ten li {
  text-indent: -1.2em;
}
.ten li:before {
  content: "・";
  margin-right: 0.2em;
}

#guideline .kome li {font-size: 0.9rem;
}
#guideline .kome li {
margin-bottom: 0.5em;
}

@media screen and (max-width: 991px) {
    
    #info {
  padding: 0 0;background:none;
}
    .info-content {
    width: 100%;
    max-width: 90%;
  
}

#info .infotable { 
    width: 100%;
    margin: 0 auto;
  }
#info .infotable th, #info .infotable td {
    display: block;
  }
#info .infotable th{
    border-bottom: dotted 1px #666;background: #ccc;
  }
#info .infotable td{
 
  }
	
}/*end*/

/*
---------------------------------------------
btn-チケット
---------------------------------------------
*/


.ticket-area .btn-flat-simple {font-size:1rem;
  position: relative;
  display: inline-block;
	letter-spacing: 0.2rem;
  padding: 0.25rem 1rem;
  text-decoration: none;
  transition: .4s;  color: #111;
  background: #f11869;width: 400px;margin-top: 15px;
}

.ticket-area .btn-flat-simple:first-child{margin-top: 0px;}

.ticket-area .btn-flat-simple:link {
   color: #111;
  background: #f11869;
	text-decoration: none;
}
.ticket-area .btn-flat-simple:visited{
  color: #111;
  background: #f11869;
	text-decoration: none;
}
.ticket-area .btn-flat-simple:hover {
  background: #eee;
  color:#f11869;
		text-decoration: none;
}
.ticket-area .btn-flat-simple i{ color: #111;}

.bg-black{background: #000;color: #fff;padding:0 1rem;margin-top: 5rem;}

 /*1199px以下のとき*/
 @media screen and (max-width: 1199px) {

	 
}/*end*/	

@media screen and (max-width: 991px) {
	
	.ticket-area .btn-flat-simple {font-size:1rem;
  position: relative;
  display: inline-block;
	letter-spacing: 0.2rem;
  padding: 0.25rem 1rem;
  text-decoration: none;
  transition: .4s;  color: #fff;
  background: #e84466;width: 100%;margin-top: 15px;
}
	
	
#info .table th{margin: 0;font-weight: 600;display: block;width: 100%;}
#info .table td{font-weight: 500;display: block;width: 100%;}

#info .table {width: 100%;max-width: 100%;text-align: left;font-size: 0.95rem;line-height:1.6;}


}/*end*/


/*
---------------------------------------------
theater
---------------------------------------------
*/
#theater {color:#333;
  padding: 60px 0; 
}


#theater a:link {color:#333;text-decoration: underline;}
#theater a:visited {color:#333;text-decoration: underline;}
#theater a:active{color:#333;text-decoration: underline;}
#theater a:hover {color:#666;text-decoration: none;}

#theater .table-striped  {width: 100%;}
#theater .table-striped tr {}

#theater .table-striped th {
  font-weight: 600;
  font-size: 0.9rem;
  background: #333;color: #ccc;padding: 5px;
}
#theater .table-striped td {color:#333;padding: 5px;
  font-weight: normal;
  font-size: 0.9rem;background: #eee;

}
#theater .table-striped tr:nth-child(odd) td {	background: #fff;}


/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
	background-color: #222;padding:10px 0;
}

/*アコーディオンタイトル*/
.title {color:  #eee;
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1.1rem;
    font-weight: 700;
    padding: 1% 3% 1% 50px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #fff;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
	margin:0 3% 3% 3%;
    padding: 3%;
}


@media screen and (max-width: 991px) {
	
.accordion-area{
    width: 96%;
    max-width: 90%;
}
 #theater .table-striped  {width: 100%;} 
    
    
 #theater .table-striped tr td, 
 #theater .table-striped tr th {
    border-left: none;
    display: block;
  }
    
    
 }/**/   
    
/*
---------------------------------------------
notice
---------------------------------------------
*/
#guideline {
  padding: 60px 0;
}


.guideline-content {
    width: 100%;
    max-width: 900px;
    padding: 2%;
    margin: auto;
background: #f5f5f5;color:#333;
}

#guideline p {
  font-size: 0.85em;
}

#guideline h3 {color: #222;
  font-weight: 600;
  font-size: 1.2rem;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  margin: 30px auto 30px;
  padding: 0.5rem;text-align: center;
}
#guideline h4 {color: #222;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 15px 0;
  padding: 0;
}
#guideline h5 {color: #222;
  font-weight: 600;
  font-size: 1em;
  text-align: left;
  margin: 15px 0;
  padding: 30px 0 0 0;
  border-top: 1px dotted #000;
}

@media screen and (max-width:992px) {
 .guideline-content {
    max-width: 90%; padding: 2.5%;
}
} /*end*/
/*
---------------------------------------------
link
--------------------------------------------- 
*/


#link {margin: 0 auto;text-align: center;padding: 30px 0;}

#link img{max-width: 600px;}

@media screen and (max-width:992px) {
#link img{max-width: 80%;}
} /*end*/
/*
---------------------------------------------
stage
--------------------------------------------- 
*/


#stage {  padding: 60px 0; height: auto;margin: auto;width: 100%;}

#stage img{max-width: 900px;}

@media screen and (max-width:992px) {
#stage img{max-width: 80%;}
} /*end*/
/*
---------------------------------------------
gc
--------------------------------------------- 
*/


#gc {margin: 0 auto;text-align: center;padding: 30px 0;/*background:#fdf001;background-image: url(../img/subtle_grungeY.jpg) ;
    background-repeat: repeat;*/}
.gc-content{    display: flex;
    justify-content: center;
    align-items: center;max-width: 900px;margin: auto;padding:1%;}
.gc-content div{max-width:600px;margin: auto;}


@media screen and (max-width:992px) {
    
.gc-content{    display:block;
max-width: 100%;}
.gc-content div{max-width:80%;margin: auto;}    
    
} /*end*/


/*
/*==================================================
ボタン当日等 PC
===================================*/
.button-other {
    font-size: 1em;
    font-weight: 700;
    display: inline-block;
    background: #ccc;
    color: #f11869;
    width: 80%;
    padding: 10px 30px 10px 20px;
    text-align: center;
    margin: 0;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    transform: skewX(-20deg);border:1px solid #f11869;
}
.button-other::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 20px;
    width: 20px;
    height: 5px;
    border: none;
    border-right: 2px solid #f11869;
    border-bottom: 1px solid #f11869;
    transform: skew(45deg);
    transition: .3s;
}
.button-other:hover {
    background: #fefefe;
}
.button-other:hover::after {
    right: 10px;
    width: 30px;
    border-right: 2px solid #f11869;
    border-bottom: 1px solid #f11869;
}

@media screen and (max-width:992px) {
.button-other {

    width: 70%;
 
}
    

} /**/

/*==================================================
矢印ボタンチケット PC
===================================*/
.button-ticket {
    font-size: 1em;
    font-weight: 700;
    display: inline-block;
    background: #ccc;
    color: #f11869;
    width: 80%;
    padding: 10px 30px 10px 20px;
    text-align: center;
    margin: 0;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    transform: skewX(-20deg);
}
.button-ticket::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 20px;
    width: 20px;
    height: 5px;
    border: none;
    border-right: 2px solid #f11869;
    border-bottom: 1px solid #f11869;
    transform: skew(45deg);
    transition: .3s;
}
.button-ticket:hover {
    background: #fefefe;
}
.button-ticket:hover::after {
    right: 10px;
    width: 30px;
    border-right: 2px solid #f11869;
    border-bottom: 1px solid #f11869;
}

@media screen and (max-width:992px) {
.button-ticket {

    width: 70%;
 
}
    

} /**/


/*==================================================
ボタンリセール PC
===================================*/

.button-resale  {
  font-size: 0.8em;
    font-weight: 600;
    display: inline-block;
    background: #ccc;
    color: #222;
    width: 80%;
    padding:5px 30px 5px 20px;
    text-align: center;
    margin: 0;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    transform: skewX(-20deg);
}
.button-resale::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 20px;
    width: 20px;
    height: 5px;
    border: none;
    border-right: 2px solid #222;
    border-bottom: 1px solid #222;
    transform: skew(45deg);
    transition: .3s;
}
.button-resale:hover {
    background: #fefefe;
}
.button-resale:hover::after {
    right: 10px;
    width: 30px;
    border-right: 2px solid #222;
    border-bottom: 1px solid #222;
}

@media screen and (max-width:992px) {
.button-resale{

    width: 70%;
 
}
    

} /**/
/*==================================================
矢印ボタンキャスト
===================================*/
.cast-btn-area {margin: 0;padding: 0;
    background: #000;
    width: 100%;
    display: flex;
    justify-content: center;
}
.cast-btn {
    width: 49%;
}
.button-arrow {
    font-size: 1em;
    display: inline-block;
    background: #000;
    width: 82%;
    padding: 5px 20px 10px 10px;
    text-align: center;
    color: #f11869;
    margin: 0;
    border-top: 1px solid #f11869;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}
.button-arrow::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 30px;
    width: 30px;
    height: 5px;
    border: none;
    border-right: 2px solid #f11869;
    border-bottom: 1px solid #f11869;
    transform: skew(45deg);
    transition: .3s;
}
.button-arrow:hover {
    background: #f5f5f5;
}
.button-arrow:hover::after {
    right: 20px;
    width: 30px;
}

@media screen and (max-width:992px) {
.cast-btn-area {
    background: #000;
    width: 100%;
    display: block;
}
    .button-arrow {
    width: 80%;
}
   
    .cast-btn {
    width: 100%;
}  
    
} /**/

/*==================================================
劇場ボタンチケット
===================================*/
.halllink {
    text-align: right;
}
.button-hall {
    font-size: 0.8em;
    font-weight: 700;
    display: inline-block;
    background: #eee;
    width: 150px;
    padding: 5px 30px 5px 20px;
    text-align: center;
    color: #666;
    margin: 0 0 1em;
    border: 1px solid #666;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    transform: skewX(-15deg);
}
.button-hall::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 20px;
    width: 20px;
    height: 5px;
    border: none;
    border-right: 2px solid #666;
    border-bottom: 1px solid #666;
    transform: skew(45deg);
    transition: .3s;
}
.button-hall:hover {
    background: #666;
    color: #0f0f0f;
}
.button-hall:hover::after {
    right: 10px;
    width: 30px;
    border-right: 2px solid #0f0f0f;
    border-bottom: 1px solid #0f0f0f;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * button
 * ------------------------------------------------------------------- */
/*==================================================
矢印ボタンチケット SP
===================================*/
@media screen and (max-width:992px) {
    
    .button-hall {
 
    width: 100px;

}

} /**/
/*
---------------------------------------------
profile
---------------------------------------------
*/
#profile {
    background-image: url("../img/bg-comment.jpg");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover; 
    padding-bottom: 200px;
}
.profile-content {
    font-size: 0.95em;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: top;
    margin: 0 auto;
    text-align: center;
    max-width: 90%
}
.profile-L {
    width: 33%;
    padding: 1rem;
}
.profile-ph, .title-comment, .title-thanks {
    margin: auto;
    text-align: center;
}
.title-comment img {
    width: 150px;
    margin: 15px 0 0;
    padding: 1rem;
}
.title-profile img {
    width: 120px;
    margin: 15px auto;
    text-align: center;
}
.title-thanks img {
    width: 430px;
    margin: 15px auto;
    text-align: center;
}
.profile-L h1 {
    width: 80px;
    color: #000;
    font-size: 3rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin: 0 auto;
    text-align: center;
}
.profile-L h1 .director {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.profile-R {
    width: 66%;
    margin: 0;
    padding: 2rem 2rem;
}
.profile-content h3 {
    font-size: 1em;
    text-align: left;
    line-height: 1.8em;
    padding: 0.8em 0 1em 0;
    margin: 0;
}
.profile-content .pink {
    color: #f11869;
    letter-spacing: -0.3em;
    margin-right: 0.5em;
}
.profile-content p {
    font-size: 1em;
    color: #333;
    text-align: justify;
    padding: 0;
    margin: 0;
}
p.profile-txt {
    font-size: 0.9em;
    color: #333;
    line-height: 1.4em;
    text-align: justify;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * profile
 * ------------------------------------------------------------------- */
@media screen and (max-width:992px) {
    
    #profile {
    background-image: url("../img/bg-commentsp2.jpg");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto; 
    padding-bottom: 230px;
}
    
    
    .profile-content {
        width: 100%;
        display: block;
        margin: 0 auto;
        text-align: center;
        max-width: 94%;
    }
    .profile-L {
        width: 100%;
        margin: 0 auto;
        text-align: center;
        padding: 20px 0 40px;
    }
    .profile-L h1 {
        width: 90%;
        margin: auto;
        text-align: center;
        padding-left: 0;
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
    }
    .profile-L h1 .director {
        line-height: 1;
        font-size: 1.2rem;
        display: block;
        margin-bottom: 0;
    }
    .profile-R {
        width: 100%;
        padding: 0 0 20px;
    }
    .title-comment {
        font-size: 2em;
        width: 90%;
    }
    .profile-content h3 {
        text-align: left;
        line-height: 1.8em;
        padding: 0;
        margin: 0.5em 0;
    }
    
    .title-thanks img {
    width: 90%;
    margin: 15px auto;
    text-align: center;
}
   
    
 .profile-L h1.inouesama{font-size: 2.4rem;}
    
    
} /*end*/


@media screen and (max-width:768px) {
    
    #profile {

    padding-bottom: 100px;
}
    } /*end*/
/* ------------------------------------------------------------------- 
 * overlay banner
 * ------------------------------------------------------------------- */
.fix-pc {
    position: fixed;
    animation-name: fadey_bottom_start;
    animation-duration: 8s;
    z-index: 998;
    left: 10px;
    bottom: 20px;
}
.fix-pc-wrap {
    margin: 0;
     width: 130px;
    height: 133px;
  line-height:150px;
  text-align: center ;
}
.fix-pc-wrap a {
    display: flex;
    position: relative;
    padding: 0.1rem 0 0;
    min-width: 160px;
    transition: 0.3s;
}
.fix-pc-wrap a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.foot-kokuchi img {
    width: 130px;
    height: 133px;filter: drop-shadow(0px 0px 10px rgba(100, 10, 65, 0.9)) drop-shadow(0px 0px 2px rgba(100, 10, 65, 0.8));
    /*filter: drop-shadow(0px 0px 10px rgba(255, 2, 147, 0.9)) drop-shadow(0px 0px 2px rgba(255, 2, 147, 0.8));*/
}


.foot-kokuchi {
  transition: 1s ;
  transform: rotateZ( 0deg ) ;
}
.foot-kokuchi:hover {
  transition: 1s ;
  transform: rotateZ( 360deg );
}

.foot-adjust {
    padding-left: 30px;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * overlay banner
 * ------------------------------------------------------------------- */
@media screen and (max-width:1024px) {
.fix-sp {
    position: fixed;
    animation-name: fadey_bottom_start;
    animation-duration: 9s;
    z-index: 998;
  left: 10px;
    bottom: 15px;
}
.fix-sp-wrap {
    margin: 0;
  width:100px;
    height: 103px;
  line-height:113px;
  text-align: center ;
}
.fix-sp-wrap a {
    display: flex;
    position: relative;
    padding: 0.1rem 0 0;
  width: 100px;
    transition: 0.3s;
}
.fix-sp-wrap a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.fix-sp-wrap .foot-kokuchi img ,.fix-sp-wrap .foot-kokuchi2 img{
  width: 100px;
    height: 103px;filter: drop-shadow(0px 0px 10px rgba(100, 10, 65, 0.9)) drop-shadow(0px 0px 2px rgba(100, 10, 65, 0.8));
    /*filter: drop-shadow(0px 0px 10px rgba(255, 2, 147, 0.9)) drop-shadow(0px 0px 2px rgba(255, 2, 147, 0.8));*/
}


.fix-sp  {
  transition: 1s ;
  transform: rotateZ( 0deg ) ;
}
.fix-sp:hover {
  transition: 1s ;
  transform: rotateZ( 0deg );
}



} /*end*/
@keyframes fadey_bottom_start {
    0% {
        opacity: 0;
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/*-------------------------------------------------------------------*/
.mt-1, .pt-1 {
    padding-top: 0.5em;
}
.mt-2, .pt-2 {
    padding-top: 1em;
}
.mt-3, .pt-3 {
    padding-top: 1.5em;
}
.mt-4, .pt-4 {
    padding-top: 2em;
}
.mt-5, .pt-5 {
    padding-top: 2.5em;
}
.mb-1, .pb-1 {
    padding-bottom: 0.5em;
}
.mb-2, .pb-2 {
    padding-bottom: 1em;
}
.mb-3, .pb-3 {
    padding-bottom: 1.5em;
}
.mb-4, .pb-4 {
    padding-bottom: 2em;
}
.mb-5, .pb-5 {
    padding-bottom: 2.5em;
}
/* ------------------------------------------------------------------- 
 * e.t.c
/*-------------------------------------------------------------------*/
.pc {
    display: block !important;
}
.sp {
    display: none !important;
}
/* ------------------------------------------------------------------- 
 * responsive:
 *  e.t.c
 * ------------------------------------------------------------------- */
@media screen and (max-width: 992px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
} /*end*/
/* ------------------------------------------------------------------- 
 * g-nav
 * ------------------------------------------------------------------- */
#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0; /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: url("../svg/bg-aka.svg") #0f0f0f right no-repeat;
    background-size: cover;
    /*動き*/
    transition: all 0.3s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
    z-index: 999;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#g-nav.panelactive ul {
    display: block;
}
.nav-fix {
    position: fixed;
    top: 0;
    right: 15px;
    z-index: 999;
    padding: 15px;
    transition: 0.2s;
    opacity: 0;
}
.nav-fix img {
    width: 30px;
    margin-top: 0;
    margin-left: 5px
}
@media screen and (max-width: 992px) {
    .nav-fix {
        display: none;
    }
} /*end*/
#g-nav-list {
    display: none;
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#g-nav.panelactive #g-nav-list {
    display: block;
}
/*ナビゲーション*/
#g-nav ul {
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#g-nav.panelactive ul {
    opacity: 1;
    flex-wrap: wrap;
}
#g-nav.panelactive li {
    text-align: center;
    width: 100%;
}
#g-nav.panelactive li a {
    font-size: 1.2rem;
    padding:4px 0;margin: 10px 0;
    color: #fff;
}

#g-nav.panelactive li a:hover {
color: #f11869;
}

.follow ul{
    display: flex;

    margin: auto;
    width: 300px;
}
.follow .in a, .follow .tw a, .follow .yt a {
    width: 33px;  height:auto;padding: 20px;
   margin: auto;
}


.in-img, .tw-img, .yt-img {
    width: 28px;
}

.follow .in a:hover, .follow .tw a:hover, .follow .yt a:hover {
opacity: 0.5;
}


/*===========================================================*/
/*左から右に線
/*===========================================================*/
@media screen and (min-width: 1200px) { /* 1200px以上の場合に適用 */
    .gnavi {
        width: 100%;
        max-width: 50%;
    }
} /*end*/
@media screen and (max-width: 992px) {
    #g-nav {}
    .gnavi {
        width: 100%;
        max-width: 90%;
    }
}
.gnavi {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 500;
    /*background-color:rgba(0,0,0,0.9);*/
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000;
}
.gnavi a, .gnavi a:visited {
    display: block;
    padding: 10px 5px;
    color: #fffefb;
    /*background-color:rgba(255,39,98,1);*/
    /*background-color:rgba(0,0,0,1);*/
    text-decoration: none;
}
.gnavi {
    line-height: 1.2;
}
.gnavi span {
    display: block;
    font-size: 0.5rem;
}
.nav01d li a {
    /*線の基点とするためrelativeを指定*/
    position: relative;
}
.nav01d li.current a:hover {
    color: #f11869;
}
.nav01d li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    top: 40px;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 1px;
    background: #f11869;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1); /*X方向0、Y方向1*/
    transform-origin: center top; /*左上基点*/
}
/*現在地の形状の設定*/
.nav01d li.current a::after {
    transform: scale(0.2, 1); /*X方向に0.2スケール拡大*/
}
/*現在地を含むhoverの設定*/
.nav01d li.current a:hover::after, .nav01d li a:hover::after {
    transform: scale(1, 1); /*X方向にスケール拡大*/
}
/*===================================
メニュー
===================================*/
.openbtn {
    position: fixed;
    display: block;
    top: 15px;
    left: 15px;
    z-index: 9999; /*ボタンを最前面に*/
    cursor: pointer;
    width: 60px;
    height: 40px;
    filter: drop-shadow(0px 0px 30px rgba(22, 22, 22, 0.9)) drop-shadow(0px 0px 2px rgba(22, 22, 22, 0.8));
}
.openbtn span {
    display: inline-block;
    transition: all .4s; /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    background: #fff;
}
.openbtn span:nth-of-type(1) {
    top: 15px;
    width: 90%;
}
.openbtn span:nth-of-type(2) {
    top: 22px;
    width: 90%;
}
.openbtn span:nth-of-type(3) {
    top: 29px;
    width: 90%;
}
/* × */
.openbtn.active span {
    background: #999;
}
.openbtn.active span:nth-of-type(1) {
    top: 15px;
    left: 10px;
    transform: translateY(3px) rotate(-210deg);
    width: 100%;
}
.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
    top: 22px;
    left: 10px;
    transform: translateY(-3px) rotate(210deg);
    width: 100%;
}
footer{
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("../../img/bg.jpg");
    background-size: cover;
}
footer .footer_logo {padding-top: 40px;
    text-align: center;
    width: 25%;
    max-width: 400px;
     margin:auto ;
    opacity: .8;
}
footer .footer_45logo {padding-bottom: 30px;
    text-align: center;
    width: 20%;
    max-width: 150px;
 margin:auto ;
    opacity: .8;
}
footer .copyright {
    margin: 0 auto;
    text-align: center;
    font-size: 0.8em;
}
@media screen and (max-width: 992px) {
footer{
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("../../img/bg_sp.jpg");
    background-size: auto 130vh;
}
    

    footer .footer_logo {
        width: 80%;
    }
    footer .footer_45logo {
        width: 50%;
    }
} /*end*/
/*
---------------------------------------------
inview
---------------------------------------------
*/
.fadeIn {
    opacity: 0;
    transition: 1s;
    transform: translateY(0px);
}
.fadeIn.is-inview {
    transform: translateY(0);
    opacity: 1;
}

.fadeIn10 {
    opacity: 0;
    transition: 5s;
    transform: translateY(0px); 
}
.fadeIn10.is-inview {
    transform: translateY(0);
    opacity: 1;
   
}


.fadeInUp {
    opacity: 0;
    transition: 1s;
    transform: translateY(100px);
}
.fadeInUp.is-inview {
    transform: translateY(0);
    opacity: 1;
}
.Smooth {
    transition: 1s;
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
}
.Smooth.is-inview {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
}
.blurUp {
    opacity: 0;
    transition: 1s;
    transform: scale(1.2);
}
.blurUp.is-inview {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}
.blurUpLeft {
    opacity: 0;
    transition: 1s;
    filter: blur(50px);
    clip-path: inset(5%);
}
.blurUpLeft.is-inview {
    opacity: 1;
    clip-path: inset(0%);
    filter: blur(0);
    transform: scale(1);
}

.ZoomIn {
    opacity: 0;
    transition: 1s;
  transform: scale(1.5); 
}
.ZoomIn.is-inview {
    opacity: 1;
transform: scale(1);
}




@media screen and (max-width: 992px) {
    .blurUpLeft {
        clip-path: inset(5%);
    }
} /*end*/
.clipDown {
    opacity: 0;
    transition: 2s;
    clip-path: inset(0% 0% 100% 0);
}
.clipDown.is-inview {
    clip-path: inset(0%);
    opacity: 1;
}
/*
---------------------------------------------
kokuchi
---------------------------------------------
*/

#kokuchi{}
#kokuchi-kaiken{background: url(../img/bg-topics.jpg);color: #eee;}

.kokuchi-area {
    padding: 0 0 30px;
    text-align: center;
    width: 90%;
    max-width:1600px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin: 0 auto;
}
.kokuchi-L {
    width: 32%;
    padding: 0 1% 0 0;
}
.kokuchi-R {
   width: 32%;
    padding: 0 1% 0 0;
}

.kokuchi-C{
    width: 32%;
   padding: 0 1% 0 0;
}

.kokuchi-img {
    width: 90%;
    max-width: 540px;filter: drop-shadow(0px 0px 5px rgba(100, 10, 65, 0.9)) drop-shadow(0px 0px 2px rgba(100, 10, 65, 0.8));
    /*filter: drop-shadow(0px 0px 10px rgba(255, 2, 147, 0.9)) drop-shadow(0px 0px 2px rgba(255, 2, 147, 0.8));*/
}
.kokuchi-img:hover {
    opacity: 0.5;
    transition: 0.3s; ;filter: none;
}


@media screen and (max-width: 992px) {
  #kokuchi{padding-bottom: 30px;}
    
    
    .kokuchi-area {
        display: block;
        padding: 0;
        text-align: center;
        width: 70%;
        max-width: 540px;
        margin: 0 auto;
    }
    

    
    .kokuchi-L,.kokuchi-C,.kokuchi-R{
        width: 100%;
        padding: 0;
    }

    
.kokuchi-img {
    width: 100%;
    max-width: 100%;
}
    
}


/*1024px*/
@media only screen
    and (min-device-width:768px) 
    and (max-device-width:1024px) 
    and (orientation:landscape) {
		
		.fixed-bg {
  position: relative;
  min-height: 100vh;
  background-attachment: scroll;
  background-size: cover;
  background-position:50% 100%;
  z-index: 1;
}

        #main-area {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background: url(../img/bg-sakura.jpg);
  background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% auto;
    background-position: bottom center;
    z-index: -1;
    overflow: hidden;
}
        
}/*end*/
