@charset "UTF-8";

.boxs:after {
  content:"";
  display: block;
  clear: both
}

.boxt{
  float: left;
  width: 50%
}

.boxt p a{
  text-decoration:underline;
}

.boxu{
  float: left;
  width: 50%
}

.boxu p a{
  text-decoration:underline;
}

.open {
  cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
  font-size: 14px;
  padding:10px 16px;

}



#pop-up {
  display: none; /* label でコントロールするので input は非表示に */
}
.overlay {
  display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up:checked + .overlay {
  display: block;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.window {
  width: 90vw;
  max-width: 80%;
  height: 90%;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.text {
  font-size: 14px;
  margin: 5;
  padding:10px 16px;
}

.text-s {
  font-size: 11px;

}

.close {
  cursor:pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 20px;
}
