﻿/* ------------------------------------------------------------------------------- */
.container {
    position: center;
    margin: -4px 0px 0px 23px;
    width: max-content;
    border-bottom: 1px solid #fff;
}

.animate {
    font-size: 20px;
    font-family: "Times New Roman", 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho Pro", serif;
}

    .animate span {
        display: inline-block;
    }

        .animate span:nth-of-type(2) {
            animation-delay: .05s
        }

        .animate span:nth-of-type(3) {
            animation-delay: .1s;
        }

        .animate span:nth-of-type(4) {
            animation-delay: .15s;
        }

        .animate span:nth-of-type(5) {
            animation-delay: .2s;
        }

        .animate span:nth-of-type(6) {
            animation-delay: .25s;
        }

        .animate span:nth-of-type(7) {
            animation-delay: .3s;
        }

        .animate span:nth-of-type(8) {
            animation-delay: .35s;
        }

        .animate span:nth-of-type(9) {
            animation-delay: .4s;
        }

        .animate span:nth-of-type(10) {
            animation-delay: .45s;
        }

        .animate span:nth-of-type(11) {
            animation-delay: .5s;
        }

        .animate span:nth-of-type(12) {
            animation-delay: .55s;
        }

.top-wrapper-txt span {
    opacity: 0;
    transform: translate(-150px, 0) scale(.3);
    animation: leftRight .5s forwards;
    color: #fff;
    font-size: 0.8em;
    font-weight: 100;
    font-family: 'Roboto', sans-serif;
}


@keyframes leftRight {
    40% {
        transform: translate(50px, 0) scale(.8);
        opacity: 1;
        color: #111;
    }

    60% {
        color: #333;
    }

    80% {
        transform: translate(0) scale(3);
        opacity: 0;
    }

    100% {
        transform: translate(0) scale(1);
        opacity: 1;
    }
}

/* ------------------------------------------------------------------------------- */

