@charset "utf-8";
/* noto-serif-jp-regular - latin_japanese */
@font-face {
  font-family: 'Noto Serif JP';
  font-style: normal;
  font-weight: 400;
  src: local(''),
      url('../fonts/NotoSerifJP-Regular.otf') format('truetype'),
      url('../fonts/NotoSerifJP-SemiBold.otf') format('truetype'),
      url('../fonts/NotoSerifJP-Bold.otf') format('truetype'),
      url('../fonts/NotoSerifJP-Black.otf') format('truetype')
}

@font-face {
  font-family: 'Antonio';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/Antonio-Medium.ttf') format('truetype'),
       url('../fonts/Antonio-Regular.ttf') format('truetype'), 
       url('../fonts/Antonio-SemiBold.ttf') format('truetype'), 
       url('../fonts/Antonio-Bold.ttf') format('truetype')
}


*,*::before,*::after{
  box-sizing: border-box;
}

body{
font-family:  'Noto Serif JP', sans-serif;
  font-weight: 500;
  /* iphone対応 */
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

.main{
  color: #000;
  transition : all 0.5s linear;
  background-color: #fffcfb;
  
}
.main.is-active{
  color: #ffffff;
  background-color: #060201;
  transition : all 0.5s linear;
  /* animation: updatebgc_Anime 0.5s forwards; */
}

/* @keyframes updatebgc_Anime{
  from {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);

  }
  to {
    opacity: 0;
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
  }
} */
#move_navi{ 
  position: fixed;/*fixedを設定して固定*/
  z-index: 999;/*最前面へ*/
  margin: 0 auto;
  height: 96px;
  /* background-color: #FFFAFA; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  /* box-shadow: 0 1px 2px 0 rgba(92, 18, 20, 0.6); */
  
}
@media screen and (max-width: 1024px) {
  .move_navi {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .move_navi {
    display: flex;
  }
}


/*== ふわっと出現させるためのCSS ==*/

/*　上に上がる動き　*/

#move_navi.UpMove{
  position: fixed;
  width:100%;
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);

  }
  to {
    opacity: 0;
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/

#move_navi.DownMove{
  position: fixed;
  width: 80%;
  animation: DownAnime 1.0s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
  }
  to {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
  }
}

.fix_navi{
  margin: 0 auto;
  height: 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
}

.logo_p{
  position: relative;
  width: 282px;
  height: 60px;
  margin-left: 8%;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
}
.logo_p:hover{
  opacity: 0.8;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
}
.logo_p a{
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}
.logo_p img{
  width: 100%;
}
.pc_nav {
  /* margin-right: 8%; */
}
.navi_item{
  display: flex;
  list-style: none;
  /* font-family: '#NotoSansJP'; */
  letter-spacing: 1px;
}
.navi_item li{
  margin-left: 60px;
  font-size: 16px;
}
.navi_item li a {
 position: relative;
 color: #000000;
 letter-spacing: 2px;
 font-weight: 600;
}
.navi_item li a.is-active {
  color: #ffffff;
 }
 
.navi_item li a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #ffffff;
  bottom: -10px; 
  transform: scale(0, 1); /*アンダーラインがaタグの下端から現れる*/
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  -moz-transform-origin: left top;

  transition: transform 0.4s; /*変形の時間*/
  -webkit-transition: transform 0.4s;
  -ms-transition: transform 0.4s;
  -moz-transition: transform 0.4s;
  }
  
  .navi_item li a:hover::after {
  transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  }

a {
  text-decoration: none;
}
.main_visual_box{
  margin-bottom: 40px;
  text-align: center;
}
.main_vis_img_pc{
  width: 55%;
  margin: 0 auto;
}
.main_vis_img_sp{
  width: 100%;
}

@media screen and (min-width: 961px) {
  .openbtn1{
    display: none;
  }
  
} 
@media screen and (max-width: 960px) {
  .pc_nav{
    display: none;
  }
}
@media screen and (min-width: 521px) {
  .main_vis_img_pc{
    display: block;
  }
  .main_vis_img_sp{
    display: none;
  }
} 
@media screen and (max-width: 520px) {
  .fix_navi{ 
    display: none;
  }
  .main_vis_img_pc{
    display: none;
  }
  .main_vis_img_sp{
    display: block;
  }
}

 /* テキスト折り返し防止 */
.dinlineblock{
  display: inline-block;
}
@media screen and (max-width: 400px) {
  .main_visual{
    height: 100vh;
  }
  .main_content{
    height: 100vh;
  }
}

/*-----------------------------
　文字標準設定
-------------------------------*/


:root {
  --h2-size: 70px;
  --h3-size: 24px;
  --p-size: 17px;
  --p_sm-size: 16px;
  --p_cu-size: 14px;
  --namesub-size: 12px;
  --p_ticketsub-size: 20px;
  --sto-size: 20px;
  --me_1400: 0.9;
  --me_1024: 0.8;
  --me_768: 0.8;
  --me_500: 0.8;
  --me_400: 0.7;
  
}

/* 項目頭のアルファベット */
h2 {
  font-family: 'Antonio', sans-serif;
  font-weight: 500;
  font-size: var(--h2-size);
  text-align: center;
}
.titletext_left{
  position: absolute;
  top:  50px;
  margin-left: 10%;
}
.titletext_right{
  position: absolute;
  top:  50px;
  /* right: 0; */
  margin-right: 10%;
}
@media screen and (max-width: 1024px) {
  .titletext_left{
    margin-left: 7%;
  }
  .titletext_right{
    margin-right: 7%;
  }
}
@media screen and (max-width: 768px) {
  .titletext_left{
    top:  -74px;
    margin-left: 5%;
  }
  .titletext_right{
    top:  -74px;
    right: 0;
    margin-right: 5%;
  }
}
@media screen and (max-width: 520px) {
  .titletext_left{
    top:  -74px;
    margin-left: 5%;
  }
  .titletext_right{
    top:  -74px;
    right: 0;
    margin-right: 5%;
  }
}
@media screen and (max-width: 390px) {
  .titletext_left{
    top:  -74px;
    margin-left: 5%;
  }
  .titletext_right{
    top:  -74px;
    right: 0;
    margin-right: 5%;
  }
}


/* #の見出し */
h3 {
  font-size: var(--h3-size);
  line-height: 2em;
}
/* 標準文字 */
p{
  font-size: var(--p-size);
  line-height: 2em;
  letter-spacing: 1px;
}
.text_name12{
  font-size: var(--namesub-size);
  padding-top: 5px;
}
.text_14{
  font-size: var(--p_cu-size);
}
.text_16{
  font-size: var(--p_sm-size);
}
.text_20{
  font-size: var(--p_ticketsub-size);
}
/* h3で縦余白多すぎる場合対応 */
.text_24{
  font-size: var(--h3-size);
  line-height: 34.5px; 
}
.sto_size{
  font-size: var(--sto-size);
  text-shadow:-3px -3px 10px rgb(255, 255, 255);
  line-height: 1.7;

}
.message_text{
  font-size: 16px;
}
.bold{
  font-weight: 600;
}
.red{
  color: red;
}
.underline{
  text-decoration: underline;
}

.black{
  color: black;
}

.br_sp {
  display: none;
}


