.cross {
  position: fixed;
  right: 0;
  top: 0;
  margin: 30px 55px 0 0;
  cursor: pointer;
  transition: 300ms all ease-in-out;
  z-index: 99;
  opacity: 1;
  will-change: transform; }

.cross::after,
.cross::before {
  position: absolute;
  content: '';
  width: 35px;
  height: 2px;
  /* background-color: black; */
  background-color: white;  } /* UPD 2015-11-13 @neverfoundjp */

.cross::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.cross::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.slb {
  /*box-shadow: 2px 2px 12px 1px rgba(0, 0, 0, 0.2);*/  /* DEL 2015-11-13 @neverfoundjp */
/*  cursor: -webkit-zoom-in;
  cursor: zoom-in; */
  cursor: pointer;  /* UPD 2015-11-24 @neverfoundjp */
}

.slb-opened {
  cursor: auto; }

.pop-in {
  -webkit-animation: pop-in 250ms;
  -moz-animation: pop-in 250ms;
  -ms-animation: pop-in 250ms; }

.pop-out {
  -webkit-animation: pop-out 250ms;
  -moz-animation: pop-out 250ms;
  -ms-animation: pop-out 250ms; }

#overlay {
  display: none;
  /* background: white; */
  background: #333;  /* UPD 2015-11-13 @neverfoundjp */
  background: rgba(0,0,0,0.85);  /* UPD 2015-11-13 @neverfoundjp */
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;  /* UPD 2015-11-25 @neverfoundjp これがあるとIE11で clickイベントを拾わなくなってしまう*/
  cursor: pointer;
  will-change: transform;
  /*z-index: 1;*/
  z-index: 9; }  /* UPD 2015-11-13 @neverfoundjp */

.slb-center { /* UPD 2015-11-24 @neverfoundjp */
  max-height: 80%; /* UPD 2015-11-25 90%→80% */
  max-width: 90%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto; }

@-webkit-keyframes pop-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes pop-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@-webkit-keyframes pop-out {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5); } }

@keyframes pop-out {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5); } }

/*# sourceMappingURL=simplebox.css.map */

/*=======================
  HTML Modal
  ADD @neverfound.jp
=======================*/

.slb-body {
  overflow-y: auto;
  border: 2px solid #ccc;
  background-color: #fff;
}

.slb-content {
  display: none;
}
