@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 1em;
	font-family: inherit;
	border: 0;
	background-color: transparent;
	background-repeat: no-repeat no-repeat;
	background-position: center center;
	background-size: contain;
	outline: 0;
	line-height: inherit;
}

.hidden {
	display: none;
}


@font-face {
	font-family: "mikachanPS";
	src: url(fonts/mikachanPS.woff);
}
.font-mikachanPS,
body {
	font-family: "mikachanPS";
}

html {
	scroll-behavior: smooth;
}
body {
	font-size: 16px;
	line-height: 144%;
}
.wrapper {
	width: 100vw;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #000;
	overflow: hidden;
}

h1 {
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 64px;
	color: #666;
}
.screen {
	margin: auto;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
	opacity: 1;
	transition: all 0.5s ease 0s;
	background-size: cover;
}
.screen[start] {
	opacity: 0;
}
.clock {
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	font-size: 0.8em;
	line-height: 100%;
	color: #fff;
	text-shadow:
		0 0 2px #000,
		0 0 2px #000,
		0 0 2px #000;
}
.date {
	font-size: 0.7em;
	display: block;
}
.clock hr {
	width: 4em;
	height: 0.05em;
	background-color: #000;
	display: block;
	box-shadow:
		0 0 5px #fff,
		0 0 5px #fff,
		0 0 5px #fff,
		0 0 5px #fff,
		0 0 5px #fff,
		0 0 5px #fff,
		0 0 5px #fff,
		0 0 5px #fff,
		0 0 5px #fff,
		0 0 5px #fff;
}
.time {
	padding-top: 0.1em;
	font-size: 1em;
	display: block;
}


.utiyoso-area {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	position: absolute;
	left: 0;
	bottom: 0;
	overflow-x: scroll;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
}
.utiyoso {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	bottom: 0;
	transform-origin: left bottom;
	scroll-behavior: smooth;
}
.utiyoso label {
	min-width: 150vw;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-direction: column;
	position: relative;
	align-content: space-around;
	flex-wrap: nowrap;
	overflow: hidden;
	scroll-snap-align: center;
}
/*
.utiyoso label:first-child {
	padding-left: calc((100vw - 571px) / 4);
}
.utiyoso label:last-child {
	padding-right: calc((100vw - 571px) / 4);
}
*/
.utiyoso .images {
	filter: opacity(0%);
	transition: filter 0.25s ease 0s;
}
.utiyoso .request-radio:checked ~ .images,
.utiyoso .request-radio:checked ~ .name {
	filter: opacity(100%);
}
.utiyoso .request-radio:checked ~ .images,
.utiyoso .images:hover {
}
.utiyoso .name {
	font-size: 0.6em;
	font-weight: 800;
	width: 8em;
	height: 1.5em;
	padding: 0.5em 0;
	margin: 0 auto;
	position: absolute;
	right: 0;
	left: 0;
	bottom: 80%;
	transform: translateX(125%);
	line-height: 0;
	text-align: center;
	color: #fff;
	text-shadow: 1px 1px 3px #000;
	border-bottom: 2px solid #fff;
	z-index: -1;
	filter: opacity(0%);
	transition: filter 0.25s linear 0.25s;
}
.utiyoso .name::after {
	content: "";
	width: 18em;
	position: absolute;
	top: 18.35em;
	right: -3.8em;
	border-bottom: 2px solid #fff;
	transform: rotateZ(-70deg);
	transform-origin: left top;
}
[data-device="smp"] .name {
	scale: 0.6;
}
[data-device="smp"] .name strong {
	font-size: 1.3em;
}

.message {
	font-size: 16px;
	width: 150px;
	height: 7em;
	margin: 0;
	padding: 0.5em;
	position: fixed;
	left: 0;
	top: 0;
	border: 1px solid #888;
	color: #000;
	border-radius: 0.5em;
	background-color: #fff;
	filter: drop-shadow(2px 1px 4px #888);
	line-height: 114%;
	resize: none;
	transition: all 0.5s ease 0s;
}
.message:focus {
	width: 90%;
	margin: auto;
	right: 0;
	top: 6em;
	opacity: 0.8;
	z-index: 2;
}
.nickname {
	margin: 0 0.5em;
	font-size: 0.35em;
	position: fixed;
	top: 3.5em;
	right: 0;
	color: #444;
	text-shadow:
		0 0 5px #fff,
		0 0 5px #fff,
		0 0 5px #fff,
		0 0 5px #fff,
		0 0 5px #fff;

}

.utiyoso-area::-webkit-scrollbar {
	width: 24px;
	height: 24px;
	background: transparent;
	background: rgba(0, 0, 0, 1);
}
.utiyoso-area::-webkit-scrollbar-thumb {
	border-radius: 0;
}


::-webkit-scrollbar {
	width: 16px;
	height: 16px;
	background: #000;
}
::-webkit-scrollbar-thumb {
	background: rgba(255, 128, 200, 0.4);
	border-radius: 16px;
}

.request-radio {

}
.footer {
	font-size: 0.3em;
	font-weight: 800;
	width: auto;
	max-width: 500px;
	margin: auto;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	position: fixed;
	right: 0;
	left: 0;
	bottom: 2em;
	z-index: 1;
}
:fullscreen .footer {
}

.footer a,
.footer label {
	width: calc(100% / 11 * 2);
	padding: 1em 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	background-color: rgba(255, 255, 255, 0.7);
	color: #444;
	line-height: 125%;
	text-decoration: none;
	border: 3px solid #444;
	cursor: pointer;
}
.footer .left {
	border-top-left-radius:  50% 2em;
	border-bottom-left-radius: 1em;
}
.footer .center {
	border-left: 0;
	border-right: 0;
}
.footer .right {
	border-top-right-radius: 50% 2em;
	border-bottom-right-radius: 1em;
}
.footer .submit {
	width: calc(100% / 11 * 3);
	border-top-left-radius: 50% 1.5em;
	border-top-right-radius: 50% 1.5em;
	background-color: rgba(255, 200, 230, 0.7);
}
.submit span {
	font-size: 1.25em;
}
.submit strong {
	width: 100%;
	font-size: 1.75em;
	display: flex;
	align-items: center;
	justify-content: center;
}
.submit:hover {
	background-color: rgba(255, 200, 230, 1);
}


.komori {
	height: 10vh;
	display: flex;
	position: fixed;
	top: -200px;
	left: -200px;
	filter: drop-shadow(0 0  5px #fff);
	transition: all 2s ease 0s;
	animation: komori 10s ease 0s infinite alternate;
}
@keyframes komori {
0% {
	transform: rotateZ(0deg);
}
100% {
	transform: rotateZ(360deg);
}
}
.login {
	display: flex;
	flex-direction: column;
	color: #ccc;
}
.login form {
	margin: 0 0 2.5em 0;
	padding: 0 3em;
	display: flex;
	flex-direction: column;
}
.login input {
	margin: 1em 0;
	padding: 0.5em;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.2);
	color: #fff;
}
.login input::placeholder {
	color: #888;
}