@CHARSET "UTF-8";

.body{
	margin: 0;
}

.wrapper {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	margin: 0;
	height: 99vh;
	-webkit-flex-flow: column nowrap;
	flex-flow: column nowrap;
	align-items: stretch;
}

.wrapper>* {
	box-sizing: border-box;
	-moz-box-sizing: border-box; /* Firefox */
	-webkit-box-sizing: border-box; /* Safari */
}


.wrapper .header {
	order: 1;
	min-height: 5.5em; /* IE11 */
	min-height: min-content;
	min-height: -moz-min-content;
	min-height: -webkit-min-content;
	max-height: 5.5em; /* IE11 */
	max-height: min-content;
	max-height: -moz-min-content;
	max-height: -webkit-min-content;
	flex-basis: 10%;
	border-bottom: solid 1px;
	white-space: nowrap;
}

.wrapper .container {
	order: 2;
	height: 90%;
}

.wrapper .header .topFrame {
	display: none;
}

.wrapper .header .menuBtn {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.wrapper .main {
	order: 3;
	width: 100%;
	height: 95%;
	word-wrap: normal;
}

.wrapper .container .aside {
	flex: 1 100%;
	order: 2;
	border-bottom: solid 1px;
	height: 2.5em;
}

.wrapper .container .aside .menuMain {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;
	margin-top: 1px;
	max-height: inherit;
}

.wrapper .container .aside .menuBtn {
	width: 100%;
	text-align: right;
	height: 100%;
	font-size: 0.7em;
}

.wrapper .container .aside .menuBtn #taikeiLoad {
	width: 4em;
	padding-right: 0em;
}

@media ( min-width : 768px) {
	.wrapper .main {
		display: block !important;
	}
	
	.wrapper .container .aside .menuMain {
		display: block !important;
	}
	
	.wrapper .header {
		order: 1;
		flex-basis: 10%;
	}
	.wrapper .container .aside .menuBtn {
		display: none;
	}
	.wrapper .container .aside .menuMain {
		display: block;
		height: 100%;
		position: relative;
		height: inherit;
		border: none;
	}
	.wrapper .container .aside {
		height: inherit;
		max-width: 25em;
		border: none;
	}
	.wrapper .main {
		flex: 5 0px;
		border-left: solid 1px;
		height: inherit;
		overflow: hidden;
	}
	.wrapper .header .menuBtn {
		display: none;
	}
	.wrapper .header .topFrame {
		display: block;
		position: relative;
		height: 100%;
		max-height: inherit;
	}
	.wrapper .container {
		-webkit-flex-flow: row nowrap;
		flex-flow: row nowrap;
		align-items: stretch;
		display: inline-flex;
		height: 100%;
	}
}
