main.main {
	flex-grow: 1;
	background-color: var(--background);
	min-width: var(--min-width);
	margin-top: var(--head-height);
	display: block;
	overflow-x: hidden;
}
main.main ul, main.main ol {
	text-align: left;
}
main.main > *:last-child {
margin-bottom: 0 !important;
}

main.main .main-title-2 {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-color: var(--stand-title2-background);
}
main.main .main-title-2 > div {
	height: var(--stand-title2-height);
	min-height: var(--stand-title2-min-height);
	display: grid;
	place-items: end center;
}
main.main .main-title-2 h1 {
	display: inline-block;
	color: var(--stand-title2-color);
	text-align: center;
	transform: translateY(0.25em);
	font-size: calc(var(--stand-h1-font-size) * 1.5);
	font-weight: var(--stand-title2-font-weight);
	line-height: 1.2em;
	text-shadow: 0px 0px 10px var(--stand-title2-text-shadow);
}

main.main .content-stand > * {
margin-bottom: var(--stand-margin-bottom);
}
main.main .content-stand > *:last-child {
margin-bottom: 0;
}
main.main .content-stand > *:first-child {
margin-top: 0;
}

main.main .content-stand .m-t-minus {
margin-top: calc(0px - var(--stand-margin-bottom));
}
main.main .content-stand {
font-size: var(--stand-font-size);
font-weight: var(--stand-font-weight);
line-height: var(--stand-line-height);
color: var(--stand-color);
}
main.main .content-stand > h1 {
font-size: var(--stand-h1-font-size);
font-weight: var(--stand-h1-font-weight);
line-height: var(--stand-h1-line-height);
color: var(--stand-h1-color);
margin-top: var(--stand-h1-margin-top);
margin-bottom: var(--stand-h1-margin-bottom);
}
main.main .content-stand > h2 {
font-size: var(--stand-h2-font-size);
font-weight: var(--stand-h2-font-weight);
line-height: var(--stand-h2-line-height);
color: var(--stand-h1-color);
margin-top: var(--stand-h2-margin-top);
margin-bottom: var(--stand-h2-margin-bottom);
}
main.main .content-stand > h3 {
font-size: var(--stand-h3-font-size);
font-weight: var(--stand-h3-font-weight);
line-height: var(--stand-h3-line-height);
color: var(--stand-h3-color);
margin-top: var(--stand-h3-margin-top);
margin-bottom: var(--stand-h3-margin-bottom);
}
main.main .content-stand a:not(.button):not(.link-special) {
color: var(--stand-link-color);
font-weight: var(--stand-link-weight);
text-decoration: var(--stand-link-decoration);
}
main.main .content-stand a:not(.button):not(.link-special):hover {
color: var(--stand-link-color-hover);
text-decoration: var(--stand-link-decoration-hover);
}
main.main .content-stand ul > li, main.main .content-stand ol > li {
	counter-increment: count 1;
}
main.main .content-stand ul, main.main .content-stand ol {
	counter-reset: count 0;
	list-style-position: outside;
	margin-left: var(--stand-list-margin-left);
}
main.main .content-stand ul.sub-list, main.main .content-stand ol.sub-list {
	margin-left: var(--stand-sublist-margin-left);
	font-size: calc(var(--stand-font-size) - 1px);
}
main.main .content-stand ul > li::marker, main.main .content-stand ol > li::marker {
	font-size: var(--stand-list-marker-font-size);
	color: var(--stand-list-marker-color);
	font-weight: var(--stand-list-marker-font-weight);
}
main.main .content-stand ul.sub-list > li::marker, main.main .content-stand ol.sub-list > li::marker {
	font-size: calc(var(--stand-list-marker-font-size) - 1px);
	color: var(--stand-sublist-marker-color);
	font-weight: var(--stand-sublist-marker-font-weight);
}
main.main .content-stand ul.circle, main.main .content-stand ol.circle {
	list-style-type: circle;
}
main.main .content-stand ul.circle > li::marker, main.main .content-stand ol.circle > li::marker {
	content: '\25CB    ';
}
main.main .content-stand ul.disc, main.main .content-stand ol.disc {
	list-style-type: disc;
}
main.main .content-stand ul.disc > li::marker, main.main .content-stand ol.disc > li::marker {
	content: '\25CF    ';
}
main.main .content-stand ul.decimal, main.main .content-stand ol.decimal {
	list-style-type: decimal;
}
main.main .content-stand ul.decimal > li::marker, main.main .content-stand ol.decimal > li::marker {
	content: counter(count, decimal) '.   ';
}
main.main .content-stand ul.alpha, main.main .content-stand ol.alpha {
	list-style-type: lower-alpha;
}
main.main .content-stand ul.alpha > li::marker, main.main .content-stand ol.alpha > li::marker {
	content: counter(count, lower-alpha) ')   ';
}
main.main .content-stand ul.roman, main.main .content-stand ol.roman {
	list-style-type: upper-roman;
}
main.main .content-stand ul.roman > li::marker, main.main .content-stand ol.roman > li::marker {
	content: counter(count, upper-roman) '   ';
}
main.main .content-stand ul.dash > li::marker, main.main .content-stand ol.dash > li::marker {
	content: '\2012    ';
}
main.main .content-stand table {
	width: var(--stand-table-width);
	table-layout: fixed;
	text-align: var(--stand-table-align);
	background-color: var(--stand-table-background);
	font-size: var(--stand-table-font-size);
	font-weight: var(--stand-table-font-weight);
	color: var(--stand-table-color);
}
main.main .content-stand table td {
	padding: calc(var(--stand-table-padding) / 2) var(--stand-table-padding) calc(var(--stand-table-padding) / 2) var(--stand-table-padding);
	border-bottom: var(--stand-table-border);
}
main.main .content-stand table tr.title td {
	background-color: var(--stand-table-title-background);
	border-bottom: 0;
	font-size: var(--stand-table-title-font-size);
	font-weight: var(--stand-table-title-font-weight);
	color: var(--stand-table-title-color);
}



