/* popup */
.popup {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  display: none;
  z-index: 2;
}
.popup_outside {
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.16);
  z-index: 51;
}
.popup_inner {
  display: inline-block;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  padding: 20px;
  background: #FFF;
  border-radius: 5px;
  box-shadow: 0 0 16px rgba(0,0,0,0.16);
  z-index: 52;
}
.popup_inner figure img {
  width: 100%;
}
.popup_lead {
  color: #FE316A;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 20px auto;
}
.popup_cont {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
}
.popup_close {
  display: block;
  color: #FFF;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  width: 200px;
  background: #FE316A;
  border-radius: 30px;
  padding: 11px 0;
  margin: 22px auto 0;
  cursor: pointer;
  transition: 0.2s;
  border: none;
  position: static;
  height: auto;
}
@media screen and (min-width: 751px) {
  .popup_close:hover {
    opacity: 0.8;
    transition: 0.3s;
  }

  .popup_inner {
    max-width: 700px;
    padding: 30px 47px 30px 53px;
  }
}


.home-tab,
.p-ft__gotop,
.p-ft__copyWrap {
  z-index: 1;
}
