@charset "utf-8";
/* CSS Document */

/* =============================================================================
   トップモーダル
   ========================================================================== */

.modal_btn{
	cursor: pointer;
}

/* 開く時の.bodyのアニメーション */
@keyframes modalwindow_body_in {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes modalwindow_body_out {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-20px);
  }
}
.modalwindow {
  /* オーバーレイ＆スクロール領域になるレイヤー */
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
  z-index: 9999999;
  width: 100%;
  /* スマホでスワイプして指を離すまでの間下部の背景が無くなるため余分に指定 */
  height: 100%;
  background-color: rgba(255,255,255,1.00);
   background-image: url("../images/bg/bg_002.jpg");
   background-position: top center;
   background-size: 5% auto;
   background-repeat: repeat;
  cursor: pointer;
  opacity: 1;
}



.modalwindow.no_overlay_close {
  cursor: default;
}
.modalwindow.lock .close_modal {
  background: #ccc;
}
.modalwindow .body {
  /* ウィンドウ自体 アニメーションなどで装飾 */
  position: relative;
  top: 0;
  width: 100%;
  margin: auto;
  cursor: default;
  /*transform: translateY(-20px);
  animation: 200ms modalwindow_body_out;*/
}
.modalwindow .body .modal_content {
  padding: 0;
}
.modalwindow .body > footer {
  border-radius: 0 0 4px 4px;
}
.modalwindow.is_visible .body {
  /*transform: translateY(0px);
  animation: 400ms modalwindow_body_in;*/
}
.modalwindow_header_close {
  /* 右上に表示する×ボタン 面倒なので動的に追加してます */
  position: absolute;
  right: 0;
  top: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.modalwindow_header_close:before {
  content: "\D7";
  font-size: 24px;
  font-family: serif;
  color: #ccc;
}

.close_modal{
  position: fixed;
  top: 0;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 99999999;
  width: 90px;
  height: 90px;
  background-image: url("../images/shadowbox/close.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 20px 10px auto auto;
}
   @media screen and (max-width: 1200px) {
      .close_modal{
         width: 80px;
         height: 80px;
         margin: 10px 10px auto auto;
      } 
   }
   @media screen and (max-width: 1024px) {
      .close_modal{
         width: 60px;
         height: 60px;
         margin: 10px 10px auto auto;
      } 
   }
   @media screen and (max-width: 600px) {
      .close_modal{
         width: 60px;
         height: 60px;
         margin: 5px 5px auto auto;
      } 
   }




.close_modal:hover{
  background-image: url("../images/shadowbox/close_on.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 20px 10px auto auto;
}
   @media screen and (max-width: 1200px) {
      .close_modal:hover{
         width: 90px;
         height: 90px;
         margin: 20px 10px auto auto;
      } 
   }

   @media screen and (max-width: 1024px) {
      .close_modal:hover{
         width: 60px;
         height: 60px;
         margin: 10px 10px auto auto;
      } 
   }
   @media screen and (max-width: 600px) {
      .close_modal:hover{
         width: 60px;
         height: 60px;
         margin: 5px 5px auto auto;
      } 
   }



/* -----------------------------------------
   モーダル内部スタイル
   -----------------------------------------*/
.modal_top_wrap{
   width: 95%;
   max-width: 1000px;
   margin: 0 auto 0px auto;
   padding: 120px 30px;
}


.modal_inner{
   position: relative;
   overflow: hidden;
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   background-color: rgba(255,255,255,0.70);
   padding: 10px 20px;
   box-sizing: border-box;
   width: 96%;
   margin: auto;
   border: rgba(0,0,0,1.00) 1px solid;
}
   @media screen and (max-width: 600px) {
      .modal_inner{
         padding: 10px 10px;
      } 
   }


.modal_pic_wrap{
   position: relative;
   width: 100%;
   display: flex;
   justify-content: center;
   margin-bottom: 20px;
   flex-wrap: wrap;
}

.modal_pic_left{
   width: 30%;
   border: rgba(126,76,67,1.00) 1px solid;
}
   @media screen and (max-width: 800px) {
      .modal_pic_left{
         width: 25%;
      } 
   }
   @media screen and (max-width: 600px) {
      .modal_pic_left{
         order: 1;
         width: 40%;
      } 
   }


.modal_pic_right{
   width: 50%;
   display: flex;
   justify-content: flex-start;
   flex-wrap: wrap;
   align-items: flex-end;
   align-content: center;
   margin-left: 30px;
}
   @media screen and (max-width: 800px) {
      .modal_pic_right{
         width: 68%;
      } 
   }
   @media screen and (max-width: 600px) {
      .modal_pic_right{
         width: 100%;
         order: 0;
         margin: auto;
         margin-bottom: 15px;
      } 
   }


.modal_txt_wrap{
   position: relative;
   width: 100%;
   font-family: 'Zen Maru Gothic', sans-serif;
   font-size: 120%;
   font-weight: 700;
  line-height: 2.5;
         text-align: left;
   margin-bottom: 60px;
  background-image: linear-gradient(#1d2088 1px, transparent 1px);
  background-size: 100% 2.5em;
  padding-bottom: 1px;
}
   @media screen and (max-width: 480px) {
      .modal_txt_wrap{
         text-align: left;
         font-size: 110%;
         background-image: none;
         margin-bottom: 30px;
         line-height: 2.0;
      } 
   }


.modal_bar{
   position: relative;
   width: 100%;
   border-bottom: rgba(126,76,65,1.00) 4px dotted;
   margin: 0 auto 30px auto;
  }

.modal_credit{
   position: relative;
   width: 100%;
   text-align: center;
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   background-image: url("../images/special/comment/bar_name.png");
   background-position: bottom center;
   background-repeat: repeat-x;
   background-size: 60% auto;
   padding-bottom: 15px;
   margin-bottom: 30px;
}

.modal_credit .position{
   width: 100%;
   font-size: 140%;
   line-height: 1.4;
   letter-spacing: 2px;
   font-weight: 700;
   color: rgba(29,32,136,1.00);
   text-align: center;
}
   @media screen and (max-width: 600px) {
      .modal_credit .position{
         font-size: 110%;
      } 
   }

.modal_pic_right .position{
   text-align: left;
}
   @media screen and (max-width: 600px) {
      .modal_pic_right .position{
         text-align: center;
      } 
   }


.modal_cv_name{
   width: 100%;
   font-size: 260%;
   font-weight: 900;
   line-height: 1.4;
   letter-spacing: 2px;
   color: rgba(29,32,136,1.00);
   text-align: center;
   margin: 20px auto;
}
   @media screen and (max-width: 600px) {
      .modal_cv_name{
         font-size: 180%;
      } 
   }

.modal_pic_right .modal_cv_name{
   text-align: left;
}
   @media screen and (max-width: 600px) {
      .modal_pic_right .modal_cv_name{
         text-align: center;
      } 
   }


.modal_cv_name .txt01{
   font-size: 60%;
   font-weight: 600;
}


.modal_w02_top{
   position: relative;
   width: 100%;
}

.modal_w02_center{
   position: relative;
   width: 100%;
   background-image: url("../images/tmp/w02_center.png");
   background-position: center left;
   background-repeat: no-repeat;
   background-size: 100% 100%;
}

.modal_w02_bottom{
   position: relative;
   width: 100%;
}

.modal_k01{
   position: absolute;
   width: 100%;
   top: 0;
   left: 0;
}

.modal_k02{
   position: absolute;
   width: 100%;
   bottom: 0;
   left: 0;
}

.modal_txt_en_name{
   color: rgba(29,32,136,0.40);
   font-family: 'Noto Serif JP', serif;
   font-weight: 700;
   font-size: 240%;
   margin-bottom: 20px;
}

.modal_kj_i01{
   width: 100%;
   text-align: center;
   font-size: 200%;
}


h1.kj {
   position: relative;
   width: 100%;
   font-size: 160%;
   text-align: center;
   padding: 10px 10px;
   background: linear-gradient(90deg, rgba(188,174,147,1.00) 32%, rgba(188,174,147,1.00) 100%);
   /*font-family: YakuHanJP, "Shippori Antique B1", sans-serif;*/
   font-family: "Kaisei Tokumin", serif;
   line-height: 1.2;
   font-weight: 600;
   color: rgba(255,255,255,1.00);
   text-shadow: 1px 1px 3px rgba(0,0,0,1.00), -1px 1px 3px rgba(0,0,0,1.00), 1px -1px 3px rgba(0,0,0,1.00), -1px -1px 3px rgba(0,0,0,1.00), 1px 0px 3px rgba(0,0,0,1.00);
}
   @media screen and (max-width: 700px) {
      h1.kj{
         font-size: 100%;
      } 
   }


h1.kj:before,
h1.kj:after {
  position: absolute;
  left: 0;
  width: 100%;
  content: '';
  border-top: 3px dotted rgba(127,115,86,1.00);
}

h1.kj:before {
  top: 3px;
}

h1.kj:after {
  bottom: 3px;
}


.modal_kj_txt_wrap{
   position: relative;
   width: 100%;
   border: rgba(116,116,116,1.00) 1px solid;
   border-radius: 20px;
   padding: 20px;
}

.modal_kj_pic{
   position: relative;
   width: 100%;
}


.i_kj_cont{
   position: relative;
   width: 100%;
   margin-bottom: 15px;
   text-align: center;
   color: rgba(145,0,145,1.00);
   font-weight: 900;
   font-size: 120%;
   font-family: "Kaisei Tokumin", serif;
   line-height: 1.4;
   letter-spacing: 3px;
}
   @media screen and (max-width: 1200px) {
      .i_kj_cont{
         font-size: 120%;
      } 
   }
   @media screen and (max-width: 600px) {
      .i_kj_cont{
         font-size: 4vw;
         margin-bottom: 7px;
      }
   }

.i_kj_cont.kj_cast{
   margin-bottom: 0;
}

.i_kj_cont span{
   position: relative;
   display: inline-block;
}

.i_kj_cont span:before {
   content: "";
   position: absolute;
   left: -1.2em;
   top: 0.2em;
   background-image: url("../images/tmp/k_005.png");
   background-repeat: no-repeat;
   width: 1em;
   height: 1em;
   background-size: contain;
   vertical-align: middle;
}

.i_kj_cont span:after {
   content: "";
   position: absolute;
   right: -1.2em;
   top: 0.2em;
   background-image: url("../images/tmp/k_005.png");
   background-repeat: no-repeat;
   width: 1em;
   height: 1em;
   background-size: contain;
   vertical-align: middle;
}


.kj_list_artist01{
   font-size: 180%;
   font-weight: 600;
   text-align: center;
   font-family: "Kaisei Tokumin", serif;
   letter-spacing: 3px;
   margin-bottom: 50px;
}
   @media screen and (max-width: 600px) {
      .kj_list_artist01{
      font-size: 5.5vw;
      margin-bottom: 30px;
      } 
   }

.kj_dtail_wtap{
   position: relative;
   width: 100%;
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
}

.kj_dtail_wtap li{
   position: relative;
   width: 49%;
   border: rgba(0,0,0,1.00) 1px solid;
   border-radius: 20px;
}

/* -----------------------------------------
   モーダル内部
   -----------------------------------------*/

.modal_wrap{
  width: 100%;
  margin: auto;
}

.md_w{
   background-image: url("../images/intro/w_intro.png");
   background-repeat: no-repeat;
   background-size: 100% 100%;
}
   @media screen and (max-width: 1024px) {
      .md_w{
         background-image: url("../images/intro/w_intro.png");
      } 
   }
   @media screen and (max-width: 600px) {
      .md_w{
         background-image: url("../images/intro/w_intro.png");
      } 
   }

.md_inner{
   position: relative;
   padding: 170px 40px 20px 40px;
}
   @media screen and (max-width: 1024px) {
      .md_inner{
         padding: 15% 40px 20px 40px;
      } 
   }
   @media screen and (max-width: 600px) {
      .md_inner{
         padding: 16% 20px 20px 20px;
      } 
   }



.md_k01{
   position: absolute;
   width: 40%;
   top: -5px;
   right: 0;
   left: 0;
   margin: auto;
}
   @media screen and (max-width: 600px) {
      .md_k01{
         top: -1px;
      } 
   }


/* 〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
   タブレット版
   〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓 */

@media screen and (max-width: 1024px) {


}

/* 〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
   スマホ版
   〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓 */

@media screen and (max-width: 480px) {

.modalwindow .body .modal_content{
	position: relative;
}

.modal_wrapper{
	position: relative;
	height: 100vh;
}

.close_modal{
  width: 50px;
  height: 50px;
  background-size: 100% auto;
  margin: 5px 5px auto auto;
}

.close_modal:hover{
  width: 50px;
  height: 50px;
  background-size: 100% auto;
  margin: 5px 5px auto auto;
}

.modal_top_wrap{
   width: 95%;
   margin: 60px auto 60px auto;
   border-radius: 20px;
   padding: 0;
}


.modal_pic_wrap{
   position: relative;
   width: 100%;
   display: flex;
   justify-content: center;
   margin-bottom: 30px;
   padding: 90px 10px;
}


.modal_pic_kaijin{
   position: relative;
   width: 100%;
}



}