main.main .blog > * > div {
	display: grid;
	place-items: stretch stretch;
}

main.main .blog > * {
	border-bottom: solid 1px var(--color-7);
}

main.main .blog > * > div > *:last-child {
	line-height: 0;
}

main.main .blog > * > div > *:last-child > img {
	object-fit: cover;
	object-position: center center;
	width: 100%;
	height: 100%;
	max-height: 350px;
}

main.main .blog > * > *:first-child {
font-weight: 200;
}

main.main .blog .content-stand p {
line-height: 1.6em;
}

main.main .blog-nawi {
	display: grid;
	grid-template: 1fr / 50% 50%;
	grid-auto-flow: column;
	place-items: center start;
}
main.main .blog-nawi > *:last-child {
	justify-self: end;
}

@media (min-width: 1200px){
main.main .blog > * > div {
	grid-template: 1fr / 50% 50%;
	grid-auto-flow: column;
}
main.main .blog > *:nth-child(even) > div > *:first-child {
grid-column: 1 / 2;
margin-right: 30px;
}
main.main .blog > *:nth-child(even) > div > *:last-child {
grid-column: 2 / 3;
}
main.main .blog > *:nth-child(odd) > div > *:first-child {
grid-column: 2 / 3;
margin-left: 30px;
}
main.main .blog > *:nth-child(odd) > div > *:last-child {
grid-column: 1 / 2;
}
}

@media (max-width: 1199px){
main.main .blog > * > div {
	grid-template: auto / 100%;
	grid-auto-flow: row;
	row-gap: 15px;
}
main.main .blog > * > div > *:first-child {
grid-row: 2 / 3;
}
main.main .blog > * > div > *:last-child {
grid-row: 1 / 2;
}

main.main .blog {
	text-align: center;
}

}