/* ======================================
/* page general setting
====================================== */
html, body {
	width: 100%;
	height: 100%;
	color: #333;
	overflow: hidden;
	line-height: 2em;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	-webkit-user-select: none;
}

#pageTop h1 {
	background-repeat: no-repeat;
	background-size: 30px;
	background-position: 10px center;
	text-indent: 35px;
}

/* 1次元バーコードスキャン */
#scanBarcode {
	z-index: 2000;
	width: 640px;
	height: 480px;
	border-radius: 3px;
	background-color: #FCFCFC;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
	position: fixed;
	left: 50%;
	top: 100px;
	margin-left: -320px;
	display: none;
}

#scanBarcode.active { display: block; }

#barcodeCanvas,
#barcodeVideo {
	border-radius: 3px;
	width: 640px;
	height: 480px;
	position: absolute;
	left: 0;
	top: 0;
}

#barcodeClose {
	width: 40px;
	height: 40px;
	background-image: url(../icon/cancel.svg);
	background-position: center center;
	background-size: 100%;
	background-repeat: no-repeat;
	position: absolute;
	right: -50px;
	top: 10px;
}

#barcodeCamera {
	width: 100px;
	height: 100px;
	background-image: url(../icon/integrated_webcam.svg);
	background-position: center center;
	background-size: 100%;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: -100px;
	margin-top: -50px;
}

/* モーダルレイヤー */
#modalLayer {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 1000;
	transition: ease-out 200ms;
	opacity: 0;
	display: none;
}

/* テンキー */
#inputNumber {
	position: absolute;
	padding: 7px;
	top: 70px;
	width: 267px;
	background-color: #000;
	border-top: 5px solid #FFF;
	border-bottom: 5px solid #FFF;
	border-radius: 5px;
	box-shadow: 0 0 1px 1px rgba(0,0,0,0.5);
	z-index: 1100;
	color: #FFF;
	display: none;
}

#inputNumber .arrow {
	position: absolute;
	/* left: -25px; */
	z-index: 1101;
	font-size: 2em;
	color: #000;
	clear: both;
}

#inputNumberDisplay {
	line-height: 100px;
	padding: 7px;
	text-align: right;
	font-size: 4em;
	font-weight: bold;
}

#inputNumber p {
	display: block;
	border-radius: 75px;
	font-size: 1.5em;
	font-weight: bold;
	width: 75px;
	height: 75px;
	line-height: 75px;
	padding: 0;
	margin: 7px;
	text-align: center;
	float: left;
	background-color: #333;
}

#inputNumber p.del { background-color: #A6A6A6; color: #000; }
#inputNumber p.ctl { background-color: #FF9500; }
#inputNumber p.disable { background-color: #111; color: #333; }

#inputNumber p.wide {
	width: 164px;
	text-align: left;
	text-indent: 28px;
}


/* ======================================
/* page header setting
====================================== */
#pageTop {
	width: 1024px;
	height: 60px;
	overflow: auto;
	box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.2);
	position: fixed;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 100;
	line-height: 60px;
	color: #FCFCFC;
	transition: ease-out 300ms;
}

#pageTop h1 {
	float: left;
	padding: 0 20px 0 10px;
	font-size: 1.5em;
}

#pageTop nav {
	float: right;
	padding: 0 10px;
	overflow: auto;
}

#toggleMenu {
	width: 90px;
	position: relative;
	overflow: hidden;
	text-align: left;
	white-space: nowrap;
}

#toggleMenu:after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	left: 0;
}

#toggleMenu:after { bottom: 8px; }

#toggleMenu span {
	display: inline-block;
	width: 80px;
	background-color: white;
	color: #333;
	line-height: 44px;
	padding: 0 5px;
	margin: 8px 0;
	border-radius: 3px;
}

#toggleMenu span:after {
	content: "▼";
	display: inline-block;
	margin-right: 5px;
	font-weight: bold;
}

#toggleMenu.active span:after {
	content: "▲";
}

/* スライドメニュー */
#orderMenu {
	width: 1024px;
	height: 100%;
	z-index: 99;
	position: absolute;
	left: 0;
	top: -100%;
	background-color: rgba(0, 0, 0, 0.8);
	transition: ease-out 300ms;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}

#orderMenu.active { top: 0; }
#orderMenu h2 { color: #FCFCFC; padding: 5px; }
#orderMenu .top_menu { padding: 65px 15px 15px 15px; overflow: auto; }
#orderMenu .top_menu .left { width: 50%; float: left; }
#orderMenu .top_menu .left ul li { margin-bottom: 10px; }
#orderMenu .top_menu .left ul span {
	display: block;
	font-size: 24px;
	padding: 20px 30px;
	margin: 0 5px;
	border: 1px solid #000;
	border-radius: 5px;
	background-color: #FCFCFC;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.5);
}

#orderMenu .top_menu .left ul span.disable {
	background-color: #999;
	color: #666;
}

#orderMenu .top_menu .right {
	width: 50%;
	float: right;
}


/* ======================================
/* page footer setting
====================================== */
#pageBottom {
	width: 1004px;
	height: 20px;
	padding: 10px 10px 0 10px;
	color: white;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.3);
	position: fixed;
	left: 0;
	bottom: 0;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 100;
	font-size: 0.8em;
}

#pageBottom p {
	line-height: 1;
	float: left;
	padding-left: 10px;
	margin-right: 10px;
	border-left: 1px solid white;
}

#pageBottom p:first-child {
	padding-left: 0;
	border: none;
}

#pageBottom p.attention {
	color: #F30;
	font-weight: bold;
}

#pageBottom .copyright {
	float: right;
	border: none;
	margin-right: 0;
}
