@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500&display=swap');

.overlay {
  /* グレーの背景 */
  position: fixed;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.5s 0s ease;
  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: #000000D0;
  width: 100%;
}

.popWindow {
  border-radius: 10px;
  width: 62%;
  overflow: auto;
  max-height: 95%;
  min-width: fit-content;
  max-width: 95%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100010;
  font-size: 13px;
  line-height: 18px;
  margin: 10px auto;
  padding: 4px 10px;
  background: #FFFD;
  text-align: center;
  transition: all 500ms ease-in-out;
}

.popWindow .ptitle {
  font-size: 15px;
  margin: 8px;
  color: #333;
}

.popWindow .close {
  position: absolute;
  top: 1px;
  right: 6px;
  transition: all 300ms;
  font-size: 24px;
  line-height: inherit;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  padding: 2px;
}

.popWindow .close:hover {
  color: #fff;
}

.popWindow::-webkit-scrollbar-track {
  background: none;
}

.popWindow::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.popWindow::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 5px;
}

.clickable:hover {
  cursor: pointer;
}

.popWindow .ptitle p{
  width: 100%;
  text-align: left;
}

/* pop-up02-------------------------- */
#pop-up02 {
  display: none;
}

#pop-up02:checked+.overlay {
  visibility: visible;
  opacity: 1;
  z-index: 100000;
  background-color: #000000D0;
  width: 100%;
}