@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');
* {
    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%;
    background: url("../img/bg_BR.png") repeat center;
}
ul {
    list-style: none;
}

#wrapper {overflow: hidden;}
/* Loading */
#loading {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #231815;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}
.loading-stage {
    position: relative;
    width: 400px;
    height: 200px;
}
.oyabu {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 120px;
    transform: translateX(-50%) scale(1);
    z-index: 2;
    animation: oyabuShake 0.3s ease-in-out infinite alternate;
}
@keyframes oyabuShake {
    0% {
        transform: translateX(-50%) translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateX(calc(-50% + 3px)) translateY(-3px) rotate(3deg) scale(1.05);
    }
    50% {
        transform: translateX(calc(-50% - 3px)) translateY(3px) rotate(-3deg) scale(1.05);
    }
    75% {
        transform: translateX(calc(-50% + 3px)) translateY(-3px) rotate(3deg) scale(1.05);
    }
    100% {
        transform: translateX(-50%) translateY(0) rotate(0deg) scale(1);
    }
}
/* 叫び文字（共通） */
.shout {
    position: absolute;
    bottom: 10px;
    left:25%;
    transform: translateX(-50%) rotate(-15deg);
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    opacity: 0;
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
}
/* 個別タイミングで表示 */
.shout1 {
    animation-name: shout1Anim;
    animation-delay: 0.5s;
}
.shout2 {
    animation-name: shout2Anim;
    animation-delay: 1.3s;
}
.shout3 {
    animation-name: shout3Anim;
    animation-delay: 2s;
}
.img-load {
    width: auto;
    height: 150px;
    max-height: 150px;
}
.img-load-XXX {
    width: auto;
    height: 200px;
    max-height: 200px;
}

@media (max-width: 767px) {
.shout {
    bottom: 140px;
    left: 45%;
    font-size: 1.5rem;
}} /**/


@keyframes shout1Anim {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.8) rotate(-10deg);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1) rotate(-10deg);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) scale(0.9) rotate(-10deg);
    }
}
@keyframes shout2Anim {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.8) rotate(-10deg);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1) rotate(-10deg);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) scale(0.9) rotate(-10deg);
    }
}
@keyframes shout3Anim {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.8) rotate(-10deg);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1) rotate(-10deg);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) scale(0.9) rotate(-10deg);
    }
}
/* loading.svg（丸）のズームイン登場 */
.orb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    z-index: 3;
    animation: orbZoomIn 0.6s ease-out 2.6s forwards;
}
@keyframes orbZoomIn {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 1;
    }
}


/* 円形背景エフェクト */
.circle-bg {
  position: fixed;
  z-index: 100;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ff0066;
  transform: scale(0);
  top: -50px;
  left: calc(50% - 50px);
  transition: all .6s;
}
.circle-bg.circleactive {
  transform: scale(50);
}


/* ナビ本体 */
#g-nav {
  background: url(../img/logoPP.png) no-repeat center center;
}
#g-nav.panelactive {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}
#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: flex;
  justify-content: center;
  align-items: center;
}

/* リスト共通 */
#g-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
}
#g-nav.panelactive ul {
  opacity: 1;
  display: grid;
  gap: 20px;
  text-align: center;
}
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes gnaviAnime {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* 各リンク */
#g-nav li a {
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}
#g-nav li a:hover {
  color: #231815;
  text-decoration: underline;
}

/* ハンバーガー */

.openbtn {
  display: none; /* ← 初期は非表示にする */
}

.openbtn {
  position: fixed;
  top: 30px;
  right: 20px;
  z-index: 9999;
  background: #231815;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 30px;
}
.openbtn .openbtn-area {
  position: relative;
  width: 100%;
  height: 100%;
}
.openbtn span {
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background:#ff0066;
  width: 45%;
  transition: all .4s;
}
.openbtn span:nth-of-type(1) { top: 15px; }
.openbtn span:nth-of-type(2) { top: 23px; }
.openbtn span:nth-of-type(3) { top: 31px; }
.openbtn.active  {}
.openbtn.active span {}
.openbtn.active .openbtn-area {
  transform: rotateX(360deg);
}
.openbtn.active span:nth-of-type(1) {
  top: 18px; left: 18px;
  transform: translateY(6px) rotate(-135deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) { opacity: 0; }
.openbtn.active span:nth-of-type(3) {
  top: 30px; left: 18px;
  transform: translateY(-6px) rotate(135deg);
  width: 30%;
}

/* PC：2列 */
@media screen and (min-width: 993px) {
  #g-nav ul {
    grid-template-columns: repeat(2, auto);
    gap: 30px 60px;
  }
}

