/* Scss Document */
/* Font Size デザインカンプ　750/psd:1366px/break:1920px/
--------------------------------------------------------- */
/* VWはSPのみ利用
--------------------------------------------------------- */
/* % only
--------------------------------------------------------- */
/*
--------------------------------------------------------- */
.l-st-link {
    display: block;
    padding: 0 0 5px;
    text-decoration: none;
}

.l-st-link::after {
    border-bottom: solid 1px #FFF;
    bottom: 0;
    content: "";
    display: block;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    width: 0;
}

.l-st-link:hover::after {
    width: 100%;
}

.l-st-link-bk {
    display: block;
    padding: 0 0 5px;
    text-decoration: none;
}

.l-st-link-bk::after {
    border-bottom: solid 1px #000;
    bottom: 0;
    content: "";
    display: block;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    width: 0;
}

.l-st-link-bk:hover::after {
    width: 100%;
}

.z-img {
    width: 100%;
    overflow: hidden;
}

.z-img img {
    transition: 1s all;
}

.z-img img:hover {
    transform: scale(1.2, 1.2);
    transition: 1s all;
}

.Headline {
    animation: SlideIn 1.6s;
}

@keyframes SlideIn {
    0% {
        opacity: 0;
        transform: translateY(64px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.l-sld-img {
    animation: l-sld-img 1.6s;
}

@keyframes l-sld-img {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 左から */
.fadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mv-zm {
    display: block;
    overflow: hidden;
}

.mv-zm img {
    width: 100%;
    height: auto;
    animation: animationZoom1 5s ease-in-out forwards;
}

@keyframes animationZoom1 {
    100% {
        transform: scale(1.1);
    }
}

.text-in {
    opacity: 0;
    animation: text-in 4s ease forwards;
}

@keyframes text-in {
    100% {
        opacity: 1;
    }
}

/*以下遅延の指定*/
.txt01 {
    animation-delay: 1s;
}

.txt02 {
    animation-delay: 2s;
}

.txt03 {
    animation-delay: 3s;
}

.txt04 {
    animation-delay: 4s;
}

.txt05 {
    animation-delay: 5s;
}

.txt06 {
    animation-delay: 6s;
}

.txt07 {
    animation-delay: 7s;
}

/*------------------ scroll ------------------*/
.h-kv__txt_scroll {
    display: none;
    position: absolute;
    bottom: 61px;
    right: -30px;
    transform: rotate(90deg);
    letter-spacing: 0.1em;
    z-index: 1;
    box-sizing: border-box;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
    .h-kv__txt_scroll {
        bottom: 12vw;
        right: -8vw;
    }
}

.h-kv__txt_scroll a {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.15em;
    box-sizing: border-box;
}

.h-kv__txt_scroll a:hover {
    text-decoration: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: inline-block;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
    .h-kv__txt_scroll a {
        font-size: 2.666vw;
    }
}

.h-kv__txt_scroll span {
    display: inline-block;
    width: 70px;
    height: 1em;
    margin-left: 18px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
    .h-kv__txt_scroll span {
        width: 15.466vw;
        margin-left: 1.333vw;
    }
}

.h-kv__txt_scroll span::after {
    content: "";
    display: block;
    background: #fff;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 60%;
    left: 0;
}

.h-kv__txt_scroll span::before {
    content: "";
    display: block;
    background: #5c6161;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 60%;
    left: 0;
}

.h-kv__txt_scroll span.h-scroll_ani::after {
    animation-name: scroll_ani;
    animation-fill-mode: backwards;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-delay: 0s;
}

@keyframes scroll_ani {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/*---------------------*/
/*スクロールダウン全体の場所*/
.scroll-H {
    color: #FFF;
    position: absolute;
    right: 10;
    bottom: 0;
    /*全体の高さ*/
    height: 100px;
}

/*Scrollテキストの描写*/
.scroll-H span {
    /*描画位置*/
    position: absolute;
    left: -15px;
    top: -15px;
    /*テキストの形状*/
    color: #FFF;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

/* 線の描写 */
.scroll-H::after {
    content: "";
    /*描画位置*/
    position: absolute;
    top: 0;
    /*線の形状*/
    width: 1px;
    height: 30px;
    background: #FFF;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
    0% {
        height: 0;
        top: 0;
        opacity: 0;
    }

    30% {
        height: 30px;
        opacity: 1;
    }

    100% {
        height: 0;
        top: 50px;
        opacity: 0;
    }
}

/*-----------------------------------------*/
.h-slider li {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    margin: 0;
}

/********* sp *********/
@media only screen and (max-width:750px) {
    .h-slider li {
        height: 147.466vw
    }
}

/*.li--slide01 {
  background-image: url("../image/01.jpg");
}

@media (max-width: 750px) {
  .li--slide01 {
    background-image: url("../image/011.jpg");
  }
}

.li--slide02 {
  background-image: url("../image/02.jpg");
}

@media (max-width: 750px) {
  .li--slide02 {
    background-image: url("../image/021.jpg");
  }
}

.li--slide03 {
  background-image: url("../image/03.jpg");
}

@media (max-width: 750px) {
  .li--slide03 {
    background-image: url("../image/031.jpg");
  }
}

.li--slide04 {
  background-image: url("../image/04.jpg");
}

@media (max-width: 750px) {
  .li--slide04 {
    background-image: url("../image/041.jpg");
  }
}

.li--slide05 {
  background-image: url("../image/05.jpg");
}

@media (max-width: 750px) {
  .li--slide05 {
    background-image: url("../image/051.jpg");
  }
}

.li--slide06 {
  background-image: url("../image/06.jpg");
}

@media (max-width: 750px) {
  .li--slide06 {
    background-image: url("../image/061.jpg");
  }
}

.li--slide07 {
  background-image: url("../image/07.jpg");
}

@media (max-width: 750px) {
  .li--slide07 {
    background-image: url("../image/071.jpg");
  }
}*/

.h-slider {
    position: relative;
    z-index: 1;
    /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
    height: 100vh;
    /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

/********* sp *********/
@media only screen and (max-width:750px) {
    .h-slider {
        position: relative;
        z-index: 1;
        height: 147.466vw;
    }
}

.h-slider img {
    transform-origin: center top;
    transform: scale(1.1);
    transition: 5s ease-in;
}

.h-slider .slick-active img {
    transform: scale(1.1);
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@-webkit-keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.slick-slide.moving {
    animation: 11s zoomIn;
}


/* 下からフェードイン */
.-fade_bottom {
    opacity: 0;
    transform: translateY(40px);
}

/********* sp *********/
@media only screen and (max-width:750px) {
    .-fade_bottom {
        opacity: 0;
        transform: translateY(20px);
    }
}

.-fade_bottom__in {
    transition: 1.5s ease-in-out;
    transform: translateY(0px);
    opacity: 1;
}


/* 右からフェードイン */
.-fade_right {
    transform: translateX(30px);
    opacity: 0;
}

/********* sp *********/
@media only screen and (max-width:750px) {
    .-fade_right {
        transform: translateX(15px);
    }
}

.-fade_right__in {
    transition: 1.5s ease-in-out;
    transform: translateX(0px);
    opacity: 1;
}


/* ヘッダーフェードイン */
.l-header__logo.-hide,
.fj-nav--btn.-hide {
    transition: 1s ease-in-out;
    opacity: 0;
    margin-top: -30px;
}



.pc_item {
    display: block;
}

.sp_item {
    display: none;
}

@media screen and (max-width:991px) {
    .pc_item {
        display: none;
    }

    .sp_item {
        display: block;
    }
}