@charset "utf8";

/*=========================================*/
/*モーダルウィンドウ*/
/*=========================================*/

.modal_open_01,.modal_open_02,
.modal_open_03,.modal_open_04,
.modal_open_05,.modal_open_06,
.modal_open_07,.modal_open_08,
.modal_open_09{
  cursor : pointer;
  transition: 0.25s ease-out;
}

.modal_open_01:hover,.modal_open_02:hover,
.modal_open_03:hover,.modal_open_04:hover,
.modal_open_05:hover,.modal_open_06:hover,
.modal_open_07:hover,.modal_open_08:hover,
.modal_open_09:hover{
  opacity: 0.8;
  transition: 0.25s ease-out;
}

.modal_window_01,.modal_window_02,
.modal_window_03,.modal_window_04,
.modal_window_05,.modal_window_06,
.modal_window_07,.modal_window_08,
.modal_window_09{
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 450px;
  border-radius: 5px;
  z-index: 9999;
  text-align: left;
}

.modal_contents_area{
  padding: 30px;
  background: rgba(255,255,255,1.00);
  border-radius: 5px;
}

.modal_title_area{
  margin-bottom: 10px;
  font-size: 150%;
  line-height: 175%;
  color: rgba( 220,94,36, 1.00);
  display: flex;
  align-items: end;
}

.modal_title_area img{
  height: 55px;
  width: auto;
}

.modal_img_area{
  margin-bottom: 10px;
}

.modal_img_area img{
  width: 100%;
  max-width: 100%;
  height: auto;
}

.modal_text_area{
  font-size: 95%;
  line-height: 175%;
  letter-spacing: 4px;
}

@media screen and (max-width:960px) {

.modal_window_01,.modal_window_02,
.modal_window_03,.modal_window_04,
.modal_window_05,.modal_window_06,
.modal_window_07,.modal_window_08,
.modal_window_09{
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 450px;
  border-radius: 5px;
  z-index: 9999;
  text-align: left;
}

.modal_contents_area{
  padding: 20px;
}

.modal_title_area{
  font-size: 135%;
}

.modal_title_area img{
  height: 45px;
  width: auto;
}

.modal_text_area{
  font-size: 90%;
}
  
}

@media screen and (max-width:500px) {
  
.modal_window_01,.modal_window_02,
.modal_window_03,.modal_window_04,
.modal_window_05,.modal_window_06,
.modal_window_07,.modal_window_08,
.modal_window_09{
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 450px;
  border-radius: 5px;
  z-index: 9999;
  text-align: left;
}

.modal_contents_area{
  padding: 15px;
}

.modal_title_area{
  font-size: 120%;
}

.modal_title_area img{
  height: 40px;
}

.modal_img_area{
  margin-bottom: 10px;
}

.modal_text_area{
  font-size: 85%;
}

}

/*=========================================*/
/*閉じるボタン*/
/*=========================================*/

.modal_btn_01,.modal_btn_02,
.modal_btn_03,.modal_btn_04,
.modal_btn_05,.modal_btn_06,
.modal_btn_07,.modal_btn_08,
.modal_btn_09{
  margin-bottom: 2px;
  height: 30px;
  position: relative;
}

.button_close_01,.button_close_02,
.button_close_03,.button_close_04,
.button_close_05,.button_close_06,
.button_close_07,.button_close_08,
.button_close_09{
  position: absolute;
  background: #ffffff;
  width: 30px;
  height: 30px;
  right: 0;
}

.button_close_01::before,.button_close_02::before,
.button_close_03::before,.button_close_04::before,
.button_close_05::before,.button_close_06::before,
.button_close_07::before,.button_close_08::before,
.button_close_09::before{
  content: "";
  position: absolute;
  background: rgba(220,94,36,1.00);
  width: 3px;
  height: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 5px;
  transform: rotate(45deg);
}

.button_close_01::after,.button_close_02::after,
.button_close_03::after,.button_close_04::after,
.button_close_05::after,.button_close_06::after,
.button_close_07::after,.button_close_08::after,
.button_close_09::after{
  content: "";
  position: absolute;
  background: rgba(220,94,36,1.00);
  width: 3px;
  height: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 5px;
  transform: rotate(-45deg);
}

@media screen and (max-width:960px) {
	
.modal_btn_01,.modal_btn_02,
.modal_btn_03,.modal_btn_04,
.modal_btn_05,.modal_btn_06,
.modal_btn_07,.modal_btn_08,
.modal_btn_09{
  height: 25px;
}

.button_close_01,.button_close_02,
.button_close_03,.button_close_04,
.button_close_05,.button_close_06,
.button_close_07,.button_close_08,
.button_close_09{
  width: 25px;
  height: 25px;
}

.button_close_01::before,.button_close_02::before,
.button_close_03::before,.button_close_04::before,
.button_close_05::before,.button_close_06::before,
.button_close_07::before,.button_close_08::before,
.button_close_09::before{
  width: 3px;
  height: 23px;
}

.button_close_01::after,.button_close_02::after,
.button_close_03::after,.button_close_04::after,
.button_close_05::after,.button_close_06::after,
.button_close_07::after,.button_close_08::after,
.button_close_09::after{
  width: 3px;
  height: 23px;
}
	
}

@media screen and (max-width:500px) {

.modal_btn_01,.modal_btn_02,
.modal_btn_03,.modal_btn_04,
.modal_btn_05,.modal_btn_06,
.modal_btn_07,.modal_btn_08,
.modal_btn_09{
  height: 20px;
}

.button_close_01,.button_close_02,
.button_close_03,.button_close_04,
.button_close_05,.button_close_06,
.button_close_07,.button_close_08,
.button_close_09{
  width: 20px;
  height: 20px;
}

.button_close_01::before,.button_close_02::before,
.button_close_03::before,.button_close_04::before,
.button_close_05::before,.button_close_06::before,
.button_close_07::before,.button_close_08::before,
.button_close_09::before{
  width: 3px;
  height: 20px;
}

.button_close_01::after,.button_close_02::after,
.button_close_03::after,.button_close_04::after,
.button_close_05::after,.button_close_06::after,
.button_close_07::after,.button_close_08::after,
.button_close_09::after{
  width: 3px;
  height: 20px;
}
	
}


/*=========================================*/
/*オーバーレイ*/
/*=========================================*/

.overlay_01,.overlay_02,
.overlay_03,.overlay_04,
.overlay_05,.overlay_06,
.overlay_07,.overlay_08,
.overlay_09{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(251,237,243,0.6);
  width: 100%;
  height: 100%;
  z-index: 9998;
}
