
@charset "UTF-8";

/*====================================

    #wp_tp

====================================*/

#wp_tp h2 {
    font-size: clamp(1rem, 5vw, 5rem);
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.1em;
    margin-right: -0.1em;
    color: #fff;
    width: 90vw;
    max-width: 1200px;
    mix-blend-mode: difference;
    font-family: "Cormorant Garamond", serif;
}
#wp_tp section {
    height: 100%;
    width: 100%;
    top: 0;
    position: fixed;
    visibility: hidden;
}
#wp_tp section .outer  {
    width: 100%;
    height: 100%;
    overflow-y: hidden;
}
#wp_tp section .outer .inner {
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    position: relative;
}
#wp_tp section .inner .movie {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    zoom:1;
}
#wp_tp section .inner .movie video {
    width: 100%;
    height: 100%;
}
#wp_tp section .inner .wp_scroll_arrow {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 14px;
    bottom: 14px;
    background: url(../images/scroll_arrow.svg);
    mix-blend-mode: difference;
}
#wp_tp section .inner .wp_scroll_arrow img {
    animation: rotate 30s linear infinite;
}
#wp_tp section .outer .inner .bg {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 5vh;
    left: 5vw;
    height: 90vh;
    width: 90vw;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0px 0px 10px rgba(255,255,255,.3));
}
#wp_tp section .bg h2 {
    z-index: 2;
}
#wp_tp section .bg .clip-text {
    overflow: hidden;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

