#s_nav {
	position: fixed;
	top: 0;
	width: 300px;
	height: 100%;
	left: -300px;
	z-index: 20;
	background-color: #000;
}
#s_nav ul {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%); /* Safari用 */
	transform: translate(-50%, -50%);
}
#s_nav li {
	border-top-color: #fff601;
	list-style: none;
	border-bottom: 3px solid #fff601;
}
#s_nav li:last-child {
	border: none;
}
#s_nav li a{
	display: block;
	padding-top: 15px;
	padding-right: 5px;
	padding-left: 5px;
	padding-bottom: 15px;
	text-align: center;
	text-decoration: none;
	opacity: 1;
	-webkit-transition: all .4s;
	transition: all .4s;
	font-family: "Arial Black", Gadget, sans-serif;
	letter-spacing: 2px;
	font-size: 16px;
	line-height: 22px;
	color: #fff601;
	font-weight: bold;
}
#s_nav li a:hover {
	color: #F58C62;
}
#s_nav ul#s_sns    {
	position: relative;
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
	-webkit-justify-content: space-between; /* Safari */
	justify-content: space-between;
	-webkit-align-items: center;/* Safari */
	align-items: center;
	margin-top: 25px;
	width: 80%;
}
ul#s_sns li {
	border: none;
}
ul#s_sns li a {
	display: block;
	width: 24px;
	height: 24px;
	text-align: center;
	padding:0;
}
ul#s_sns li a img {
	vertical-align: middle;
}
#toggle_button{
	position: fixed;
	top: 20px;
	left: 20px;
	width: 130px;
	height: 130px;
	outline: none;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: 25;
	border: none;
	background-color: #FFFFFF;
	margin: 0;
	border-radius: 50%;
	padding: 0;
}
	.toggle {
	position: relative;
	width: 40px;
	height: 31px;
	font-family: "Courier New", Courier, monospace;
	line-height: 30px;
	font-weight: bold;
}
.toggle span {
	background-color: #000;
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
}

.toggle,
.toggle span {
	display: inline-block;
	-webkit-transition: all .4s;
	transition: all .4s;
	box-sizing: border-bosx;
}
.toggle span:nth-of-type(1) {
	top: 0;
}
.toggle span:nth-of-type(2) {
	top: 14px;
}
.toggle span:nth-of-type(3) {
	bottom: 0;
}

/*--　ここからトグルアクション  --*/
.toggle.active {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}
.toggle.active span:nth-of-type(1) {
	-webkit-transform: translateY(14px) rotate(-45deg);
	transform: translateY(14px) rotate(-45deg);
}
.toggle.active span:nth-of-type(2) {
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
}
.toggle.active span:nth-of-type(3) {
	opacity: 0;
}

@media screen and (max-width:768px){
	#toggle_button{
	width: 90px;
	height: 90px;
	top: 10px;
	left: 10px;
	}
	.toggle {
	width: 32px;
	height: 24px;
	}
	.toggle span {
	}
	.toggle span:nth-of-type(2) {
	top: 11px;
	}
	.toggle.active span:nth-of-type(1) {
	-webkit-transform: translateY(11px) rotate(-45deg);
	transform: translateY(11px) rotate(-45deg);
	}
}

@media screen and (max-width:480px){
#s_nav {
	width: 100%;
	left: -100%;
	background-color: hsla(0,0%,0%,0.70);
}
#toggle_button {
	width: 65px;
	height: 65px;
	top: 15px;
	left: 15px;
}
.toggle {
	width: 24px;
	height: 20px;
}
.toggle span {
	height: 2px;
}
.toggle span:nth-of-type(2) {
	top: 9px;
}
.toggle.active span:nth-of-type(1) {
	-webkit-transform: translateY(9px) rotate(-45deg);
	transform: translateY(9px) rotate(-45deg);
}
}

@media screen and (max-height:700px){
#toggle_button{
	width: 90px;
	height: 90px;
	top: 10px;
	left: 10px;
}
.toggle {
	width: 32px;
	height: 24px;
}
.toggle span {
}
.toggle span:nth-of-type(2) {
	top: 11px;
}
.toggle.active span:nth-of-type(1) {
	-webkit-transform: translateY(11px) rotate(-45deg);
	transform: translateY(11px) rotate(-45deg);
}
}