@media screen and (max-width: 1400px) {
  h2 {
    font-size: calc(var(--h2-size) * var(--me_1400));
  }
  .lineht_h2{
    line-height: 138px;
  }
  h3 {
    font-size: calc(var(--h3-size) * var(--me_1400));
  }
  p{
    font-size: calc(var(--p-size) * var(--me_1400));
  }  
  .text_name12{
    font-size: calc(var(--namesub-size) * var(--me_1400));
    padding-top: 5px;
  }
  .text_14{
    font-size: calc(var(--p_cu-size) * var(--me_1400));
  }
  .text_16{
    font-size: calc(var(--p_sm-size) * var(--me_1400));
  }
  .text_20{
    font-size: calc(var(--p_ticketsub-size) * var(--me_1400));
  }
  .text_24{
    font-size: calc(var(--h3-size) * var(--me_1400));
  }
  .sto_size{
    font-size: calc(var(--sto-size) * var(--me_1400));
  }
  .navi_item li{
    margin-left: 32px;
    font-size: 14px;
  }
  .message_text{
    font-size: calc(var(--p_sm-size) * var(--me_1400));
  }
}
@media screen and (max-width: 1024px) {
  h2 {
    font-size: calc(var(--h2-size) * var(--me_1024));
  }
  .lineht_h2{
    line-height: 138px;
  }
  h3 {
    font-size: calc(var(--h3-size) * var(--me_1024));
  }
  p{
    font-size: calc(var(--p-size) * var(--me_1024));
  }
  .text_name12{
    font-size: calc(var(--namesub-size) * var(--me_1024));
    padding-top: 5px;
  }
  .text_14{
    font-size: calc(var(--p_cu-size) * var(--me_1024));
  }
  .text_16{
    font-size: calc(var(--p_sm-size) * var(--me_1024));
  }
  .text_20{
    font-size: calc(var(--p_ticketsub-size) * var(--me_1024));
  }
  .text_24{
    font-size: calc(var(--h3-size) * var(--me_1024));
  }
  .sto_size{
    font-size: calc(var(--sto-size) * var(--me_1024));
  }
  .navi_item li{
    margin-left: 23px;
    font-size: 14px;
  }
  .message_text{
    font-size: calc(var(--p_sm-size) * var(--me_1024));
  }
}

@media screen and (max-width: 960px) {
  .message_text{
    font-size: calc(var(--p-size) * var(--me_1024));
  }
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: calc(var(--h2-size) * var(--me_768));
  }
  .lineht_h2{
    line-height: 138px;
  }
  h3 {
    font-size: calc(var(--h3-size) * var(--me_768));
  }
  p{
    font-size: calc(var(--p-size) * var(--me_768));
  }
  .text_name12{
    font-size: calc(var(--namesub-size) * var(--me_768));
    padding-top: 5px;
  }
  .text_14{
    font-size: calc(var(--p_cu-size) * var(--me_768));
  }
  .text_16{
    font-size: calc(var(--p_sm-size) * var(--me_768));
  }
  .text_20{
    font-size: 14px;
  }
  .text_24{
    font-size: 18px;
  }
  .sto_size{
    font-size: calc(var(--sto-size) * var(--me_768));
  }
  .message_text{
    font-size: calc(var(--p-size) * var(--me_768));
  }

  .br_pc{
    display: none;
  }
  .br_sp {
    display: block;
  }
}
@media screen and (max-width: 520px) {
  h2 {
    font-size: calc(var(--h2-size) * 0.6);
  }
  .lineht_h2{
    line-height: 138px;
  }
  h3 {
    font-size: 18px;
  }
  p{
    font-size: 14px;
  }
  .text_name12{
    font-size: calc(var(--namesub-size) * var(--me_500));
    padding-top: 5px;
  }
  .text_14{
    font-size: calc(var(--p_cu-size) * var(--me_500));
  }
  .text_16{
    font-size: calc(var(--p_sm-size) * var(--me_500));
  }
  .text_20{
    font-size: 14px;
  }
  /* h3で縦余白多すぎる場合対応 */
  .text_24{
    font-size: 18px;
    line-height: 1.5;
  }
  .sto_size{
    font-size: 16px;
  }
  .message_text{
    font-size: 14px;
  }

  .br_pc{
    display: none;
  }
}
@media screen and (max-width: 390px) {
  h2 {
    font-size: calc(var(--h2-size) * 0.6);
  }
  .lineht_h2{
    line-height: 138px;
  }
  h3 {
    font-size: 18px;
  }
  p{
    font-size: 14px;
  }
  .text_name12{
    font-size: calc(var(--namesub-size) * var(--me_400));
    padding-top: 5px;
  }
  .text_14{
    font-size: calc(var(--p_cu-size) * var(--me_400));
  }
  .text_16{
    font-size: calc(var(--p_sm-size) * var(--me_400));
  }
  .text_20{
    font-size: calc(var(--p_ticketsub-size) * var(--me_400));
  }
  .text_24{
    font-size: 18px;
  }
  .sto_size{
    font-size: 16px;
  }
  .message_text{
    font-size: 14px;
  }
}
@media screen and (max-width: 360px) {
  .sto_size{
    font-size: 14px;
  }
}
/*-----------------------------
　テキストデザイン
-------------------------------*/
.text_right{
  text-align: right;
}
.text_center{
  text-align: center;
}

/* スケジュールの全5ステージ下寄せ対応 */
.text_bottom{
  display: flex;
  align-items: flex-end;
}
.text_notosans{
  font-family: 'Noto Serif JP';
}
.text_notoserif{
  font-family: 'Noto Serif JP';
}

/*-----------------------------
　テキスト配置（h3#見出しスタイル）
-------------------------------*/
.text_magin{
  margin-left: 2%;
  margin-bottom: calc(40px - 24px);
}
/* #スケジュール、#ご予約 */
.text_magin_inner{
  margin-left: 7%;
  margin-bottom: calc(40px - 24px);
}
@media screen and (max-width: 1024px) {
  .text_magin_inner{
    margin-left: 5%;
  }
}

.text_right_magin{
  margin-right: 2%;
  margin-bottom: calc(40px - 24px);
}

/*-----------------------------
　アニメーション
-------------------------------*/

/* レイアウトや見た目のスタイル */
/* ---------------------------- */

.single-item + .single-item{
    margin-top: 1.4rem;
}

/* アニメーションスタイル */
/* ---------------------------- */