.slide-in {
    font-size: 20px;
    animation: slideIn 1s ease-out;
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-weight: 100;
    color: #fff;
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-out {
    position: absolute;
    top: 75%;
    left: 5%;
    color: #666;
    background: -webkit-linear-gradient(left, #cccccc, #ffffff,#666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2em;
    font-weight: 100;
    opacity: 0; /* 初めは透明に設定 */
    transform: translateY(100%); /* 下からスライドするために位置を下に設定 */
    animation: fadeInFromBottom 1s forwards; /* フェードインアニメーションの設定 */
    font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro W3","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
}


@keyframes fadeInFromBottom {
    to {
        opacity: 1; /* アニメーション終了時に完全に表示 */
        transform: translateY(0); /* アニメーション終了時の位置 */
    }
}





.fade-in-text {
    position: absolute;
    top: 4%;
    right: 0px;
    color: #666;
    background: -webkit-linear-gradient(left, #111111, #ffffff,#222222);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3em;
    font-weight: 100;
    opacity: 0; /* 初めは透明に設定 */
    transform: translateY(100%); /* 下からスライドするために位置を下に設定 */
    animation: fadeInFromBottom 1s forwards; /* フェードインアニメーションの設定 */
    font-family: 'Roboto', sans-serif;
    writing-mode: vertical-rl; /* 縦に設定 */
}

@keyframes fadeInFromBottom {
    to {
        opacity: 1; /* アニメーション終了時に完全に表示 */
        transform: translateY(0); /* アニメーション終了時の位置 */
    }
}




.img-frame {
    position: relative;
    width: 90%;
    max-width: 500px;
    height: 450px;
    overflow: hidden;
    margin: 0px auto 0 auto;
    position: relative;
    z-index: auto;
}

.img-01, .img-02, .img-03 {
    position: absolute;
    top: 0;
    left: 10px;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}


    .img-01 img {
        width: 100%;
        animation: slide-animation-01 24s infinite;
    }

    .img-02 img {
        width: 100%;
        animation: slide-animation-02 24s infinite;
    }

    .img-03 img {
        width: 100%;
        animation: slide-animation-03 24s infinite;
    }


.img-04, .img-05, .img-06 {
    position: absolute;
    top: 80px;
    right: 10px;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}


    .img-04 img {
        width: 100%;
        animation: slide-animation-01 24s infinite;
    }

    .img-05 img {
        width: 100%;
        animation: slide-animation-02 24s infinite;
    }

    .img-06 img {
        width: 100%;
        animation: slide-animation-03 24s infinite;
    }

@keyframes slide-animation-01 {
    0% {
        opacity: 1;
        transform: scale(1.0);
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
        transform: scale(1.15);
    }

    90% {
        opacity: 0
    }

    100% {
        opacity: 1;
        transform: scale(1.0);
    }
}

@keyframes slide-animation-02 {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 0;
        transform: scale(1.1);
    }

    40% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    70% {
        opacity: 0;
        transform: scale(1.0);
    }

    100% {
        opacity: 0;
    }
}

@keyframes slide-animation-03 {
    0% {
        opacity: 0;
    }

    60% {
        opacity: 0;
        transform: scale(1.0);
    }

    70% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }


}
.slide-outpc {
    position: absolute;
    top: 45%;
    left: 5%;
    color: #666;
    background: -webkit-linear-gradient(left, #cccccc, #ffffff,#666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3em;
    font-weight: 100;
    opacity: 0; /* 初めは透明に設定 */
    transform: translateY(100%); /* 下からスライドするために位置を下に設定 */
    animation: fadeInFromBottom 1s forwards; /* フェードインアニメーションの設定 */
    font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro W3","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
}


@keyframes fadeInFromBottom {
    to {
        opacity: 1; /* アニメーション終了時に完全に表示 */
        transform: translateY(0); /* アニメーション終了時の位置 */
    }
}





.fade-in-textpc {
    position: absolute;
    top: 10%;
    left: 20%;
    color: #666;
    background: -webkit-linear-gradient(left, #111111, #ffffff,#222222);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3em;
    font-weight: 100;
    opacity: 0; /* 初めは透明に設定 */
    transform: translateY(100%); /* 下からスライドするために位置を下に設定 */
    animation: fadeInFromBottom 1s forwards; /* フェードインアニメーションの設定 */
    font-family: 'Roboto', sans-serif;
    writing-mode: vertical-rl; /* 縦に設定 */
}

@keyframes fadeInFromBottom {
    to {
        opacity: 1; /* アニメーション終了時に完全に表示 */
        transform: translateY(0); /* アニメーション終了時の位置 */
    }
}




.content {
    width: 100px;
    height: 150px;
    margin-right: 0px;
}

    .content img {
        width: 100%;
    }


.wrap {
    width: 100%;

    overflow: hidden;
    display: flex;
    align-items: center;
    height: auto;
    margin: 0px auto;
}



@-webkit-keyframes loop-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes loop-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* -------------------------------------------------- */
@media screen and (min-width: 960px) {
    /* -------------------------------------------------- */

    .slide-outpc {
        position: absolute;
        top: 45%;
        left: 5%;
        color: #666;
        background: -webkit-linear-gradient(left, #cccccc, #ffffff,#666666);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 3em;
        font-weight: 100;
        opacity: 0; /* 初めは透明に設定 */
        transform: translateY(100%); /* 下からスライドするために位置を下に設定 */
        animation: fadeInFromBottom 1s forwards; /* フェードインアニメーションの設定 */
        font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro W3","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
    }


    @keyframes fadeInFromBottom {
        to {
            opacity: 1; /* アニメーション終了時に完全に表示 */
            transform: translateY(0); /* アニメーション終了時の位置 */
        }
    }





    .fade-in-textpc {
        position: absolute;
        top: 10%;
        left: 20%;
        color: #666;
        background: -webkit-linear-gradient(left, #111111, #ffffff,#222222);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 3em;
        font-weight: 100;
        opacity: 0; /* 初めは透明に設定 */
        transform: translateY(100%); /* 下からスライドするために位置を下に設定 */
        animation: fadeInFromBottom 1s forwards; /* フェードインアニメーションの設定 */
        font-family: 'Roboto', sans-serif;
        writing-mode: vertical-rl; /* 縦に設定 */
    }

    @keyframes fadeInFromBottom {
        to {
            opacity: 1; /* アニメーション終了時に完全に表示 */
            transform: translateY(0); /* アニメーション終了時の位置 */
        }
    }




    .content {
        width: 300px;
        height: 450px;
        margin-right: 10px;
    }

        .content img {
            width: 100%;
        }


    .wrap {
        width: 100%;

        overflow: hidden;
        display: flex;
        align-items: center;
        height: auto;
        margin: 0px 0px auto auto;
    }



    @-webkit-keyframes loop-slide {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-100%);
        }
    }

    @keyframes loop-slide {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-100%);
        }
    }






}
