@charset "UTF-8";
/*===============
top
===============*/

.key_title p {

    height: 50vh;
    white-space: pre-wrap;
    color: #fff;
    margin-top: 0;
    margin-bottom: 20%;
    margin-left: 7%;
    font-size: 10vw;
    line-height: 12vw;
    font-family: var(--font_sans);
    font-weight: lighter;
    text-align: left;
    letter-spacing: .5em;
    word-break: break-all;
    font-family: var(--font_sans);
    font-weight: lighter;
}

.TextTyping span:first-child {
    line-height: 0;
    font-size: 0;
    height: 0;
}




@media screen and (min-width:960px) {
    .key_title p {
        height: 60vh;
        margin-top: 0;
        font-size: 10vw;
        line-height: 7vw;
        transform: scale(0.8, 1);
        margin-left: 0;
    }

    .TextTyping {
        padding-top: 0;
    }

    .key_title p::first-line {
        line-height: 0;
    }

}





.fade-text,
.fade-text2,
.fade-text3 {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 300% 300%;
}

.fade-text.to__right,
.fade-text2.to__right2,
.fade-text3.to__right3 {
    background-image: linear-gradient(to right, #fff 30%, rgba(255, 255, 255, 0) 60%);
    background-position: left 100% center;
    transform: translate(-20px, 0);
    -webkit-animation: toRight var(--duration, 3.4s) var(--ease) var(--delay, 0.6s) forwards;
    animation: toRight var(--duration, 3.4s) var(--ease) var(--delay, 0.6s) forwards;
}

@keyframes toRight {
    100% {
        transform: translate(0, 0);
        background-position: left 0% center;
    }
}