/* QRモーダル背景 */
.qr-modal{
  display:none;
  position:fixed;
  z-index:9999;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.8);
  justify-content:center;
  align-items:center;
}

/* モーダル画像 */
.qr-modal-img{
  max-width:450px;
  max-height:450px;
}

/* 閉じるボタン */
.qr-close{
  position:absolute;
  top:30px;
  right:40px;
  color:white;
  font-size:40px;
  cursor:pointer;
}