@charset "UTF-8";
.loading {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    font-size: 0;
}

.loading.reversed li {
    border: 3px solid white;
    -webkit-animation: LOADINGREV 2s infinite;
            animation: LOADINGREV 2s infinite;
}
.loading.reversed li:nth-child(1n) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}
.loading.reversed li:nth-child(2n) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
}
.loading.reversed li:nth-child(3n) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
}
.loading li {
    height: 0;
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    margin: 0;
    height: 30px;
    width: 30px;
    border-radius: 100%;
    transform: transformZ(0);
    -webkit-animation: LOADING 2s infinite;
            animation: LOADING 2s infinite;
}
.loading li:nth-child(1n) {
    left: -40px;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}
.loading li:nth-child(2n) {
    left: 0;
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
}
.loading li:nth-child(3n) {
    left: 40px;
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
}

.grid-row:after {
    content: "";
    display: table;
    clear: both;
}
.grid-row .col {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
}
.grid-row .col + .col {
    background: #2b8ccd;
    left: auto;
    right: 0;
}

@-webkit-keyframes LOADING {
    0% {
        transform: scale(0.5);
        background: #2b8ccd;
    }
    50% {
        transform: scale(1);
        background: white;
    }
    100% {
        transform: scale(0.5);
        background: #2b8ccd;
    }
}

@keyframes LOADING {
    0% {
        transform: scale(0.5);
        background: #2b8ccd;
    }
    50% {
        transform: scale(1);
        background: white;
    }
    100% {
        transform: scale(0.5);
        background: #2b8ccd;
    }
}
@-webkit-keyframes LOADINGREV {
    0% {
        transform: scale(0.5);
        background: white;
    }
    50% {
        transform: scale(1);
        background: #2b8ccd;
    }
    100% {
        transform: scale(0.5);
        background: white;
    }
}
@keyframes LOADINGREV {
    0% {
        transform: scale(0.5);
        background: white;
    }
    50% {
        transform: scale(1);
        background: #2b8ccd;
    }
    100% {
        transform: scale(0.5);
        background: white;
    }
}

.m-left {
    margin-left: 10px;
}
.outer{
    position: relative;
    height: 500px;
}

.outline_style{
    outline: solid;
    outline-color: #dc3545;
    outline-width: 2px;
}

.inner{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 80%;
    height: 3.2rem;
}

.shot_img_position {
    width: 300px;
    position: fixed;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
}

.qrcode_position {
    width: 300px;
    position: fixed;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
}


.cancel_btn {
    position: fixed;
    top: 3%;
    left: 90%;
    transform: translateX(-50%);
}


