@charset "UTF-8";



img{
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

/*--------------------- */
/* ------ demo01 ------ */
/* -------------------- */


.demo01-block{
    margin-top: 80px;
}

.demo01-block:first-of-type{
    margin-top: 0;
}

@media screen and (min-width: 768px) {
    .demo01-block{
        margin-top: 100px;
    }
}


/*--------------------- */
/* ------ demo02 ------ */
/* -------------------- */
/*

.multiple-block{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.multiple-block-image{
    width: 49%;
    margin-top: 20px;
}

.multiple-block-image:nth-child(-n+2){
    margin-top: 0;
}

@media screen and (min-width: 768px) {
    .multiple-block-image{
        width: 32%;
    }
    
    .multiple-block-image:nth-child(-n+3){
        margin-top: 0;
    }
}
*/

/*--------------------- */
/* ------ demo03 ------ */
/* -------------------- */

/* common */
.demo03-section{
    margin-top: 80px;
}

.demo03-section:first-of-type{
    margin-top: 0;
}

/* zoom block */
.zoom-block{
    overflow: hidden;
}

.zoom-block-bg{
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    background: url(../img/sample.jpg) no-repeat center/cover;
}

/* slide block */
.slide-block{
    margin-top: 40px;
}

.slide-block:first-of-type{
    margin-top: 0;
}

.slide-block-contents{
    margin-top: 20px;
}

.slide-block-ttl{
    font-size: 18px;
    font-weight: bold;
}

.slide-block-txt{
    margin-top: 10px;
}


/* marker block */
.marker-block{
    margin-top: 40px;
}

.marker-block:first-of-type{
    margin-top: 0;
}

.marker-block-contents{
    margin-top: 20px;
}

.marker-block-ttl{
    font-size: 18px;
    font-weight: bold;
}

.marker-block-txt{
    margin-top: 10px;
}

/* fade left block */
.fade-left-block-item{
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.fade-left-block-item:first-of-type{
    margin-top: 0;
}

.fade-left-block-num{
    color: #fff;
    background-color:#FFA500;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.fade-left-block-txt{
    width: calc(100% - 40px);
    margin-left: 10px;
}

@media screen and (min-width: 768px) {
    /* common */
    .demo03-section{
        margin-top: 200px;
    }

    /* slide block */
    .slide-block{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 60px;
    }

    .slide-block:nth-child(odd){
        flex-direction: row-reverse;
    }

    .slide-block-image{
        width: 48%;
    }

    .slide-block-contents{
        width: 48%;
        margin-top: 0;
    }

    

    /* marker block */
    .marker-block{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }

    .marker-block-image{
        width: 48%;
    }

    .marker-block-contents{
        width: 48%;
        margin-top: 0;
    }

    /* fade left block */
    .fade-left-block-txt{
        line-height: 1.8;
    }
}




/* fade up block */
.fade-up-block-image{
    margin-top: 20px;
}

.fade-up-block-image:first-of-type{
    margin-top: 0;
}

@media screen and (min-width: 768px) {

    /* fade up block */
    .fade-up-block{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .fade-up-block-image{
        width: 32%;
    }

    .fade-up-block-image:nth-child(-n+3){
        margin-top: 0;
    }
}
/*------------------------------ */
/* ------ animation style ------ */
/* ----------------------------- */


/* fade zoom */
.u-fade-type-zoom.is-active{
    transition: 8s;
    transform: scale(1.06);
}

/* fade in */
.u-fade-type-in-delay {
    opacity: 0;
}
.u-fade-type-in-delay.is-active{
    transition: .6s;
    opacity: 1;
    transition-delay: .8s;
}

/* fade up */
.u-fade-type-up{
    transform: translateY(50px);
    opacity: 0;
}

.u-fade-type-up.is-active{
    transition: .6s;
    transform: translateY(0);
    opacity: 1;
}

.is-active .u-fade-type-up{
    transition: .6s;
    transform: translateY(0);
    opacity: 1;
}

.is-active .u-fade-type-up:nth-child(2){transition-delay: .4s;}
.is-active .u-fade-type-up:nth-child(3){transition-delay: .8s;}
.is-active .u-fade-type-up:nth-child(4){transition-delay: 1.2s;}
.is-active .u-fade-type-up:nth-child(5){transition-delay: 1.6s;}
.is-active .u-fade-type-up:nth-child(6){transition-delay: 2s;}

/* fade up delay */
.u-fade-type-up-delay {
    transform: translateY(50px);
    opacity: 0;
}

.u-fade-type-up-delay.is-active{
    transition: .6s;
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1.2s;
}


/* fade left */
.u-fade-type-left{
    transform: translateX(50px);
    opacity: 0;
}

.u-fade-type-left.is-active{
    transition: .6s;
    transform: translateX(0);
    opacity: 1;
}

.is-active .u-fade-type-left{
    transition: .6s;
    transform: translateX(0);
    opacity: 1;
}

.is-active .u-fade-type-left:nth-child(2){transition-delay: .2s;}
.is-active .u-fade-type-left:nth-child(3){transition-delay: .4s;}
.is-active .u-fade-type-left:nth-child(4){transition-delay: .6s;}
.is-active .u-fade-type-left:nth-child(5){transition-delay: .8s;}

/* img */
.u-fade-type-slide{
    position: relative;
}

.u-fade-type-slide::after{
    content: '';
    display: block;
    width: 100%;
    transform: scaleX(1);
    transform-origin: 100% 0;
    height: 100%;
    background-color: #eee;
    position: absolute;
    top: 0;
    right: 0;
}

.u-fade-type-slide.is-active::after{
    transition: .6s;
    transform: scaleX(0);
}

/* single marker */
.u-fade-type-marker {
    background: linear-gradient(to right, transparent 50%,  rgba(255, 165, 0, 0.3) 50%);
    background: linear-gradient(to right, transparent 50%, rgba(255, 165, 0, 0.3) 50%);
    background-repeat: repeat-x;
    background-size: 200% .6em;
    background-position: 0 .6em;
    padding-bottom: .6em;
}

.u-fade-type-marker.is-active{
    transition: all 1.2s ease;
    background-position: -100% .6em;
}

