@charset "UTF-8";

body{
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}
/*背景画像のレイアウト*/
#PC-back img { 
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}

/*ヘッダー*/
header{
    position: fixed;
    top: 0;
    left: 0;
    height: 200px;
    width: 100vw;

}
#rogo-top{
    position: absolute;
    top: 20px;
    left: 20px;
    animation-name: fadein ;
    animation-duration: 1s;
    animation-delay: 0s;
}
#rogo-top img{
    height: auto;
    width: 80px;
}

#damp-tittle{
    position: absolute;
    top: 70px;
    width: 300px;
    left: calc(50vw - 150px);
    animation-name: fadein ;
    animation-duration: 1.5s;
    animation-delay: 0s;
    text-align: center;
}
#damp-tittle img{
    height: auto;
    width: 300px;
    opacity: 0.7;
}

/*メインコンテンツ*/
.main-contener{
    position: absolute;
    top: 120px;
    width: 100vw;
    height: calc(100vh - 360px);
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.main-contener::-webkit-scrollbar{
    display: none;
}


#photo{
    position: absolute;
    top: 0px;
    width: 1000px;
    height: 650px;
    left: calc(50vw - 500px);
    text-align: center;
    animation-name: fadein ;
    animation-duration: 2.3s;
    animation-delay: 0s;
    overflow: hidden;
}
#photo img{
    height: 650px;
    width: 1000px;
    object-fit: cover;
}

#photo-menu{
    position: absolute;
    top: 650px;
    height: 200px;
    width: 100vw;
    animation-name: fadein ;
    animation-duration: 2.7s;
    animation-delay: 0s;
}

#photo1{
    position: absolute;
    top:0px;
    height: 150px;
    width: 200px;
    left: calc(50vw - 500px);
    background-color: rgb(127, 127, 127);
}
#photo1 img{
    object-fit: cover;
    height: 150px;
    width: 200px;
}

#photo2{
    position: absolute;
    top:0px;
    height: 150px;
    width: 200px;
    left: calc(50vw - 300px);
    background-color: rgb(127, 127, 127);
}
#photo2 img{
    object-fit: cover;
    height: 150px;
    width: 200px;
}


#photo3{
    position: absolute;
    top:0px;
    height: 150px;
    width: 200px;
    left: calc(50vw - 100px);
    background-color: rgb(127, 127, 127);
}
#photo3 img{
    object-fit: cover;
    height: 150px;
    width: 200px;
}

#photo4{
    position: absolute;
    top:0px;
    height: 150px;
    width: 200px;
    left: calc(50vw + 100px);
    background-color: rgb(127, 127, 127);
}
#photo4 img{
    object-fit: cover;
    height: 150px;
    width: 200px;
    opacity: 0.3;
}

#photo5{
    position: absolute;
    top:0px;
    height: 150px;
    width: 200px;
    left: calc(50vw + 300px);
    background-color: rgb(127, 127, 127);
}
#photo5 img{
    object-fit: cover;
    height: 150px;
    width: 200px;
}

/*next-back*/
#next-back{
    position: relative;
    width: 100vw;
    height: 100px;
    bottom: 255px;
    animation-name: fadein ;
    animation-duration: 2.9s;
    animation-delay: 0s;
}
#back{
    position: absolute;
    top: 35px;
    left: calc(50vw - 120px);
    width: 50px;
    height: auto;
}
#camera img{
    position: absolute;
    top: 20px;
    left: calc(50vw - 40px);
    width: 80px;
    height: auto;
    opacity: 0.7;
}
#next{
    position: absolute;
    top: 35px;
    left: calc(50vw + 85px);
    width: 50px;
    height: auto;
}


/*foot-menu*/
#foot-menu{
    position: fixed;
    bottom: 20px;
    width: 100vw;
    height: 100px;
}
#foot-box{
    position: relative;
    width: 800px;
    height: 100px;
    margin: 0 auto;
}
#to-X11 img{
    position: absolute;
    bottom: 10px;
    height: auto;
    width: 80px;
    left: 0px;
    animation: fadein 4s ,flash 2.5s 4.5s;
}
#to-damp img{
    position: absolute;
    bottom: 10px;
    height: auto;
    width: 80px;
    left: calc(25% - 20px);
    animation: fadein 4.3s ,flash 2.5s 4.65s;
}
#to-QA img{
    position: absolute;
    bottom: 10px;
    height: auto;
    width: 80px;
    left: calc(50% - 40px);
    animation: fadein 4.6s ,flash 2.5s 4.7s;
}
#to-mail img{
    position: absolute;
    bottom: 10px;
    height: auto;
    width: 80px;
    left: calc(75% - 60px);
    animation: fadein 4.9s ,flash 2.5s 4.75s;
}
#to-call img{
    position: absolute;
    bottom: 10px;
    height: auto;
    width: 80px;
    right: 0px;   
    animation: fadein 5.2s ,flash 2.5s 4.8s;
}
/*フッター設定*/
#footer{
    position: fixed;
    bottom: 2px;
    width: 100%;
    height: 20px;
    margin-bottom: 0px;
    font-size: 13px;
    color:#ffff;
    text-align: center;
    animation-name: fadein ;
    animation-duration: 1s;
    animation-delay: 0s;
    opacity: 0.8;
}