/* アニメーション前 */
.u-fade-type-up{
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -moz-transform: translateY(15px);

  opacity: 0;
}
.u-fade-type-right{
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -moz-transform: translateX(0);
  opacity: 0;
}
.u-fade-type-h2{
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-up.is-active{
  transition: 1.0s;
  -webkit-transition: 1.0s;
  -ms-transition: 1.0s;
  -moz-transition: 1.0s;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  opacity: 1;
}
.u-fade-type-right.is-active{
  transition: 1.0s;
  -webkit-transition: 1.0s;
  -ms-transition: 1.0s;
  -moz-transition: 1.0s;
  animation: line_move 2.0s;
  opacity: 1;
}
.u-fade-type-h2.is-active{
  animation: title_move 0.8s;
  opacity: 1;
}

@keyframes line_move {
  0%{
    width: 10%;
  }
  100%{
    width: 100%;
  }
}

@keyframes title_move {
  0%{
    transform: scaleY(0.01);
    -webkit-transform: scaleY(0.01);
    -ms-transform: scaleY(0.01);
    -moz-transform: scaleY(0.01);
    
  }
  100%{
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -moz-transform: scaleY(1);
  }
}

/*-----------------------------
　カラム分け用
-------------------------------*/
.w70 {
  width: 70%;
}
.w60 {
  width: 60%;
}
.w50 {
  width: 50%;
}
.w40 {
  width: 40%;
}
.w30 {
  width: 30%;
}
.w10 {
  width: 10%;
  height: calc(144px + 24px);
}

@media screen and (max-width: 1024px) {
  .w60 {
    width: 100%;
  }
  .w50 {
    width: 100%;
  }
  .w40 {
    width: 100%;
  }
}

/*-----------------------------
　項目頭のイメージバー
-------------------------------*/
.imgbar{
  position: absolute;
  top: -24px;
  left: 0;
  width: 50%;
  height: 144px;
  border-radius: 0 150px 150px 0;
  background: rgb(149, 151, 151);
}
.imgbar_bg{
  position: absolute;
  top: 0; 
  width: 53%;
  height: 144px;
  border-radius: 0 150px 150px 0;
  background: #D22A31;
}

.imgbar_right{
  position: absolute;
  top: -24px;
  right: 0;
  width: 50%;
  height: 144px;
  border-radius: 150px 0 0 150px;
  background: rgb(149, 151, 151);
}
.imgbar_right_bg{
  position: absolute;
  top: 0;
  right: 0;
  width: 53%;
  height: 144px;
  border-radius: 150px 0 0 150px;
  background: #D22A31;
}
@media screen and (max-width: 768px) {
  .imgbar{
    top:  10px;
    left: 0;
    width: 76%;
    height: 115px;
  }
  .imgbar_bg{
    top: 30px; 
    width: 79%;
    height: 115px;
  }
  .imgbar_right{
    top:  10px;
    right: 0;
    width: 76%;
    height: 115px;
  }
  .imgbar_right_bg{
    top: 30px; 
    right: 0;
    width: 79%;
    height: 115px;
  }
}
@media screen and (max-width: 520px) {
  .imgbar{
    top:  15px;
    left: 0;
    width: 76%;
    height: 100px;
  }
  .imgbar_bg{
    top: 30px; 
    width: 79%;
    height: 100px;
  }
  .imgbar_right{
    top:  15px;
    right: 0;
    width: 76%;
    height: 100px;
  }
  .imgbar_right_bg{
    top: 30px; 
    right: 0;
    width: 79%;
    height: 100px;
  }
}
@media screen and (max-width: 390px) {
  .imgbar{
    top:  15px;
    left: 0;
    width: 76%;
    height: 80px;
  }
  .imgbar_bg{
    top: 30px; 
    width: 79%;
    height: 80px;
  }
  .imgbar_right{
    top:  15px;
    right: 0;
    width: 76%;
    height: 80px;
  }
  .imgbar_right_bg{
    top: 30px; 
    right: 0;
    width: 79%;
    height: 80px;
  }
}

.barimg_concept{
  background-image: url(../img/headimg/concept.jpg);
  background-size: 100%;
  background-position: 50% 10%;
  background-repeat: no-repeat;
}
.barimg_message{
  background-image: url(../img/headimg/message.jpg);
  background-size: cover;
  background-position: 50% 20%;
  background-repeat: no-repeat;
}
.barimg_stage{
  background-image: url(../img/headimg/stage.jpg);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.barimg_theater{
  background-image: url(../img/headimg/theater.jpg);
  background-size: cover;
  background-position: 50% 39%;
  background-repeat: no-repeat;
}
.barimg_staff{
  background-image: url(../img/headimg/staff.jpg);
  background-size: cover;
  background-position: 50% 52%;
  background-repeat: no-repeat;
}

/*-----------------------------
　イラスト設定
-------------------------------*/
/* イラスト共通relative */
.posi_rela{
  position: relative;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .posi_rela{
    width: 100%;
  }
} 
/* @media screen and (max-width: 521px) {
  .posi_rela{
    width: 100%;
  }
}  */


/* 新着情報のイラスト */
.illustrat_common{
  position: absolute;
  width: 250px;
  height: 330px;
  background-size: cover;
  background-repeat: no-repeat;

}
.illustrat_awa1{
  top: 20px;
  left: 50px;
  background-image: url(../img/ef/awaimg1.png);
  background-size: 100%;
}
/* スタッフ横のイラスト */
.illustrat_common2{
  position: absolute;
  width: calc(300px * 1);
  height: calc(350px * 1);
  background-size: cover;
  background-repeat: no-repeat;
}
.illustrat_awa2{
  top: 75px;
  right: 60px;
  background-image: url(../img/ef/awaimg2.png);
  background-size: 90%;
}

/* スタッフ下のイラスト */
.illustrat_box{
  width: 100%;
  height: 150px;
  display: none;
}
.illustrat_common3{
  position: absolute;
  width: calc(150px * 1.5);
  height: calc(175px * 1.5);
  background-size: cover;
  background-repeat: no-repeat;
  display: none;
}
.illustrat_awa3{
  top: -6%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../img/ef/awaimg2.png);
  background-size: 100%;
}

@media screen and (max-width: 1280px) {
  .illustrat_common2{
    width: calc(300px * 0.8);
    height: calc(350px * 0.8);
  }
  .illustrat_awa2{
    top: 70px;
    right: -20px;
    background-size: 90%;
  }
}
@media screen and (max-width: 960px) {
  .illustrat_common{
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .illustrat_common2{
    display: none;
  }
  .illustrat_box{
    display: block;
  }
  .illustrat_common3{
    display: block;
  }
}
/*-----------------------------
　あらすじ・写真設定
-------------------------------*/
/* あらすじ */
.story{
  position: relative;
  /* padding: 70px 0 80px 0; */
  height: 100%;
  text-align: center;
}
.single{
  height: 390px;
}
.w_story{
  width: 750px;
}
.w_photo1{
  position: relative;
  width: calc((100vw - 750px) / 2);
}
.photo_imgbox{
  position: absolute;
  top: -60px;
  left: -2%;
  bottom: 0;
  right: 0;
  max-height: 250px;
}
.photo_imgbox::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  max-height: 250px;
  box-shadow: inset 0 0 10px 20px #fffbf3;
}
.photo_imgbox img{
  padding: 2% 1%;
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}


.w_photo2{
  position: relative;
  width: calc((100vw - 750px) / 2);
  overflow: hidden;
}
.photo_imgbox2{
  position: absolute;
  top: 130px;
  left: 0;
  bottom: 0;
  right: -4%;
  max-height: 250px;
}
.photo_imgbox2::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  max-height: 250px;
  box-shadow: inset 0 0 10px 20px #fffbf3;
}
.photo_imgbox2 img{
  padding: 2% 1%;
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}


/* pc用写真の共通設定 */
.photo_common{
  position: absolute;
  width: calc(600px * 0.6);
  height: calc(450px * 0.6);
  overflow: hidden;
}
.photo1_posi {
  top: 20px;
  left: 0;
}
.photo2_posi {
  /* top: 140px; */
  top: 210px;
  right: 0;
}

