@charset "UTF-8";
/* ====================
common
======================= */
:root{
    --primary-white: #FDFDFD;
    --primary-darkbrown:#634F46;
    --primary-brown:#743014;
}

html{
    font-size: 62.5%;
}

body{
    font-family:
    "Shippori Mincho",
    "Cormorant Garamond",
    serif;
    font-style: normal;
    color: var(--primary-white,#FDFDFD);
    background-color:var(--primary-darkbrown,#634F46);
    line-height: 1.8;
}

img{
    max-width: 100%;
    height: auto;
}

/* ====================
header
======================= */
.header{
    padding: 32px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
}

.logo__pc{
    display: none;
}

.header__topic,
.nav__topic{
    width: 160px;
    height: 37px;
}

/* .nav初期表示 */
.nav{
    background: var(--primary-darkbrown);
    width: 100%;
    height: 100vh;
    padding: 30px 4.2%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition:transform 0.4s;
}

.nav__header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__list{
    margin: 40px 0 0 30px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.nav__item{
    font-family: "Cormorant Garamond";
    font-weight: 500;
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: 4.8px;
    text-align: center;
    margin-top: 32px;
}

.sns{
    display: flex;
    align-items: center;
}

.header__btn{
    margin-left: 16px;
}

.nav.active{
    transform: translateX(0%);    
}

/* nav hover */
.nav__item a,
.footerNav__item a{
    position: relative;
}

.nav__item a::after,
.footerNav__item a::after{
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    content: "";
    width: 0%;
    height: 1px;
    background: var(--primary-white);
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.nav__item a:hover::after,
.footerNav__item a:hover::after {
    width: 100%;
}

/* .header pc */
@media screen and (min-width:769px) {
    .header{
        margin: 0 auto;
        padding: 50px 56px;
        justify-content: space-between;
        align-items: center;
    }

    .logo__pc{
        display: block;
        width: 4.03vw;
        position: absolute;
        top: 12vw;
        left: 7.7%;
    }

    .logo__sp{
        display: none;
    }

    .nav{
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
    } 
    
    .nav__list{
        margin-top: 0;
        display: flex;
        flex-direction: row;
    }

    .nav__item{
        margin-top: 0;
        margin-left: 40px;
        font-size: 2.4rem;
    }

    .nav__header{
        display: none;
    }

    .mainVisual{
        position: relative;
    }

    .sns{
        display: none;
    }

    .pc__br{
    display: none;
}
    .logo__sp{
        display: block;
    }
}/* pc 769px */

/* ====================
main
======================= */
.mainVisual{
    position: relative;
}

.main__title{
    font-family: "Cormorant Garamond";
    font-size: clamp(4rem,17vw,12rem);
    position: absolute;
    left: 0;
    top: 45%;
    width: 100%;
    text-align: center;
    line-height: 1;
    letter-spacing: 6.4px;
}

.pc__br{
    display: none;
}

/* main pc */
@media screen and (min-width: 769px) {
    .sp__br{
        display: none;
    }

    .main__title{
        letter-spacing: 19.2px;
    }
}

/* ====================
footer
======================= */
.footer{
    padding: 70px 8.5% 40px;
    background-color: var(--primary-brown);
}

.footer__topic{
    width: 140px;
    height: 33px;
    margin: 0 auto;
}

.footer__group{
    text-align: center;
}

.footerNav__list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 8.5%;
    gap: 16%;    
}

.footerNav__item{
    font-family: "Cormorant Garamond";
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 2;
}

.footerNav,
.instagram{
    margin-top: 40px;
}

/* footer pc */
@media screen and (min-width: 769px) {
    .footer{
        padding: 74px 0 60px;
    }

    .footer__topic{
        width: 190px;
        height: 44px;
    }

    .footerNav__list{
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        padding: 0;
        gap: 40px;    
    }

    .footerNav__item{
        line-height: 1;
    }

    .footerNav,
    .instagram{
        margin-top: 45px;
    }
}

/* ====================
fadeIn
======================= */
.fadeIn{
    transform: translate(0,50px);
    opacity: 0;
    transition: 1.4s;
}

.fadeIn.animated{
    transform: translate(0,0);
    opacity: 1;
}