
#wrap * {
}

.header {
    padding: 20px 0 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #eee1c4;
    background-color: #fff;
}

.header .header_wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header a {
    width: 60%;
    font-size: 16px;
}

.header img {
    width: 17%;
    height: 20%;
}

.header ul {
    display: flex;
    gap: 1rem;
    width: 40%;
    justify-content: flex-end;
}

.header ul li {
  
    border-radius: 20px;
    cursor: pointer;
}

.header ul li a {
    text-decoration: none;
    color: #ba820b;
    padding: .5rem 1rem;
    font-weight: 600;
}

.selected a {
}

.header_mo {
    display: none;
}

body {
    margin-top: 70px;
}
@media (min-width: 768px) and (max-width: 1200px) {
    /* .header a {
        font-size: 20px;
    }
    .header .header_wrap {
        width: 100%;
        max-width: unset;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        gap: 15px;
    }
    .header a {
        width: 100%;
        text-align: center;
    }
    .header img {
        width: 20%;
        height: 20%;
    }
    .header ul {
        display: flex;
        gap: 1rem;
        width: 100%;
        justify-content: space-around
    } */
}
@media screen and (max-width: 767px) {
    .header .header_wrap {
        width: 100%;
        max-width: unset;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        gap: 15PX;
    }
    .header a {
        width: 100%;
        font-size: 14px;
        text-align: center;
    }
    .header img {
        width: 25%;
        height: 20%;
    }
    .header ul {
        display: flex;
        gap: 1rem;
        width: 100%;
        justify-content: space-around
    }
}