/* pc用写真の昭和 */
.photo1 {
  position: absolute;
  /* left: -250px; */
  left: -10%;
  width: calc(600px * 0.6);
  height: calc(450px * 0.6);
  background-image: url(../img/ef/story_6.png);
  background-size: 100%;
  background-repeat: no-repeat;
  opacity: 0.5;
}
/* pc用写真の令和 */
.photo2 {
  position: absolute;
  right: -10%;
  width: calc(600px * 0.6);
  height: calc(450px * 0.6);
  background-image: url(../img/ef/story_7.png);
  background-size: 100%;
  background-repeat: no-repeat;
  opacity: 0.6;
}

/* sp用写真のbox */
.photo_bg_div{
  max-height: 250px;
  display: none;
}
.photo_bg_div img{
  display: inline-block;
  width: 100%;
  max-height: 250px;
  opacity: 0.8;
}

/* タブレット用写真のbox */
.photo_bg_div_ms {
  position: relative;
  width: 100%;
  height: 200px;
  display: none;
}
/* 写真上部ぼかし */
.photo_bg_div_ms::after {
  position: absolute;
  content: "";
  top: -5px;
  left: 0;
  bottom: 0;
  right: 0;
  box-shadow: inset 0 15px 10px 1px #fffbf3;
}
/* 写真下部ぼかし */
.photo_bg_div_ms::before {
  position: absolute;
  content: "";
  z-index: 10;
  top: 0;
  left: 0;
  bottom: -5px;
  right: 0;
  box-shadow: inset 0 -15px 10px 1px #fffbf3;
}
/* タブレット用写真 */
.photo_bg_div_ms img{
  display: inline-block;
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  opacity: 0.8;
}

/* @media screen and (min-width: 1920px) {
  .photo1 {
    left: -150px;
  }
  .photo2 {
    right: -150px;
  }
} */

@media screen and (max-width: 1400px) {
  .photo2_posi {
    top: 150px;
  }
  .photo1 {
    left: -200px;
    width: calc(600px * 0.8);
    height:  calc(450px * 0.8);
  }
  .photo2 {
    right: -200px;
    width: calc(600px * 0.8);
    height:  calc(450px * 0.8);
  }
  .photo_common{
    width: calc(600px * 0.8);
    height:  calc(450px * 0.8);
  }
 

  .w_story{
    width: 610px;
  }
  .w_photo1{
    width: calc((100vw - 610px) / 2);
  }
  .photo_imgbox{
    max-height: 220px;
  }
  .w_photo2{
    width: calc((100vw - 610px) / 2);
  }
  .photo_imgbox2{
    top: 133px;
    max-height: 220px;
  }
  .single{
    height: 370px;
  }
}
@media screen and (max-width: 1260px) {
  .photo_imgbox{
    max-height: 300px;
  }
  .photo_imgbox2{
    top: 66px;
    max-height: 300px;
  }
  .photo_imgbox img{
    padding: 2% 2%;
  }
  .photo_imgbox2 img{
    padding: 2% 2%;
  }
  .single{
    height: 370px;
  }
  .photo_imgbox::after {
    max-height: 300px;
    box-shadow: inset 0 0 10px 30px #fffbf3;
  }
  .photo_imgbox2::after {
    max-height: 300px;
    box-shadow: inset 0 0 10px 30px #fffbf3;
  }
  
}
@media screen and (max-width: 1150px) {
  .photo1 {
    left: -220px;
    width: calc(600px * 0.75);
    height:  calc(450px * 0.75);
  }
  .photo2 {
    right: -220px;
    width: calc(600px * 0.75);
    height:  calc(450px * 0.75);
  }
  .photo_common{
    width: calc(600px * 0.75);
    height:  calc(450px * 0.75);
  }
  
}
@media screen and (max-width: 1024px) {
  .photo1 {
    left: -200px;
    width: calc(600px * 0.7);
    height:  calc(450px * 0.7);
  }
  .photo2 {
    right: -200px;
    width: calc(600px * 0.7);
    height:  calc(450px * 0.7);
  }
  .photo_common{
    width: calc(600px * 0.7);
    height:  calc(450px * 0.7);
  }

  .w_story{
    width: 550px;
  }
  .w_photo1{
    width: calc((100vw - 550px) / 2);
  }
  .w_photo2{
    width: calc((100vw - 550px) / 2);
  }
  .single{
    height: 345px;
  }
  
}
@media screen and (max-width: 960px) {
  .single{
    height: 100%;
    margin-bottom: 60px;
  }
  .photo_common{
    display: none;
  }
  .photo1_posi {
    display: none;
  }
  .photo2_posi {
    display: none;
  }
  .photo1 {
    display: none;
  }
  .photo2 {
    display: none;
  }
  .photo_bg_div_ms {
    display: block;
  }
  .story{
    padding: 40px 0 80px 0;
  }

}
@media screen and (max-width: 768px) {
  .single{
    margin-bottom: 40px;
  }
  .story{
    padding: 0px 0 50px 0;
  }
}
@media screen and (max-width: 520px) {
  .photo_bg_div_ms {
    display: none;
  }
  .photo_bg_div {
    display: block;
  }
}


/* 新着情報 */
.news {
  margin-bottom: 10px;
}

/* 横に入る線 */
.line{
  width: 100%;
  height: 2px;
  background: #000000;
}



/* 横に入る線 */
.news_line{
  width: 100%;
  height: 2px;
  background: #000000;
}
/*-----------------------------
　カラム横並びの設定
-------------------------------*/
.flex_head{
  display: flex;
  height: auto;
}
@media screen and (max-width: 960px) {
  /* flex解除 */
  .flex_head{
    display: block;    
  }
  .w_story{
    width: 100%;
    margin: 0 auto;
  }
  .w_photo1{
    display: none;
  }
  .w_photo2{
    display: none;
  }
}

/*-----------------------------
　コンテンツ共通設定
-------------------------------*/
.content{
  width: 80%;
  height: 100%;
  margin: 0 auto;
  margin-bottom: 80px;
}

/* コンテンツ間調整 */
.footer_bottom {
  margin-bottom: 30px;
}
.marginbottom40{
  margin-bottom: 40px;
}

.content_detail{
  padding: 39px 14% 40px 14%;
}
.content_detail_cast{
  padding: 39px 26% 40px 28%;
}
@media screen and (max-width: 960px) {
  .content_detail_cast{
    padding: 39px 14% 40px 17%;
  }
} 
@media screen and (max-width: 521px) {
  .content_detail_cast{
    padding: 39px 0% 40px 5%;
  }
} 