/* スマホ：2列 */
@media screen and (max-width: 992px) {
  #g-nav ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  #g-nav li a {
    font-size: 1rem;
  }
}

/* ------------------------------------------------------------------- 
 * h1
 * ------------------------------------------------------------------- */
.otherpage div h1 {margin:2em auto 0;max-width:300px;}
.otherpage div  h1 img{width:100%;}
.gakuyapage div h1 {margin:2em auto 0;max-width:300px;}
.gakuyapage div h1 img{width:100%;}

@media screen and (max-width:992px) {
.otherpage div h1 {margin:1em auto 0;max-width:60%;}
.gakuyapage div h1 {margin:1em auto 0;max-width:60%;}
}/**/
    
/* ------------------------------------------------------------------- 
 * h2
 * ------------------------------------------------------------------- */
h2 {
  text-align: center;
 margin:0 auto 20px;
}

h2 img{
max-width: 40px;
}

#caststaff h2 img,#ticket h2 img,#intro h2 img{
max-width: 80px;
}

#gakuya h2 img{max-width: 160px;margin:0 auto -50px;
}


.text-center {
  text-align: center;
 margin:auto;
}

@media screen and (max-width:992px) {
  h2 img{
max-height: 120px;
}

#gakuya h2 img{
max-height: 200px;margin:0 auto -45px;
}

 
 }/**/  

/*
---------------------------------------------
footer
---------------------------------------------
*/
footer{  background: linear-gradient(to bottom, #fe2f8a, #ff0066);width: 100%;position: relative;}
.otherpage footer{  background: none;}


#staffcredit {  
    max-width:800px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.footer-logo{
    margin: 0 auto;
    text-align: center;
}
.footer-logo-img{
    max-width: 300px;
    width: 80%;
    margin: 0 auto;
    opacity: .8;
}


.copyright {
    margin: 0 auto;
    text-align: center;
    font-size: 0.8em;
}

.aniv {
    margin: 0 auto;
    text-align: center;
}

.aniv-img{
    max-width: 200px;
    width: 30%;
    margin: 0 auto;
    opacity: .8;
}


.in-img, .tw-img, .yt-img {
    width: 35px;
}
footer div.follow {
    text-transform: none;
    font-size: 0.7rem;
    display: flex;
    align-items: stretch;
    text-align: center;
    margin: auto;
    width: 300px;
    padding: 10px 0;
}
footer div.follow .in a, div.follow .tw a,div.follow .yt a {color: #111;}
footer div.follow .in a:hover, div.follow .tw a:hover, div.follow .yt a:hover {opacity: 0.5;}
footer div.follow li {
    width: 70px;
    height: 50px;
    padding: 8px 0 0;
    text-align: center;
    margin: auto;
}

@media screen and (max-width: 992px) {
   footer {padding: 0 0 85px;}
    
    
.aniv-img{
    max-width: 80%;
    width: 40%;
}

   .copyright {
    font-size: 0.7em;
} 

	
}/*end*/



/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:40px;
	z-index: 4;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(150px);
}

/*　上に上がる動き　*/
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(150px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(150px);
  }
}

/*動き*/
#page-top a {
    /*aタグの形状*/
	display: block;
	width: 60px;
	height: 60px;
	color: #333;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.8rem;
	background: url("../svg/flying_base.svg") no-repeat center;
	background-size: contain;
}



#page-top.floatAnime a{
	width: 110px;
	height: 110px;
	background: url("../svg/flyinging.svg") no-repeat center;
	background-size: contain;
	animation: floatAnime 2s linear infinite;
	opacity: 0;
}

@keyframes floatAnime {
  0% { transform: translateX(0); opacity: 0; }
  25% { transform: translateX(-6px);opacity: 1; }
  50% { transform: translateX(0) }
  100% { transform: translateX(6px);opacity: 1; }
}

/*テキスト*/
#page-top span{
    position: absolute;
    bottom: -20px;
    right: 15px;
    font-weight: bold;
    line-height: 1.3;color: #fff;
}

#page-top.floatAnime span{
 right: 15px;
}

@media screen and (max-width:991px) {
    #page-top a {	width: 40px;
	height: 40px;}
    
   #page-top.floatAnime a{
	width: 80px;
	height: 80px;
} 
/*テキスト*/
#page-top span{
right: 8px;
}
    
    }/**/
    


