/* 撮影処理使用 */
#still {
    display: none;
}

#result {
    display: none;
}

/* 撮影処理仕様・編集可・id指定の削除不可*/
#camera {
    position: absolute;
    max-width: 100%;
}

#frame {
    position: absolute;
    z-index: 20;
}

/* レスポンシブ対応・余白＆縦横幅の変更に関する編集は要相談 */
.frame-outer {
    height: 100%;
}

.frame-inner {
    position: relative;
    height: 0;
    padding-bottom: 133.333%;
    width: 100%;
    max-width: 100%;

    /* 2:3の端末制御用ですが実機検証がまだのため変更の可能性があります */
    max-height: 70%;
    min-width: 80%;
}

.frame {
    text-align: center;
    height: 100%;
    width: 100%;
}

.frame-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

/* 結果画面 */
#dialog-outer {
    /* 撮影処理使用 */
    display: none;

    /* 仮置き */
    position: absolute;
    z-index: 100;
    text-align: center;
    width: 100%;
    height: 100%;
}

/* nowloading */
#dialog-result {
    /* 撮影処理使用 */
    display: none;
    z-index: 100;
}

/* nowloading */
#dialog-nowloading {
    /* 撮影処理使用 */
    display: none;
    /* 仮置き */
    position: absolute;
    text-align: center;
    z-index: 100;
    padding-top: 80px;
    width: 100%;
    height: 80vh;
}

#stillFrame {
    display: none;
}

/* 以降仮置き・自由に編集可 */
/* エラーテキスト */
#error-text {
    position: absolute;
    display: none;
    z-index: -10;
    text-align: left;
    padding: 24px;
}

/* 結果画像 */
#result-img {
    width: 55vh;
    max-width: 85%;
    max-height: 80%;
    min-width: 80%;
    box-shadow: 0 2px 12px 0 rgb(0 0 0 / 40%);
    margin-top: 1.4em;
}

/* 全体 */
#contents {
    touch-action: manipulation;
}
body {
    margin: 0;
}

/* デザイン */
.photo-btn {
    display: flex;
    justify-content: space-between;
    z-index: 30;
    padding: 0 3vw 2vh 3vw;
    align-items: center;
}

.btn-small img {
    width: 11vh;
    height: 11vh;
}

.btn-shutter img {
    height: 14vh;
    width: 14vh;
}

.btn-fixing {
    width: 100%;
    text-align: center;
    z-index: 30;
    position: absolute;
    bottom: 0;
}
.dialog-result-area {
    color: #707070;
    text-align: center;
    background:#FFF;
    padding-bottom: 1.2em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 100;
}

.dialog-result-close {
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    line-height: 0.7em;
    padding: 16px;
    background: #FFFFFF;
    border: 1px solid #707070;
    color: #707070;
    margin: 8px 7% 0;
    border-radius: 4px;
}

.dialog-result-text {
    text-align: center;
    font-size: 0.9em;
    font-weight: bold;
    color: #707070;
    padding-top: 8px;
}
.attention-area {
    font-size: 13px;
}
.attention-text{
    padding-bottom: 8px;
}
.attention-subtext{
    padding-left: 12px;
}
.modalBg {
    width: 100%;
    height: 100%;
    background-color: #1e1e1ebd;
    position: absolute;
}