/* lightbox */
#light_bx img{
	display: block;
    width: 100%;
}

#light_bx {
  position: fixed;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
  overflow: auto;
  display: none;
}
#light_bx > .infobx_1 {
  position: relative;
  width: 500px;
  display: block;
  margin: 0 auto;
  display: none;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-filter: drop-shadow(0px 25px 25px rgba(0, 0, 0, 0.65));
  filter: drop-shadow(0px 25px 25px rgba(0, 0, 0, 0.65));
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 3rem;
   text-align: center;
  color: #FFFFFF; 
  letter-spacing: 5px;
}

.bx_a_clos {
  position: absolute;
  width: 50px;
  padding-bottom: 50px;
  display: block;
  cursor: pointer;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-image: url(../images/close.png);
  background-position: 100% 0%;
  background-size: 100% auto;
  top: 0%;
  right: 0%;
  z-index: 2;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.bx_a_clos:hover {
  animation: rotate 1s linear infinite;
}
.pom {
  background: url("../images/pop_02.png");
  background-size: 100% auto;
  min-height: 50px;
  
}
.popcont {
  width: 80%;
  margin: 0 auto;
}

#mbox {
	padding: 1.3em;
}

@media only screen and (max-width: 580px) {
  .pcimg {
    display: none;
  }
  .mbimg {
    display: block;
  }
  #light_bx > .infobx_1 {
	  width: 100%;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}