@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-popup-wrap {
  opacity: 0;
  display: none;
  position: fixed;
  top: auto;
  left: auto;
  bottom: 70px;
  left: 70px;
}
.p-popup-wrap.is-show {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  z-index: 100;
}
.p-popup-container {
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  display: block;
}
.p-popup-content {
  position: relative;
  min-width: 300px;
  background: #fff;
  box-shadow: 0 0 6px rgba(82, 82, 82, 0.56);
  border-radius: 6px;
}
.p-popup-image {
  height: auto;
  border-radius: 6px 6px 0px 0px;
  overflow: hidden;
  position: relative;
}
.p-popup-image img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-popup-close {
  position: fixed;
  bottom: 318px;
  top: 0;
  right: 0;
  left: 0px;
  margin: auto auto 0 354px;
  z-index: 100;
  width: 32px;
  height: 28px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.p-popup-bubble {
  position: fixed;
  left: 70px;
  bottom: 70px;
  z-index: 100;
  display: none;
}
.p-popup.is-show-popup .p-popup-wrap {
  opacity: 1;
  display: block;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  z-index: 1000;
  border-radius: 6px;
}
.p-popup.is-show .p-popup-wrap {
  opacity: 1;
  display: block;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  z-index: 1000;
}
.p-popup.is-show-bubble .p-popup-bubble {
  display: block;
  cursor: pointer;
}

@media (max-width: 768px)   {
.c-pc_only {
  display: none;
}
}