html,body {
	width: 100%;
	height: 100%;
}
*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
* {
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Zen Kurenaido', sans-serif;
	background-color: #eee;
	color: #2d2d2d;
}
.box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height:75%;
	width: 75%;
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
	height:100vh;
}
.container.privacy {
	height:auto;
}

.container.job .box,
.container.privacy .box,
.container.heading .box {
	border-left: 1vmin solid #900;
}
.container.heading h2 {

}
.container.contact .box {
	border-left: 1vmin solid #eee;
}
.container.contact {
	background-color:#900;
	color:#eee;
}
.container.contact h2 {
	color: #eee;
}


.container.job {
	background-color:#fff;
	color:#333;
	text-align: center;
}
.container.job .box > div {
	padding:10px;
	width:50%;
	font-size: 3vmin;
}

.container.job a {
	color:#900;
}

h1 {
	color: #900;
	font-size: 20vmin;
	line-height: 1em;
	white-space: nowrap;
}
h1 > span {
	color: #2d2d2d;
	font-size: 10vmin;
	padding-left: 2vw;
}
h2 {
	font-size: 7.5vmin;
	margin: 0;
	line-height: 1em;
	white-space: nowrap;
}


.container.privacy {
	margin: 50px 0;
}
.container.privacy h1 {
	font-size:4em;
}
.container.privacy h2 {
	font-size:2em;
}
.container.privacy .box > div > * {
	padding: 20px 20px 0 50px;
}

.container.privacy ul {
	margin-left:50px
}

.container.privacy a {
	color: #900;
}

.container.privacy a:hover {
	border-bottom: 1px solid #900;
}

.container a {
	text-decoration: none;
}

.container.contact a:hover {
	border-bottom: 1px solid #eee;
}
.container a > span {
	color: #2d2d2d;
}
.container.contact a {
	color: #eee;
	padding:10px 30px;
	width:100%;
	height:100%;
	font-size: 6vmin;
}
.container.contact a > span {
	font-size: 4vmin;
}
footer a {
	color: #2d2d2d;
	text-decoration: none;
}
footer a:hover {
	color: #2d2d2d;
	border-bottom: 1px solid #2d2d2d;
}
@media only screen and (min-width: 660px) {
	footer {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	footer > * {
		padding: 20px;
	}
}

footer {
	font-size: 0.9em;
}
footer > * {
	padding: 5px 20px;
}