.content_detail_access_left{
  padding: 39px 88px 0 88px;
}
.content_detail_access{
  padding: 0 44px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.content_caution{
  padding: 32px 24px;
  margin-top: 40px;
  background: rgb(225, 216, 216); 
}
.content_caution2{
  padding: 32px 24px;
  margin-top: 40px;
  border: 2px solid #D22A31;
}

/* イメージバーrelative */
.imgber_re{
  display: flex;
  position: relative;
  height: 144px;
  align-items: flex-end;
  margin-top: 40px;
}

/* レッスン画像 */
.lesson_img_left{
  padding: 0 2% 0 0;
}
.lesson_img_right{
  padding: 0 0 0 2%;
}

@media screen and (max-width: 1024px) {
  .content {
    width: 85%;
  }
  .content_detail{
    padding: 39px 44px 40px 44px;
  }
  .content_detail_access_left{
    padding: 39px 5px 0 5px;
  }
  .content_detail_access{
    padding: 0 5px 0 0;
  }
  .content_caution{
    padding: 32px 24px;
    margin-top: 40px;
    background: rgb(225, 216, 216); 
  }
  .content_caution2{
    padding: 32px 24px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 960px) {
  /* flex解除 */
  .inner_content_head{
    display: block;    
  }

  /* レッスン画像 */
  .lesson_img_left{
    padding: 0;
  }
  .lesson_img_right{
    padding: 0;
  }
  .content_detail_access_left{
    padding: 39px 44px 40px 44px;
  }
  .content_detail_access{
    padding: 39px 44px 40px 44px;
  }
}
@media screen and (max-width: 768px) {
  .content {
    width: 90%;
    margin-bottom: 100px;
  }
  .footer_bottom {
    margin-bottom: 30px;
  }
  .content_detail{
    padding: 39px 22px 40px 22px;
  }
  .content_detail_access_left{
    padding: 39px 22px 40px 22px;
  }
  .content_detail_access{
    padding: 0 22px;
  }
  .content_caution{
    padding: 32px 24px;
    margin-top: 40px;
    background: rgb(225, 216, 216); 
  }
  .content_caution2{
    padding: 32px 24px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 520px) {
  .content {
    width: 85%;
  }
  .content_detail{
    padding: 39px 5% 40px 5%;
  }
  .content_detail_access_left{
    padding: 39px 5% 40px 5%;
  }
  .content_detail_access{
    padding: 0 5% 0 0;
  }
  .content_caution,
  .content_caution2{
    padding: 32px 5%;
  }
}
@media screen and (max-width: 390px) {
  .content_detail{
    padding: 39px 1% 40px 1%;
  }
}

/*-----------------------------
　コンテンツ微調整
-------------------------------*/
/* コンテンツ毎微調整用 */
.nomargin_top{
  margin-top: 0;
}
.nopadding_top{
  padding-top: 0;
}
.padding_top40{
  padding-top: 40px;
}
.paddingzero{
  padding: 0;
}


/* 新着情報でのみ使用 */
.margintop7{
  margin-top: 7px;
}
.margintop20{
  margin-top: 20px;
}
.margintop32{
  margin-top: 32px;
}
.margintop10p{
  margin-top: 10%;
}
/* youtubeでのみ使用 */
.margintop80{
  margin-top: 80px;
}

.margin20auto{
  margin: 20px auto;
}
.margin40auto{
  margin: 40px auto;
}
.marginleft80{
  margin-left: 80px
}

@media screen and (max-width: 960px) {
  .marginleft80{
    margin-left: 0;
  }
}

/*-----------------------------
　twitter
-------------------------------*/
.h_twitter{
  height: 100%;
}
.twitter_content {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 520px) {
  .twitter_content {
    width: 85%;
    margin: 64px auto 0 auto;
  }
}
/*-----------------------------
　新着情報
-------------------------------*/
.news-list{
  list-style: none outside;
  margin: 0;
  padding: 0;
  height: 210px;
  /* overflow-y: scroll; */
}
.news-list .item span{
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
  /* border-bottom: 2px solid #D22A31; */
  padding: 3% 3%;
  /* text-align: center; */
}
.news-list .item .date{
  margin: 0;
  min-width: 170px;
  color: rgb(0, 0, 0);
  padding: 2% 0% 0 30%;
}
.news-list .item .title{
  margin: 0;
  width: 100%;
  font-weight: 600;
  /* color: #D22A31; */
  padding: 2% 0 0 11%;
}
.news-list .item a {
  /* color: #D22A31; */
  text-decoration: underline;
}
.news-list .item a:hover {
  text-decoration: none;
}


@media screen and (max-width: 960px){
  .news-list{
    height: 100px;
  }
  .news-list .item span{
    flex-wrap: wrap;
  }
  .news-list .item .date{
    min-width: 100px;
    padding: 2% 0% 0 10%
  }
  .news-list .item .title{
    margin-top: 10px;
    padding-left: 10%;
    padding-right: 3%;
  }
}


/*-----------------------------
　ご挨拶
-------------------------------*/
/* ご挨拶の画像 */
.comment_img{
  max-width: 100%;
}
@media screen and (max-width: 960px) {
  .comment_img {
    padding: 0 10% 20px 10%;
  }
}
@media screen and (max-width: 520px) {
  .comment_img {
    padding: 0 0 20px 0;
  }
}

/*-----------------------------
　公演情報
-------------------------------*/
.stage_box{
  display: flex;
  align-items: center;
}
.stagetitle_box{
  flex-basis: 50%;
  -webkit-flex-basis: 50%;
  -ms-flex-basis: 50%;
  -moz-flex-basis: 50%;
}

/* フライヤー画像 */
.flyerimg_box{
  flex-basis: 25%;
  padding: 40px 3%;
}
.flyerimg_box_img{
  height: 100px;
}
.flyerimg_box_img img{
  object-fit: contain;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}


/* フライヤーエフェクト */
.img-wrapper {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.img-wrapper img {
  height: auto;
  transition: transform .3s ease;/* ゆっくり変化させる */
  -webkit-transition: transform .3s ease;
  -ms-transition: transform .3s ease;
  -moz-transition: transform .3s ease;
}
.img-wrapper:hover img {
  transform: scale(1.05);/* 拡大 */
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -moz-transform: scale(1.05);
  opacity: 0.6;
}


/* タイトル文字 */
.stage_title{
  font-size: 40px;
  font-weight:600;
  line-height: 1.5;
  letter-spacing: 8px;
}
.stage_subtitle{
  margin-left: 22px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
}
.stage_subtitle2{
  margin-left: 22px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 5%;
  letter-spacing: 3px;
}
@media screen and (min-width: 1920px) {
  .stage_title{
    font-size: 48px;
    line-height: 1.5;
  }
  .stage_subtitle{
    margin-left: 26px;
    font-size: 20px;
  }
  .stage_subtitle2{
    margin-left: 26px;
    font-size: 20px;
  }
}
@media screen and (max-width: 1400px) {
  .stage_title{
    font-size: 32px;
    line-height: 1.5;
  }
  .stage_subtitle{
    margin-left: 18px;
    font-size: 16px;
  }
  .stage_subtitle2{
    margin-left: 18px;
    font-size: 16px;
  }
}
@media screen and (max-width: 960px) {
  .stage_title{
    font-size: 40px;
    font-weight:600;
    line-height: 1.5;
  }
  .stage_subtitle{
    margin-left: 20px;
    font-size: 18px;
    font-weight: 600;
  }
  .stage_subtitle2{
    margin-left: 20px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
  }
  .stage_box{
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex: 1;
  }
  .stagetitle_box{
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    -ms-flex-basis: 100%;
    -moz-flex-basis: 100%;
  }
  .flyerimg_box{
    flex-basis: 50%;
    -webkit-flex-basis: 50%;
    -ms-flex-basis: 50%;
    -moz-flex-basis: 50%;
  }
}
@media screen and (max-width: 520px) {
  .stage_title{
    font-size: 32px;
    line-height: 1.5;
  }
  .stage_subtitle{
    margin-left: 18px;
    font-size: 16px;
  }
  .stage_subtitle2{
    margin-left: 18px;
    font-size: 16px;
  }
}
@media screen and (max-width: 390px) {
  .stage_title{
    font-size: 30px;
    line-height: 1.5;
    letter-spacing: 6px;
  }
  .stage_subtitle{
    margin-left: 16px;
    font-size: 14px;
    letter-spacing: 2px;
  }
  .stage_subtitle2{
    margin-left: 16px;
    font-size: 14px;
  }
}



/*-----------------------------
　ご予約
-------------------------------*/
/* 予約抽選お申込アンカーリンク */
.ticket_box{
  display: flex;
  margin: 0 auto 40px auto;
  height: 110px;
  align-items: center;
}
.ticket_button{
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 70%;
  height: 100%;
  border-radius: 5px;
  background-color: #B47242;
  transition: all 150ms ease;
  -webkit-transition: all 150ms ease;
  -ms-transition: all 150ms ease;
  -moz-transition: all 150ms ease;
}
.ticket_button a{
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}
.ticket_button span{
  line-height: 40px;
  text-align: center;
  flex: 1;
  color: white;
}
.ticket_box:hover .ticket_button{
  width: 60%;
  height: 110px;
  border-radius: 20px;
  background-color: rgba(180, 114, 66, 0.75);
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

/* 申込フォーム */
.reserve_button{
  position: relative;
  margin: 0 auto;
  width: 307px;
  height: 87px;
  border-radius: 60px;
  background-color: #D22A31;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  padding-top: 18px;
}
.reserve_button a{
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}
.reserve_button:hover{
  opacity: 0.6;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
}
.reserve_button span{
  display: block;
  line-height: 24px;
  text-align: center;
  margin-right: 20px;
  color: white;
}
.reserve_button span::after{
  position: absolute;
  content: " ";
  width: 16px;
  height: 15px;
  display: inline-block;
  background-image: url(../img/outer_link.png);
  background-size: 100%;
  top: 27%;
  right: 56px;
  margin-left: 10px;
}

/* 感染症予防ボタン */
.coution_button{
  display: flex;
  align-items: center;
  margin: 40px auto 0 auto;
  width: 357px;
  height: 87px;
  border-radius: 60px;
  background-color: #D22A31;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
}
.coution_button:hover{
  opacity: 0.6;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
}
.coution_button span{
  position: relative;
  display: inline-block;
  line-height: 28px;
  text-align: center;
  flex: 1;
  color: white;
}

/* 閉じるボタン */
.close_button{
  display: flex;
  align-items: center;
  margin: 40px auto 0 auto;
  width: 280px;
  height: 60px;
  border-radius: 60px;
  background-color: #3d2224;
  cursor: pointer;
}
.close_button:hover{
  opacity: 0.6;
}
.close_button span{
  position: relative;
  display: inline-block;
  line-height: 28px;
  text-align: center;
  flex: 1;
  color: white;
}
@media screen and (max-width: 960px) {
  /* 予約抽選お申込アンカーリンク */
  .ticket_button{
    width: 80%;
  }
  .ticket_box:hover .ticket_button{
    width: 70%;
  }
}
@media screen and (max-width: 520px) {
  /* 感染症予防ボタン */
  .coution_button{
    width: 90%;
  }
  /* 閉じるボタン */
  .close_button{
    width: 80%;
  }
}
@media screen and (max-width: 400px) {
  .ticket_button span{
    line-height: 1.5;
  }
}

@media screen and (max-width: 330px) {
  .reserve_endtext{
    font-size: 12px;
  }
}
/*-----------------------------
　感染対策オーバーレイモーダル
-------------------------------*/
.JS_Click_ShowModal_Trigger:hover{
  cursor: pointer;
}

.ModalLayer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: opacity 0.65s;
  -webkit-transition: opacity 0.65s;
  -ms-transition: opacity 0.65s;
  -moz-transition: opacity 0.65s;
  pointer-events: none;
  opacity: 0;
  z-index: 10000;
}
.ModalLayer.isShow {
  transition: opacity 0.65s;
  -webkit-transition: opacity 0.65s;
  -ms-transition: opacity 0.65s;
  -moz-transition: opacity 0.65s;
  pointer-events: auto;
  opacity: 1;
}
.ModalLayer-Mask {
  position: absolute;
  background: rgba(123,123,123,0.5);
  width: 100%;
  height: 100vh;
}
.ModalLayer-Inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);

  height: 80%;
  overflow-y: scroll;
  background: rgb(255, 255, 255);
}
.ModalSection {
  padding: 39px 88px 40px 88px;
  background: #fff;
}
.Modal-Inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
.Modal-Inner-Headline {
  border-top: 3px solid #D22A31;
  border-bottom: 3px solid #D22A31;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}
.Modal-Inner-Text {
  padding-top: 40px;
}

@media screen and (max-width: 1024px) {
  .ModalLayer-Inner {
    width: 76%;
  }
  .ModalSection {
    padding: 39px 44px 40px 44px;
  }
}
@media screen and (max-width: 768px) {
  .ModalLayer-Inner {
    width: 90%;
  }
  .ModalSection {
    padding: 39px 22px 40px 22px;
  }
}
/*-----------------------------
　アクセス
-------------------------------*/
.zakoenji_logo{
  height: 72px;
  width: 208px;
}
.zakoenji_map{
  width: 100%;
  display: block;

}
@media screen and (max-width: 960px) {
  .zakoenji_map{
    padding: 0 10% 20px 10%;
  }
}
@media screen and (max-width: 520px) {
  .zakoenji_map {
    padding: 0 0 20px 0;
  }
}

/* GoogleMap レスポンシブ対応 */
.googlemap_pc {
  width: 100%;
  height: 500px;
  aspect-ratio: 16; /*アスペクト比（縦横比）を指定*/
}
.googlemap_sp {
  width: 100%;
  height: 500px;
}

@media screen and (min-width: 769px) {
  .googlemap_pc {
   display: block;
  }
  .googlemap_sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .googlemap_pc {
   display: none;
  }
  .googlemap_sp {
    display: block;
    margin-top: -40px;
  }
}
@media screen and (max-width: 520px) {
  .googlemap_sp {
    height: 400px;
  }
}

/*-----------------------------
　外部リンク
-------------------------------*/
.supportlink_box{
  display: flex;
  padding: 80px 0 40px 0;
  justify-content: space-between;
  align-items: center;
}
.supportlink{
  position: relative;
  width: 266px;
  height: 97px;
  border-radius: 5px;
  padding: 0 5px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
}
.supportlink:hover{
  opacity: 0.6;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
}

.supportlink a{
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}

.link1{
  width: 100%;
}

@media screen and (max-width: 768px) {
  .supportlink_box{
    padding: 20px 0 40px 0;
    flex-direction: column;
  }
  .supportlink{
    margin: 5px;
  }
}


/*-----------------------------
　フッター
-------------------------------*/
footer{
  background-color: #000000;
  color: #FFF;
}
.copy{
  font-size: 12px;
  color: #FFF;
  padding: 20px 0;
}

/*-----------------------------
　youtube
-------------------------------*/
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

/*-----------------------------
　アンカーリンク（トップ）
------------------------------*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	width: 50px;
	height: 50px;
  border-radius: 50%;
	text-transform: uppercase;
  -webkit-text-transform: uppercase;
  -ms-text-transform: uppercase;
  -moz-text-transform: uppercase;

	text-decoration: none;
	transition:all 0.3s;
  -webkit-transition:all 0.3s;
  -ms-transition:all 0.3s;
  -moz-transition:all 0.3s;
  opacity: 0.6;
  border: solid 5px #93cedf;
}
#page-top a::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);

  border-top: solid 5px #93cedf;
  border-left: solid 5px #93cedf;
}
#page-top a::after {
  /* トップ非表示 */
}
#page-top a.isShow::after {
  position: absolute;
  content: "トップ";
  top: -25px;
  font-size: 12px;
  font-family: 'Noto Sans JP';
  font-weight: 600;
  color: #277495;
}

#page-top a:hover{
  opacity: 1;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 20px;
	bottom:10px;
  z-index: 9999;
  /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -moz-transform: translateY(100px);
  text-align: center;
}

