@charset "utf-8";

.nav_wrap {
    margin-top: 30px;
}

.nav_wrap ul {
    margin: 0 auto;
    width: 60%;
    display: flex;
    justify-content: space-around;
}

.nav_wrap li {
    margin-right: 70px;
    display: flex;
    flex-direction: column;
}

.nav_wrap li:last-child {
    margin-right: 0;
}

.nav_wrap ul li img {
    width: 200px;
}

.nav_wrap ul li p {
    font-size: 1rem;
    vertical-align: bottom;
}

.nav_wrap a {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.nav_wrap a::after {
    position: absolute;
    bottom: -6px;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background: rgb(94, 56, 32, .6);
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}

.nav_wrap a:hover::after {
    transform: scale(1, 1);
}



@media screen and (max-width:850px) {
    .nav_wrap {
        display: none;
    }
}




@media screen and (max-width:600px) {}