
div#sidebar div.logo {
    opacity: 1;
}

div#sidebar ul.menu {
    opacity: 1;
}

header#header {
    display: none;
}

div#ham {
    display: none;
}

main#main {
    background: white;
    padding: 0;
    min-height: 100vh;
}

section#news {
    width: 68.61vw;
    margin: 0 auto 0;
    padding-top: 15.69vw;
    padding-bottom: 6.94vw;
}

section#news .news-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

section#news .news-row a {
    text-decoration: none;
    color: #222;
}

section#news .news {
    width: 22.22vw;
    height: 25vw;
    margin-top: 1.67vw;
    box-shadow: 0px 2px 10px rgb(0 0 0 / 10%);
}

section#news .news .image {
    width: 22.22vw;
    height: 15.28vw;
    overflow: hidden;
}

section#news .news .image img {
    transition: all 500ms;
}

section#news .news .image img.zoom {
    transform : scale(1.2,1.2);
}

section#news .news .date {
    font-size: 0.69vw;
    margin-top: 0.69vw;
    margin-left: 0.97vw;
}

section#news .news .title {
    font-size: 0.97vw;
    margin-top: 1.39vw;
    margin-left: 0.97vw;
}

section#news ul.pagelink {
    display: flex;
    list-style: none;
    margin: 2.78vw auto 0;
    font-size: 1.11vw;
    font-weight: bold;
    width: fit-content;
    justify-content: space-between;
}

section#news ul.pagelink li {
    margin-left: 1.39vw;
    margin-right: 1.39vw;
}

section#news ul.pagelink a {
    text-decoration: none;
    color: #222;
}

section#news ul.pagelink li.current {
    color: #BD1E2F;
}

@media screen and (max-width: 780px) {
    div#sidebar div.logo {
        opacity: 0;
    }

    div#sidebar ul.menu {
        opacity: 0;
    }

    header#header {
        display: block;
    }
    
    div#ham {
        display: block;
    }
    
    main#main {
        min-height: 100vh;
    }

    section#news {
        width: 85.33vw;
        margin: 0 auto 0;
        padding-top: 29.33vw;
        padding-bottom: 37.6vw;
    }

    section#news .news-row {
        display: flex;
         flex-direction: column;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    section#news .news {
        width: 85.33vw;
        height: 96vw;
        margin-top: 6.4vw;
        box-shadow: 0px 2px 10px rgb(0 0 0 / 10%);
    }

    section#news .news .image {
        width: 85.33vw;
        height: 58.67vw;
    }

    section#news .news .date {
        font-size: 2.67vw;
        margin-top: 2.67vw;
        margin-left: 3.73vw;
    }

    section#news .news .title {
        font-size: 3.73vw;
        margin-top: 5.33vw;
        margin-left: 3.73vw;
    }

    section#news ul.pagelink {
        display: flex;
        list-style: none;
        margin: 6.4vw auto 0;
        font-size: 3.73vw;
        font-weight: bold;
        width: fit-content;
        justify-content: space-between;
    }

    section#news ul.pagelink li {
        margin-left: 5.33vw;
        margin-right: 5.33vw;
    }

}