*{
	font-size:16px;
}
body{
	margin: 0px;
	
}

header{
	position:fixed;
	z-index:1000;
}
h1{
	position:fixed;
	height: 30px;
	width:100%;
	line-height: 30px;
	margin: 0px;
	background: dodgerblue;
	color: white;
	text-align: center;
	font-size:12px;
}
div.body{
	padding-top:32px;
}

.menu {
	width: 200px;
	height: 100%;
	border-right: red;
	background: #F7F7F7;
	position: fixed;
	z-index: 20;
}
.menu ul{ 
	margin: 0; 
	padding: 0; 
	list-style: none; 
}

.menu li{ 
	display: inline; 
	padding: 0; 
	margin: 0; 
}
.menu li a{
	display: block; 
	border-left: 8px solid #C97556;
	background-color: #474655;
	padding: 3px 10px;
	text-decoration: none;
	color: #E1E2CF;
	width: auto; 
	margin: 1px 0px;
	text-align: left;
	font-size: 14px;
}
.menu li a:hover{
	border-left: 8px solid #990033;
	background-color: #474655;
}

.footer {
	width: 100%;
	height: 60px;
	bottom: 0px;
	background: #F7F7F7;
	position: fixed;
	display:none;
	text-align:center;
	z-index: 20;
}


.main {
	width: fit-content;
	padding: 0px 10px 0px 210px;
}

.addarea{
	text-align:center;
	width:190px;
	height:500px;
	background-color: gray;
	margin: auto;
}


input[type=number]{
	text-align:right;
	width:60px;
}

/*スマホ表示 start*/
@media screen and (max-width: 800px) {
	*{
		font-size:14px;
	}
	.menu-trigger,
	.menu-trigger span {
		display:inline-block !important;
	}
	.menu {
		display:none;
		width:100%;
		height:auto;
		position: absolute;
		top: 30px;
	}
	.menu div{
		display:none;
	}
	.footer {
		display:block;
	}
	.hidden {
		display:none !important;
	}

	.main {
		padding: 0px 2px 50px 2px !important;
	}
}
/*スマホ表示 end*/


/*ハンバーガーメニュー start*/
.menu-trigger,
.menu-trigger span {
  display: none;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
	position: relative;
	width: 21px;
	height: 12px;
	top: 2px;
	right: -6px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 16px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

/*クリック動作*/
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-315deg);
  transform: translateY(8px) rotate(-315deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(0px) rotate(315deg);
  transform: translateY(0px) rotate(315deg);
}
/*ハンバーガーメニュー end*/