body {
	background: #b8b8b8;
	font-family: "メイリオ", Meiryo, Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
	font-size: 12px;
	color: #555555;
	margin: 0;
}
a {
	color: #555555;
	text-decoration: none;
}
img {
	pointer-events: none;
	user-drag: none;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}
/* --- しめじ --- */
.shimeji {
	position: fixed;
	z-index: -55555;
}

/* --- トグルボタン --- */
.toggle_input {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	opacity: 0;
	cursor: pointer;
}

.toggle_label {
	width: 35px;
	height: 18px;
	background: #ccc;
	position: relative;
	display: inline-block;
	border-radius: 40px;
	transition: 0.4s;
	box-sizing: border-box;
}

.toggle_label:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}

.toggle_input:checked + .toggle_label {
	background-color: #4BD865;
}

.toggle_input:checked + .toggle_label:after {
	left: 17px;
}

.toggle_button {
	position: relative;
	width: 36px;
	margin: auto 0px auto 8px;
	display: flex;
	align-items: center;
}