/* 共通　*/

.header {
    width: 100vw;
    height: 56px;
    background-color: antiquewhite;
}

/* header */
header {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#humberger {
    cursor: pointer;
}

.header_left_group {
    display: flex;
}

#humberger img {
    width: 40px;
    height: 40px;
    margin: 4px 0;
    border-radius: 3px;
}

.logo img {
    margin-left: 24px;
    width: 100%;
    height: auto;
    background-color: #ccc;
    object-fit: cover; /* 画像が親要素の領域を埋めるように */
}

@media (max-width: 600px) {
    .logo img {
        margin-left: 10px;
        width: 0;
        height: 0;
        background-color: #ccc;
        object-fit: cover; /* 画像が親要素の領域を埋めるように */
    }
}

.header_search {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}


.header_search input {
    width: 60%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
    outline: none;
    display: none;
}

.header_right_group {
    display: flex;
    align-items: center;
}

.header_right_group div {
    margin-left: 24px;
}


.header_right_group img {
    width: 33px;
    height: auto;
}










/* Side Bar */
#sidebar {
    position: fixed;
    left: -290px;
    width: 250px;
    top: 0px;
    background-color: #565656f9;
    color: #fff;
    height: 100vh;
    padding: 20px;
    margin-top: 0px;
    transition: left 0.3s ease;
    z-index: 1000;
}

#sidebar.expanded {
    left: 0;
}

#sidebar ul {
    list-style: none;
}

#sidebar ul li {
    margin: 20px 0;
}

#sidebar ul li a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

#sidebar ul li a .nav_icon img {
    width: 24px;
    height: auto;
    margin-right: 10px;
}

#sidebar ul li a .nav_text {
    font-size: 16px;
}

