@charset "utf-8";

/*=========================
header
=========================*/
.nav_box {
    display: flex;
    justify-content: space-between;
    height: 7rem;
    width: 100%;

    background: var(--brown);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
}

/* .nav_box>a {
    width: 30%;
    height: 100%;
} */

/* .nav_img {
    background: url(../img/favicon.ico) no-repeat center;
    width: 100%;
    height: 100%;
    background-size: contain;
} */

.nav_box ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* 画像が来るなら70％ */
    width: 100%;
    /* height: 50px; */
    font-weight: 800;
    text-align: center;
}

.nav_box li {
    width: 20%;
}

.nav_box li:not(:last-child) {
    border-right: 2px solid gray;
}

.nav_box li:hover {
    opacity: 0.5;
}

/* デフォルトで隠す */
.hdr_pc {
    display: none;
}

@media screen and (min-width:668px) {
    .hdr_pc {
        display: inline;
    }
}
