
@charset "UTF-8";

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

    #wp_tp

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

#wp_tp h2 {
    font-size: 120%;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.1em;
    color: #fff;
    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 {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#wp_tp section .inner .wp_scroll_arrow {
    width: 140px;
    height: 140px;
    position: absolute;
    right: 20px;
    bottom: 20px;
    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: flex-end;
    justify-content: center;
    position: absolute;
    top: 10vh;
    left: 10vw;
    height: 80vh;
    width: 80vw;
    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;
    position: fixed;
    bottom: -10vh;
    right: -10vw;
    color: #fff;
    mix-blend-mode: difference;
    background: #000;
    line-height: 1em;
}
#wp_tp section .bg .clip-text {
    overflow: hidden;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

