@charset "utf-8";



/*//HTMLとCSSだけで作るシンプルなポップアップ///////////////////////////////////////////*/

/*
  HTMLとCSSだけで作るシンプルなポップアップ
  参考）https://rilaks.jp/blog/website-creation/popup-css/
 */

.open {
  cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#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: 200vw;
  max-width: 1000px;
  height: 600px;
  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: 18px;
  margin: 0;
}
.close {
  cursor:pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 20px;
}

/*//////////////////////////////////////////////*/

.open2 {
  cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#pop-up2 {
  display: none; /* label でコントロールするので input は非表示に */
}
.overlay2 {
  display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up2:checked + .overlay2 {
  display: block;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.window2 {
  width: 200vw;
  max-width: 1000px;
  height: 600px;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.close2 {
  cursor:pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 20px;
}

/*//////////////////////////////////////////////*/

.open3 {
  cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#pop-up3 {
  display: none; /* label でコントロールするので input は非表示に */
}
.overlay3 {
  display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up3:checked + .overlay3 {
  display: block;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.window3 {
  width: 200vw;
  max-width: 1000px;
  height: 600px;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.close3 {
  cursor:pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 20px;
}

/*//////////////////////////////////////////////*/

.open4 {
  cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#pop-up4 {
  display: none; /* label でコントロールするので input は非表示に */
}
.overlay4 {
  display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up4:checked + .overlay4 {
  display: block;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.window4 {
  width: 200vw;
  max-width: 1000px;
  height: 600px;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.close4 {
  cursor:pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 20px;
}

/*//////////////////////////////////////////////*/

.open5 {
  cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#pop-up5 {
  display: none; /* label でコントロールするので input は非表示に */
}
.overlay5 {
  display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up5:checked + .overlay5 {
  display: block;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.window5 {
  width: 200vw;
  max-width: 1000px;
  height: 600px;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.close5 {
  cursor:pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 20px;
}

/*//////////////////////////////////////////////*/

.open6 {
  cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#pop-up6 {
  display: none; /* label でコントロールするので input は非表示に */
}
.overlay6 {
  display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up6:checked + .overlay6 {
  display: block;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.window6 {
  width: 200vw;
  max-width: 1000px;
  height: 600px;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.close6 {
  cursor:pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 20px;
}

/*//////////////////////////////////////////////*/

.open7 {
  cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#pop-up7 {
  display: none; /* label でコントロールするので input は非表示に */
}
.overlay7 {
  display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up7:checked + .overlay7 {
  display: block;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.window7 {
  width: 200vw;
  max-width: 1000px;
  height: 600px;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.close7 {
  cursor:pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 20px;
}

/*//////////////////////////////////////////////*/

.open8 {
  cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#pop-up8 {
  display: none; /* label でコントロールするので input は非表示に */
}
.overlay8 {
  display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up8:checked + .overlay8 {
  display: block;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.window8 {
  width: 200vw;
  max-width: 1000px;
  height: 600px;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.close8 {
  cursor:pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 20px;
}

/*//////////////////////////////////////////////*/

.open9 {
  cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#pop-up9 {
  display: none; /* label でコントロールするので input は非表示に */
}
.overlay9 {
  display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up9:checked + .overlay9 {
  display: block;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.window9 {
  width: 200vw;
  max-width: 1000px;
  height: 600px;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.close9 {
  cursor:pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 20px;
}
/*//////////////////////////////////////////////*/

.open10 {
  cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#pop-up10 {
  display: none; /* label でコントロールするので input は非表示に */
}
.overlay10 {
  display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up10:checked + .overlay10 {
  display: block;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.window10 {
  width: 200vw;
  max-width: 1000px;
  height: 600px;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.close10 {
  cursor:pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 20px;
}

/*//////////////////////////////////////////////*/

.open11 {
  cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#pop-up11 {
  display: none; /* label でコントロールするので input は非表示に */
}
.overlay11 {
  display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up11:checked + .overlay11 {
  display: block;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.window11 {
  width: 200vw;
  max-width: 1000px;
  height: 600px;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.close11 {
  cursor:pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 20px;
}

/*//////////////////////////////////////////////*/

.open12 {
  cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#pop-up12 {
  display: none; /* label でコントロールするので input は非表示に */
}
.overlay12 {
  display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up12:checked + .overlay12 {
  display: block;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.window12 {
  width: 200vw;
  max-width: 1000px;
  height: 600px;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.close12 {
  cursor:pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 20px;
}

/*//////////////////////////////////////////////*/

.open13 {
  cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#pop-up13 {
  display: none; /* label でコントロールするので input は非表示に */
}
.overlay13 {
  display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up13:checked + .overlay13 {
  display: block;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.window13 {
  width: 200vw;
  max-width: 1000px;
  height: 600px;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.close13 {
  cursor:pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 20px;
}

/*//////////////////////////////////////////////*/