.rotateRightZ{
	animation-name: rotateRightZAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes rotateRightZAnime{
	from{
		transform: rotateZ(0);
		}
	to{
		transform: rotateZ(360deg);
		}
}

.fadeIn{
animation-name: fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


.flipLeftTop{
animation-name: flipLeftTopAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes flipLeftTopAnime{
  from {
   transform: translate(-20px,80px) rotate(-15deg);
 	opacity: 0;
  }

  to {
   transform: translate(0,0) rotate(0deg);
	opacity: 1;
  }
}


.flipRightTop{
animation-name: flipRightTopAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes flipRightTopAnime{
  from {
   transform: translate(-20px,80px) rotate(25deg);
   opacity: 0;
  }

  to {
   transform: translate(0,1) rotate(0deg);
	opacity: 1;
  }
}


.zoomIn{
	animation-name: zoomInAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
}

@keyframes zoomInAnime{
  from {
	transform: scale(0.6);
	opacity: 0;
  }

  to {
    transform: scale(1);
	opacity: 1;
  }
}



.zoomInIn{
	animation-name: zoomInInAnime;
	animation-duration:4s;
	animation-fill-mode:forwards;
}

@keyframes zoomInInAnime{
  0% {
	transform: scale(3);
	opacity: 0;
  }
  50% {
	transform: scale(3);
	opacity: 0;
  }
 100%{
    transform: scale(1);
	opacity: 1;
  }
}


.fadeUpTrigger,
.zoomInTrigger,
.flipLeftTopTrigger,
.flipRightTopTrigger{
    opacity: 0;
}

/* ------------------------------------------------------------------- 
 * e.t.c
/*-------------------------------------------------------------------*/

/* スマホだけ表示（〜767px） */
.sp {
  display: none;
}
@media (max-width: 767px) {
  .sp {
    display: block; /* または inline / flex など要素に応じて */
  }
}

/* タブレットだけ表示（768〜991px） */
.tab {
  display: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .tab {
    display: block;
  }
}

/* PCだけ表示（992px〜） */
.pc {
  display: none;
}
@media (min-width: 992px) {
  .pc {
    display: block;
  }
}




.kome {
    font-size: 0.85rem;
    list-style: none;
    padding-left: 1.5em;
    margin-left: 0.5em;
}
.kome li {
    text-indent: -1.5em;
    line-height: 1.5;
}
.kome li:before {
    content: "※";
    margin-right: 0.5em;
}
/*-------------------------------------------------------------------*/
.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;
}


/*----------めだつぼたん-----------*/
    .eye-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 24px;
      font-size: 1.1rem;
      font-weight: bold;
      color: #fff;
      background-color: #ff0066;
      border: 2px solid #fff;
      border-radius: 999px;
      text-decoration: none;
      transition: transform 0.2s ease, background 0.3s;
      box-shadow: 0 6px 12px rgba(255, 0, 102, 0.3);
      position: relative;min-width: 600px;
    }

    .eye-button:hover {
      background-color: #e6005c;
      animation: bounce 0.6s ease;
    }

.eye-button .arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(1px); /* ←Y位置を微調整 */
  transition: transform 0.3s ease;
  margin-left: 4px;
}
.eye-button:hover .arrow {
  transform: rotate(45deg) translate(6px, -4px); /* 横方向メインに動かす */
}

    @keyframes bounce {
      0%   { transform: translateY(0); }
      30%  { transform: translateY(-6px); }
      60%  { transform: translateY(3px); }
      100% { transform: translateY(0); }
    }


    /* レスポンシブ調整 */

    @media (max-width: 768px) {
      .eye-button {
        padding: 12px 8px;font-size:0.9rem;
       min-width: unset;
    width: 90%;
    max-width: 90%;
      } 
}/**/
        
        
    @media (max-width: 480px) {
      .eye-button {
        padding: 12px 8px;  
      }

  .eye-button.small-on-mobile {
    font-size: 0.8rem;
  }

.eye-button .arrow {
        width: 8px;
        height: 8px;
        border-width: 1.5px;
      }
    }/**/


/*----------基本ぼたん-----------*/
    .base-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 24px;
      font-size: 1.1rem;
      font-weight: bold;
      color: #ff0066;
      background-color: #231815;
      border: 2px solid  #231815;
      border-radius: 999px;
      text-decoration: none;
      transition: transform 0.2s ease, background 0.3s;
      box-shadow: 0 6px 12px rgba(255, 0, 102, 0.3);
      position: relative;
    }

   .base-button:hover { color: #231815;
      background-color: #ff0066;
      animation: bounce 0.6s ease;
    }

