@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(240,240,240,0.98);
  background-image: url("../images/bg/bg_03.png");
  background-size: 10% auto;
  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/menu/b_close.png");
  background-size: 68px 68px;
  background-position: center center;
  background-repeat: no-repeat;
}


.close_modal:hover{
  background-image: url("../images/menu/b_close.png");
  background-size: 68px 68px;
  background-position: center center;
  background-repeat: no-repeat;
}

/* -----------------------------------------
   モーダル内部スタイル
   -----------------------------------------*/


.modal_wrap{
   position: relative;
  width: 98%;
  max-width: 1000px;
  margin: auto;
}


.modal_top_wrap{
   width: 95%;
   max-width: 1100px;
   margin: auto;
  background-color: rgba(255,255,255,1.00);
}

.modal_top_wrap .inner{
   position: relative;
   width: 100%;
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   margin-top: 90px;
   margin-bottom: 90px;
}


.modal_top_wrap .inner .txt_area01{
   position: relative;
   width: 100%;
   padding: 50px 100px;
   box-sizing: border-box;
   font-family: 'Noto Sans JP', sans-serif;
   font-weight: 400;
   color: rgba(0,0,0,1.00);
   border: rgba(0,0,0,1.00) 1px solid;
}

   .modal_top_wrap .inner .txt_area01.flex01{
      position: relative;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
   }

   .modal_top_wrap .inner .txt_area01.flex01 .left_wrap{
      width: 30%;
   }
   .modal_top_wrap .inner .txt_area01.flex01 .left_wrap img{
      border: rgba(0,0,0,1.00) 1px solid;
   }

   .modal_top_wrap .inner .txt_area01.flex01 .right_wrap{
      width: 60%;
   }


   .modal_top_wrap .inner .txt_area01.flex01 .left_wrap2{
      width: 49%;
      margin-bottom: 30px;
   }
   .modal_top_wrap .inner .txt_area01.flex01 .left_wrap2 img{
      border: rgba(0,0,0,1.00) 1px solid;
   }

   .modal_top_wrap .inner .txt_area01.flex01 .right_wrap2{
      width: 49%;
   }



.modal_top_wrap .inner .txt_area01 .credit{
   position: relative;
   width: 100%;
   text-align: center;
}

   .modal_top_wrap .inner .txt_area01.flex01 .credit{
      text-align: left;
   }



.modal_top_wrap .inner .txt_area01 .credit .t01{
   font-size: 90%;
   margin-right: 10px;
}

.modal_top_wrap .inner .txt_area01 .credit .t02{
   font-size: 200%;
   font-weight: 600;
}



.modal_top_wrap .inner .txt_area01 .modal_bar01{
   width: 80%;
   margin: 20px auto 40px auto;
   border-bottom: rgba(0,0,0,1.00) 1px solid;
}

.modal_top_wrap .inner .txt_area01.flex01 .modal_bar01{
   width: 100%;
   margin: 20px auto 40px auto;
   border-bottom: rgba(0,0,0,1.00) 1px solid;
}




.modal_top_wrap .inner .txt_area02{
   text-align: center;
   font-size: min(1.8vw, 120%);
   line-height: 1.8;
}

   .modal_top_wrap .inner .txt_area01.flex01 .txt_area02{
      text-align: left;
   }





@media screen and (max-width: 900px) {


.modal_wrap.n009{
  width: 98%;
  margin: auto;
}

.modalwindow .body {
    position: relative;
    width: 100%;
    padding: 0 5px;
    left: 0;
	 box-sizing: border-box;
  }
  


/* -----------------------------------------
   モーダル内部
   -----------------------------------------*/

.modal_wrap{
  width: 100%;
  margin: auto;
}



}


/* 〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
   タブレット版
   〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓 */

@media screen and (max-width: 1024px) {

.modal_top_wrap .inner .txt_area01{
   padding: 50px 20px;
}

   .modal_top_wrap .inner .txt_area01.flex01{
      padding: 50px 20px;
   }

.modal_top_wrap .inner .txt_area02{
   font-size: 2vw;
   text-align: left;
}


.close_modal{
  width: 80px;
  height: 80px;
  padding: 10px 10px 10px 12px;
  background-size: 56px 56px;
  background-position: center center;
}

.close_modal:hover{
  width: 80px;
  height: 80px;
  padding: 10px 10px 10px 12px;
  background-size: 56px 56px;
  background-position: center center;
}


.modal_top_wrap .style_pc{
   display: none;
}


}


@media screen and (max-width: 750px) {
.modal_top_wrap .inner .txt_area02{
   font-size: 3vw;
}


}

/* 〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
   スマホ版
   〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓 */

@media screen and (max-width: 480px) {

.modalwindow .body .modal_content{
	position: relative;
}

.modal_wrapper{
	position: relative;
	height: 100vh;
}

.close_modal{
  width: 60px;
  height: 60px;
  background-size: 38px 38px;
  background-position: center center;
}

.close_modal:hover{
  width: 60px;
  height: 60px;
  background-size: 38px 38px;
  background-position: center center;
}



.modal_top_wrap .inner .txt_area01{
   padding: 30px 10px;
}

.modal_top_wrap .inner .txt_area02{
   font-size: min(4.2vw, 120%);
   text-align: left;
}

.modal_top_wrap .inner .txt_area01.flex01{
   display: block;
}

.modal_top_wrap .inner .txt_area01.flex01 .left_wrap{
   width: 60%;
   margin: 0 auto 30px auto;
}

.modal_top_wrap .inner .txt_area01.flex01 .right_wrap{
   width: 100%;
   margin: auto;
}


.modal_top_wrap .inner .txt_area01.flex01 .left_wrap2{
   width: 100%;
   margin: 0 auto 30px auto;
}

.modal_top_wrap .inner .txt_area01.flex01 .right_wrap2{
   width: 100%;
   margin: auto;
}

}
