@CHARSET "utf-8";
/*------------------------------------------------------------------------------
	共通
------------------------------------------------------------------------------*/
html, body	{
	padding: 0px;
	margin: 0px;
	height: 100%;
	color: #333;
}

body	{
	margin: 0;
	padding: 0;
}

body, input, textarea, select {
	font-family: 'メイリオ', 'Meiryo', Verdana, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif;
	line-height: 1.5;
}

form {
	display: inline;
}
/*------------------------------------------------------------------------------
	ラッパー
------------------------------------------------------------------------------*/
.vs-wrapper	{
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

.vs-wrapper * {
	box-sizing: border-box;	
}
/*------------------------------------------------------------------------------
	ヘッダ
------------------------------------------------------------------------------*/
header {
	position: sticky;
	position: -webkit-sticky;
	top: 0;
/*	z-index: 1;*/
	z-index: 999;
}
/*------------------------------------------------------------------------------
	メニュー
------------------------------------------------------------------------------*/
.vs-menu {
	width: 100%;
}

.vs-menu > ul {
	height: 50px;
	max-height: 50px;
	display: flex;
}

.vs-menu > ul > li {
	background: #0075B5;
	color: white;
	line-height: 50px;
	font-size: 14px;
	text-align: center;
	position: relative;
}

.vs-menu > ul > li.curr {
	background: #E7F5FD;	
	color: #0075B5;
}

.vs-menu > ul > li:first-of-type {
	padding: 0 20px;
	font-weight: bold;
}

.vs-menu > ul > li:nth-child(n+2) {
	width: 200px;
}

.vs-menu > ul > li:nth-last-child(3) {
	padding-right: 20px;
	text-align: right;
	flex: 1;
}

.vs-menu > ul > li:nth-last-child(2),
.vs-menu > ul > li:last-of-type {
	width: 50px;
	font-size: 20px;
}

.vs-menu > ul > li > img {
	height: 40px;
	margin-top: 5px;
	filter: brightness(0) invert(1);
	color: #fff !important;
	border-color: #fff !important;
	display: inline-block;
}

.vs-menu > ul > li > ul {
	left: 0;
	top: 100%;
	width: 100%;
	position: absolute;
	display: none;
}

.vs-menu > ul > li > ul > li > a {
	height: 50px;
	padding-left: 10px;
	background: #0075B5;
	color: white;
	line-height: 50px;
	font-size: 12px;
	text-align: left;
	position: relative;
	display: block;
}

.vs-menu > ul > li > ul > li > a::after {
	content: '\f061';
	right: 10px;
	top: 50%;
	transform: translateY(-50%); 
	font-family: 'FontAwesome';
	position: absolute;
}

.vs-menu > ul > li:hover ul {
	display: block;
}

.vs-menu > ul > li:not(.empty):hover,
.vs-menu > ul > li > ul > li:hover a {
	background: #E7F5FD;	
	color: #0075B5;
}
/*------------------------------------------------------------------------------
	ファンクションキー
------------------------------------------------------------------------------*/
.vs-func {
	height: 50px;
	max-height: 50px;
	background: #F2F4F5;
	align-items: center;
	display: flex;
}	

.vs-func > li {
	margin-left: 20px;
}

.vs-func h1 {
	width: 250px;
	line-height: 50px;
	font-size: 16px;
	font-weight: bold;
	border-right: 1px solid #D5D5D5;
}	

.vs-func a {
	cursor: pointer;
	font-size: 14px;
}

.vs-func a.back {
	line-height: 50px;
}

.vs-func a.back::before {
	content: '\f359';
	font-family: 'FontAwesome';
	margin-right: 5px;
	color: #0075B5;
	font-size: 20px;
	vertical-align: -3px;
}

.vs-func a:not(.back) {
	height: 36px;
	padding: 0 20px;
	background: #0075B5;
	border: 1px solid #0075B5;
	border-radius: 5px;
	color: white;
	line-height: 36px;
	font-size: 14px;
	display: inline-block;
}

.vs-func a.fa-times {
	background: white;
	color: #0075B5;
}

.vs-func a:hover {
	opacity: 0.8;	
}
/*------------------------------------------------------------------------------
	ボディ
------------------------------------------------------------------------------*/
main {
	width: 100%;
	padding: 20px;
	font-size: 12px;
	flex: 1;
}

main h2 {
	font-size: 18px;
	font-weight: bold;
}

main h3 {
	padding: 5px 0 5px 10px;
	border-left: 5px solid #0075B5;
	line-height: 1.5;
	font-size: 16px;
	font-weight: bold;
}

main input[type=text],
main input[type=password],
main input[type=date],
main input[type=time],
main select {
	height: 30px;
	line-height: 30px;
	border: 1px solid #ccc;
	border-radius: 3px;
}

main textarea {
	border: 1px solid #ccc;
	border-radius: 3px;
}

select {
	height: 30px;
	background: white;
	border: 1px solid #ccc;
	border-radius: 3px;
}

/*
main th, main td {
	height: 30px;
}*/
/*------------------------------------------------------------------------------
	画面分割
------------------------------------------------------------------------------*/
.vs-split-parent {
	justify-content: space-between;
	display: flex;
}

.vs-split-parent > li:first-of-type {
	width: 180px;
}

.vs-split-parent > li:last-of-type {
	width: calc(100% - 200px);
}

.vs-split-parent > li:last-of-type > ul.vs-split-child {
	justify-content: space-between;
	display: flex;
}

.vs-split-parent > li:last-of-type > ul.vs-split-child > li {
	width: 49%;
	margin-top: 20px;
}
/*------------------------------------------------------------------------------
	システムメニュー
------------------------------------------------------------------------------*/
.vs-config-menu > li {
	height: 50px;
	padding: 0 10px;
	background: #F2F4F5;
	line-height: 50px;
	font-weight: bold;
}

.vs-config-menu > li:first-of-type {
	background: #99AAB1;
	color: white;
	text-align: center;
}

.vs-config-menu > li:not(:first-of-type) {
	margin-top: 3px;
}

.vs-config-menu > li:not(:first-of-type):hover {
	background: #E7F5FD;
}

.vs-config-menu a {
	color: #333;
	display: block;
	position: relative;
}

.vs-config-menu a::after {
	content: '\f105';
	right: 0;
	top: 50%;
	transform: translateY(-50%); 
	font-family: 'FontAwesome';
	position: absolute;
	pointer-events: none;
}
/*------------------------------------------------------------------------------
	タブメニュー
------------------------------------------------------------------------------*/
.vs-tabmenu {
	width: 100%;
	margin-top: 20px;
	display: flex;
}

.vs-tabmenu > li {
	width: 200px;
	padding: 10px 0;
	background: #f7f7f7;
	border-bottom: 1px solid #b0c4de; 
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
}

.vs-tabmenu > li.curr {
	background: white;
	border-top: 1px solid #b0c4de; 
	border-right: 1px solid #b0c4de; 
	border-bottom: 0; 
	border-left: 1px solid #b0c4de; 
}

.vs-tabmenu > li:last-of-type {
	background: transparent;
	cursor: auto;
	flex: 1;
}
/*------------------------------------------------------------------------------
	マスター参照
------------------------------------------------------------------------------*/
.master-ref .master-search {
	margin-left: 5px;
	color: green;
	font-size: 14px;
	cursor: pointer;
}

.master-ref .master-clear {
	margin-left: 5px;
	color: red;
	font-size: 14px;
	cursor: pointer;
}

.master-ref .master-name {
	margin-left: 5px;
}

.master-search > select {
	width: 100%;
	max-width: calc(100% - 105px);
}

.master-search > input {
	width: 100px;
	margin-left: 5px;
}
/*------------------------------------------------------------------------------
	行数制限
------------------------------------------------------------------------------*/
.line-clamp-1 {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
/*------------------------------------------------------------------------------
	ボタン
------------------------------------------------------------------------------*/
.btn_bl {
	width: 200px;
	font-size: 16px;
/*
	font-weight: bold;
*/
	padding: 10px 0;
	color: #fff;
	background-color:#49a9d4;
	border-style: none;
	-moz-box-shadow: 2px 2px 3px 1px #666;
	-webkit-box-shadow: 2px 2px 3px 1px #666;
	text-shadow:0 -1px #1a6ea0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background-image: -moz-linear-gradient(
		top,
		#49a9d4 0%,
		#2989d8 40%,
		#2285d6 52%,
		#2989d8);
	background-image: -webkit-gradient(
		linear,left top,left bottom,
		from(#49a9d4),
		color-stop(0.49,#2989d8),
		color-stop(0.52,#2285d6),
		to(#2989d8));
	cursor: pointer;
}

.btn_bl:hover {
	opacity: 0.8;
}

.btn_or {
	font-size: 12px;
	padding: 5px 10px;
	color: #fff;
	background-color:#0075B5;
	border: 1px solid #0075B5;
	border-radius: 5px;
 	cursor: pointer;
 	display: inline-block;
 }

.btn_or:hover {
	opacity: 0.8;
}

.btn_or:disabled	{
	background-color: #D0D6DB;
	cursor: auto;
    border-color: #D0D6DB;
}

.btn_or.rev {
	background-color:white;
	color:#0075B5;
 }
/*------------------------------------------------------------------------------
	ページャー
------------------------------------------------------------------------------*/
.pager img	{
	cursor: pointer;
	vertical-align: -4px;
}
/*------------------------------------------------------------------------------
	ナンバリング
------------------------------------------------------------------------------*/
tbody.numbering {
	counter-reset: rowCount;
}

tbody.numbering > tr {
	counter-increment: rowCount;
}

tbody.numbering > tr > th:first-of-type::before {
	content: counter(rowCount);
}
/*------------------------------------------------------------------------------
	ステータスアイコン
------------------------------------------------------------------------------*/
span.status::before {
	content: '';
	margin-left: 20px;
	padding: 5px;
	border: 1px solid #0075B5;
	border-radius: 3px;
	color: #0075B5;
	font-size: 12px;
	font-weight: normal;
	display: inline-block;
}

span.status.closed::before {
	content: '請求済み';
}	

span.status.shipped::before {
	content: '出庫';
}	

span.status.stored::before {
	content: '入庫';
}	

span.status.delivered::before {
	content: '手配書';
}	
/*------------------------------------------------------------------------------
	その他
------------------------------------------------------------------------------*/
.require_mark	{
	color: #fd6c8b;
}

.error	{
	background: #ffb6c1;
}

.hide {
	display: none;	
}

.input-guide {
    margin-top: 5px;
    color: #707070;
    font-size: 12px;
}
/*------------------------------------------------------------------------------
	アイコン
------------------------------------------------------------------------------*/
.fill-circle.blue::before {
	color: #fff;
	font-size: 18px;
	padding: 6px;
    border-radius: 50%;
    margin: 0 5px 0 0;
	background-color: var(--main-color, #0075B5);
}

.solid-circle.blue::before {
	color: var(--main-color, #0075B5);
    font-size: 12px;
    border: 1px solid var(--main-color, #0075B5);
    border-radius: 50%;
    padding: 2px 3px;
    margin: 0 3px 0 0;
}

.img-circle {
	color: #fff;
	font-size: 18px;
	padding: 6px;
    border-radius: 50%;
    margin: 0 5px 0 0;
	background-color: var(--main-color, #0075B5);
	width: 32px;
	height: 32px;
	vertical-align: middle;
}
/*------------------------------------------------------------------------------
	タブメニュー
------------------------------------------------------------------------------*/
.tab {
	display: flex;
    align-items: center;
    border-bottom: 2px solid var(--main-border-color, #0075B5);
}

.tab > li {
	color: #CCCCCC;
    width: 160px;
    text-align: center;
    padding: 13px 0;
    background: #F2F2F2;
    margin: 0 5px 0 0;
    border-radius: 5px 5px 0px 0px;
    cursor: pointer;
}

.tab > li.active {
	color: #fff;
	background: var(--main-color, #0075B5);
}

.tab.black > li.active {
	background: #666666;
}
/*------------------------------------------------------------------------------
	検索条件
------------------------------------------------------------------------------*/
.search-condition-wrap {
	padding: 0 20px 20px 20px;
	background: #F2F4F5;
	border-radius: 5px 5px 0 0; 
	flex-wrap: wrap;
    display: flex;
}

.search-condition-wrap > li {
	margin: 15px 20px 0 0;
}

.search-condition-wrap p {
	margin-bottom: 5px;
	font-weight: bold;
}

.search-func {
	padding: 5px 0;
	background: #F2F4F5;
	border-top: 1px solid #ccc;	
	border-radius: 0 0 5px 5px; 
	text-align: center;
}

.search-func {
	padding: 5px 0;
	background: #F2F4F5;
	border-top: 1px solid #ccc;	
	border-radius: 0 0 5px 5px; 
	text-align: center;
}

.search-func > a {
	font-size: 14px;
	cursor: pointer;
}

.search-func > a.search {
	height: 36px;
	padding: 0 20px;
	background: #0075B5;
	border: 1px solid #0075B5;
	border-radius: 5px;
	color: white;
	line-height: 36px;
	display: inline-block;	
}

.search-func > a.search::before {
	content: '\f002';
	font-family: 'FontAwesome';
	margin-right: 5px;
}

.search-func > a.clear::before {
	content: '\f057';
	font-family: 'FontAwesome';
	margin-right: 5px;
	color: #0075B5;
	font-size: 16px;
	vertical-align: middle;
}
/*------------------------------------------------------------------------------

------------------------------------------------------------------------------*/
/* === ボタンを表示するエリア ============================== */
.switchArea2 {
  line-height    : 22px;	            /* 1行の高さ          */
  letter-spacing : 0;                   /* 文字間             */
  text-align     : center;              /* 文字位置は中央     */
  font-size      : 11px;                /* 文字サイズ         */
  position       : relative;            /* 親要素が基点       */
  margin         : 0;                   /* 中央寄せ           */
  width          : 46px;                /* ボタンの横幅       */
  background     : #fff;                /* デフォルト背景色   */
  display: inline-block;
  font-weight: normal;
}

 /* === チェックボックス ==================================== */
.switchArea2 input[type="checkbox"] {
  display        : none;            /* チェックボックス非表示 */
}

 /* === チェックボックスのラベル（標準） ==================== */
.switchArea2 label {
  display        : block;               /* ボックス要素に変更 */
  box-sizing     : border-box;          /* 枠線を含んだサイズ */
  height         : 24px;                /* ボタンの高さ       */
  border         : 2px solid #999999;   /* 未選択タブのの枠線 */
  border-radius  : 12px;                /* 角丸               */
  cursor: pointer;
  padding-left: initial;
}

 /* === チェックボックスのラベル（ONのとき） ================ */
.switchArea2 input[type="checkbox"]:checked +label {
  border-color   : #333333;             /* 選択タブの枠線     */
}

 /* === 表示する文字（標準） ================================ */
.switchArea2 label span:after{
  content        : "OFF";               /* 表示する文字       */
  padding        : 0 0 0 18px;          /* 表示する位置       */
  color          : #999999;             /* 文字色             */
}

 /* === 表示する文字（ONのとき） ============================ */
.switchArea2  input[type="checkbox"]:checked + label span:after{
  content        : "ON";                /* 表示する文字       */
  padding        : 0 18px 0 0;          /* 表示する位置       */
  color          : #333333;             /* 文字色             */
}

 /* === 丸部分のSTYLE（標準） =============================== */
.switchArea2 .swImg {
  position       : absolute;            /* 親要素からの相対位置*/
  width          : 16px;                /* 丸の横幅           */
  height         : 16px;                /* 丸の高さ           */
  background     : #999999;             /* カーソルタブの背景 */
  top            : 4px;                 /* 親要素からの位置   */
  left           : 4px;                 /* 親要素からの位置   */
  border-radius  : 8px;                 /* 角丸               */
  transition     : .2s;                 /* 滑らか変化         */
}

 /* === 丸部分のSTYLE（ONのとき） =========================== */
.switchArea2 input[type="checkbox"]:checked ~ .swImg {
  transform      : translateX(22px);    /* 丸も右へ移動       */
  background     : #333333;             /* カーソルタブの背景 */
}
/*------------------------------------------------------------------------------
	スクローラー
------------------------------------------------------------------------------*/
.scroll-wrap {
    overflow: scroll;
    overflow-x: hidden;
    overscroll-behavior: none;
}

.scroll-wrap th,
.scroll-wrap td {
    border-top: 0;
}

.scroll-wrap thead th {
    top: 0;
    position: sticky;
}

.scroll-wrap tfoot th {
    bottom: 0;
    position: sticky;
}
/*------------------------------------------------------------------------------
	アップローダー
------------------------------------------------------------------------------*/
.uploader	{
/*	width: 100%;*/
	width: calc(50% - 10px);
	height: 194px;
	padding: 0;
	background-color: #BBBBBB;
	overflow: auto;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

.uploader	.thumbnail	{
	width: 150px;
	height: 174px;
	margin-top: 10px;
	margin-left: 10px;
	background-color: white;
	position: relative;
	float: left;
}

.uploader	img.remove	{
	position: absolute;
	top: 2px;
	left: 130px;
	cursor: pointer;
}

.uploader	p	{
	margin-top: 4px;
	text-align: center;
}

.uploader.assort_img a {
	position: relative;
	display: block;
	text-align: center;
	width:150px;
	height:150px;
}

.uploader_s.assort_img a {
	position: relative;
	display: block;
	width:100px;
	height:100px;
	text-align: center;
}

.assort_img a img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.uploader_tb	{
	border-collapse: collapse;
	table-layout: fixed;
	width: 100%;
	box-sizing: border-box;
}

.uploader_tb td	{
	box-sizing: border-box;
}

.uploader_tb td:last-child	{
	width: 50%;
	padding-left: 20px;
}

.drop_area	{
/*	width: calc(100% - 10px);*/
	width: calc(50% - 10px);
	height: 184px;
	border: dashed 5px #888888;
	background-color: #EEEEEE;
	color: #888888;
	line-height: 184px;
	text-align: center;
	font-size: 16px;
	cursor: pointer;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

.uploader_s	{
	width: 100%;
	height: 120px;
	padding: 0;
	background-color: #BBBBBB;
	overflow: auto;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	}

.uploader_s	.thumbnail	{
	width: 100px;
	height: 100px;
	margin-top: 10px;
	margin-left: 10px;
	background-color: white;
	position: relative;
	float: left;
}

.attach_list	{
	width: 100%;
	padding: 0;
}

.attach_list .thumbnail	{
	width: 100px;
	min-height: 100px;
	display: inline-block;
	margin: 5px 0 0 5px;
	padding: 0;
	vertical-align: top;
}

.attach_list .thumbnail a	{
	position: relative;
	display: block;
	text-align: center;
	width: 100px;
	height: 100px;
	background-color: #FFF;
	border: solid 1px #DDD;
}

.attach_list .thumbnail a img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.attach_list .thumbnail a+p	{
	text-align: center;
	word-break: break-all;
	overflow-wrap: break-word;
	padding-top: 5px;
}

/*------------------------------------------------------------------------------
	login
------------------------------------------------------------------------------*/
.login	{
	position: relative;
	top: 50%;
	margin-top: -150px;
}

.login_bg	{
	width: 500px;
	margin: 0px auto;
	padding: 50px 20px;
	background-color: #00A0C6;
}
.login_bg input, .login_bg textarea{
	-webkit-appearance: auto;
}
/*------------------------------------------------------------------------------
	UI-dialog
------------------------------------------------------------------------------*/
.ui-widget-overlay{
    background: #666666 url(../image/jquery_ui/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat;
    opacity: .5;
    z-index: 1000 !important;
}
.ui-dialog {
    z-index: 1001 !important;
}
.ui-widget-header{
    border: 1px solid var(--main-color) !important;
    background: var(--main-color) !important;
    color: #ffffff !important;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default{
    color: var(--main-color);
}
/* .ui-widget-content{ 
	background: #eeeeee !important;
} */
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active{
    background: #f6f6f6 !important;
    font-weight: bold !important;
    color: #1c94c4 !important;
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus{
    border: 1px solid #fbcb09 !important;
    background: #fdf5ce !important;
    font-weight: bold !important;
    color: #c77405 !important;
}
.ui-datepicker-trigger{
    box-sizing: border-box;
    vertical-align: middle;
    margin-left: 3px;
    cursor: pointer;
    filter: brightness(0) saturate(100%) invert(29%) sepia(100%) saturate(958%) hue-rotate(172deg) brightness(97%) contrast(103%);
}