.base-button .arrow{
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ff0066;
  border-right: 2px solid  #ff0066;
  transform: rotate(45deg) translateY(1px); /* ←Y位置を微調整 */
  transition: transform 0.3s ease;
  margin-left: 4px;
}
.base-button:hover .arrow {border-top: 2px solid #231815;
  border-right: 2px solid #231815;
  transform: rotate(45deg) translate(6px, -4px); /* 横方向メインに動かす */
}

    /* レスポンシブ調整 */

    @media (max-width: 768px) {
      .base-button {
        padding: 10px 18px;
        min-width: 90%;max-width: 90%;margin-bottom: 20px;
      } 
}/**/
        
    /* レスポンシブ調整 */
    @media (max-width: 480px) {
     .base-button {
        padding: 10px 18px;
        font-size: 1rem;
      }

.base-button .arrow {
        width: 8px;
        height: 8px;
        border-width: 1.5px;
      }
    }/**/

/*----------告知ぼたん-----------*/
    .kokuchi-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 24px;
      font-size: 1.1rem;
      font-weight: bold;
      color: #231815;
      background-color: #ffee00;
      border: 2px solid  #231815;
      border-radius: 999px;
      text-decoration: none;
      transition: transform 0.2s ease, background 0.3s;
      box-shadow: 0 6px 12px rgba(255, 0, 102, 0.3);
      position: relative;
    }

   .kokuchi-button:hover { color: #231815;
      background-color: #ff0066;
      animation: bounce 0.6s ease;
    }

.kokuchi-button .arrow{
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #231815;
  border-right: 2px solid  #231815;
  transform: rotate(45deg) translateY(1px); /* ←Y位置を微調整 */
  transition: transform 0.3s ease;
  margin-left: 4px;
}
.kokuchi-button:hover .arrow {border-top: 2px solid #231815;
  border-right: 2px solid #231815;
  transform: rotate(45deg) translate(6px, -4px); /* 横方向メインに動かす */
}

    /* レスポンシブ調整 */

    @media (max-width: 768px) {
    .kokuchi-button {
        padding: 10px 18px;
        min-width: 90%;max-width: 90%;margin-bottom: 20px;
      } 
}/**/
        
    /* レスポンシブ調整 */
    @media (max-width: 480px) {
.kokuchi-button {
        padding: 10px 18px;
        font-size: 1rem;
      }

.kokuchi-button .arrow {
        width: 8px;
        height: 8px;
        border-width: 1.5px;
      }
    }/**/
/* ------------------------------------------------------------------- 
ナビとの階層確認
 * ------------------------------------------------------------------- */
.modaal-close:hover:before {
    background: #c34949;
}
.modaal-iframe .modaal-close {
    background: #afb7bc;
    right: 13px;
    top: 13px
}


.floating-banner {
 position: fixed;
z-index:999;
  bottom: 0;
  left:  0;
display: flex;
text-align: center;
	margin: 0 auto;
}
.btn-head a{
 display: flex;text-decoration: none;
  justify-content: space-between;
  align-items: center;
	border: solid 2px #333;
  margin: 0.8rem auto;
  padding: 0.5rem 2rem 0.5rem 2rem;
  color: #333;
  font-size: 1rem;
  font-weight: 700;
  background-color: #ffee00;
  border-radius: 50vh;
  transition: 0.3s;
  width: 100%; 
box-shadow: 3px 3px 0 rgba(150, 150, 150, 0.4);
}



.btn-head a:hover {	border-color:transparent;	
  text-decoration: none;color: #fff;
  background-color: #ff0066;
box-shadow: 0 0 0;
	transform: translateY(3px);border: solid 2px #333;
}


.btn-head a::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
 transform: rotate(45deg); 
}

.btn-head a:hover::after {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}



/* ------------------------------------------------------------------- 
 * responsive:
 *  header
 * ------------------------------------------------------------------- */

@media screen and (max-width:992px) {
  .floating-banner {
    position: fixed;
    z-index: 3;
    top: inherit;
    right: inherit;
    bottom: 5px;
   width: 80%;
  }
	

.btn-head a{
  padding: 0.5rem 1.5rem 0.5rem 1.5rem;
  color: #333;
  font-size: 0.9rem;
  font-weight: 700;
  background-color: #ffee00;
  border-radius: 50vh;
  transition: 0.3s;
  width: 100%; max-width: 100%;
box-shadow: 5px 5px 0 rgba(150, 150, 150, 0.4);
}


} /*end*/

