@charset "UTF-8";

/*========
 fadeIn 
 ========*/

 .fadeIn{
    transform: translate(0, 100px);
    opacity: 0;
    transition: 1.5s;
}

.fadeIn.animated{
    transition: translate(0,0);
    opacity: 1;
}


:root {
    --primary-white: #F1E7DF;
    --primary-black: #46332F;
    --primary-pink: #E38B75;
    --primary-beige: #E6CCB5;
    --contentWidth: 83.6%;
    --contentPadding: 8.2%;
 }

.gallery{
    text-align: center;

}
.gallery__mainImg__SP{
    width: 100%;
}

.gallery__mainImg__PC{
    display: none
}
.gallery__title{
    width: 60%;
}

.galleryCopy{
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    text-align: center;
    font-size: 1.6rem;
    color: var(--primary-black, #46332F);

    border-top: 3px solid var(--primary-beige, #E6CCB5);
    border-bottom: 3px solid var(--primary-beige, #E6CCB5);
    padding: 20px;
    margin: 20% 5% 
}

.galleryContent{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-white, #F1E7DF);
    padding: 0 10%;
    gap: 26px;
}


.galleryContent__img{
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.gallery__item--txt{
    display: flex;
    flex-direction: column;
    width: 100%;
    font-size: 1.4rem;
    justify-content: center;
    gap: 2.0rem;
    margin-left: 10px;
}


/* contact btn */
.galleryContact{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    margin-top: 150px;
    margin-bottom: 50px;
}

.galleryContact__txt{
    font-size: 1.4rem;
    color: var(--primary-black, #46332F);
}

@media screen and (min-width: 750px) {
    .gallery__title{
        width: 20%;
    }
    
    .gallery__mainImg__SP{
        display: none;
    }
    
    .gallery__mainImg__PC{
        width: 100%;
        display: block;
    }

    .galleryCopy{
        display: flex;
        flex-direction: column;
        gap: 1.4rem;
        text-align: center;
        font-size: 1.8rem;
        color: var(--primary-black, #46332F);
    
        border-top: 3px solid var(--primary-beige, #E6CCB5);
        border-bottom: 3px solid var(--primary-beige, #E6CCB5);
        padding: 30px;
        margin: 10% 20% 
    }

    .galleryContent{
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: var(--primary-white, #F1E7DF);
        padding: 0 20%;
        gap: 60px;
    }

    .galleryContent__img{
        display: flex;
        flex-direction:row ;
        gap: 60px;
    }
    .gallery__item05{
        width:80%;
    }

    .gallery__item--txt{
        display: flex;
        flex-direction: column;
        width: 50%;
        font-size: 1.8rem;
        justify-content: center;
        gap: 2.0rem;

    }

/* contact */
    .galleryContact{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.6rem;
        text-align: center;
        margin-top: 200px;
    }
    .galleryContact__txt{
        font-size: 1.8rem;
        color: var(--primary-black, #46332F);
        margin-bottom: 100px;
    }


}