@charset "UTF-8";
/*
*******************************************************************************/
footer {
	border-top: 1px solid #cccccc;
	padding: 10px;
	margin-bottom: 20px;
}
#oprator {
	width: 100%;
	background: #000000;
	color: #ffffff;
	text-align: right;
	padding: 5px 0;
}
#amenu {
	border-top: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
	padding: 5px 0;
	background-color: #f5f5f5;
}
#asales {
	border-bottom: 1px solid #dddddd;
/*	padding: 5px 0 5px 0;*/
}
#asales p {
	margin: 0;
}
#search_area {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	margin-bottom: 10px;
	padding: 5px 0 5px 0;
	background-color: #f5f5f5;
}
#overlay {
	display: none;
	width: 100%;
	height:100%;
	text-align: center;
	position: fixed;
	top: 0;
	z-index: 100;
	background: rgba(0,0,0,0.7);
}
#info_a {
}
#info_b {
	display: none;
}
#info_a > div,
#info_b > div {
	padding-right: 0;
	padding-left: 0;
	text-align: center;
	padding: 5px;
}
#info_a > div > h5,
#info_b > div > h5 {
	margin: 0;
}
#info_a > div > p,
#info_b > div > p {
	font-size: 16px;
	font-weight: bold;
}

/*
*******************************************************************************/
.mt0 {
	margin-top: 0 !important;
}
.mt10 {
	margin-top: 10px !important;
}
.mt20 {
	margin-top: 20px !important;
}
.mt50 {
	margin-top: 50px !important;
}
.mt100 {
	margin-top: 100px !important;
}
.mb0 {
	margin-bottom: 0 !important;
}
.mb10 {
	margin-bottom: 10px !important;
}
.mb20 {
	margin-bottom: 20px !important;
}
.mb50 {
	margin-bottom: 50px !important;
}
.pt10 {
	padding-top: 10px !important;
}
.pt20 {
	padding-top: 20px !important;
}
.pb10 {
	padding-bottom: 10px !important;
}
.pb20 {
	padding-bottom: 20px !important;
}
.w50 {
	width: 50px !important;
}
.w60 {
	width: 60px !important;
}
.w70 {
	width: 70px !important;
}
.w80 {
	width: 80px !important;
}
.w90 {
	width: 90px !important;
}
.w100 {
	width: 100px !important;
}
.w120 {
	width: 120px !important;
}
.w140 {
	width: 140px !important;
}
.w160 {
	width: 160px !important;
}
.w200 {
	width: 200px !important;
}
.w220 {
	width: 220px !important;
}
.w250 {
	width: 250px !important;
}
.w280 {
	width: 280px !important;
}
.w300 {
	width: 400px !important;
}
.w400 {
	width: 400px !important;
}
.vb {
	vertical-align: bottom !important;
}
.bprice {
	font-size: 18px;
	font-weight: bold;
}
.price {
	font-size: 18px;
	color: #ff0000;
	font-weight: bold;
}
.code {
}
.box {
	border: 1px solid #ccc;
	border-radius: 7px;
	margin-bottom: 10px;
	padding:10px;
}
.px18 {
	font-size: 18px;
}
.px16 {
	font-size: 16px;
}
.px14 {
	font-size: 14px;
}
.px12 {
	font-size: 12px;
}
.b {
	font-weight: bold;
}
.row-eq-height {
	display: flex;
	flex-wrap: wrap;
}


/* Ajax Loading...
*******************************************************************************/
.loading {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	background: rgba(255,255,255,0.7);
}
.loading .content {
	position: absolute;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	top: 50%;
	left: 0;
	right: 0;
	text-align: center;
	color: #555;
}
/* Bootstrap Overwrite
*******************************************************************************/
.table > thead > tr > th {
	border-bottom: none;
}
.table > tfoot > tr > td,
.table > tfoot > tr > th {
	padding: 0 !important;
}
.pagination {
	margin: 0 !important;
}
.pagination > li > a,
.pagination > li > span {
	padding: 6px 0 !important;
	width: 48px !important;
	margin: 0 auto !important;
	margin-left: -1px !important;
	text-align: center !important;
}
.alert {
	margin-bottom: 10px !important;
}
/* Auth Form
*******************************************************************************/
#auth-form {
	width: 400px !important;
	margin: 100px auto;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border: 1px solid #000;
	padding: 50px;
}
#auth-form .form-horizontal .control-label {
	padding-top: initial;
}

/* Navi
*******************************************************************************/
#nav-drawer {
	position: relative;
}
/*チェックボックス等は非表示に*/
.nav-unshown {
	display: none;
}
/*閉じる用の薄黒カバー*/
#nav-close {
	display: none;
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
}
/*中身*/
#nav-content {
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 80%;
	max-width: 80%;
	height: 100%;
	background: #fff;
	transition: .3s ease-in-out;
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);
}
/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
	display: block;
	opacity: .5;
}
#nav-input:checked ~ #nav-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
