@charset "utf-8";

/* =box Style
----------------------------------------------- */
.box * {
  color: var(--wp--preset--color--custom-site-1);
}

.box {
  width: 100%;
  height: 100%;
  padding: 2em 1em;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.5);
  /* position: fixed; */
  top: 0;
  left: 0;
  z-index: 150;
}
.box > div {
  width: 96%;
  height: 100%;
  margin: 0 auto;
  background-color: #fff;
  -webkit-border-radius: 1em;
  -moz-border-radius: 1em;
  border-radius: 1em;
  overflow-y: scroll;
}

/* closeBtn */
.box .closeBtn {
  display: none;	
  position: absolute;
  top: 0.9em;
  right: 1.9vw;
}
.closeBtn a {
  display: block;
  width: 2.6em;
  height: 2.6em;
  padding: 0;
  text-align: center;
  text-indent: -9999px;
  line-height: 1;
  color: #fff;
  border: 2px solid #fff;
  background-color: #333;
  -webkit-border-radius: 9vw;
  -moz-border-radius: 9vw;
  border-radius: 9vw;
}
.closeBtn a:before {
  content: "×";
  display: block;
  width: 100%;
  font-size: 1.6em;
  margin-top: -0.55em;
  text-indent: 0;
  position: absolute;
  top: 50%;
  left: 0;
}

/*---------------------
   clearfix
---------------------*/
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.clearfix {
  zoom: 1;
}
