@charset "UTF-8";
/* article header -------------------------------------- */
.article__header{
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.article__header__imgPC{
    display: none;
}

.article__header__imgSP{
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    
/* anime */
    animation: image-switch-animation 12s infinite;
    opacity: 0;
}

.mv1SP{
    background-image: url(../images/mv1_sp.jpg);
}

.mv2SP{
    background-image: url(../images/mv2_sp.jpg);
}

.mv3SP{
    background-image: url(../images/mv3_sp.jpg);
}

@keyframes image-switch-animation {
    0%{ opacity: 0; transform: scale(1.1);}
    25%{ opacity: 1;}
    35%{ opacity: 1;}
    45%{ opacity: 0;}
    55%{ opacity: 0;}
    100%{ opacity: 0;}
  }

.article__header__imgSP:nth-of-type(1){
    animation-delay: 0s;
}

.article__header__imgSP:nth-of-type(2){
    animation-delay: 4s;
}
.article__header__imgSP:nth-of-type(3){
    animation-delay: 8s;
}

.article__header__imgPC{
    display: none;
}


.fuwafuwa{
    width: 100%;
    position: absolute;
    bottom: 50px;
    display: flex;
    flex-direction: column;
}

.arrow{
    margin: 0 auto;
    width: 40px;
    z-index: 1;

    animation-name: fuwafuwa;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	visibility: visible !important;
}

.arrow__top{
    animation-delay: 0.1s;
}


@keyframes fuwafuwa {
	0% {
		transform: translateY(0%);
	}
	50% {
		transform: translateY(20%);
	}
	100% {
		transform: translateY(0%);
	}
}
/* anime end */

.main__logo{
    position: absolute;
    z-index: 10;
    top: 286px;
    left: 50%;
    transform: translateX( -50%);
}

.main__logo img{
    width: 330px;
    filter: drop-shadow(0px 4px 4px rgba(0,0,0,0.7));
}

/* article header responsive */
@media screen and (min-width:768px) {
    .article__header__imgSP{
        display: none;
    }

    .article__header__imgPC{
        display: block;
        width: 100vw;
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        background-size: cover;
        background-position: center center;
        
        /* anime */
        animation: image-switch-animation 12s infinite;
        opacity: 0;
    }

    .mv1PC{
        background-image: url(../images/mv1_pc.jpg);
        animation-delay: 0s;
    }
    
    .mv2PC{
        background-image: url(../images/mv2_pc.jpg);
        animation-delay: 4s;
    }
    
    .mv3PC{
        background-image: url(../images/mv3_pc.jpg);
        animation-delay: 8s;
    }

    .main__logo{
        position: absolute;
        z-index: 10;
        top: 50%;
        left: 10%;
        transform: translate(0,-50%);
    }

    .main__logo img{
        width: 640px;
    }
    
    .fuwafuwa{
        bottom: 50px;
    }

    .arrow{
        width: 40px;
    }
}



/* About Us -------------------------------------------- */
.aboutUs{
    text-align: center;
}

.aboutUs__txt{
    display: block;
    margin: 0 auto;
    max-width: 425px;
    height: 185px;
    color: #3B1204;
    text-align: center;
    line-height: 2.5;
    letter-spacing: 0.7px;

    background-image: url(../images/leaf_left.png),url(../images/leaf_right.png);
    background-repeat: no-repeat;
    background-size: 100px auto;
    background-position: left -20px bottom,right -20px bottom;
    overflow: visible;
}

/* about us responsive */
@media screen and (min-width:768px) {
    .aboutUs__txt{
        max-width: 600px;
        height: 150px;
        font-size: 1.6rem;
        letter-spacing: 0.8px;
    }

    .notPc{
        display: none;
    }
}

/* information------------------------------------- */
.topic__top__info{
    margin: 50px auto 0;
}

/* Gallery ----------------------------------------- */
.gallery{
    height: 942px;
    margin-top: 100px;
    position: relative;
}

.topic__gallery{
    color: white;

    background-image: url(../images/topic_whiteUnderline.png);
}

.gallery-title{
    position: absolute;
    top: 600px;
    left: 50%;
    transform: translateX(-50%);
}

.gallery__btn{
    margin-top: 40px;
    color: white;
    border-bottom: solid white 1px;

    background-image: url(../images/whitePaws_btn.png), url(../images/whitePaws_btn.png);
}

.gallery__btn:hover{
    filter:drop-shadow(0 0 5px rgba(255, 239, 0, 0.9));
    transition: 0.3s;
}

.gallery-parallax{
    width: 100%;
    height: 560px;
    position: relative;
}

.gallery__back , .gallery__front{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.gallery-parallax__front{
    display: block;
    margin: 0 auto;
    width: 340px;
}

.gallery-parallax__back{
    display:block;
    margin: 100px auto 0;
    width: 316px;
}

.gallery-parallaxPc{
    display: none;
}

/* gallery responsive */
@media screen and (min-width:768px) {
    .gallery-title{
        top: 850px;
    }

    .gallery-parallax{
        display: none;
    }

    .gallery-parallax__back{
        display: none;
    }

    .gallery-parallax__front{
        display: none;
    }

    .gallery-parallaxPc{
        display: block;
    }

    .gallery-parallax__backPc{
        display: block;
    }

    .gallery-parallax__frontPc{
        display: block;
    }

    .gallery{
        height: 1300px;
    }

    .gallery__backPc{
        position: absolute;
        top: 100px;
        left: 50%;
    }
    
    .gallery__frontPc{
        position: absolute;
        top: 100px;
        left: 50%;
    }

    .gallery-parallax__backPc{
        width: 1032px;
        transform: translateX(-50%);
        margin-top: 130px;
    }
    
    .gallery-parallax__frontPc{
        width: 994px;
        transform: translateX(-50%);
    }

}

/* Q&A ------------------------------------------------- */
.q-and-a__box{
    margin: 60px 5% 0;
}

.q-and-a__q{
    display: flex;
    width: 88%;
    margin-left: 6.3%;
    color: #DD8800;
    font-size: 1.6rem;
    font-weight: 500;
}

.q-and-a__access{
    display: inline-block;
    text-decoration: underline solid white 1.5px;
    transition: 0.2s;
}

.q-and-a__access:hover{
    transform: translateY(-4px);
    transition: 0.2s;
}

.q{
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    color :#FFF;
    font-size: 2rem;
    font-weight: 500;
    background-color: #F7C487;
    border-radius: 50%;
}

.q-and-a__a{
    display: flex;
    background-color: #F7C487;
    padding: 14px 29px 14px 26px;
    color: white;
    font-weight: 600;
    line-height: 1.8;
}

.a{
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    color :#DD8800;
    font-size: 2rem;
    font-weight: 500;
    background-color: white;
    border-radius: 50%;
}

.q__txt{
    width: 90%;
    margin-top: 5px;
}

.a__txt{
    width: 90%;
    margin-top: 5px;
}

.q-and-a__btn{
    margin-top: 78px;
}

/* q&a responsive */
@media screen and (min-width:769px) {
    .q-and-a__q{
        width: 69%;
        margin: 0 auto;
    }

    .q-and-a__a{
        width: 69%;
        margin: 0 auto
    }

    .q{
        margin-left: 26px;
        margin-right: 5px;
    }

    .a{
        margin-right: 5px;
    }
}

/* owner ----------------------------------------------------- */
.owner{
    margin-top: 150px;
}

.topic__owner{
    color: white;

    background-image: url(../images/topic_whiteUnderline.png);
}

.Sora{
    color: #FFF;
    text-align: center;
}

.slick img{
    height: 100vw;
    overflow: hidden;
}

.owner__btn{
    margin-top: 65px;
    color: white;
    border-bottom: solid white 1px;

    background-image: url(../images/whitePaws_btn.png), url(../images/outWhite_btn.png);
}

.owner__btn:hover{
    filter:drop-shadow(0 0 5px rgba(255, 239, 0, 0.9));
    transition: 0.3s;
}

.blue{
    background-color: #31B6A6;
    transition: 0.3s;
}

/* owner responsive */
@media screen and (min-width:769px){
    .slick img{
        width: 50%;
        height: auto;
    }

    .Sora{
        font-size: 1.8rem;
    }
}