body{overflow-x: hidden;width:100%;margin:0;padding:0;

font-family: "Ÿà–¾’©", YuMincho, "ƒqƒ‰ƒMƒm–¾’© ProN W3", "Hiragino Mincho ProN", "HG–¾’©E", "‚l‚r ‚o–¾’©", "‚l‚r –¾’©", serif;}


#menu-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #6B8A30;
    transition: all 0.3s ease;
}

#menu-toggle.active span:nth-child(1) {background-color: #fff;
    transform: translateY(11px) rotate(45deg);
}

#menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

#menu-toggle.active span:nth-child(3) {background-color: #fff;
    transform: translateY(-11px) rotate(-45deg);
}

#sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #333;
    color: white;
    z-index: 999;
    transition: left 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    
}

#sidebar.active {
    left: 0;
}

.sidebar-header {
    padding: 20px;
    background-color: #222;
    text-align: center;
}

.logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.company-name {
    margin: 0;
    font-size: 1.2em;
}

#sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

#sidebar ul li {
    padding: 10px 20px;
}

#sidebar ul li a {font-size:1.4em;
    color: white;
    text-decoration: none;
    display: block;width:100%;
}

.submenu {width:100%;padding:0;margin:0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.submenu li {
    padding-left: 30px !important;
}
.submenu.active {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}
.submenu li {
    padding-left: 30px !important;
}
main {margin-left: 0;
    /*padding: 20px;
    transition: margin-left 0.3s ease-in-out;*/
}



@media (min-width: 768px) {
    

    main {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .submenu li {
    padding-left: 30px !important;
}

    main {
        margin-left: 0;
    }
}