.wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 1;
	pointer-events: none;
}

#mainSVG {
	width: 100%;
	height: 100%;
}

/* カーソルの初期style */
#cursor {
	pointer-events: none;
	position: absolute;
	top: -100px;
	left: 0px;
	width: 2px;
	height: 100px;
	background: rgba(0, 0, 0, 0);
	transform: translate(0, 0);
	/* z-index: 10; */
	animation: flash 1s linear infinite;
}

#message {
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0.5rem;
	color: rgba(0, 0, 0, 0);
	transform: translate(0, 0);
	/* z-index: 10; */
	user-select: none;
	font-size: 1rem;
}

.moji_setting_panel {
	font-size: 0.9rem;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.moji_size {
	width: 6.5rem;
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
}

.moji_size_up,
.moji_size_down {
	font-size: 1.5rem;
	height: 3rem;
	width: 3rem;
	border-style: solid;
	border-width: 1px;
	text-align: center;
	padding-top: 0.55rem;
	user-select: none;
}

.moji_size_up {
	font-size: 2rem;
	padding-top: 0.3rem;
}

.moji_size_down {
	font-size: 1rem;
	padding-top: 0.85rem;
}

/* 携帯を機能を非表示 */
@media screen and (max-width: 1100px) {
	/* カーソルのメッセージ */
	#cursor #messsage {
		display: none !important;
	}
	/* 文字の大きさ変更 */
	.moji_setting_panel {
		display: none !important;
	}
}


@keyframes flash {

	0%,
	40% {
		opacity: 1;
	}

	51%,
	90% {
		opacity: 0;
	}
}