.helpbox {
	display: block;
	position: fixed;
	top: calc(100vh - 330px);
	left: 100vw;
	width: 250px;
	height: 300px;
	opacity: 0;
	z-index: 1000;
	animation-name: fadein;
	animation-duration: 600ms;
	animation-delay: 3000ms;
	animation-fill-mode: forwards;
}

@media screen and (max-width: 812px) {
	.helpbox {
		display: none;
	}
}

.helpbox__searchbox {
	display: block;
	position: relative;
	background-color: gray;
	border-radius: 8px;
	width: calc(100% - 10px);
	height: 85px;
	margin-bottom: 5px;
	padding: 5px;
}

.helpbox__searchbox:before {
	content: '';
	position: absolute;
	top: 78%;
	left: 35%;
	width: 0px;
	height: 0px;
	border-right: solid 20px transparent;
	border-left: solid 20px gray;
	border-top: solid 20px transparent;
	border-bottom: solid 20px transparent;
	transform: rotate(-45deg);
}

.helpbox__searchbox__label {
	display: block;
	position: relative;
	color: white;
	width: 100%;
	height: 20px;
	line-height: 20px;
	font-size: 16px;
	font-family: 'Meiryo UI';
}

.helpbox__searchbox__label:before {
	content: '僕のホームページへようこそ！';
}

.helpbox__searchbox__input {
	width: 100%;
	background-color: white;
	border: none;
	outline: none;
	height: 30px;
	margin: 5px auto;
}

.helpbox__searchbox__button {
	position: relative;
	display: inline-block;
	margin: 0 auto;
	border: solid 1px white;
	width: 50px;
	height: 24px;
	background-color: gray;
	color: white;
	cursor: pointer;
	outline: none;
}

.helpbox__searchbox__button:before {
	content: '検索';
}

.helpbox__searchbox__button:hover {
	box-shadow: 0 0 5px white;
}

.helpbox__searchbox__button:active {
	box-shadow: 0 0 5px black inset;
	text-shadow: 0 0 5px black;
}

.helpbox__charaview {
	display: block;
	position: relative;
	width: 150px;
	height: 200px;
	margin-left: 100px;
	background-image: url('/info/helpicon200.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	animation-delay: 0ms;
	animation-duration: 450ms;
	animation-timing-function: ease;
}

@keyframes fadein {
	0% {
		left: 100vw;
		opacity: 0;
	}

	100% {
		left: calc(100vw - 280px);
		opacity: 1;
	}
}

@keyframes jump {
	0% {
		top: 0;
	}

	50% {
		top: -25px;
	}

	100% {
		top: 0;
	}
}

@keyframes rotate {
	0% {
		transform: rotateY(0deg);
	}

	100% {
		transform: rotateY(360deg);
	}
}

@keyframes vibe {
	0% {
		left: 0;
	}

	25% {
		left: -15px;
	}

	50% {
		left: 0;
	}

	75% {
		left: -15px;
	}

	100% {
		left: 0;
	}
}