body.top {
    margin: 0;
    height: 100vh;
}

/* トップアニメーション挙動調整 */
.site-window {
    display: none;
}
.hidden{
    display: none;
}
.hide{
    display: none !important;
}
.block {
    display: block;
}

#showloading video,
video#main,
video#loop{
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    transition: 1s opacity;
}

#showloading video {
        z-index: -99;
}
.movie01, .movie02 {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    transition: 1s opacity;
}
.site-window02 {
    width: 100%;
    height: 100vh;
    margin: 0;
    position: relative;
    overflow: hidden;
}

/*---------------------------------
  背景
---------------------------------*/
.site-window {
    width: 100%;
    height: 100vh;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.top-inner {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-perspective: 300px;
            perspective: 300px;
}

/* アニメーション */
.mainvisual {
    margin: 0 0 40px 0;
    padding: 0;
/*    background: url('../images/top-background-dot.png');*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.mainvisual #mvanim {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.mainvisual #mvanim .layer {
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
}
.mainvisual #mvanim .layer .top-background {
/*    background: url('../images/top-background-anime.png');*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    bottom: 0;
    position: absolute;
    width: 120%;
    padding-top: 100vh;
    left: -8%;
    top: 0;
}

@media screen and (max-width: 767px) {
    .mainvisual {
        margin: 0;
    }

    .mainvisual #mvanim .layer .top-background {
        width: 100%;
    }

    .top-background {
        background: url('../images/top-background-sp.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
}

/*---------------------------------
  トップページコンテンツ
---------------------------------*/
.top-content {
    max-width: 100%;
    margin: 0 8%;
}

.top-logo {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* ロゴ */
.top-logo img {
    width: 380px;
    height: 100%;
}


@media only screen and (max-width : 767px) {
    .top-content {
        max-width: 100%;
        margin: 0;
    }

    /* ロゴ */
    .top-logo {
        margin-bottom: 105px;
    }

    .top-logo img {
        width: 300px;
        height: 139px;
    }
}

/*---------------------------------
  ハンバーガーメニュー・メール
---------------------------------*/
/* ハンバーガーメニュー */
.top-menu {
    bottom: 25px;
    margin: auto 4%;
    height: 3.2rem;
}

@media only screen and (max-width : 767px) {
    .top-menu {
        bottom: 0;
        margin: 20px 15px 0 0;
    }
}

/*---------------------------------
  お知らせ
---------------------------------*/
.news-feed-area {
    width: 100%;
    height: 60px;
    position: absolute;
    bottom: 0;
    background-color: #222;
    opacity: .9;
}

.news-feed-area .news {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 95%;
    height: 42%;
}

.news-feed-area .news time {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    font-weight: 500;
}

.news-feed-area .news time,
.news-feed-area .news a {
    color: #fff;
    font-size: 16px;
}

.news-feed-area .news span {
    margin-left: 30px;
}

@media screen and (max-width: 767px) {
    .news-feed-area {
        max-height: 130px;
        height: auto;
        line-height: 24px;
    }

    .news-feed-area .news {
        position: static;
        margin: 13px auto;
        width: 95%;
    }

    .news-feed-area .news a {
        margin-left: 0;
    }

    .news-feed-area .news time,
    .news-feed-area .news a {
        display: block;
    }

    .news-feed-area .news span {
        margin-left: 0;
    }
}

/* CSSアニメーションの指定 */
.news-feed-area {
    animation-name: fadein;
    animation-duration: 1.6s;
}
@keyframes fadein {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}