@charset "utf-8";

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

---全体ふわっと

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

@keyframes opacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

---TOPスライドZOOM

====================================================*/
@keyframes zoomUp {
    0% {
        transform: scale(1.15);
    }

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

.swiper-slide-active img,
.swiper-slide-duplicate-active img,
.swiper-slide-prev img {
    animation: zoomUp 10s linear 0s 1 normal both;
}

.slide-img img {
    display: block;
}

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

---scrollバーアニメーション

====================================================*/
.scrollBox::after {
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/*==================================================

---スクロール右やら左やら

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

@keyframes fadeleft {
    0% {
        transform: translateX(-30px);
        opacity: 0;
    }

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

@keyframes faderight {
    0% {
        transform: translateX(30px);
        opacity: 0;
    }

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


.testBox.scrollin > div:nth-child(1n) {
    animation: fadeleft 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.testBox.scrollin > div:nth-child(2n) {
    animation: faderight 1s cubic-bezier(0.33, 1, 0.68, 1) 0.6s forwards;
}

.testBox.scrollin > div:nth-child(3n) {
    animation: fadeleft 1s cubic-bezier(0.33, 1, 0.68, 1) 1.2s forwards;
}


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

        hamburgerメニュー

==================================================================*/
.menu {
    height: 20px;
    position: absolute;
    right: 21px;
    top: 33px;
    cursor: pointer;
    position: fixed;
    width: 35px;
    z-index: 99;
}

.menu__line {
    background: #333;
    display: block;
    height: 2px;
    position: absolute;
    transition: transform .3s;
    width: 100%;
}

.menu__line--center {
    top: 9px;
}

.menu__line--bottom {
    bottom: 0;
}

.menu__line--top.active {
    top: 8px;

    transform: rotate(45deg);
}

.menu__line--center.active {
    transform: scaleX(0);
    background: #ca062c;
}

.menu__line--bottom.active {
    bottom: 10px;

    transform: rotate(135deg);
}

.gnav {
    background: #000;
    display: none;
    height: 100%;
    left: 0;
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 98;
}

.gnav__wrap {
    align-items: center;
    display: flex;
    height: 100%;
    position: absolute;
    width: 100%;
}

.fmbCopyW {
    position: absolute;
    color: #fff;
    text-align: center;
    bottom: 0;
    left: 50%;
    font-size: 12px;
    color: #ffffff94;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.gnav__menu {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    white-space: nowrap;
}


.gnav__menu__item a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    display: block;
    padding: 18px 0;
    transition: .5s;
}

.gnav__menu__item a:hover {
    color: #666;
}

.gnav__menu__item span {
    font-size: 15px;
    color: rgb(255 255 255 / 75%);
}

.gnav__menu__item .gnav_ja {
    display: block;
    font-size: 13px;
    font-weight: 100;
}


.menu_box {
    right: 0;
    top: 0;
    cursor: pointer;
    position: fixed;
    width: 55px;
    height: 82px;
    z-index: 99;
    width: 80px;
}

.gnav__menu li {
    position: relative;
}

.gnav__menu li::after {
    top: 52%;
    left: -25px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 14px;
}


.gnav__menu li:nth-child(1)::after {
    content: "01";
    position: absolute;
}

.gnav__menu li:nth-child(2)::after {
    content: "02";
    position: absolute;
}

.gnav__menu li:nth-child(3)::after {
    content: "03";
    position: absolute;
}

.gnav__menu li:nth-child(4)::after {
    content: "04";
    position: absolute;
}

.gnav__menu li:nth-child(5)::after {
    content: "05";
    position: absolute;
}

.gnav__menu li:nth-child(6)::after {
    content: "06";
    position: absolute;
}

.gnav__menu li:nth-child(7)::after {
    content: "07";
    position: absolute;
}
.gnav__menu li:nth-child(8)::after {
    content: "08";
    position: absolute;
}
.gnav__menu li:nth-child(9)::after {
    content: "09";
    position: absolute;
}



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

---マスクフェード

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


.maskbox {
    width: 100%;
    margin: 0 0 6% 0;
    overflow: hidden;
}

.maskbox .maskboxInner {
    font-size: 1.5em;
    overflow: hidden;
    opacity: 0;
}

.isPlay {
    animation-name: play;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8, 0, .5, 1);
    position: relative;
    opacity: 1 !important;
}

.isPlay:before {
    animation-name: maskOut;
    animation-duration: .5s;
    animation-delay: .6s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8, 0, .5, 1);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

.maskboxInner:before {
    background: rgb(72, 198, 239);
    background: linear-gradient(90deg, rgba(72, 198, 239, 1) 0%, rgba(111, 134, 214, 1) 100%);
}


.ie .maskboxInner:before {
    background: none;
}



@keyframes play {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}


@keyframes maskOut {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}
