.overlay {
  position: fixed; /* 閭梧勹 */
  background: rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.pop-up {
  display: none;
}
.pop-up:checked + .overlay {
  visibility: visible;
  opacity: 1;
  z-index: 100000;
  background-color: #000000E0;
  width: 100%;
}
.popWindow {
  max-height: 95%;
  max-width: 95%;
  transform: scale(0.7); /* 繧ｯ繝ｪ繝�け縺励◆逶ｴ蠕後�繧ｵ繧､繧ｺ */
  z-index: 100010;
  font-size: 13px;
  line-height: 18px;
  margin: 10px auto;
  padding: 4px 10px;
  text-align: center;
  transition: all 0.5s 0s ease;
  display: flex; /* 荳ｭ螟ｮ */
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pop-up:checked + .overlay .popWindow {
  transform: scale(1); /* 譛邨ら噪縺ｪ繧ｵ繧､繧ｺ */
  height: 100%;
}
.pbox {
  display: flex; /* 荳ｭ螟ｮ */
  justify-content: center;
  align-items: center;
  height: 100%;
  border-radius: 5px;
  overflow: auto;
}
.pbox label {
  max-height: 100vh;
}
.pbox img {
  max-height: 90vh;
  max-width: 100%;
}
.popWindow .close {
  position: relative;
  float: right;
  transition: all 3ms;
  font-size: 42px;
  line-height: inherit;
  text-decoration: none;
  color: #FFF;
  padding: 5px 0 15px 15px;
}
.popWindow .close:hover {
  color: #F19148;
}
.pbox::-webkit-scrollbar-track {
  background: none;
}
.pbox::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.pbox::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 5px;
}
.clickable:hover {
  cursor: pointer;
}
@media screen and (max-width: 768px){
  /*.pop-up:checked + .overlay {
    visibility: hidden;
    opacity: 0;
  }*/
}