/* 上に上がる動き */
#page-top.UpMove{
	animation: TopUpAnime 1.0s forwards;
}
@keyframes TopUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -moz-transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  }
}

/* 下に下がる動き */
#page-top.DownMove{
	animation: TopDownAnime 0.5s forwards;
}
@keyframes TopDownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -moz-transform: translateY(100px);
  }
}

/*-----------------------------
 ハンバーガーメニュー
-------------------------------*/
.g-navLayer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: opacity 0.65s;
  -webkit-transition: opacity 0.65s;
  -ms-transition: opacity 0.65s;
  -moz-transition: opacity 0.65s;
  pointer-events: none;
  opacity: 0;
  z-index: 9000;
}
.g-navLayer.isShow {
  transition: opacity 0.65s;
  -webkit-transition: opacity 0.65s;
  -ms-transition: opacity 0.65s;
  -moz-transition: opacity 0.65s;
  pointer-events: auto;
  opacity: 1;
}
.g-navLayer-Mask {
  position: absolute;
  background: rgba(123,123,123,0.5);
  width: 100%;
  height: 100vh;
}

#g-nav{
  font-family: 'Noto Serif JP';
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top:0;
  right: 100%;
  width: 65%;
  height: 100vh;/*ナビの高さ*/
  background:rgba(255, 255, 255, 0.95);
    /*動き*/
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -moz-transition: all 0.6s;
  
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 25%;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 65%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top:45%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
}
@media screen and (max-width: 520px) {
  /* スライドの幅 */
  #g-nav{
    width: 75%;
  }
  #g-nav.panelactive #g-nav-list{
    width: 75%;
  }
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    left:40%;
  }
}

