@charset "utf-8";
/* CSS Document */
body{background-color:#FFFFFF}
.left{width: 500px;
margin: 0 30px;}
.right{width: 500px;
margin: 0 30px 0 30px;}

.scale-image{
	width: 175px;
	height: 175px;
	transition-duration: 0.5s;
}
.scale-img:hover{
	transform: scale(1.5,1.5);
	cursor:pointer;
}

a{text-decoration: none;}

body  {
    font-family: "Comic Sans MS", cursive,"Osaka-mono", "MS Gothic", "monospace"
		
}

.menu-btn{
	position: fixed;
	top: 10px;
	right: 10px;
	display: flex;
	height: 60px;
	width: 60px;
	justify-content: center;
	align-items: center;
	z-index: 90;
	background-color:#E0B9FF;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background-color: #FFFFFF;
	position: absolute;
}
.menu-btn span:before {
	bottom: 8px;
}
.menu-btn span:before{
	bottom: 8px;
}
.menu-btn span:after{
	top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span{
	background-color: rgba(225, 225, 225, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before{
	bottom: 0;
	transform: rotate(-45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after{
	top: 0;
	transform: rotate(45deg);
}
#menu-btn-check{
	display: none;
}
.menu-content{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 105%;
	z-index: 80;
	background-color:#FFFFFF;
	transition: all 0.5s;
}
.menu-content ul{
	padding: 70px 10px 0;
}
.menu-content ul il{
	border-bottom: solid 1px #ffffff;
	list-style: none;
}
.menu-content ul il a {
	display: block;
	width: 100%;
	font-size: 30px;
	box-sizing: border-box;
	color: #ffffff;
	text-decoration: none;
	padding: 9px 15px 10px 0;
	position: relative;
}
.menu-content ul il a::before{
	content: "";
	width: 7px;
	height: 7px;
	border-top: solid 2px #ffffff;
	border-right: solid 2px #ffffff;
	transform: rotate(45deg);
    position:absolute;
	right: 11px;
	top:16px;
}
#menu-btn-check:checked ~ .menu-content{
	left: 0;
}

#main{
	background: #ffffff;
}
#main .inner{
	width: 520px;
	max-width: 100%;
	margin: 0 auto;
	padding: 24px;
	background: #ffffff;	
}
#main h1{
	text-align: center;
	margin: 0 0 24px;
}
#main h2{
	text-align: center;
	margin: 0 0 24px;
}

#header{
	z-index: 9999;
	position: fixed;
	top: 0px;
	left: 0px;
}

.link color{
	link:"#000000";
	vlink:"#000000";
	alink:"#7BE0FF";
}

a{
	color:#000000
}


