@charset "UTF-8";
/* ===================================================================
CSS information

 file name  : jquery.confirm.css
 author     : Ability Consultant
 style info : 予約ページ　エラーポップアップCSS
=================================================================== */
/* Hover animation */
#confirmOverlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: url("ie.png");
  background: -moz-linear-gradient(rgba(11, 11, 11, 0.1), rgba(11, 11, 11, 0.6)) repeat-x rgba(11, 11, 11, 0.2);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(11, 11, 11, 0.1)), to(rgba(11, 11, 11, 0.6))) repeat-x rgba(11, 11, 11, 0.2);
  z-index: 100000;
}
@media only screen and (max-width: 767px) {
  #confirmOverlay {
    overflow: auto;
  }
}

@media only screen and (max-width: 1024px) {
  .con_policy {
    width: 95%;
  }
}
@media only screen and (max-width: 767px) {
  .con_policy {
    width: 100%;
  }
}

#wrp_confirmBox {
  display: table;
  width: 95%;
  max-width: 450px;
  margin: auto;
  padding: 50px 0;
}
#wrp_confirmBox #confirmBox {
  background-color: #fff;
  max-width: 450px;
  margin: auto;
  position: fixed;
  left: 50%;
  top: 50%;
  margin: -130px 0 0 -225px;
  border: 1px solid rgba(33, 33, 33, 0.6);
  -moz-box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
  -webkit-box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
}
@media only screen and (max-width: 767px) {
  #wrp_confirmBox #confirmBox {
    position: static;
    display: table-cell;
    vertical-align: middle;
    margin: auto;
    max-width: none;
    left: auto;
    top: auto;
  }
}
#wrp_confirmBox #confirmBox h1, #wrp_confirmBox #confirmBox p {
  padding: 18px 25px;
  color: #666;
  background-color: #d80a0a;
}
@media only screen and (max-width: 767px) {
  #wrp_confirmBox #confirmBox h1, #wrp_confirmBox #confirmBox p {
    padding: 15px;
  }
}
#wrp_confirmBox #confirmBox h1 {
  letter-spacing: 0.3px;
  color: #fff;
  font-size: 125%;
}
@media only screen and (max-width: 767px) {
  #wrp_confirmBox #confirmBox h1 {
    font-size: 113%;
  }
}
#wrp_confirmBox #confirmBox p {
  background: none;
  font-size: 100%;
  line-height: 1.4;
  padding-top: 35px;
}
#wrp_confirmBox #confirmBox .button {
  display: inline-block;
  background-color: #232323;
  color: white;
  border: solid 3px #232323;
  position: relative;
  padding: 10px 30px;
  text-decoration: none;
  margin: 0 5px 15px;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
#wrp_confirmBox #confirmBox .button:last-child {
  margin-right: 0;
}
#wrp_confirmBox #confirmBox .button:hover {
  background: #fff;
  color: #232323;
}
@media only screen and (max-width: 767px) {
  #wrp_confirmBox #confirmBox .button {
    width: 80%;
    margin: 0 auto 15px !important;
  }
}
#wrp_confirmBox #confirmBox .button span {
  position: absolute;
  top: 0;
  right: -5px;
  background: url("buttons.png") no-repeat;
  width: 5px;
  height: 33px;
}
#wrp_confirmBox #confirmBox .blue {
  background-position: left top;
  text-shadow: 1px 1px 0 #5889a2;
}
#wrp_confirmBox #confirmBox .blue span {
  background-position: -195px 0;
}
#wrp_confirmBox #confirmBox .blue:hover {
  background-position: left bottom;
}
#wrp_confirmBox #confirmBox .blue:hover span {
  background-position: -195px bottom;
}
#wrp_confirmBox #confirmBox .gray {
  background-position: -200px top;
  text-shadow: 1px 1px 0 #707070;
}
#wrp_confirmBox #confirmBox .gray span {
  background-position: -395px 0;
}
#wrp_confirmBox #confirmBox .gray:hover {
  background-position: -200px bottom;
}
#wrp_confirmBox #confirmBox .gray:hover span {
  background-position: -395px bottom;
}

#confirmButtons {
  padding: 15px 0px;
  text-align: center;
}
