@charset "UTF-8";
/* CSS Document */

#back_confirm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

#back_confirm .wrap {
  margin: auto;
  position: relative;
}
input[type="submit"] {
}
#back_confirm .wrap .close_btn {
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  display: block;
  width: 41px;
  height: 41px;
  text-indent: -9999px;
  position: absolute;
  top: -20px;
  right: -20px;
  background-image: url(../images/close_1.png);
  z-index: 10;
}

#back_confirm .wrap .img {
  margin-bottom: 20px;
}
#back_confirm .wrap .btn {
  text-align: center;
}
#back_confirm .wrap .btn a:link,
#back_confirm .wrap .btn a:visited {
  margin: auto;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  border-style: solid;
  border-width: 2px;
  border-color: rgb(255, 255, 255);
  border-radius: 10px;
  background-color: rgb(237, 132, 50);
  box-shadow: 0px 0px 7.44px 0.56px rgba(0, 0, 0, 0.23);
  max-width: 400px;
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#back_confirm .wrap .btn a:after {
  content: "";
  background-image: url("img/arrow_r.png");
  width: 20px;
  height: 20px;
  background-size: contain;
}
