﻿/*--------------------------------------------------
  顔写真アップロードポップアップ
--------------------------------------------------*/
.face-popup-picture-image-no-border {
    height: 200px;
    width: 170px;
}

/*--------------------------------------------------
  顔写真撮影カメラ
--------------------------------------------------*/
/* 撮影ボタン位置調整 */
.center-bottom {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 20px;
}

/* カメラの表示コンテナ */
#camera-container {
    position: relative;
    width: 100%;
    height: 100%;
    margin: auto;
}

/* カメラ映像 */
video, canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* カメラ枠 */
.camera-frame {
    top: 0px;
    left: 0px;
    width: 0px;
    height: 0px;
    position: absolute;
    padding: 0em 0em;
}

/* カメラ枠線 */
#camera-frame-border {
    position: absolute;
    border: 3px solid aqua;
    padding: 0em 0em;
    border-radius: 50%;
}