.camera_icon_btn {
    width: 60px;
    height: 60px;
    position: relative;
    padding: 0.8rem 0.8rem;
    text-align: center;
    letter-spacing: 1px;
    border-radius: 100vh;
    outline: none;
    border: none;
    background-image: linear-gradient(90deg, #0061b2, #209bdd, #92cced);
    box-shadow: 0 10px 10px rgba(0,0,0,0.3);
}

.sampleT{
    display: inline-block;
    width:20%;
    height:60px;
    margin: auto;
}

.scope_mark {
    width: 65%;
    margin: auto;
}

.z-parent {
    position: relative;
    margin: auto;
    /* margin-top: 2rem; */
}

.z-one, .z-two, .z-three {
    position: absolute;
}

.z-one {
    z-index: 10;
    top: 10%!important;
    /* left: 10%; */
    object-fit: none;
}

.z-two {
    z-index: 20;
    /* top: 10%;
    left: 10%; */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.z-three {
    z-index: 30;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.mt-c {
    margin-top: 25rem;
}

.instruction_position {
    /* height: 45px; */
    position: fixed;
    top: 65%;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    margin: 1rem, 1rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 2vh;
    outline: none;
    border: none;
    /* z-index: 1; */
    transform:translate3d(0,0,1);
}


/* .face_seethrough {
    position: relative;
    height: 300px;
    background: linear-gradient(to left, transparent 0%, transparent 10%, #fff 100%), url(../img/face.png);
    background: linear-gradient(to left, rgba(255,255,255,0), #fff 70%), url(../img/face.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
    transform:translate3d(0,0,-1);
    animation: fadeIn 1.5s ease-in 0s 1 normal;
} */

.face_position {
    position: fixed;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
    z-index: -1;
    transform:translate3d(0,0,-1);
    animation: fadeIn 0.7s ease-in 0s 1 normal;
}

.startpage_logo_position {
    position: fixed;
    width: 80%;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    transform:translate3d(0,0,-1);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        /* transform: translateY(-30px) translateX(-50%); */
    }
    100% {
        opacity: 0.6;
        /* transform: translateY(0) translateX(-50%); */
    }
}

.fadeup {
    animation-name: fadeup;
    animation-duration: 1.0s;
    /* animation-iteration-count: infinite; */
}
@keyframes fadeup {
    from {
        opacity: 0;
        transform: translateY(30px) translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
}

#particles-js{
	position:fixed;/*描画固定*/
	z-index:-99;/*描画を一番下に*/
    transform:translate3d(0,0,-99);
	width: 100%;
	height: 100%;
	/* background-color:#9b00e3; */
    /* background: linear-gradient(to bottom, transparent 0%, transparent 70%, #fff 100%), url(../img/face.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; */
}

#wrapper_particles{
	position: relative;/*描画を#particles-jsよりも上にするためposition:relative;を指定*/
	z-index: -2;/*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
    transform:translate3d(0,0,-2);
	width:100%;
	height: 100%;
}

.position_wrapper{
    width: 100%;
    /* position: fixed;
    top: 25%; */
    margin-top: 3rem;
}

.fs-c {
    font-size: calc(2.00rem + 1.2vw) !important;
}

.btn_style {
    width: 300px;
    position: fixed;
    top: 75%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: 600;
    /* line-height: 1.5; */
    /* position: relative; */
    display: inline-block;
    margin: 1rem, 1rem;
    padding: 0.8rem 0.8rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 100vh;
    outline: none;
    border: none;
    background-color: #0061b2;
    /* background-image: linear-gradient(90deg, #0061b2, #209bdd, #92cced); */
    /* box-shadow: 0 10px 10px rgba(0,0,0,0.3); */
    z-index: 1;
    transform:translate3d(0,0,1);
}

.base_bg_color {
    background-color: #0061b2;
}

.base_btn {
    height: 50px;
    /* position: fixed;
    top: 85%;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block; */
    margin: 1rem, 1rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 2vh;
    outline: none;
    border: none;
    z-index: 1;
    transform:translate3d(0,0,1);
}

.btn_reshoot {
    height: 48px;
    position: fixed;
    top: 75%;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    margin: 1rem, 1rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 2vh;
    outline: none;
    border: none;
    z-index: 1;
    transform:translate3d(0,0,1);
}

.btn_retake {
    width: 300px;
    position: fixed;
    top: 82%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: 600;
    /* line-height: 1.5; */
    /* position: relative; */
    display: inline-block;
    margin: 1rem, 1rem;
    padding: 0.8rem 0.8rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 100vh;
    outline: none;
    border: none;
    background-image: linear-gradient(90deg, #0061b2, #209bdd, #92cced);
    box-shadow: 0 10px 10px rgba(0,0,0,0.3);
    z-index: 1;
    transform:translate3d(0,0,1);
}

.btn_submit {
    width: 300px;
    position: fixed;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: 600;
    /* line-height: 1.5; */
    /* position: relative; */
    display: inline-block;
    margin: 1rem, 1rem;
    padding: 0.8rem 0.8rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 100vh;
    outline: none;
    border: none;
    background-image: linear-gradient(190deg, #0061b2, #209bdd, #92cced);
    box-shadow: 0 10px 10px rgba(0,0,0,0.3);
    z-index: 1;
    transform:translate3d(0,0,1);
}

.btn_close {
    width: 300px;
    position: fixed;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: 600;
    /* line-height: 1.5; */
    /* position: relative; */
    display: inline-block;
    margin: 1rem, 1rem;
    padding: 0.8rem 0.8rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 100vh;
    outline: none;
    border: none;
    background-image: linear-gradient(190deg, #0061b2, #209bdd, #92cced);
    box-shadow: 0 10px 10px rgba(0,0,0,0.3);
    z-index: 1;
    transform:translate3d(0,0,1);
}

.btn_camera {
    /* width: 300px; */
    position: fixed;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: 600;
    /* line-height: 1.5; */
    /* position: relative; */
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 100vh;
    outline: none;
    border: none;
    /* background-image: linear-gradient(90deg, #0061b2, #209bdd, #92cced);
    box-shadow: 0 10px 10px rgba(0,0,0,0.3); */
    z-index: 1;
    transform:translate3d(0,0,1);
}

.header-position {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    /* z-index: 1000; */
}

.header-position-abso {
    position: absolute;
    top: 5rem !important;
    z-index: 1000;
}


/* ----------- iPhone 5, 5S, 5C and 5SE ----------- */
/* Portrait and Landscape */
@media only screen
    and (min-device-width: 320px)
    and (max-device-width: 568px)
    and (-webkit-min-device-pixel-ratio: 2) {
        .h-adjust {
            height: 568px;
        }
}

/* ----------- iPhone 6, 6S, 7 8 and SE2 ----------- */
/* Portrait and Landscape */
@media only screen
    and (min-device-width: 375px)
    and (max-device-width: 667px)
    and (-webkit-min-device-pixel-ratio: 2) {
        .h-adjust {
            height: 667px;
        }
}

/* ----------- iPhone 6+, 7+ and 8+ ----------- */
/* Portrait and Landscape */
@media only screen
    and (min-device-width: 414px)
    and (max-device-width: 736px)
    and (-webkit-min-device-pixel-ratio: 3) {
        .h-adjust {
            height: 736px;
        }
}

/* ----------- iPhone X, 11pro ----------- */
/* Portrait and Landscape */
@media only screen
    and (min-device-width: 375px)
    and (max-device-width: 812px)
    and (-webkit-min-device-pixel-ratio: 3) {
        .h-adjust {
            max-height: calc(812px - 140px);
        }
}

/* ----------- iPhone 11, XR ----------- */
/* Portrait and Landscape */
@media only screen
    and (min-device-width: 414px)
    and (max-device-width: 896px)
    and (-webkit-min-device-pixel-ratio: 2) {
        .h-adjust {
            max-height: calc(896px - 140px);
        }
}

/* ----------- iPhone 12, 12 Pro ----------- */
/* Portrait and Landscape */
@media only screen
    and (min-device-width: 390px)
    and (max-device-width: 844px)
    and (-webkit-min-device-pixel-ratio: 3) {
        .h-adjust {
            max-height: calc(844px - 140px);
        }
}

/* ----------- iPhone 12 Mini, 13 Mini ----------- */
/* Portrait and Landscape */
@media only screen
    and (min-device-width: 375px)
    and (max-device-width: 812px)
    and (-webkit-min-device-pixel-ratio: 2.88) {
        .h-adjust {
            max-height: calc(780px - 140px);
        }
}

/* ----------- iPad 1, 2, Mini and Air ----------- */
/* Portrait and Landscape */
/* @media only screen
    and (min-device-width: 768px)
    and (max-device-width: 1024px)
    and (-webkit-min-device-pixel-ratio: 1) {
} */

/* ----------- iPad 3, 4 and Pro 9.7" ----------- */
/* Portrait and Landscape */
/* @media only screen
    and (min-device-width: 768px)
    and (max-device-width: 1024px)
    and (-webkit-min-device-pixel-ratio: 2) {
} */

/* ----------- iPad Pro 10.5" ----------- */
/* Portrait and Landscape */
/* @media only screen
    and (min-device-width: 834px)
    and (max-device-width: 1112px)
    and (-webkit-min-device-pixel-ratio: 2) {
} */

/* ----------- iPad Pro 12.9" ----------- */
/* Portrait and Landscape */
/* @media only screen
    and (min-device-width: 1024px)
    and (max-device-width: 1366px)
    and (-webkit-min-device-pixel-ratio: 2) {
} */