@charset "UTF-8";
.auth_box {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100vh;
  z-index: 10000;
  display: none; /* ● */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.auth_box.on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.auth_box .wrp {
  background: #fff;
  color: #000;
  font-size: 22px;
  line-height: 35px;
  font-weight: bold;
  border: 3px solid #e68;
  border-radius: 10px;
  padding: 10px 80px;
  max-width: 700px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.auth_box .wrp .hdr,
.auth_box .wrp p {
  margin-top: 40px;
  margin-bottom: 40px;
  color: #555;
}
.auth_box .wrp .clr {
  color: #e68;
}
.auth_box .wrp .attn {
  color: #f00;
}
.auth_box .wrp .btns {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.auth_box .wrp .btns .btn {
  display: block;
  font-size: 28px;
  text-decoration: none;
  padding: 20px 0;
  margin: 20px 0;
  border: 2px solid #e68;
  border-radius: 10px;
}
.auth_box .wrp .btns .btn.yes {
  background: #e68;
  color: #fff;
}
.auth_box .wrp .btns .btn.no {
  background: #fff;
  color: #e68;
}
.auth_box.sns .wrp .btns .btn.yes {
  background: #0b4;
  border-color: #0b4;
}
.auth_box.sns .wrp .btns .btn.no {
  border-color: #aaa;
  color: #aaa;
  font-size: 20px;
  padding: 10px 20px;
  display: table;
  margin: auto;
}