@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

.fixheader input {
    display: none;
}

.fixheader label {
    display:block;
    position:fixed;
    margin: 27.5px;
    cursor:pointer;
    z-index: 100;
}

@media screen and (max-width: 1000px) {
    .fixheader label {
        margin: 17.5px;
    }
}

.fixheader label div {
    width: 25px;
    height: 25px;
    background: url("../images/icons/menu-bar.svg") no-repeat;
}

nav.index > label div {
    filter: contrast(0) brightness(2);
    transition: all .5s;
}

nav.index > label.small div {
    filter: none;
    transition: all .5s;
}

input:checked ~ div.sidebar {
    transform: translateX(0%);
}

div.sidebar {
    position:fixed;
    top:0;
    left:0;
    width:300px;
    height:100%;
    background:rgb(255, 255, 255);
    z-index:110;
    transform: translateX(-100%);
    transition: all 1s;
}

.sidebar {
    overflow: auto;
    cursor: default;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    border-right: 1px solid #e2e2e2;
}

.sidebar::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
}

.sidebar label div {
    filter: none;
}

.sidebar-header-text {
    margin: 0 auto;
    padding: 40px;
}

.sidebar-header-maintext {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 50px;
    margin: 0px;
}

.sidebar-header-subtext {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 300;
    font-size: 30px;
    margin: 0px;
}

.list {list-style: none; margin:0; padding: 0 20px;}

.list li {
    border-bottom: 1px solid rgb(206, 206, 206);
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 20px;
}

.list li {
    display: block;
}

.list li details {
    margin: 20px 0;
}

.list li details > summary {
  list-style: none;
}

.list li details summary {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.list li details span {
    display: block;
    padding:5px 0;
    font-size: 15px;
    font-weight: 300;
}
