.header {
    transition: .2s;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
}

.menu-transparent {
    background: transparent;
}

.menu-show {
    background: white;
    border-bottom: 1px solid #FFF0D0;
}

.menu-hide {
    transform: translateY(-100%);
}

.header-wrap{
    display: flex;
    justify-content:center;
    align-items:center;
    height: var(--menu-height);
}

.header-wrap img {
    width: auto;
}

.header-menu{
    display: flex;
    gap: 16px;
    margin-left: 33px;
}

.header-menu-item{
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    color: #DEA9A2;
}

.header-menu-item-active {
    color: #79453E;
}

.header-menu-item > p{
    margin-top: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.header-menu-item:hover {
    color: #79453E;
}

/* respon */
@media(min-width:1024px){
    .hide-on-pc{
        display:none;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 4px 0;
        background: white;
        position: relative;
    }

    .header .logo img {
        height: 60px;
    }
}

@media(min-width: 769px) and (max-width: 1023px){
    .hide-on-tablet{
        display:none;
    }
}

@media(max-width: 768px){
    .header-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        left: 0;
        top: 70px;
        margin-left: 0;
        background: white;
        padding: 36px 42px;
        transition: .3s;
        z-index: 999;
    }
    .header-menu-hide {
        transform: translateX(-100%);
    }
    .backdrop-menu {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background: transparent;
        z-index: 99;
    }
    .backdrop-hide {
        pointer-events: none;
        display: none;
    }
    .header-menu-item img {
        width: 32px;
        height: 32px;
    }
    .hide-on-mobile{
        display: none;
    } 
    .header-wrap{
        height: 70px;
    }

    .header-menu-icon-mobile{
        flex: 1;
    }

    .header-menu-icon-mobile > img{
        margin-left: 24px;
    }

    .logo{
        flex: 2;
    }


}