@media (min-width: 768px) {
	:root {
		--GanmarContainerWidth: 720px;
	}
	
	body:before,
	header:before,
	.content-expandable:before,
	.object-box .content-container:before {
		background-image: 
			url(../images/pixel.png),
			url(../images/pixel.png),
			url(../images/pixel.png),
			url(../images/pixel.png);
		background-position:
			0 0,
			calc((100% / 3) * 1) 0,
			calc((100% / 3) * 2) 0,
			100% 0;
		background-repeat:
			repeat-y,
			repeat-y,
			repeat-y,
			repeat-y;
	}
	
	header .header-menu-container {
		left: calc(50% + ((var(--GanmarContainerWidth) / 6) * 1));
		width: calc(((var(--GanmarContainerWidth) / 6) * 2) - 1px);
	}
	
	header .header-search-form {
		width: calc(var(--GanmarContainerWidth) / 3);
	}
	
	.object-modal .modal-content {
		height: 600px;
	}
	.object-modal .block-content {
		height: 100%;
	}
	.object-modal .content-1 {
		height: 100% !important;
		padding-left: 8% !important;
		padding-right: 8% !important;
	}
}