/*リストのレイアウト設定*/
#g-nav li{
  list-style: none;
  height: 50px;
  padding: 30px 0;
}

#g-nav li a{
  color: #333333;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  -webkit-text-transform: uppercase;
  -ms-text-transform: uppercase;
  -moz-text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
  position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
  top: 30px;
  left: 20px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.8);
	width: 50px;
	height: 50px;
  border-radius: 50%;
}
.openbtn1.active{
  background-color: #333333;
}
  
/*×に変化*/  
.openbtn1 span{
  display: inline-block;
  transition: all .4s;
  -webkit-transition: all .4s;
  -ms-transition: all .4s;
  -moz-transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: rgb(255, 255, 255);
  width: 45%;
}
.openbtn1 span:nth-of-type(1) {
  top:15px; 
}
.openbtn1 span:nth-of-type(2) {
  top:23px;
}
.openbtn1 span:nth-of-type(3) {
  top:31px;
}
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  -webkit-transform: translateY(6px) rotate(-45deg);
  -ms-transform: translateY(6px) rotate(-45deg);
  -moz-transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn1.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  -webkit-transform: translateY(-6px) rotate(45deg);
  -ms-transform: translateY(-6px) rotate(45deg);
  -moz-transform: translateY(-6px) rotate(45deg);
  width: 30%;
}


.disp_flex{
  display: flex;
}

.disp_flex_pc{
  display: flex;
}
.spacebetween{
 justify-content: space-between; 
}
.cast_box{
  width: 80%;
  margin: 40px auto 0 auto;
}
.cast_vis{
  width: 32%;
}
.cast_vis_img{
  width: 100%;
}
.cast_name{
  font-size: 24px;
}

@media screen and (max-width: 390px) {
  .cast_name{
    font-size: 20px;
  }
} 
.footer_img_box{
  width: 100%;
  background-color: #000000;
}
.footer_img{
  width: 66%;
}
.flex_1{
  flex: 1;
}

.posi_abs{
  position: absolute;
}
.left_bar{
  top: 27px;
  width: 40%;
  transition : all 0.5s linear;
}
.left_bar.is-active{
  top: 27px;
  width: 40%;
  background-color: #fff;
  transition : all 0.5s linear;
}


.right_bar{
  top: 27px;
  right: 0;
  width: 40%;
  transition : all 0.5s linear;
}
.right_bar.is-active{
  top: 27px;
  right: 0;
  width: 40%;
  background-color: #fff;
  transition : all 0.5s linear;
}
@media screen and (max-width: 1024px) {
  .right_bar{
    top: 18px;
    width: 33%;
  }
  .right_bar.is-active{
    top: 18px;
    width: 33%;
  }
  .left_bar{
    top: 18px;
    width: 33%;
  }
  .left_bar.is-active{
    top: 18px;
    width: 33%;
  }
  .sp_width{
    width: 90%;
    margin: 0 auto;
  }
}
/* @media screen and (max-width: 521px) {
  .right_bar{
    top: 18px;
    width: 33%;
  }
  .right_bar.is-active{
    top: 18px;
    width: 33%;
  }
  .left_bar{
    top: 18px;
    width: 33%;
  }
  .left_bar.is-active{
    top: 18px;
    width: 33%;
  }
  .sp_width{
    width: 90%;
    margin: 0 auto;
  }
} */

.time_visual_box{
  margin-bottom: 40px;
  text-align: center;
  margin: 0 auto;
  width: 80%;
}
.time_vis_img_pc{
  width: 100%;
}
.time_vis_img_sp{
  width: 100%;
}
@media screen and (max-width: 521px) {
  .time_vis_img_pc{
    display: block;
  }
  .time_vis_img_sp{
    display: none;
  }
  .time_visual_box{
    width: 100%;
  }
} 

.marginbottom0{
  margin-bottom: 0;
}
.justify_center{
  justify-content: center;
}

.sugiyama{
  flex: auto;
}
.maginleft5{
  margin-left: 16%;
}
.price_box{
  margin: 3% 0 3% 0;
}
.price{
  font-size: 48px;
}
.price_student{
  margin: 0 0 0 12%;
}
.lineheight{
  line-height: 1.6vw;
}
@media screen and (max-width: 960px) {
  .lineheight{
    line-height: 3vw;
  }
}
@media screen and (max-width: 721px) {
  .disp_flex_pc{
    display:  block;
  }
  .price_student{
    margin: 8px 0 0 0%;
  }
  .lineheight{
    line-height: 6.5vw;
  }
  .cast_vis{
    width: 70%;
    margin: 0 auto 40px auto;
  }
}

@media screen and (min-width: 961px) {
  /* 左記表示 */
  .time_pc {
   display: block;
  }
  .time_sp {
    display: none;
  }
}

