.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 94px;
    z-index: 100;
    background-color: #fff;
}

@media screen and (max-width: 767px) {
    .header {
        height: 40px;
    }
}

.header::before {
    position: absolute;
    display: block;
    content: '';
    height: 100%;
    width: 50.59%;
    right: 0;
    top: 0;
    background-color: #CFCFCF;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .header::before {
        display: none;
    }
}

.header__hamburger {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    background-color: #000;
    top: 0;
    right: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5.9px;
}

.hamburger__line {
    width: 17.5px;
    background-color: #fff;
    height: 1px;
    transition: .3s all;
}

.header__hamburger--active {
    transition: .3s all
}

.header__hamburger--active .hamburger__line--1 {
    transform: rotate(45deg) translate(5px, 3px);
}

.header__hamburger--active .hamburger__line--2 {
    transform: translateX(5px);
    opacity: 0;
}

.header__hamburger--active .hamburger__line--3 {
    transform: rotate(-45deg) translate(6px, -4px);
}

.header__inner {
    height: 100%;
    padding-left: 19px;
    padding-right: 19px;
    max-width: 1429px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 767px) {
    .header__inner {
        padding-left: 7px;
        padding-right: 0;
    }
}

.header__logo {
    width: 225px;
}

@media (min-width: 768px) and (max-width: 999px) {
    .header__logo {
        width: 140px;
    }
}


@media screen and (max-width: 767px) {
    .header__logo {
        width: 95px;
    }
}

.header__nav {}

@media screen and (max-width: 767px) {
    .header__nav {
        display: none;
    }
}

.header__navList {
    display: flex;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) and (max-width: 999px) {
    .header__navList {
        gap: 18px;
    }
}

.header__navListItem {}

.header__navListItem a {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-align: left;
    color: #000;
    text-decoration: none;
    transition: all .3s;
}

.header__navListItem a:hover {
    transition: all .3s;
    opacity: .7;
}

.header__navListItem--button {
    transition: all .3s;
}

.header__navListItem--button::hover {
    transition: all .3s;
    opacity: .7;
    width: 40px;
}


.header__navListItem--button--contact {
    margin-right: -17px;
    margin-left: -1px;
}

@media (min-width: 768px) and (max-width: 999px) {
    .header__navListItem--button--contact {
        margin-right: -6px;
        margin-left: -1px;
    }
}

.hamburger__nav {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    height: calc(100vh - 40px);
    background-color: #fff;
    display: none;
}

.hamburger__navInner {
    padding-left: 25.5px;
    padding-right: 30px;
    box-sizing: border-box;
}

.hamburger__navList {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin-top: 34px;
    gap: 19px;
}


.hamburger__navListItem {
    border-bottom: 0.75px solid #454545;
    padding-bottom: 12px;
}

.hamburger__navListItem a {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    text-align: left;
    color: #000;
    text-decoration: none;
    width: 100%;
    display: inline-block;
    position: relative;
}

.hamburger__navListItem a::before {
    position: absolute;
    display: block;
    content: '';
    width: 6px;
    height: 9px;
    background: url(../img/icon-right.svg) center center / contain no-repeat;
    top: 50%;
    transform: translateY(-100%);
    right: 12px;
}

.hamburger__navIcons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
    transform: translateX(2px);
}

.hamburger__icon {
    width: 40px;
}

.hamburger__buttonWrapper {
    text-align: center;
    margin-top: 35px;
}

.hamburger__button {
    width: 320px;
    display: inline-block;
    background: #000;
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-align: center;
    color: #fff;
    transform: translateX(2px);
    padding-top: 12px;
    padding-bottom: 12px;
}