@charset "UTF-8";

/* -------------------------------------------------------------------------
ポップアップ（診断）
------------------------------------------------------------------------- */
body.disp_popup {
  overflow-y: hidden;
  height: 100%;
}

/* 診断地域 */
.modal_shindan {
  background: #fff;
  border: 5px solid var(--blue);
  padding: 30px 28px 15px;
  min-height: 570px;
  width: 85%;
  margin: auto;
  text-align: center;
  position: relative;
}

.modal_shindan h3 {
  color: #222;
  font-size: 24px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.15rem;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto auto 15px;
}

.modal_shindan h3::before {
  position: absolute;
  content: "";
  width: 1.0em;
  height: 1.0em;
  background: url(/lp/fav/img/icon_line_app.png) no-repeat;
  background-size: 1.0em;
  left: 0;
  top: 6px;
  display: block;
}

.modal_shindan p {
  font-size: 1.5rem;
}

.modal_shindan_btnarea {
  padding: 5px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.modal_shindan_btnarea.col1 {
  display: block;
}

.modal_shindan .btn {
  margin: 10px 0 0;
  padding: 25px 0 25px 5px;
  letter-spacing: 0.5rem;
  width: 48%;
  border-radius: 5px;
}
.modal_shindan .btn.fs_small {
  font-size: 1.4rem;
}

.modal_shindan .btn::after {
  display: none;
}

.modal_shindan .modal_shindan_btnarea.col1 .btn {
  margin: 10px auto;
}

.modal_shindan .txt {
  font-size: 1.1rem;
  line-height: 1.7rem;
  /* margin-top: 20px; */
  position: absolute;
  left: 52px;
  bottom: 15px;
}
/*　閉じるボタン　*/
.modal_shindan .close_area {
  position: absolute;
  top: -15px;
  right: -15px;
}

.modal_shindan .close_area .btn_close {
  padding: 0px;
  background: #777;
  border: 2px solid #fff;
  border-radius: 30px;
  height: 35px;
  width: 35px;
  position: relative;
  -webkit-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.3));
  -moz-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.3));
  -ms-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.3));
  text-align: center;
}

.modal_shindan .mfp-image-holder .mfp-close {
  color: #FFF;
  padding: 0;
  width: 13px;
  height: 13px;
  opacity: 1;
  margin: auto;
  position: absolute;
  top: 7px;
  right: 6px;
  display: block;
}

.modal_shindan button.mfp-close {
  width: 30px;
  height: 30px;
  display: block;
  text-align: center;
}

.modal_shindan .close_area .btn_close img {
  opacity: 1.0;
  position: relative;
  top: 6px;
  width: 60%;
}

.modal_otherarea {
  margin: 0 auto 60px;
  text-align: center;
  color: var(--blue);
  padding: 20px 0 0;
  font-size: 1.6rem;
  /*
  position: absolute;
  bottom: 86px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  */
}
.modal_otherarea a {
  color: var(--blue);
  font-size: 1.5rem;
  text-decoration: none;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s;
}
.modal_otherarea a::before {
  display: block;
  content: " ";
  position: absolute;
  width: 12px;
  height: 16px;
  top: 0px;
  left: 0;
  background: url(/lp/fav/img/ico_area_blu.svg) 0 0 no-repeat;
  background-size: 12px;
  cursor: pointer;
}

/* ----------Wedding診断---------- */
#popup_shindan.modal_shindan {
  position: absolute;
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* ----------費用診断---------- */
.modal_container {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1045;
}

.modal_container .modal_bg {
  background: #0b0b0b;
  opacity: 0.8;
  height: 100vh;
  position: absolute;
  width: 100%;
}

/* -------------------------------------------
/* ▼▼▼ ウィンドウサイズ768px以上に適用されるcss ▼▼▼
-------------------------------------------- */
@media screen and (min-width: 768px) {
  .modal_shindan {
    min-height: 600px;
    max-width: 500px;
    padding: 35px 35px 25px;
  }
  .modal_shindan h3 {
    font-size: 26px;
    margin: auto auto 20px;
  }
  .modal_shindan_btnarea {
    padding-top: 10px;
  }

  .modal_shindan .txt {
    bottom: 30px;
  }
  .modal_shindan .btn {
    padding: 28px 10px;
    font-size: 1.6rem;
    max-width: 300px;
    margin-bottom: 5px;
    width: 48%;
  }
  .modal_shindan .btn.fs_small {
    font-size: 1.6rem;
  }
}
