
@font-face {
	font-family: 'Geist';
	src: url('../font/Geist/Geist-VariableFont_wght.ttf') format('truetype');
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

:root {
  --foreground-color: #000000;
  --my-columns-st: 33%;
  --my-columns-nd: 35%;
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

html,body {
	margin: 0;
	padding: 0;
}
body {
	font-family: Geist;
	color: var(--foreground-color);
	font-weight: normal;
}
a:link {
	color: var(--foreground-color);
	text-decoration: none;
}
a:visited {
	color: var(--foreground-color);
	text-decoration: none;
}
a:hover {
	color: var(--foreground-color);
	text-decoration: underline;
}
h2 {
	font-size: 7.4vw;
	line-height: 7.6vw;
	font-weight: 400;
	letter-spacing: 1px;
	margin: 0;
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

div#content {
	position: relative;
	width:100%;
/*	background-image: url("../img/px.svg");
	background-position: center;	*/
	background-size: 165% auto;
	background-repeat: repeat-y;
	background-color: #01FE00;
	margin: 0 auto;
	padding: 0;
	min-height: 100vh;
}
div#logoTop {
	display: flex;
	justify-content: space-around;
	padding-top: 2.0%;
	padding-left: 1%;
	padding-right: 1%;
}
div#logoTop>span {
	line-height: 0.76em;
	letter-spacing: -0.025em;
	text-transform: uppercase;
	font-weight: 800;
	transform: translateX(-0.8%);
}
div#langSelect {
	font-size: 4.5vw;
	line-height: 4.5vw;
}
div#langSelect>a {
	text-transform: uppercase;
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

div.myColumns {
	display: grid;
	grid-template-columns: 1fr;
	font-size: 4.8vw;
	line-height: 4.9vw;
	font-weight: 500;
}
div.myColumns>div.dummy {
	display: none;
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

div.feedback>div {
	margin-top: 11.2vw;
}
div.feedback>div:first-child {
	margin-top: 0;
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

div.signum {
	margin-top: 0.8em;
	font-style: normal !important;
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.is-current {
	font-weight: bold;
}
.grid-colspan-2 {
	grid-column: span 2;
}
.impress {
	font-size: 3.1vw;
	line-height: 3.4vw;
}
.padding-h {
	padding-left: 4.4%;
	padding-right: 4.2%;
}
.big-screen {
	display: none;
}
.small-screen {
	display: inline;
}
.top-space-1 {
	margin-top: 12%;
}
.top-space-2 {
	margin-top: 7%;
}
.top-space-3 {
	margin-top: 14%;
}
.top-space-4 {
	margin-top: 7%;
}
.top-space-5 {
	margin-top: 19%;
}
.top-space-6 {
	margin-top: 14%;
}
.top-space-7 {
	margin-top: 6%;
}
.bottom-space-1 {
	padding-bottom: 36vw;
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

img#portrait {
	width: 100%;
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
	filter: grayscale(100%);
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

div#deko {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 80vw;
	height: 80vw;
	background-image: url("../img/deko_0.png");
	background-size: cover;
	background-repeat: no-repeat;
}
div#dekoMap {
	position:absolute;
	left:5.5%;
	bottom:19%;
	width:14%;
	height:28.5%;
	cursor: pointer;
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

div#unsubscribe-box {
	position: absolute;
	width: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
div#unsubscribe-box a.closer:link {
	display: inline-block;
	font-size: 6.9vw;
}
div#unsubscribe-box a.closer:visited {
	display: inline-block;
	font-size: 6.9vw;
}
div#unsubscribe-box a.closer:hover {
	display: inline-block;
	font-size: 6.9vw;
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

@media (min-width:900px) {
	div#content {
		background-size: 100% auto;
	}
	div#logoTop {
		padding-top: 1.5%;
		padding-left: 0;
		padding-right: 0;
	}
	div#langSelect {
		font-size: 2.4vw;
		line-height: 2.4vw;
	}
	h2 {
		font-size: 3.7vw;
		line-height: 3.8vw;
		font-weight: 400;
		letter-spacing: 2px;
	}
	div.myColumns {
		grid-template-columns: var(--my-columns-st) var(--my-columns-nd) auto;
		font-size: 2.0vw;
		line-height: 2.4vw;
	}
	div.myColumns>div.dummy {
		display: block;
	}
	
	/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
	
	div.feedback>div {
		margin-top: 0;
	}
	div.feedback>* {
		padding-right: 14%;
	}
	
	/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
	
	.impress {
		font-size: 1.6vw;
		line-height: 1.9vw;
	}
	.padding-h {
		padding-left: 2.4%;
		padding-right: 1.5%;
	}
	.big-screen {
		display: inline;
	}
	.small-screen {
		display: none;
	}
	
	/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
	
	.top-space-1 {
		margin-top: 7.9%;
	}
	.top-space-2 {
		margin-top: 1.3%;
	}
	.top-space-3 {
		margin-top: 7.9%;
	}
	.top-space-4 {
		margin-top: 2.9%;
	}
	.top-space-5 {
		margin-top: 18%;
	}
	.top-space-6 {
		margin-top: 14%;
	}
	.top-space-7 {
		margin-top: 6%;
	}
	.bottom-space-1 {
		padding-bottom: 29vw;
	}
	
	/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
	
	img#portrait {
		width: 22vw;
		-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
		filter: grayscale(100%);
	}
	
	/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
	
	div#deko {
		width: 40vw;
		height: 40vw;
	}
	div#dekoMap {
		left:2.5%;
		bottom:14%;
		width:7%;
		height:18.5%;
	}
	div#unsubscribe-box a.closer:link {
		display: inline-block;
		font-size: 4.9vw;
	}
	div#unsubscribe-box a.closer:visited {
		display: inline-block;
		font-size: 4.9vw;
	}
	div#unsubscribe-box a.closer:hover {
		display: inline-block;
		font-size: 4.9vw;
	}
}



