/* headerType */
.header__inner {
    width: 100%;
    /* height: 114px; */
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f6f8fd;

    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 4px #999;
}
.header__logo {
    width: 100%;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 20px;
}
.header__menu {
    width: 100%;
    text-align: center;
}
.header__menu li {
    display: inline;
}
.header__menu li a {
    font-size: 16px;
    padding: 13px 30px;
    margin: 0 5px;
    transition: background-color 0.3s;
}
.header__menu li.active a {
    background: #6e78e6;
    color: #fff;
    border-radius: 10px;
}
.header__menu li a:hover {
    text-decoration: underline;
    text-underline-position: under;
}

.header__ham {
    position: absolute;
    right: 10px;
    top: 12px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    display: none;
    cursor: pointer;
}
.header__ham span {
    display: block;
    background: rgb(80, 80, 80);;
    width: 30px;
    height: 2px;
    border-radius: 3px;
    margin-left: 10px;
    margin-top: 5px;
    transition: 0.25s margin 0.25s, 0.25s transform;    /* margin에 딜레이 */
}
.header__ham span:nth-child(1) {
    margin-top: 18px;
}
.header__ham.active span {
    transition: 0.25s margin, 0.25s transform 0.25s;    /* transform에 딜레이 */
}

.header__ham.active span:nth-child(1) {
    margin-top: 25px;
    margin-bottom: -7px;
    transform: rotate(45deg);
}
.header__ham.active span:nth-child(2) {
    transform: rotate(45deg);
}
.header__ham.active span:nth-child(3) {
    transform: rotate(135deg);
    margin-top: -2px;
}

@media (max-width: 1300px) {
    .header__ham {
        display: block;
    }
    .header__member {
        margin-right: 50px;
    }
    .header__menu {
        position: fixed;
        right: -100%;
        top: 69px;
        background: #fff;
        width: 60%;
        height: 100vh;
        padding: 20px;
        text-align: right;
        transition: right 0.4s ease-in;
        font-size: 16px;
    }
    .header__menu ul li {
        display: block;
        margin: 20px;
    }
    .header__menu ul li a {
        padding: 10px;
        white-space: nowrap;
    }
    .header__menu.active {
        right: 0;
    }
    .header__menu.overlay {

    }
}

@media (max-width: 600px) {
    .header__logo {
        font-size: 24px;
    }
    .header__logo em {
        display: none;
    }
    .header__member {
        width: 40%;
    }
    .header__member a {
        padding: 8px 20px;
    }
}