body {
    height: 100vh; /* 古いブラウザ用 */
    height: -webkit-fill-available; /* Safari用フォールバック */
    height: 100dvh; /* 新しいブラウザ用 */
    margin: 0;
    width: 100dvw;
    background-color: white;
    transition: background-color 0.3s ease, color 0.3s ease, opacity 0.5s ease;
}

.titleWrap{
    position:relative;
    display:flex;
    top:0;
    width:100%;
    height:30dvh;
    align-items: center;
    flex-direction: column;
}

.icon-title{
    display: flex;
    width: 100%;
    margin-top:0;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 60%
}

#icon {

    height: 80%;
}

#title{

    display:flex;

    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 3.5rem;
    align-items: center;

    margin:0;
    height:4rem;


    text-shadow: inherit;



}
#subTitle{

    font-family: "Jost";
    font-weight: 900;
    font-size: 1.5rem;
    margin-top:0;
    text-shadow: inherit;
    flex-direction: column;


}

.pickerWrap{

    display: flex;
    position: relative;
    top: 0;
    width:100%;
    height:50dvh;
    justify-content: center;

}

#picker{

    display: flex;
    position: relative;
    margin-top: 0;
}

#pickerRing{
    
    position: absolute;
    margin-top:0;
    border-radius: 50%;
    box-shadow: 0 0 10px #00000080;
    z-index: -1;
    background-color: black;
    transition: background-color 0.3s ease;
}   

#pickerBar{

    position: absolute;
    width: 100%;
    height: 38px;
    top: 0px;
    border-radius: 19px;
    box-shadow: 0 0 10px #00000080;
    z-index: -1;
    background-color: black;
    transition: background-color 0.3s ease;
}

.bottomWrap{

    position: relative;
    width:100%;
    height:20dvh;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    display: flex;
    touch-action: none;

}

.bottomBar{

    position:fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    bottom:0;
    width:100vw;
    height: 10dvh;

    font-family: 'Jost';
    font-weight: 900;
    font-size: 3rem;
    font-kerning: none;
    
    transform: translateY(10vh);
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;

    box-shadow: 0 0 10px #00000080;
    z-index:0;
  
}


#swipeHint{

    font-family: 'Cal Sans';
    font-weight: 900;
    font-size: 3rem;

    

    position:absolute;
    
    transition: color 0.3s ease;
}

#hintText{

    position: absolute;
    margin-top:0;
    font-family: 'Noto Sans JP';
    font-weight: 900;
    font-size: 1rem;
    z-index:-1;
    
    
}

@keyframes swipeHintSlide{

    0%{
        transform: translateX(90vw);
        letter-spacing: 3rem;
        opacity: 1;
        
    }

    70%{
        transform: translateX(35vw);
        letter-spacing: -0.8rem;
        opacity: 1;
    }

    99%{
        transform: translateX(-75vw);
        letter-spacing: 3rem;
        opacity: 0;
    }

    100%{
        transform: translateX(-75vw);
        letter-spacing: -2rem;
        opacity: 0;

    }


}

#hexDisplay{

    transition: background-color 0.3s ease, color 0.3s ease;

    
}