@import url('https://fonts.googleapis.com/css2?family=Lora&family=Teko:wght@300&display=swap');
:root {
	--smaller: .75;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html,
body {
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
}
body {
	position: relative;
	background: #000;
	font-family: 'Lora', serif;
	min-height: 640px;
}
.container {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	margin: 0 auto;
	text-align: center;
	height: 100%;
}
.container h1 {
	width: 4.5rem;
	height: auto;
	margin: 0 auto 1.5em;
}
.container .img-wrap {
	position: relative;
	width: 100vw;
	height: 100%;
}
.container .img-wrap video {
	position: static
	width: 100%;
	height: 100%;
}
.container li {
	position: relative;
	min-width: 8em;
	display: inline-block;
	color: #8a8a8a;
	font-size: 1.25em;
	font-family: 'Teko', sans-serif;
	list-style-type: none;
	padding: 0 1em;
	line-height: 1;
	text-transform: uppercase;
}
.container li:not(:last-child) {
	border-right: 1px solid #333;
}
.container li span {
	color: #fff;
	display: block;
	font-size: 7.5em;
	line-height: 1;
	letter-spacing: 0.5rem;
	text-shadow: 2px 2px 8px rgba(160,145,0,0.5),
		-2px 2px 8px rgba(160,145,0,0.5),
		2px -2px 8px rgba(160,145,0,0.5),
		-2px -2px 8px rgba(160,145,0,0.5);
}
.container .sns {
	margin: 2.5rem auto 0;
	font-size: 0.7rem;
	line-height: 1.5;
}
.container .sns a {
	display: inline-block;
	color: #fff;
	text-decoration: none;
}
.container .sns a i {
	display: block;
	font-size: 2.2rem;
	margin-bottom: 0.5rem;
}
@media all and (max-width: 768px) {
	.container h1 {
		width: 3.5rem;
	}
	.container .img-wrap video {
		position: absolute;
		left: 0;
		top: 0;
		width: 200%;
		height: auto;
		transform: translateX(-25%) translateY(-25%);
	}
	.container li {
		min-width: 20vw;
		min-width: 20dvw;
		padding: 0 0.5em;
		font-size: calc(1.25rem * var(--smaller));
	}
	.container li span {
		letter-spacing: 0.25rem;
		font-size: calc(5.5rem * var(--smaller));
	}
	.container .sns a i {
		font-size: 2rem;
	}
}

#footer {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;
	width: 100%;
	padding: 2.5rem 0;
}
#footer ul {
	list-style: none;
}
#footer ul li {
	color: #797979;
	font-size: 0.8rem;
}
#footer ul li a {
	display: inline-block;
	color: #797979;
	padding: 1rem;
	cursor: pointer;
}
#footer .copy {
	font-size: 0.7rem;
	font-family: 'Lora', serif;
	color: #797979;
}

#company-wrap {
	position: absolute; 
	bottom: 0;
	width: 100%; 
	background: #2e2e2e;
	text-align: left;
	color: #ccc;
	transform: translateY(100%);
	transition: transform 1s, opacity 1s;
	overflow: hidden;
	z-index: 10;
	opacity: 0;
}
#company-wrap.show {
	transform: translateY(0);
	transition: transform 1s, opacity 1s;
	opacity: 1;
}
#company-wrap .company-wrap-inner {
	position: relative;
	padding: 4.5rem 1rem 2.5rem;
	max-width: 620px;
	margin: 0 auto;
}

#company-wrap .company-wrap-inner .dli-close-area {
	position: absolute;
	display: inline-block;
	top: 1.5rem;
	right: 1.5rem;
	cursor: pointer;
}

#company-wrap .company-wrap-inner .dli-close {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	color: #ccc;
	line-height: 1;
	width: 2.5em;
	height: 0.1em;
	background: currentColor;
	border-radius: 0.1em;
	transform: rotate(45deg);
}
#company-wrap .company-wrap-inner .dli-close::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	border-radius: inherit;
	transform: rotate(90deg);
}

#company-wrap h1 {
	font-size: 1rem;
	margin: 0 0 1.25rem;
	padding: 0;
}
#company-wrap p {
	font-size: 0.9rem;
	margin: 0 0 0.75rem;
	padding: 0;
}
#company-wrap ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
#company-wrap ul li {
	margin: 0 0 0.75rem;
	padding: 0;
	list-style-type: none;
	color: #ccc;
	font-size: 0.85rem;
}
#company-wrap ul li span {
	padding-right: 1.25rem;
}
#company-wrap ul li a {
	color: #ccc;
}
#company-wrap ul li.note {
	font-size: 0.8rem
}