/* member grid */
.member-grid{
	max-width: 80%;
    padding: 0;
    margin: 0 auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style: none;
    justify-items: center;
    align-items: center;
}

.member-grid img{
	width:100%;
	object-fit:cover;
}

.member-grid p{
	align-items:center;
	text-align:center;
	margin-top:0.5em;
	margin-bottom:10px;
}

.member-grid a{
	margin: 2px;
	max-width:250px;
	max-height:300px;
	color:#fff;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
	text-decoration: none;
	font-family:"HGS創英角ﾎﾟｯﾌﾟ体";
}


/* news grid */
.news-grid{
    padding:0;
	margin:0;
	list-style:none;
    overflow-y: scroll;
    height: 75vh;
}

.news-grid li{
    border-bottom: 1px solid #000;
    margin-bottom: 10px;
    margin-left: 1.5em;
    margin-right: 1.5em;
}

.news-grid p{
    padding-left: 1em;
    margin-bottom: 0.5em;
    text-align: left;
}

.news-grid a{
    color:#000;
    text-decoration:none;
}


@media screen and (max-width: 600px) {
    .member-grid{
		grid-template-columns:repeat(1, minmax(0, 1fr));
	}

	.news-grid{
        height: 50vh;
    }
}