
/*==== 共通 ====*/
html, body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
header {
    display: block;
    position: absolute;
    z-index: 100;
    top: 0;
    width: 100vw;
    /* background: rgba(255,255,255, .6); */
}

header h1 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    padding: 5px 0;
    padding-left: 10px;
    margin: 0;
}
.logo {
    width: 180px;
    padding: 2vw;
}
.bg {
    position: absolute;
    z-index: -10;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.white_filter {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255, .3);
}
.dark_filter {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.65);
}
.container {
    position: absolute;
    z-index: 30;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}
.btn {
    margin-top: 35px;
    text-align: center;
}
.btn a {
    display: inline-block;
    text-decoration: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.5;
    padding: 10px 60px;
    color :black;
    background: white;
    cursor: pointer;
}
.btn a:hover {
    opacity: .85;
    transform: scale(.98);
}
.hidden {
    display: none;
}
/*フェードアップ*/
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    /* animation-delay: .3s; */
    animation-fill-mode: forwards;
    opacity: 0;
}
.delay0 {
    animation-delay: .3s;
}
.fadeUp.delay1 {
    animation-delay: .9s;
}
.fadeUp.delay2 {
    animation-delay: 1.1s;
}
@keyframes fadeUpAnime {
    0% {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
/*==== ウェルカムページ ====*/
#welcome_container {
    /* background-color: rgba(178, 255, 127, .5); */
    /* color: white; */
    color: black;
    font-weight: bold;
}
/* p.message {
    font-size: 7vw;
    margin: 0;
    padding: 3% 0;
    padding-top: 12%;
    color: white;
    text-shadow: 2px 2px 7px rgba(0,0,0,.6);
    letter-spacing: .1em;
} */
.welcome_contents {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
}
.message {
    /* width: 55%; */
    width: 700px;
    margin-bottom: 26px;
}
p#notion {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1024px) {
    .message {
        width: 55vw;
        min-width: 545px;
    }
    p#notion {
        font-size: 16px;
    }
}
@media screen and (max-width: 650px) {
    .logo {
        width: 160px;
    }
    .message {
        width: 75vw;
        min-width: 300px;
    }
    p#notion {
        font-size: 15px;
    }
    .btn a {
        padding: 8px 50px;
    }
}
@media screen and (max-width: 480px) {
    p#notion {
        text-align: justify;
    }
    .br_none {
        display: none;
    }
}
@media screen and (max-width: 350px) {
    .logo {
        width: 100px;
        padding: 3vw;
    }
    .message {
        min-width: 200px;
        margin-bottom: 10px;
    }
    p#notion {
        font-size: 14px;
    }
    .btn a {
        padding: 5px 43px;
    }
}

