@charset "UTF-8";
/* modal window
------------------------------------------------------------ */
.modalArea {
  display: none;
  position: absolute;
  z-index: 999; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}

.modalBg { width: 100%; height: 100%;}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 70%;
  max-width: 500px;
  padding: 40px 30px 30px 30px;
   background-color: rgba(255,255,255,0.9);
 border-radius: 12px;
 -webkit-border-radius:12px;
	-moz-border-radius:12px;
 box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .2);
 max-height: calc(100% - 90px);
 overflow: scroll;
 scrollbar-width: none;
 -ms-overflow-style: none;
}
.modalWrapper::-webkit-scrollbar {
 display: none;
}
.modalWrapper h5{ font-size: 120%; margin-bottom: 20px; text-align: left; border-bottom: 1px solid #000;}
.modalWrapper h5.confirm_title { font-size: 130%; text-align: center; border: 0; }
.modalWrapper p { margin-bottom: 40px;}
.modalWrapper p.alert_part { margin-bottom: 0; }
.modalWrapper .map { float: right;}
.modalWrapper .map a{
 font-size: 80%;
 display: inline-block;
 border-radius: 12px;
 -webkit-border-radius:12px;
	-moz-border-radius:12px;
 background-image: url("../icons/icon_map.svg");
 background-position: left center;
 background-repeat: no-repeat;
 background-size: 30px 25px;
 padding: 8px 20px 8px 40px;
 box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .2);
}
.modalWrapper .map a:link { text-decoration: none; color:#000; }
.modalWrapper .map a:visited { text-decoration: none; color:#000; }
.modalWrapper .map a:hover { text-decoration: none; color:#000; }
.modalWrapper .map a:active { text-decoration: none; color:#000; }

.closeModal {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
 background:#000;
 color: #fff;
 border-radius: 0 12px 0 0;
 -webkit-border-radius: 0 12px 0 0;
	-moz-border-radius: 0 12px 0 0;
 padding: 10px 16px;
}

/* 以下ボタンスタイル */

button.bk {
 font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
 font-size: 120%;
 text-align: left;
 display: block;
 width: 500px;
 margin: 0 auto 20px;
 color: #fff;
 background-color: #000;
 cursor :pointer;
 border-radius: 12px;
 -webkit-border-radius:12px;
	-moz-border-radius:12px;
 padding: 20px;
 box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .2);
 background-image: url("../icons/icon_page_next_wht.svg");
 background-position: right center;
 background-repeat: no-repeat;
 background-size: 30px 15px;
}

button.wht {
 font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
 font-size: 120%;
 text-align: left;
 display: block;
 width: 500px;
 margin: 0 auto 20px;
 color: #000;
 background-color: #fff;
 cursor :pointer;
 border-radius: 12px;
 -webkit-border-radius:12px;
	-moz-border-radius:12px;
 padding: 20px;
 box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .2);
 background-image: url("../icons/icon_page_next_bk.svg");
 background-position: right center;
 background-repeat: no-repeat;
 background-size: 30px 15px;
}

button.wht_btn_short {
 font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
 text-align: left;
 display: block;
 margin-bottom: 20px;
 color: #000;
 background-color: #fff;
 cursor :pointer;
 border-radius: 12px;
 -webkit-border-radius:12px;
	-moz-border-radius:12px;
 padding: 12px 60px 12px 20px;
 box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .2);
 background-image: url("../icons/icon_page_next_bk.svg");
 background-position: right center;
 background-repeat: no-repeat;
 background-size: 30px 15px;
 font-size: 14px;
}


button.blue  {
 font-size: 16px;
 display: block;
 width: 466px;
 max-width: 100%;
 margin: 0 auto 200px;
 text-align: center;
 color: #fff;
 background-color: #005995;
 cursor :pointer;
 border-radius: 12px;
 -webkit-border-radius:12px;
	-moz-border-radius:12px;
 padding: 0 20px;
 height: 50px;
 line-height: 50px;
 box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .2);
}
button.blue_disabled  {
  font-size: 16px;
  display: block;
  width: 466px;
  max-width: 100%;
  margin: 0 auto 200px;
  text-align: center;
  color: #fff;
  background-color: #cfcfcf;
  cursor :pointer;
  border-radius: 12px;
  -webkit-border-radius:12px;
   -moz-border-radius:12px;
  padding: 0 20px;
  height: 50px;
  line-height: 50px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .2);
 }
 .form_confirm.entry_form select {
  background-color: #f1f1f1;
 }