/*==================================================
  画面ポップアップ
==================================================*/

label#Figure_LABEL {
  display: inline-block;
  vertical-align: middle;
}

#ImageOverlay {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;

  box-sizing: border-box;
  padding: 100%;

  background: rgba(0, 0, 0, 0.85);

  color: #FFFFFF;
  font-size: 24px;
  line-height: 100%;

  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

IMG.ImageOverlay {
  display: block;

  max-width: 90vw;
  max-height: 90vh;
  margin: 10px auto 0;
  width: auto;
  height: auto;

}


/*==================================================
  ボタンの装飾
==================================================*/

label span:hover {
  cursor: pointer;
}

input[type="checkbox"] {
  display: none;
}


/*==================================================
  チェック時にポップアップを表示
==================================================*/

input[type="checkbox"]:checked + #ImageOverlay {
  display: block;
  transition: 0.2s;
}
