body {
	background: white;
}







/*
/
/	  GRID
/
*/

.annotation {
	margin: 0 auto;
	width: 400px;
	text-align: center;
}
.river-with-list {
	padding: 0 0 40px 0;
	border-bottom: 1px solid var(--color-graylight);
}
.grid {
}
.river {
}
.list {
	display: none;
}
.thumb {
    width: 80px;
    height: 80px;
    float: right;
    clear: both;
	background-color: var(--color-graylight);
	background-image: url("../img/image-border.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
.list ul {
	margin: 30px 0 0 0;
}
.list ul li {
	margin: 0 0 40px 0;
	box-shadow: inset 0 0 0 1px var(--color-sg);
}
.list ul li:last-child {
	margin: 0;
}

@media only screen and (min-width: 768px) {
}

@media only screen and (min-width: 1020px) {
	.annotation {
		display: none;
	}
	.grid {
		margin: 0 auto;
		display: grid;
		width: 980px;
		grid-template-columns: 640px 300px;
		grid-gap: 40px;
	}
	.river {
		grid-column: 1;
		grid-row: 1;
	}
	.list {
		display: block;
		grid-column: 2;
		grid-row: 1;
	}
}

@media only screen and (min-width: 1360px) {
	.grid {
		width: 1320px;
		grid-template-columns: 980px 300px;
	}
}














