.header-main__fixed {
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 9999;
}
.header-main {
    height: 50px;
    position: relative;
    z-index: 9999;
    background-color: #333;
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 99%);
    display: flex;
    justify-content: center;
}
.header-main__wrap {
    align-items: center;
    display: flex;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1020px;
    width: 100%;
}
.header-main__nav {
    background-color: #333;
    max-width: 320px;
    opacity: 0;
    padding: 0 20px 20px;
    visibility: hidden;
    height: 100%;
}
.icn, .icn:before {
    background-repeat: no-repeat;
}
.icn--menu {
    background: url(../img/menu-content.svg);
}
.header-main__nav-trigger {
    display: block;
    height: 20px;
    margin-right: 20px;
    width: 25px;
    border: none;
}
.header-main__logo {
    align-items: center;
    display: flex;
    min-width: 165px;
    position: relative;
}
.header-main__nav-wrap {
    transition: all .15s cubic-bezier(1,0,0,1) 0ms;
    transition-timing-function: ease-in-out;
    bottom: 0;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 50px;
    display: none;
    width: 100%;
    z-index: -1;
}
.header-util__mobile-search {
    align-items: center;
    display: flex;
    margin-left: auto;
    position: relative;
    right: 30px;
}
.icn--search-white {
    background-image: url(../img/Search.svg);
    width: 24px;
    height: 24px;
    background-size: 24px;
    background-position: 50%;
    display: block;
}
.header-util__icon {
    height: 50px;
    width: 60px;
}
.header-util {
    display: none;
}
.header-main__item {
    align-items: flex-end;
    border-bottom: 1px solid #333;
    display: flex;
    flex-wrap: wrap;
    height: 50px;
    line-height: 50px;
}
.header-main__link {
    align-items: center;
    display: flex;
    font-weight: 700;
    justify-content: space-between;
    position: relative;
    white-space: nowrap;
    width: 100%;
    color: #fefefe;
    text-decoration: none;
}
.header-main__link:hover {
    color: #ff8400;
}

@media only screen and (min-width: 768px) {
    .header-main__inner {
        z-index: 1;
        max-width: 1020px;
        width: 100%;
    }
    .header-main__nav-trigger {
        display: none;
    }
    .header-main__logo {
        margin: 0 30px 0 0;
    }
    .header-main__nav-wrap {
        background-color: transparent;
        flex: 1;
        opacity: 1;
        position: static;
        display: block;
        width: auto;
        z-index: auto;
    }
    .header-main__nav {
        display: inline-flex;
        max-width: none;
        opacity: 1;
        padding: 0 20px 0 0;
        visibility: visible;
    }
    .header-main__item {
        border-bottom: none;
        break-inside: avoid;
        display: flex;
        margin-right: 30px;
        min-height: 0;
        overflow: hidden;
        padding: 0;
        page-break-inside: avoid;
    }
    .header-main__link {
        display: block;
        width: auto;
        color: #fff;
    }

}
@media only screen and (max-width: 767px) {
    .header-main__inner {
        width: 100%;
    }
    .header-main__logo {
        margin: 0 auto;
    }
    .header-util__mobile-search {
        margin-left: 0;
    }
    .icn--search-white {
        background-size: 24px;
    }
}

