@charset "UTF-8";
/* ============================================================
   qr.css — 二次元コード読み取りカメラ モーダル
   スペシャルプロモーション（駅広告）の特別メッセージ用
   参考: view/event/imp/css/qr.css
   ============================================================ */
.cameraModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.78);
}

#qrCodeScannerModal .modal-content {
    background-color: transparent;
    margin: 5% auto;
    padding: 20px;
    width: 94%;
    height: 80%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-content h1 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
    font-weight: 900;
    line-height: 1.4;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.modal-content .close {
    color: #fff;
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 38px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.modal-content .close:hover,
.modal-content .close:focus {
    color: #fff;
    text-decoration: none;
}

#qr-video {
    width: 100%;
    height: calc(100% - 80px);
    object-fit: cover;
    border-radius: 16px;
}

#qr-canvas {
    display: none;
}