/*アニメーション*/
@keyframes fadein{
    0% {
        opacity:0.0;
    }
    50% {
        opacity:0.0;
    }
    100%{
        opacity:1.0;
    }
}

@keyframes flash{
    0% {
        opacity:0.0;
    }
    100%{
        opacity:1.0;
    }
}

/*ーーTABLLET　縦　ーー*/
@media (max-width: 895px){
    
    header{
        height: 75px;
    }
    #rogo-top{
        top: 15px;
        left: 15px;
    }
    #rogo-top img{
        width: 55px;
    }
    #damp-tittle img{
        width: 250px;
    }
    #damp-tittle{
        top: 45px;
    }
    .main-contener{
        top: 100px;
        height: calc(100svh - 280px);
    }
    #photo{
        top: 10px;
        width: 100vw;
        height: 65vw;
        left: 0;
    }
    #photo img{
        width: 100vw;
        height: 65vw;
        object-fit: cover;
    }
    #photo-menu{
        position: absolute;
        top: calc(65vw + 10px);
        height: 200px;
        width: 100vw;
        animation-name: fadein ;
        animation-duration: 2.7s;
        animation-delay: 0s;
    }
    #photo1{
        position: absolute;
        top: 0px;
        height: 15vw;
        width: 20vw;
        left: 0vw;   
    }
    #photo1 img{
        object-fit: cover;
        height: 15vw;
        width: 20vw;
    }
    #photo2{
        position: absolute;
        top: 0px;
        height: 15vw;
        width: 20vw;
        left: 20vw;
    }
    #photo2 img{
        object-fit: cover;
        top: 0px;
        height: 15vw;
        width: 20vw;
    }
    #photo3{
        position: absolute;
        top: 0px;
        height: 15vw;
        width: 20vw;
        left: 40vw;
    }
    #photo3 img{
        object-fit: cover;
        top: 0px;
        height: 15vw;
        width: 20vw;
    } 
    #photo4{
        position: absolute;
        top: 0px;
        height: 15vw;
        width: 20vw;
        left: 60vw;
    }
    #photo4 img{
        object-fit: cover;
        top: 0px;
        height: 15vw;
        width: 20vw;
    }
    #photo5{
        position: absolute;
        top: 0px;
        height: 15vw;
        width: 20vw;
        left: 80vw;
    }
    #photo5 img{
        object-fit: cover;
        top: 0px;
        height: 15vw;
        width: 20vw;
    }
    #next-back{
        bottom: 250px;
    }
    #back{
        top: 30px;
    }
    #back img{
        height: 30px;
        width: auto;
    }
    #camera img{
        position: absolute;
        top: 24px;
        left: calc(50vw - 25px);
        width: 50px;
    }
    #next{
        top: 30px;
    }
    #next img{
        height: 30px;
        width: auto;
    }
    #foot-menu{
        height: 70px;
    }
    #foot-box{
        width: 80vw;
        height: 70px;
    }
    #to-X11 img{
        bottom: 5px;
        width: 50px;
    }
    #to-damp img{
        bottom: 5px;
        width: 50px;
        left: calc(25% - 12.5px);
    }
    #to-QA img{
        bottom: 5px;
        width: 50px;
        left: calc(50% - 25px);
    }
    #to-mail img{
        bottom: 5px;
        width: 50px;
        left: calc(75% - 37.5px);
    }
    #to-call img{
        bottom: 5px;
        width: 50px;
    }
    #footer{
    bottom: -2px;
    font-size: 10px;
    }
}

