.DoubleSlideshow {
    visibility: visible;
    overflow: hidden;
    position: relative;
}

.DoubleSlideshow.-ready {
    visibility: visible;
}

.DoubleSlideshow ul {
    display: none;
}

.DoubleSlideshow__Logo {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    display: block;
    width: 60%;
    height: 60%;
    transform: translate3d( -50%, -50%, 0);
    animation: slideshow_logoin 1s forwards;
}

.DoubleSlideshow__Logo0,
.DoubleSlideshow__Logo1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 100%;
    display: none;
}

.DoubleSlideshow__Logo0 {
    opacity: 1;
    animation: slideshow_logofade0 .5s 2s forwards;
}

.DoubleSlideshow__Logo1 {
    opacity: 0;
    animation: slideshow_logofade1 .5s 2s forwards;
}

.DoubleSlideshow__SlideList {
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    backface-visibility: hidden;
    animation: slideshow_fadein .5s 2s forwards;
}

@media ( max-width: 639px) {
    .DoubleSlideshow__SlideList {
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
    }
}

.DoubleSlideshow__Slide {
    width: 50%;
    height: 100%;
    background-position: 50% 50%;
    background-size: cover;
}

@media ( max-width: 639px) {
    .DoubleSlideshow__Slide {
        width: 100%;
    }
}

.DoubleSlideshow__Slide.-enter-active {
    transition: opacity 1.2s cubic-bezier( .13, .78, .33, .94), transform 1.5s cubic-bezier( .32, 0, .18, 1);
}

.DoubleSlideshow__Slide.-current {
    z-index: 4;
}

.DoubleSlideshow__Slide.-prev {
    z-index: 3;
}

.DoubleSlideshow__Slide.-prev,
.DoubleSlideshow__Slide.-current {
    position: absolute;
    top: 0;
    left: 0;
}

.DoubleSlideshow__Slide.-prev+.DoubleSlideshow__Slide.-prev,
.DoubleSlideshow__Slide.-current+.DoubleSlideshow__Slide.-current {
    left: auto;
    right: 0;
}

.DoubleSlideshow__Slide.-current.-enter {
    opacity: 0;
    transform: translateY( 100%);
}

.DoubleSlideshow__Slide.-current+.DoubleSlideshow__Slide.-current.-enter {
    opacity: 0;
    transform: translateY( -100%);
}

.DoubleSlideshow__Slide.-current.-enter-to,
.DoubleSlideshow__Slide.-current+.DoubleSlideshow__Slide.-current.-enter-to {
    opacity: 1;
    transform: translateY( 0);
}

.DoubleSlideshow__ScrollButton {
    cursor: pointer;
    position: absolute;
    z-index: -1;
    display: none;
    bottom: 18px;
    /* 50 - 32 */
    left: calc( 50% - 32px);
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 32px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: url(../../image/slide/arrow.png);
    background-color: #402110;
    background-size: 40% 40%;
}

@media ( max-width: 639px) {
    .DoubleSlideshow__ScrollButton {
        bottom: -4px;
        left: calc( 50% - 16px);
        width: 32px;
        height: 32px;
        border-radius: 16px;
    }
}

@keyframes slideshow_logoin {
    from {
        opacity: 0;
        transform: translate3d( -50%, calc( -50% - 30px), 0);
    }
    to {
        opacity: 1;
        transform: translate3d( -50%, -50%, 0);
    }
}

@keyframes slideshow_logofade0 {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes slideshow_logofade1 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideshow_fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}