@charset "UTF-8";
[lang="en"] #top-page #top-include01 #title .enT .title.on img {
    transition: all 1s ease 1s;
}

[lang="en"] #top-page #top-include01 #title .enT .title {
    bottom: 130px;
}

@media (max-width: 500px) {
    [lang="en"] #top-page #top-include01 #title .nT .title {
        margin-top: 0px;
    }
    #top-page #top-include01 #title .title {
        top: 90px;
        bottom: auto;
    }
    #top-page #top-include01 #title .logo {
        bottom: 180px;
    }
}
#top-include01 {
    max-height: 100vh;
 .hero__ArrowV1{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: "TTCommonsPro-Db";
    position: absolute;
    font-weight: 600;
    font-size: 11px;
    color: #fff;
    bottom: unset;
    left: 50%;
    transform: translate(-50%, -86px);
    z-index: 100;
}
.hero__ArrowV1 img{
    animation: boundAnime 1s ease-in-out infinite alternate;
}
}
@media screen and (max-width: 769px) {
    #top-include01 {
        .hero__ArrowV1{
            bottom: unset;
            transform: translate(-50%, -165px);
        }
        .scroll{
            position: absolute;
            z-index: 3;
            left: calc(100% - 20px);
            bottom: 160px;
            transform: rotate(90deg);
            transform-origin: left top;
        }
    }
}

@keyframes boundAnime {
    0% {
        transform: translateY(0); /* 初期位置 */
    }
    100% {
        transform: translateY(-10px); /* 上に20px移動 */
    }
}