/*ーーTABLLET　横　ーー*/
@media (max-width: 1180px) and (min-width: 896px){
    header{
    z-index: 10;
    }
    #damp-tittle{
        position: absolute;
        top: 70px;
        width: 300px;
        left: calc(50vw - 150px);
        animation-name: fadein ;
        animation-duration: 1.5s;
        animation-delay: 0s;
        text-align: center;
    }
    #damp-tittle img{
        display: none;
    }
    .main-contener{
        top: 0px;
        height: calc(100vh - 0px);
        z-index: 0;
        overflow: hidden;
    }
    #photo{
        top: -150px;
        width: 100vw;
        height: calc(100vh + 150px);
        left: 0;
    }
    #photo img{
        width: 100vw;
        height: calc(100vh + 150px);
    }
    #photo-menu{
        display: none;
    }
    #next-back{
        position: relative;
        width: 100vw;
        height: 100px;
        bottom: 60vh;
        animation-name: fadein ;
        animation-duration: 2.9s;
        animation-delay: 0s;
    }
    #back{
        position: absolute;
        top: 35px;
        left: 5vw;
        width: 60px;
        height: auto;
    }
    #camera img{
        display: none;
    }
    #next{
        position: absolute;
        top: 35px;
        left: 92vw;
        width: 60px;
        height: auto;
    }
    #foot-menu{
        position: fixed;
        bottom: 0px;
        width: 100vw;
        height: 90px;
        background-color: rgba(0, 0, 0, 0.456);
        animation-name: fadein ;
        animation-duration: 2.8s;
        animation-delay: 0s;
    }
    #foot-box{
        position: relative;
        width: 800px;
        height: 92px;
        margin: 0 auto;
    }
    #to-X11 img{
        width: 60px;
    }
    #to-damp img{
        width: 60px;
    }
    #to-QA img{
        width: 60px;
    }
    #to-mail img{
        width: 60px;
    }
    #to-call img{
        width: 60px;
    }
    #footer{
        display: none;
    }

}

/*--- SmartPhone   縦 ----*/
@media (max-width: 480px){

    #damp-tittle{
        top: 50px;
    }
    #damp-tittle img{
        width: 150px;
        left: calc(50vw - 75px);
    }

    .main-contener{
        top: 130px;
    }
    #next-back{
        position: absolute;
        width: 100vw;
        height: 200px;
        bottom: -55px;
    }
    #back{
        top: 10px;
        left: calc(50vw - 90px);
    }
    #back img{
        height: 25px;
        width: auto;
    }
    #camera img{
        position: absolute;
        top: 5px;
        left: calc(50vw - 20px);
        width: 40px;
    }
    #next{
        top: 10px;
        left: calc(50vw + 70px);
    }
    #next img{
        height: 25px;
        width: auto;
    }

    #foot-box{
        width: 90vw;
        height: 70px;
    }

}

/*----PC　高さ-----*/
@media (max-height: 250px){
        /*ヘッダー*/
        header{
            display: none;
            }
            #rogo-top{
            display: none;
            }
            #rogo-top img{
            display: none;
            }
            #damp-tittle img{
            display: none;
            }
            #damp-tittle{
            display: none;
            }
            #next{
            display: none;
            }
            #back{
            display: none;
            }

}

/*ーー Smart Phone　横　ーー*/
@media  screen and (max-height: 480px){
    header{
        display: inline;
        }
        #rogo-top{
            left: 35px;
            top: 20px;
        display: inline;
        }
        #rogo-top img{
        display: inline;
        }
        #damp-tittle{
            display: none;
        }
    .main-contener{
        top: 0px;
        height: 100vh;
        width: 100vw;
        overflow: hidden;
    }
    #photo{
        top: 0px;
        height: 100vh;
        width: 65vw;
        left: 17.5vw;
    }
    #photo img{
        width: 65vw;
        height: 100vh;
        left: 17.5vw;
        object-fit: cover;
    }
    #photo-menu{
        display: none;
    }
    #photo1{
        display: none;
    }
    #photo2{
        display: none;
    }
    #photo3{
        display: none;
    }
    #photo4{
        display: none;
    }
    #photo5{
        display: none;
    }
    #next-back{
        position: relative;
        width: 100vw;
        height: 100px;
        bottom: 60vh;
    }
    #back{
        position: absolute;
        top: 25px;
        left: 7vw;
        width: 30px;
        height: auto;
        display: inline;
    }
    #back img{
        width: 30px;
        height: auto;
    }
    #camera img{
        display: none;
    }
    #next{
        position: absolute;
        top: 25px;
        left: 88vw;
        width: 30px;
        height: auto;
        display: inline;
    }
    #next img{
        height: auto;
        width: 30px;
    }
    #footer{
        display: none;
    }
    #foot-menu{
        display: none;
    }
    #foot-box{
        display: none;
    }

}
