#popup {
  display: none; /* label でコントロールするので input は非表示に */
}
.popup-open {
  cursor: pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
  font-size: 90%;
  text-align: center;
  color: #ffffff;
  margin: 4px 0;
  padding: 15px 30px;
  background-color: #0a1c32;
}
.popup-overlay {
  display: none; /* input にチェックが入るまでは非表示に */
}
#popup:checked ~ .popup-overlay {
  display: block;
  z-index: 99999999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.popup-window {
  width: 95vw;
  max-width: 960px;
  max-height: 90%;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 6px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup-text {
  margin: 0;
}
.popup-text:not(:last-of-type) {
  margin-bottom: 1em
}
.popup-close {
  cursor: pointer;
  position: absolute;
  top: -26px;
  right: 0;
}
.item_mark_pic {
  float: left;
  margin: 0 1% 1% 0;
}
.item_mark_txt {
	line-height: 160%;
}