/*==== 顔認証画面 ====*/
#camera_container {
    position: relative;
    /* position: absolute;
    top: 0;
    left: 0; */
    /* background: #00c9ff;
    background: -webkit-linear-gradient(to left, #00c9ff, #92fe9d);
    background: linear-gradient(to left, #00c9ff, #92fe9d); */
    /* background: rgba(116, 235, 213, .7); 
    background: -webkit-linear-gradient(to top, rgb(116, 235, 213, .7), rgb(172, 182, 229, .7)); 
    background: linear-gradient(to top, rgb(116, 235, 213, .7), rgb(172, 182, 229, .7)); */
    /* background: rgb(64, 224, 208); 
    background: -webkit-linear-gradient(to left, rgb(255, 0, 128), rgb(255, 140, 0), rgb(64, 224, 208));  
    background: linear-gradient(to left, rgb(255, 0, 128), rgb(255, 140, 0), rgb(64, 224, 208));  */
    /* background: #de6161; 
    background: -webkit-linear-gradient(to right, #2657eb, #de6161);
    background: linear-gradient(to right, #2657eb, #de6161); */
    /* background: #C33764;
    background: -webkit-linear-gradient(to left, #1D2671, #C33764);
    background: linear-gradient(to left, #1D2671, #C33764); */
    /* background: #0e0b28;
    background: -webkit-linear-gradient(to left, #24243eb3, #302b63b3, #0f0c29b3);
    background: linear-gradient(to left, #24243eb3, #302b63b3, #0f0c29b3); */

}
.inner-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 100%;
}
#camera_container p {
    text-align: center;
    /* color: white; */
    color: white;
    /* padding-top: 10%; */
    margin: 0;
    margin-bottom: 25px;
}
.camera-box {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 375px;
    height: 375px;
    /* border: solid 3px white; */
    /* background: rgb(68, 68, 68); */
    background: rgb(230, 230, 230);
    overflow: hidden;
    transform: rotateY(180deg);
}
.camera-box#camera {
    width: 100%;
}
.camera-box img {
    position: absolute;
    height: 100%;
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
    opacity: .4;
}
@media screen and (max-width: 480px) {
    #camera_container .inner-box {
        transform: translate(-50%, -50%);
    }
    #camera_container .inner-box p {
        font-size: 15px;
        margin-bottom: 5px;
    }
    #camera_container .inner-box span {
        display: block;
    }
    #camera_container .inner-box .btn {
        margin-top: 25px;
    }
}
@media screen and (max-width: 400px) {
    .camera-box {
        width: 100%;
    }
}
@media screen and (max-width: 350px) {
    #camera_container .inner-box p {
        font-size: 14px;
    }
    .camera-box {
        height: 350px;
    }
    #camera_container .inner-box .btn {
        margin-top: 20px;
    }
}

/*==== 認証待ち画面 ====*/
#waiting_container {
    background: rgba(0,0,0,.65);
}
#waiting_container .center_contents {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 25px;
    color: white;
}
/*ポップアップ*/
.popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .6s;
}
.popup.is-show {
    opacity: 1;
    visibility: visible;
}
.popup-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    max-width: 600px;
    padding: 50px;
    background-color: #fff;
    z-index: 10;
    box-sizing: border-box;
}
.popup-inner p {
    text-align: center;
}
.close-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}
.btn.pop-choice {
    margin: 35px 0;
}
.btn.pop-choice a {
    color: white;
    background: black;
}
#input_name.btn a {
    padding: 10px 40px;
}
.black-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.8);
    z-index: 1;
}
@media screen and (max-width: 480px) {
    .popup-inner {
        padding: 8%;
    }
    #popup2 .popup-inner span {
        display: block;
    }
}
@media screen and (max-width: 350px) {
    .popup-inner {
        font-size: 15px;
    }
}
/*==== 名前入力画面 ====*/
/* #input_container {
    background: rgba(116, 235, 213, .7); 
    background: -webkit-linear-gradient(to top, rgb(116, 235, 213, .7), rgb(172, 182, 229, .7)); 
    background: linear-gradient(to top, rgb(116, 235, 213, .7), rgb(172, 182, 229, .7));
} */
#input_container .contents_area {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    max-width: 600px;
    padding: 50px;
    background-color: #fff;
    z-index: 10;
    box-sizing: border-box;
}
#input_container .contents_area input {
    padding: 10px;
    border-radius: 4px;
    border: solid 1px;
}
#input_container .contents_area span {
    font-weight: bold;
}
#input_container .contents_area .btn a {
    color: white;
    background: black;
}
@media screen and (max-width: 350px) {
    #input_container .contents_area {
        padding: 8%;
    }
}

/*==== 動画再生画面 ====*/
#movie_container p {
    color: white;
    margin: 0;
    position: absolute;
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
}
.video_wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    /* background: rgba(116, 235, 213, .7); 
    background: -webkit-linear-gradient(to top, rgb(116, 235, 213, .7), rgb(172, 182, 229, .7)); 
    background: linear-gradient(to top, rgb(116, 235, 213, .7), rgb(172, 182, 229, .7)); */
}
video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* min-width: 100%; */
    /* min-height: 100%; */
    max-width: 100%;
    cursor: pointer;
}