@charset "UTF-8";
/* ======================= 
common
 ======================= */

 :root {
    --primary-white: #F1E7DF;
    --primary-black: #46332F;
    --primary-pink: #E38B75;
    --primary-beige: #E6CCB5;
    --contentWidth: 83.6%;
    --contentPadding: 8.2%;
 }

 html{
    font-size: 62.5%;
    scroll-behavior: smooth;
 }

 body{
    font-family: 
        'M PLUS Rounded 1c';
    font-style: normal;
    color: var(--primary-black, #46332F);
    background-color: var(--primary-white, #F1E7DF);
    line-height: 1.5;
 }

 img{
    max-width: 100%;
    height: auto;
 }

 .main{
    text-align: center;
    
 }

 
.top__btn{
    width: 58px;
    height: 58px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    filter: drop-shadow(2px 2px 3px #a59689 );
    z-index: 7777;
}

@media screen and (min-width: 960px){
    .spbr{
        display: none;
    }
}


 /* ======================= 
header
 ======================= */
.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
    position: fixed;
    width: 100vw;
    z-index: 9999;
}

.header__logo{
    width: 30%;
    max-width: 130px;
    height: auto;
    filter: drop-shadow(2px 2px 3px #a59689 );
}

.header__icon{
    display: flex;
    align-items: center;
    gap: 11.4%;

}

.icon__insta{
    filter: drop-shadow(2px 2px 3px #a59689 );
}
.icon__menu{
    filter: drop-shadow(2px 2px 3px #a59689 );
}

.nav{
    background-image: url(../img/bg_menu_SP.webp);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100svh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8888;
    transform: translateX(200%);
    transition: transform 0.4s;
}

.nav__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;

}

.nav__logo{
    width: 30%;
    max-width: 130px;
    height: auto;
    z-index: 8899;
    filter: drop-shadow(2px 2px 3px #a59689 );
}

.nav__btn{
    filter: drop-shadow(2px 2px 3px #a59689 );
}

.nav__list{
    margin-top: 35.3%;
}

.nav__item{
    text-align: center;
    font-size: 2.0rem;
    font-weight: 300;
    margin-top: 8.0%;
}

.nav.active{
    transform: translateX(0);
}

/* .header PC */
@media screen and (min-width: 960px) {
    .header{
        display: flex;
        align-items : center;
        justify-content: space-between;
        padding-right: 40px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        z-index: 9999;
    }

    .header__icon{
        display: flex;
        align-items: center;
        gap: 11.4%;
        width: 50%;
        min-width: 670px;
        justify-content: space-between;
    }

    .icon__insta{
        width: 100%;
        filter: drop-shadow(2px 2px 3px #a59689 );
    }

    .nav{
        background: transparent;
        background-size: auto;
        width: 90%;
        height: auto;
        padding: 0;
        position: static;
        transform:  translate(0);
    }

    .nav__list{
        display: flex;
        margin-top: 0;
        justify-content: space-between;
    }

    .nav__item{
        text-align: center;
        font-size: 1.8rem;
        font-weight: 500;
        margin-top: 0;
        margin-left: 0;
    }

    .nav__item:first-of-type{
        display: none;
    }

    .nav__item a{
        position: relative;
    }
    
    .nav__item a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: var(--primary-black, #46332F);
        bottom: -10px;
        transform: scale(0, 1);
        transform-origin: right top;
        transition: transform 0.5s;
    }
    
    .nav__item a:hover::after {
        transform: scale(1, 1);
        transform-origin: left top;
    }
    

    .nav__header{
        display: none;
    
    }

    .icon__menu{
        display: none;
    }
}
 
 /* ======================= 
footer
 ======================= */

 .footer{
    background-image: url(../img/bg_footer.webp);
    background-size: cover;
    padding-bottom: 2%;
}

.footer__nav{
    display: flex;
    flex-direction: column;
    margin: 0 5%;
    padding-top: 10%;
    border-top-color: var(--primary-beige, #E6CCB5);
    border-top-style: dotted;
    border-top-width: 4px;
    gap: 20px;
    font-size: 1.6rem;
}

.copy__box{
    text-align: center;
}

.copy{
    font-size: 1.4rem;
    color: var(--primary-white, #F1E7DF);
    margin: 15% auto 5% auto ;
}

/* footer PC */
@media screen and (min-width: 960px) {
    .footer{
        background-image: url(../img/bg_footer_PC.webp);
        background-size: cover;
        background-position: center;

    }

    .footer__nav{
    display: flex;
    flex-direction: column;
    margin: 0 10% 0 10%;
    padding: 5% 6%;
    border-top-color: var(--primary-beige, #E6CCB5);
    border-top-style: dotted;
    border-top-width: 4px;
    gap: 20px;
    font-size: 1.8rem;
    height: 30svh;
    align-items: flex-start;
    }
    
    .copy{
        font-size: 1.8rem;
        color: var(--primary-white, #F1E7DF);
        margin: 0 auto;
    }
    
}