.header {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 1px 2px rgb(76, 76, 78);
    z-index: 900;
    width: 100%;
    height: 55px;
    border-bottom: none;
    background-color: white;
}

.header-inner {
    width: 100%;
    height: 100%;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: white;
    z-index: 900;
}

.header-logo {
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
}

.header-logo img {
    width: 180px;
    margin-right: 10px;
}

.header-logo p {
    font-size: 15px;
    color: black;
}

.header-menu-button {
    display: block;
    border: none;
    background-color: transparent;
    width: 30px;
    height: 30px;
}

.header-menu-button hr {
    width: 100%;
    height: 2px;
    background-color: black;
    border: none;
    margin-top: 4px;
    margin-bottom: 4px;
    transform-origin: center;
}

.header-site-menu {
    position: absolute;
    top: 55px;
    right: 0px;
    color: black;
    background-color: white;
    padding-top: 20px;
    padding-bottom: 30px;
    width: 250px;
    height: 100vh;
    box-shadow: -1px 0 2px rgb(76, 76, 78);
    translate: 110% 0;
    z-index: 800;
}

.header-site-menu ul li {
    font-size: 20px;
    font-weight: bold;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 15px;
    padding-bottom: 15px;
    border-bottom: solid;
    border-width: 1px;
    border-color: lightgray;
}

.header-site-menu ul li form button {
    color: black;
    font-size: 20px;
}

.header-site-menu ul li form button:active {
    background-color: lightgray;
}

.header-right-area {
    display: flex;
    align-items: center;
}

.header-right-area div,
.header-right-area button {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 18px;
    color: black;
}

.info_account {
    display: none;
}

.make-link-button {
    background: transparent;
    border: none;
}

.main-notice-feedback {
    position: absolute;
    opacity: 0;
    left: 5%;
    right: 5%;
    background: white;
    width: 90%;
    min-height: 60px;
    font-size: 25px;
    border-radius: 10px;
    background-color: lightgray;
    display: flex;
    align-items: center;
    box-shadow: 3px 3px 5px 1px gray;
    padding: 5px;
    z-index: 600;
}

.main-notice-feedback-text {
    display: block;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 25px;
    font-weight: bold;
}

.main-banner {
    position: absolute;
    opacity: 0;
    top: 0;
    background: white;
    width: 100%;
    min-height: 55px;
    font-size: 20px;
    color: rgb(30, 30, 30);
    background-color: rgba(240, 240, 240, 0.5);
    display: flex;
    align-items: center;
    box-shadow: 0 1px 2px rgb(76, 76, 78);
    padding: 5px;
    z-index: 600;
}

.main-banner-text {
    display: block;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.menu-back {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 700;
    background-color: rgba(250, 250, 250, 0.5);
    border: none;
    display: none;
}

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

    .header-inner {
        height: 35px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .header-logo img {
        width: 120px;
        margin-right: 5px;
    }

    .header-logo p {
        font-size: 12px;
    }

    .header-menu-button hr {
        width: 85%;
        margin-left: 7.5%;
        margin-right: 7.5%;
    }

    .header-site-menu {
        top: 35px;
        padding-top: 10px;
        padding-bottom: 20px;
        width: 150px;
    }
    
    .header-site-menu ul li {
        font-size: 15px;
        margin-top: 10px;
        padding-bottom: 10px;
    }
    
    .header-site-menu ul li form button{
        font-size: 13px;
    }

    .header-right-area div,
    .header-right-area button {
        margin-left: 5px;
        margin-right: 5px;
        font-size: 15px;
    }

    .main-notice-feedback {
        font-size: 15px;
        min-height: 40px;
        font-size: 15px;
    }

    .main-notice-feedback-text {
        font-size: 15px;
    }

    .main-banner {
        font-size: 12px;
        min-height: 35px;
    }
}
