.index-content .content-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/*height: calc(100vh - 100px);*/
	margin-left: calc(100vh - 100px);
}

.body-index #cookie-notice {
	width: calc(100vh - 100px);
}

#index-img {
	position: fixed;
	width: calc(100vh - 100px);
	background: url('../img/index.png');
	background-size: 100% 100%;
	height: calc(100vh - 100px);
	top: 100px;
	z-index: -1;
}

@media (max-width: 1161px) {
	.index-content .content-container {
		margin-left: calc((100vh - 100px)/2);
	}

	.body-index #cookie-notice {
		width: calc((100vh - 100px)/2);
	}

	#index-img {
		position: fixed;
		width: calc((100vh - 100px)/2);
		background: url('../img/index_small.png');
		background-size: 100% 100%;
		height: calc(100vh - 100px);
		top: 100px;
		z-index: -1;
	}
}