.messege_box{
  width: 80%;
  height: auto;
  border: solid 1px #000000;
  margin: 0 auto;
  transition : all 0.5s linear;
}
.messege_box.is-active{
  border: solid 1px #ffffff;
  transition : all 0.5s linear;
}
.messege{
  padding: 3% 5%;
  color: #000000;
  transition : all 0.5s linear;
}
.messege.is-active{
  color: #ffffff;
  transition : all 0.5s linear;
}
@media screen and (max-width: 960px) {
  /* 上記表示 */
  .time_pc {
   display: none;
  }
  .time_sp {
    display: block;
  }
  .messege{
    padding: 5% 8%;
  }
  .messege_box{
    width: 100%;
  }
  .price{
    font-size: 40px;
  }
  .price_box{
    margin: 8% 0 10% 0;
  }
}
@media screen and (max-width: 521px) {
  .messege{
    padding: 10% 8%;
  }
  .cast_vis{
    width: 90%;
    margin: 0 auto 40px auto;
  }
}
.logo_fadein{
  background: #FFFAFA;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
}

.bottom{
  align-items:flex-end;
}
.place{
  position: absolute;
  top: 21px;
  left: -12.5%;
}
.place2{
  margin: 0px -4%;
}
@media screen and (max-width: 960px) {
  .place{
    top: 12px;
    left: -0.5%;
  }
  .place2{
    margin: 0px 7%;
    font-size: 24px;
  }
}
@media screen and (max-width: 521px) {
  .place{
    top: 12px;
    left: -0.5%;
  }
  .place2{
    margin: 0px 14%;
    font-size: 20px;
  }
}

.ticket_box{
  position: fixed;
  top: 4%;
  right: 1%;
  display: flex;
  justify-content:center;
  align-items:center;
  width: 8vw;
  height: 8vw;
  border-radius: 50%;
  background-color: #fff;
  text-transform: uppercase;
  -webkit-text-transform: uppercase;
  -ms-text-transform: uppercase;
  -moz-text-transform: uppercase;

  text-decoration: none;
  border: solid 0.1vw #000000;
}

.ticket_box::after {
  position: absolute;
  content: "TICKET";
  top: 30%;
  font-family: 'Antonio', sans-serif;
  font-weight: 500;
  font-size: 1.5vw;
  text-align: center;
  color: #000000;
  z-index: 1;
}
.ticket_box p{
  position: absolute;
  top: 53%;
  font-family: sans-serif;
  font-size: 0.8vw;
  font-weight: 600;
  color: #000000;
  z-index: 1;
}
.ticket_box a{
  position: absolute;
  top: 0;
  left: 0;
  width: 8vw;
  height: 8vw;
  z-index: 15000;
}


@media screen and (max-width: 960px) {
  .ticket_box{
    top: 4%;
    right: 2%;
    width: 7vw;
    height: 12vw;
    border-radius: 5%;
    border: solid 0.3vw #000000;
  }
  .ticket_box::after {
    top: 25%;
    font-size: 2.5vw;
  }
  .ticket_box p{
    position: absolute;
    top: 50%;
    font-family: sans-serif;
    font-size: 2vw;
    font-weight: 600;
    color: #000000;
    z-index: 1;
  }
  .ticket_box a{
    width: 7vw;
    height: 12vw;
  }
}
@media screen and (max-width: 521px) {
  .ticket_box{
    top: 4%;
    right: 2%;
    width: 10vw;
    height: 20vw;
    border-radius: 5%;
    border: solid 0.5vw #000000;
  }
  .ticket_box::after {
    top: 25%;
    font-size: 3.5vw;
  }
  .ticket_box p{
    position: absolute;
    top: 50%;
    font-family: sans-serif;
    font-size: 3vw;
    font-weight: 600;
    color: #000000;
    z-index: 1;
  }
  .ticket_box a{
    width: 10vw;
    height: 20vw;
  }
}
/* .ticket_box:hover *{
  background-color: #000000;
  border: solid 0.1vw #ffffff;
  color: #ffffff;

} */
/* .ticket_box::after {
  color: #ffffff;
}
.ticket_box p:hover{
  color: #ffffff;
} */
.corich-url{
  text-decoration: none;
  color: #000000;
  transition : all 0.5s linear;
}
.corich-url.is-active{
  color: #ffffff;
  transition : all 0.5s linear;
}

.logo_box{
  width: 40%;
  margin-bottom: 20px;
}

.logo_vis_img_pc{
  width: 100%;
}
@media screen and (max-width: 961px) {
  .logo_box{
    width: 55%;
  }
}
@media screen and (max-width: 521px) {
  .logo_box{
    width: 80%;
  }
}
.logo_box2{
  width: 30%;
  margin-bottom: 20px;
}
@media screen and (max-width: 961px) {
  .logo_box2{
    width: 45%;
  }
}
@media screen and (max-width: 521px) {
  .logo_box2{
    width: 75%;
  }
}

.contact-ttl-message{
  width: 70%;
  margin: 0 auto;
  padding: 20px;
}

/* レイアウト */
form {
  width: 70%;
  margin: 0 auto;
}
.form-row {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #f2f4f5;
}
.form-row:last-child {
  border-bottom: none;
}
.form-label {
  display: flex;
  align-items: center;
  width: 250px;
}
.form-label label {
  font-weight: bold;
}
.form-label span {
  margin-left: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background-color: #111111;
}

/* フォームパーツのデザイン */
input, textarea {
  background-color: #f2f4f5;
  border: none;
  border-radius: 3px;
  padding: 15px 20px;
  font-size: 16px;
  color: #333;
  flex-grow: 1;
}
input::placeholder,
textarea::placeholder {
  color: #999;
  font-size: 14px;
}
select {
  background-color: #f2f4f5;
  border: none;
  border-radius: 3px;
  padding: 15px 20px;
  font-size: 16px;
  color: #333;
}
.button {
  cursor: pointer;
  margin: 30px 0 0 0;
  padding: 15px 30px;

  /* margin: 0px 0px 0 16px;
  padding: 15px 35px; */

  border: none;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  background-color: #111111;
}
.back_button {
  cursor: pointer;
  margin: 30px 15px 0 0;
  padding: 15px 60px;

  /* margin: 0px 0px 0 16px;
  padding: 15px 35px; */

  border: none;
  border-radius: 3px;
  color: #000000;
  background-color: #f2f4f5;
}
.send_button {
  cursor: pointer;
  margin: 30px 0 0 0;
  padding: 15px 60px;

  /* margin: 0px 0px 0 16px;
  padding: 15px 35px; */

  border: none;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  background-color: #111111;
}

.contact-ttl{
  font-size: 40px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.textarea_message{
  white-space: pre-wrap;
}
.closebtnbox{
  width: 40%;
  margin: 0 auto;
}

.contact_botton{
  display: inline-block;
  width: 230px;
  height: 60px;
  border: 2px solid #000000;
  position: relative;
}
.contact_botton a{
  position: absolute;
  width: 100%;
  height: 100%;
  color: #000;
  text-align: center;
  line-height: 3.3;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
}
.contact_botton a:hover{
  color: #ffffff;
  background-color: #000000;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
}

.paddingtop0{
  padding-top: 0;
}

.twitter-timeline{
  aspect-ratio: 30 / 32;
  overflow-y: scroll;
}
@media screen and (max-width: 721px) {
  form {
    width: 80%;
  }
  .form-row {
    display: block;
  }
  input{
    width: 100%;
  }
  .textarea_mes{
    width: 100%;
  }
  .twitter-timeline{
    aspect-ratio: 16 / 32;
    overflow-y: scroll;
  }
  .margintop_minus{
    margin-top: -60px;
  }
}
