@charset "utf-8";

/*
note:
	jQueryUI：datepicker：下の方にあるよ：クラス「ui-datepicker-calendar」
	font-family: "ＭＳ Ｐゴシック",sans-serif;

*/
* {
	box-sizing: border-box;
}
body {
	font-size: 12pt;
	display: grid;
	gap: 0;
	grid-template-columns: 140px 1fr;
	grid-template-areas:
		"header header"
		"aside main"
		"footer footer";
	position: relative;
}
body>header {
	grid-area: header;
}
body>main {
	grid-area: main;
/*
	padding: .3em;
*/
}
body>main>* {
	margin: 3px;
}
body>aside {
	display: block;
	grid-area: aside;
	background-color: #333;
	width: 140px;
}
body>footer {
	grid-area: footer;
	clear: both;
	font-size: 9pt;/*75%;/*9pt;*/
	color: gray;
	text-align: center;
	margin: 2px;
	padding: 2px;
	line-height: 150%;
}

/* aside不要画面（ログイン・ログアウト） */
body.noAside {
	grid-template-areas:
		"main main" 
		"footer footer";
}
body.noAside header,
body.noAside.aside {
	display: none;
}

/* TAG: D
--------------------------------------*/
details[open]>summary {}
details>summary::marker {
	content: "";
}
details>summary:after {
	float: right;
}
details>summary:after {
	content: "＋";
}
details[open]>summary:after {
	content: "－";
}

/* table.columns
 tdの中に最初にボタンがある
--------------------------------------*/
table.columns th {
	padding: 3px;
	vertical-align: middle;
}
table.columns td[rowspan] {
	vertical-align: top;
}
table.columns td button.edit {
	width: 22px;
	height: 22px;
	padding: 2px;
	margin: 0;
	float: left;
}
table.columns td>button+span {
	display: block;
	padding: 4px;
	padding-left: 28px;
	line-height: 115%;
}
table.columns td>span {
	display: block;
/*	padding: 4px;*/
}
/*
table.columns tr.border-dashed th,
table.columns tr.border-dashed td {
	border-style: dashed solid dashed solid;
}
*/
table.status {}
table.status th {
	min-width: 1.6em !important
}
table.status td {
	min-width: 1.6em !important;
	text-align: center !important;
	line-height: inherit !important;
	padding: .3em !important;
}
table.status td a {
/*
	font-size: 135%;
*/
	text-decoration: none;
}

/* 外部サービス用モジュール */
#service_module {
/*
	float:right;
	width:180px;
*/
/*border:1px gray solid;*/
	padding:4px;
	text-align:center;
}
#service_module ul {
	list-style-type: none;
}
#service_module li {
	margin: 4px 0;
}
#service_module img {
	max-width: 160px;
}


/* ID: A
--------------------------------------*/
#message {
	position: fixed;
	width: 70%;
	top: 1em;
	left: 15%;
	color: black;
	z-index: 1000;
	opacity: .95;
}
#message>div {
	width: 100%;
	position: relative;
	display: none;
}
#message>div>div {
	border: 1px #69b solid;
	border-radius: 7px;
	color: black;
	z-index: 1000;
	padding: 1em;
	padding-top: 2em;
	line-height: 125%;
}
#message>div .close {
	position: absolute;
	top: .3em;
	right: .3em;
	line-height: 100%;
}
#message>div .close>span {
	display: none;
	position: absolute;
	left: 6px;
}
#message>div:last-child {
	margin-bottom: 0;
}
#alert {
	background-color: #fcc;
}
#messageAlert {}
#messageAlert>div {
	background-color: #fcc;
}
#messageAlert>div:before {
	content: "[alert]";
	position: absolute;
	top: .6em;
	left: .6em;
	color: red;
}
#messageNotice {}
#messageNotice>div {
	background-color: #cef;
}
#messageNotice>div:before {
	content: "[notice]";
	position: absolute;
	top: .6em;
	left: .6em;
	color: blue;
}
#messageMail {}
#messageMail>div {
	background-color: #cfc;
}
#messageMail>div:before {
	content: "[mail]";
	position: absolute;
	top: .6em;
	left: .6em;
	color: green;
}

ul.tile {
	display: inline-block;
}
ul.tile>li {
	display: inline-block;
}
.row {
	display: flex;
}
.row>* {
	display: table-cell;
	box-sizing: border-box;
	padding: 2px;
	vertical-align: top;
	max-width: 50%;
}
.row th {
	max-width: 8em;
	min-width: 4em;
}

.parse_json {
/*	font-size: 10.5pt;*/
	line-height: 135%;
}
.price { /* span */
	color: red;
}
.price:before {
	content: "\0a5"; /* &yen; */
/*	margin-right: .03em;*/
}

#admin-login {
	margin: 100px auto;
	width: 50%;
	border: 1px gray solid;
}

/*----- アイコン -----*/

header {
	position: relative;
}

/* ヘルプボタン */
a.help {
	float:right;
}

.menu {
	display: flex;
	position: relative;
/*
	width: 100%;
*/
	font-size: 90%;
	flex-wrap: wrap;
}
.menu>* {
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu>li {
	list-style-type: none;
}
.menu a {
	display: inline-block;
.menu a:hover {
	 background-color: gray;
}
/*
*/
	border: 1px #999 solid;
	border-radius: 3px;
	background-color: #e0e0e0;/*lightgrey;/*#ddd;*/
/*
	font-size: 85%;
*/
	padding: 4px 4px;
	margin: 0 .5px;
	text-decoration: none;
	color: black;
	text-align: center;
/*
	height: min-content;
*/
}
.menu>*>button {
	height: 100%;
}
/*
*/
.menu table {
	float: left;
	margin: 0 4px 0 0;
}
/*
.menu>span { /* ラベル用 *
	position: absolute;
	right: 2em;
	line-height: 24px;
	font-size: 85%;
}
*/
/*
.menu>div {
	position: absolute;
	right: 0;
}
*/
/*
#contents {
	flex: auto;
	order: 2;
}
*/
/*
#contents>*,
*/
/*
main {
	margin: .25em;
}
*/
/*
#contents>.menu,
*/


main section {
	margin: 3px;
}

.edit_ajax {
	display: inline-block;
	overflow: hidden;
	height: 16px;
	width: 16px;
	text-align: center;
	background-color: lightgrey;
	padding: 0 !important;
	margin: 0;
	position: relative;
}
.edit_ajax img {
	display: inline;
	margin: 0 !important;
	position: absolute;
	top: 2px;
	left: 2px;
}
tr.popup {
	border-bottom: 1px #999 solid;
}

table .sort {
	display: block;
	font-size: 80%;/*8pt;*/
}


/* タイル */
.tile {
	margin: 4px;
	width: 100%;
}
.tile>* {
	display: inline-block;
}
.row2>* {
	width: 50%;
}
.row3>* {
	width: 33%;
}

/* ポップアップメニュー
--------------------------------------*/
.popupmenu {
	display: none; /* 初期は非表示 */
	padding: 4px;
	border: 1px gray solid;
	background-color: white;
	z-index: 100;
	position: absolute;
	top: 22.5px;
	white-space: nowrap;
	overflow: visible;
/*
	font-size: 100%;
*/
}
/*==============================================================================
 管理用
	display:none;
------------------------------------------------------------------------------*/
h1 {
	background-color: #f0f0f0;
	font-size: 120%;/*10.5pt;*/
/*	font-weight: normal;*/
	padding: .3em .6em;
	margin-bottom: 6px !important;
}
h2 {
	background-color: #f0f0f0;
	font-size: 100%;/*10.5pt;*/
	padding: 4px 12px;
}

/* h2 */
h2 span {
	font-weight: normal;
	margin: 0 4px;
}
h3 {
	background-color: #f0f0f0;
	font-size: 100%;/*10.5pt;*/
	margin: .3em 0 !important;
	padding: .3em .6em;
/*
	height:20px;
	line-height: 20px;
*/
}

header>di {
	position: absolute;
	top: 2px;
	right: 8px;
}
header p {
	margin: 6px;
	font-size: 9pt;/*75%;/*9pt;*/
	text-indent: 1em;
}

/* input
--------------------------------------*/
input[type=text],
input[type=password],
textarea,
select {
	box-sizing: border-box;
	border: 1px gray solid;
	border-radius: 2px;
	box-shadow: 1px 1px 0 rgba(0,0,0,0.2) inset;
	padding: 2px 4px;
/*	max-width: 16em;*/
}
textarea {
	width: 100%;
	overflow: auto;
	max-width: inherit;
}
input[type=text]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
	border: 1px #ff6600 solid;
}
input[name=q] { /* search用 */
	border-radius: 11px;
	padding: 2px 6px;
	margin-right: 2px;
}
input[type=month],
input[type=date],
input[type=time],
input.month
input.datetime,
input.date,
input.time {
	text-align: right;
	width: 10em !important;
}


/* <ul> */
ul.lst-none {}
ul.lst-none>li { /* lst:ListStyleType */
	line-height: 120%;
	list-style-type: none;
}



/*======================================
 クラス別
--------------------------------------*/

/* メニュー用
--------------------------------------*/
.menuBind {
	display: flex;
}
.menuBind form {
	display: flex;
}
.menuBind form>* {
	display: flex;
}
/* テーブル
--------------------------------------*/
caption {
	margin-top: 4px;
	padding: 0;
	font-size: 9pt;/*75%;/*9pt;*/
	text-align: right;
}
th,
thead {
	background-color: #e0e0e0;
}
tbody {
	background-color: white;
}
th {
	font-size: 9pt;/*75%;/*9pt;*/
	border: 1px #aaa solid;
	font-weight: normal;
	line-height: 12pt;
	padding: .3em;
	vertical-align: middle;
}
td {
	font-size: 9pt;/*75%;/*9pt;*/
	border: 1px #aaa solid;
	padding: .2em .4em;
	vertical-align: middle;
}
/* table .list
--------------------------------------*/
/*table.list tr:nth-child(odd) {/*奇数*/
table.list>tbody:nth-child(odd) {/*奇数*/
	background-color: #f6f6f6;
}
/*table.list tr:nth-child(even) {/*偶数*/
table.list tbody:nth-child(even) {/*偶数*/
	background-color: #ffffff;
}

/*
table.list tr:hover,
table.list tbody:hover {
	background-color:#ffeddb;
}
*/

/* 価格表やオプションなど ユーザ側の複製 records->list 2022-11-06
--------------------------------------*/
table.list {
	border-collapse: separate;
}
table.list thead {
	top: 0; /*29px;*/
	position: sticky;
	z-index: 100;
}
table.list thead tr:first-child th {
	border-top-width: 1px !important;
}
table.list thead button {
	border: none;
	background-color: inherit;
}
table.list th {
	border-width: 0 1px 1px 0 !important;
	background-clip: padding-box;
	white-space: nowrap;
}
table.list td {
	border-width: 0 1px 1px 0 !important;
}
table.list tr:first-child td:first-child {
	border-left-width: 1px !important;
/*
	border-bottom-width: 1px !important;
*/
}
table.list tr:first-child th:first-child {
	border-left-width: 1px !important;
}
/*------------------------------------*/










table.summary { /* 集計用 */
}
table.summary td a {
	padding: 4px;
	font-size: 120%;/*16pt;*/
	text-decoration: none;
	font-weight: bold;
}
table.summary td a:hover {
	text-decoration: underline;
}

/* onclickイベントがあるspanのカーソルを変更 */
td.popup {
	cursor: pointer;
}

/* CLASS: C
--------------------------------------*/
/*
.contextMenu {
	cursor: url('/admin/images/icon/mouse-select-right.png'), auto;
}
*/

/* CLASS: D
--------------------------------------*/
/* 2024-11-13 button または a*/
.dispOnOff {
	display: flex;
	position: relative;
	gap: 0;
}
.dispOnOff>button:nth-of-type(1) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	padding-left: .3em;
	padding-right: .3em;
}
.dispOnOff>button:nth-of-type(2) {
	position: relative;
	left: -2px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding-left: .3em;
	padding-right: .3em;
}
/*
.dispOnOff>div {
	position: absolute;
	top: 23px;
	display: none;
}
*/

/* CLASS: H
--------------------------------------*/
.handle:hover {
	cursor: pointer;
}
.history { /* ul */
	margin: 0;
	padding: 2px;
	font-size: 80%;
}
.history li {
	line-height: 135%;
}

/* TAG: N
--------------------------------------*/
main>nav,
section>div nav {
	background-color: inherit;
	z-index: 100;
	margin: 0;
	padding: 3px 0;
	position: sticky;
	top: 0;
}
main>nav {
	padding: 3px;
}

main>nav>.menu,
section>div nav>.menu {
	gap: 3px;
}


/* TAG: S
--------------------------------------*/
section {
	position: relative;
/*
	border: 1px gray solid;
*/
}
section>footer {
	font-size: 80%;
	text-align: right;
	padding: .3em .6em;
}

.fixBottom input[type=submit],
.fixBottom button[type=submit] {
	width: 100%;
	box-sizing: border-box;
	font-size: 135%;
	background-color: #fd9;
	margin: 0;
}
form input[type=submit]:hover,
form button[type=submit]:hover {
	background-color: #fc6;
}

/* TAG: T
--------------------------------------*/

/* TAG: U
--------------------------------------*/

/*
#middle {
	display: flex;
}
*/

/* table-cell-hightright*/
/*table td
.hovers {background:green}/*#cffbfb;}*/
/*table td
.hovers:hover {background:green}/*#84f4f4;}*/

/*
*/
[ondblclick]:hover {
	background-color: #ffe0c0 !important;
}

.deny { color: red; } /* 注文拒否 */
.red { color: red; }

/* CLASS: E
--------------------------------------*/
/*注文ファイルなどで埋め込まれているファイルの表示用*/
.embedFile {
	display: flex;
	padding: .3em 0;
}
.embedFile>*:first-child { /* 画像 */
	width: 120px;
/*
	height: 100px;
*/
	display: grid;
	place-items: center;
}
.embedFile>*:last-child>* {
	margin-bottom: .3em;
	padding-bottom: .3em;
	padding-left: .6em;
	border-bottom: 1px gray solid;
}
.embedFile>*:last-child>*:last-child {
	margin-bottom: 0;
	border: none;
}

/* CLASS: F
--------------------------------------*/
.flex {
	display: flex;
	width: 100%;
}
.flex>* {
/*
	border:1px gray solid;
	padding: .3em .6em;
	margin-right: 2px;
*/
	list-style-type: none;
	white-space: nowrap;
}
.flex>*:last-child {
	margin-right: 0;
}
.flex>.note {
	max-width: 35%;
}

/* 絞り込み用 2024-08-09
------------------*/
thead th.funnel>span:first-child {
	padding: .1em .3em;
	display: block;
	border-radius: 5px;
	background-color: #ccc;
}
thead th.funnel>span:first-child:hover,
thead th.funnel-on>span:first-child {
	background-color: orange !important;
}

/*----------------*/

/*
CLASS: L
--------------------------------------*/

/* CLASS: M
--------------------------------------*/
/* SPモード */
.mode-sp-on {
	display: none !important;
}
.mode-sp-off {
	display: inline-block !important;
}
.menuList {
/*
	margin: 3px 0;
*/
	padding: 3px 0;
	display: flex;
	place-items: center;
	gap: .3em;
	font-size: 90%;
	position: sticky;
	top: 0;
	background-color: white;
	z-index: 100;
}

[id$="__menuBulk"] { /* account__menuBulk */
	display: none;
	border: 1px #aaa solid;
	min-width: 15%;/*20%;*/
	white-space: inherit;
	padding: .3em;
	margin-right: .3em;
	border-radius: 0 .6em .6em 0;
}
/* CLASS: S
--------------------------------------*/
.strike {
	text-decoration: line-through;
}

/* CLASS: T
--------------------------------------*/
.tab-agency {
	position: absolute !important;
	right: 1em;
	width: 10em;
	overflow: hidden;
}
.tab-agency>a {
	width: 100%
}
.tab-accountgroup {
	position: absolute !important;
	right: calc(11em - 1px);
}
.tab-accountGroup>a {
	width: 100%;
}
/*
テーブル入れ子 2021-04-14
*/
.table_cell_nest_outer {
	border-bottom-width: 0;
}
.table_cell_nest_side {
	border-top-width: 0;
}
.table_cell_nest_inner {
/*	vertical-align: top;*/
	border-left-width: 3px;
}
.table_cell_nest_inner li {
	list-style-type: none;
	line-height: 135%;
}

.tabSpacer {
	margin-left: 1em !important;
	margin-right: 1em !important;
}
.tabSpacerLeft {
	margin-left: 1em !important;
}
.tabSpacerRight {
	margin-right: 1em !important;
}

.tabMenu,
.tabInDashboard { /* タブのメニューアイテム用 */
	position: absolute !important;
	right: 1em !important;
	margin-left: 1em !important;
/*
	margin-left: 3em !important;
*/
}

/* CLASS: S
--------------------------------------*/
.selected {
	background-color: #fff !important;
}

/*
CLASS: Q
--------------------------------------*/
.query {
/*
	padding: .3em 0;
*/
}
.query a>img {
	position: absolute;
}

th .query{ /* th内は別スタイル */
	margin: 0;
	margin-top: .3em;
	padding: 0;
}
.query>span {
	font-size: 90%;
	display: inline-block;
	border: 1px solid gray;
	border-radius: .6em;
	padding: .3em;
	cursor: pointer;
	white-space: nowrap;
}
.query>span::after {
	content: "×";
	margin-left: .1em
}
th .query {}
th .query>span {
	padding: .1em .3em;
}

/*----- 無効レコード用 -----*/
/*
tbody.invalid,
tr.invalid,
td.invalid,
button.invalid {
*/
tbody.invalid tr,
.invalid {
/*	color: gray !important;*/
	background-color: lightgrey !important;
/*
	background-color: #ddd !important;
*/
}
a.valid,
span.valid,
li.valid,
option.valid {
	color: green;
}
a.invalid,
span.invalid,
li.invalid,
option.invalid {
	color: red;
}

span.empty {
	color: gray;
}

thead th.sql>span:first-child {
	padding: .1em .3em;
	display: block;
	border-radius: 5px;
	background-color: orange;
}

th.sql,
td.sql { /* 抽出している項目 */
}
/*
	background-color: orange !important;
*/
/*tr.trSelect { /* tr選択表示用 */
tbody.trSelect { /* tr選択表示用 */
	background-color: #ffe0b0 !important;
}
.trSelect { /* tr選択表示用 */
	background-color: #ffcc99;/*ffe0b0 !important;*/
}



.cell:hover {
	background-color: #ffeeaa !important;
	cursor: pointer;
}

/* フォームのnotice */
.notice {
	clear: both;
	margin: 4px;
	padding: 0;
	color: red;
}

/* アクション通知
id:
	notice
	notice-message
history:
	2015-06-05 新設
#notice {
	position: absolute;
	top: -1px;
	left: 10%;
	z-index: 2000;
	width: 80%;
	background-color: rgba(255, 255, 255, .8);
	border: 1px gray solid;
	font-size: 12pt;
}
--------------------------------------*/
#notice {
	width: 80%;
	background-color: rgba(255, 255, 255, .8);
	border: 1px gray solid;
	font-size: 100%;/*2pt;*/
	margin: 0 auto;
}
#notice-message {
	padding: .4em 1em;
	text-align: left;
	color: red;
	line-height: 135%;
}

/* カラム備考
---------------------------------------*/
.column_note {
	font-size: 9pt;/*75%;/*9pt;*/
	margin:0.6em;
	padding: 0.4em 1em;
	background-color:#f6f6f6;
	width:320px;/*60%;*/
	border-radius: 10px;
	display: none;
}

/* 2024-04-25 */
/*
loglevel -> msg
error / warn / info
*/
[class^="msg-"] {
/*	font-size: 100%;*/
	text-align: left;
	border: 1px solid gray;
	border-radius: 5px;
	background-color: lightgrey;
	padding: .6em;
	margin: .6em 0;
}
.msg-error {
	color: red;
	border-color: #f66;
	background-color: #fee;
}
.msg-warn {
/*
	color: darkorange;
	border-color: darkorange;
	background-color: #ffe;
*/
	color: red;
	border-color: #f66;
	background-color: #fee;
}
.msg-info {
/*
	color: #333;
	border-color: #999;
	background-color: #eee;
*/
	color: #33c;
	border-color: #99f;
	background-color: #eef;
}
p.note {
	color: gray;
/*
	background: url('../images/icon/tick.png') no-repeat 2.5% 42.5%;
*/
	background: url('../images/icon/tick.png') no-repeat 2.5% 11.5%;
	margin: 0;
	padding: 6px;
	padding-left: 32px;
/*
	padding-left: 40px;
*/
	font-size: 90%;
}

.exclamation {
	color: gray;
	background: url('../images/icon/exclamation.png') no-repeat 6px 6px;
	padding: 6px;
	margin: 0;
	padding-left: 28px;
	font-size: 90%;
}

/* ダウンロード */
a.download {
	background: url('../images/icon/drive-download.png') 2.5% 50% no-repeat lightgrey;
	background-size: 16px;
	padding-left: 21px;
}
/*
a.download:before {
	content: url('../images/icon/drive-download.png');
	margin-right: 2px;
}
*/

.pager {}
.pager>a {}
.pager>a.disabled {
	border-color: #ccc;
	color: #999;
}

.btn {
	display: inline-block;
	border: 1px #999 solid;
	border-radius: 3px;
	background-color: #e0e0e0;/*lightgrey;/*#ddd;*/
	font-size: 85%;/*9pt;*/
	padding: 4px 4px;
	margin: 0 .5px;
	text-decoration: none;
	color: black;
	text-align: center;
}
.btn:hover {
	background-color: #e0f0ff;/*#ddf;*/
}

.border-none,
table.border-none th,
table.border-none td {
	border: none;
}
/* 管理ログイン
--------------------------------------*/
#login {
	background-color: #f0f0f0;
	border: 1px gray solid;
	border-radius: 7px;
	width: 240px;
	margin: 12px auto;
}
#login .contents {
	padding: 6px 12px;
}
#login li {
	list-style-type: none;
	padding: 6px 0;
}
#login .footer {
	background-color: #e0e0e0;
	padding: 6px 12px;
	border-radius: 0 0 7px 7px;
	border-top: 1px gray solid;
	text-align: right;
}
#login input {
	font-size: 100%;/*12pt;*/
	padding: 4px 8px;
}
/* img
--------------------------------------*/
img.img { border: 1px lightgrey solid; }

/* color */
.red   { color: #ff4d4d; }

/* プリアイコン
--------------------------------------*/
.icon_yucho { /* ゆうちょ銀行 */
	background: url('/admin/images/payment/favicon/www_jp-bank_japanpost_jp.ico') 0 50% no-repeat;
	background-size: 16px;
	padding-left: 18px;
}
.icon_atobarai { /* 後払いドットコム */
	background: url('/admin/images/payment/favicon/www_ato-barai_com.ico') 4px 50% no-repeat;
	background-size: 16px;
	padding-left: 22px;
}
.icon_ext_pdf { /* PDF */
	background: url('/admin/images/icon/adobereader.png') 2.5% 42.5% no-repeat;
	background-size: 16px;
	padding-left: 18px;
}
.icon_pdf { /* PDF */
	background: url('/admin/images/icon/adobereader.png') 2.5% 42.5% no-repeat;
/*	background-size: 16px;*/
	background-color: #e0e0e0;
	padding-left: 20px;
/*	height: 24px;*/
}
.icon_csv { /* CSV 2015-09-13 */
	background: url('/admin/images/icon-csv_16.png') 2.5% 42.5% no-repeat;
/*	background-size: 16px;*/
	background-color: #e0e0e0;
/*	padding: 3px;*/
	padding-left: 20px;
/*	height: 24px;*/
}
/* 2014-11-27 */
a.save,
button.save { /* 保存 */
	background: url("/admin/images/icon/disk.png") 2.5% 42.5% no-repeat lightgrey;
	background-size: 16px;
	padding-left: 18px;
}
a.add,
button.add,
a.plus,
button.plus { /* 追加 */
	background: url("/admin/images/icon/plus.png") 2.5% 42.5% no-repeat lightgrey;
	background-size: 16px;
	padding-left: 20px;
}
a.config,
button.config { /* 設定 */
	background: url("/admin/images/icon/gear.png") 2.5% 42.5% no-repeat lightgrey;
	background-size: 16px;
	padding-left: 20px;
}
a.reload,
button.reload { /* 追加 */
	background: url("/admin/images/icon/reload.png") 2.5% 42.5% no-repeat lightgrey;
	background-size: 16px;
	padding-left: 20px;
}
a.delete,
button.delete { /* 削除 */
	background: url('/admin/images/icon/cross.png') 2.5% 42.5% no-repeat lightgrey;
	background-size: 16px;
	padding-left: 20px;
}
a.search,
button.search,
a.magnifier,
button.magnifier { /* 2014-11-27 */
	background: url('/admin/images/icon/magnifier.png') 2.5% 42.4% no-repeat lightgrey;
	background-size: 16px;
	padding-left: 18px;
}
a.table { /* 一覧 */
	background: url("/admin/images/icon/table.png") 3px 50% no-repeat lightgrey;
	background-size: 16px;
	padding-left: 21px;
}
a.dashboard { /* ダッシュボード */
	background: url("/admin/images/icon/dashboard.png") 2.5% 50% no-repeat lightgrey;
	background-size: 16px;
	padding-left: 21px;
}

a.icon-balloon { /* バルーン（メッセージ） */
	background: url('/admin/images/icon/balloon.png') 2.5% 42.5% no-repeat lightgrey;
	background-size: 16px;
	padding-left: 21px;
}
a.icon-funnel {
	background: url('/admin/images/icon/funnel.png') 2.5% 42.5% no-repeat;/* lightgrey;*/
	background-size: 16px;
	padding-left: 21px !important;
}
a.icon-magnifier {
	background: url('/admin/images/icon/magnifier.png') 2.5% 42.5% no-repeat;/* lightgrey;*/
	background-size: 16px;
	padding-left: 21px !important;
}
a.icon-applicationSub {
	background: url('/admin/images/icon/application-sub.png') 2.5% 42.5% no-repeat;/* lightgrey;*/
	background-size: 16px;
	padding-left: 21px !important;
}
a.icon-null {
	background: url('/admin/images/icon/null_16px.png') 2.5% 42.5% no-repeat;/* lightgrey;*/
	background-size: 16px;
	padding-left: 21px !important;
}


/* ボックス風 div or section
--------------------------------------*/
.summary-box {
	background-color: #f6f6f6;
	border: 1px gray solid;
	border-radius: 7px;
	margin-bottom: 4px;
}
.summary-box header {
	padding: .3em .6em;
}
.summary-box header h2 {
	display: inline;
	background-color: transparent;
	border-width: 0;
	font-weight: normal;
	font-weight: bold;
	margin: 0;
	padding: 0;
	font-size: 100%;/*10.5pt;*/
}
.summary-box-menu {
	padding: 4px;
	background-color: white;
	border-radius: 7px;
}
.summary-box_contents {
	padding: .2em .4em;
	background-color: white;
	border-radius: 0 0 7px 7px;
}
.summary-box_contents>table td {
	text-align: right;
	font-size: 120%;/*16pt;*/
	line-height: 16pt;
	padding: 4px;
	background-color: #fff;
	border: 1px #999 solid;
}
.summary-box_contents>ul {
}
.summary-box_contents>ul>li {
	line-height: 135%;
	list-style-type: none;
/*	margin-left: 1.4em;*/
}

.summary-box>footer {
	padding: 4px;
	font-size: 9pt;/*75%;/*9pt;*/
}

/* ドロップダウンメニュー
--------------------------------------*/
#headerMenu { /* <div> */
	width:100%;
	z-index: 1000;
	background-color:lightgrey;
/*
	position: sticky;
	top:0;
*/
	position: relative;
	border-bottom: 1px gray solid;
	height: 28px;
}
#headerMenu>* {
	display: inline-block;
	line-height: 24px;
}
.dropDownMenu ul {
	position: absolute;
	display: none;
	border: 1px gray solid;
	background-color: white;
	white-space: nowrap;
	background-color: white;
}
.dropDownMenu li {
	display: inline-block;
	position: relative;
}
#headerMenu a {
	display: inline-block;
	padding: 0 4px;
	text-decoration: none;
	font-size: 100%;
	color: black;
}
.dropDownMenu a:hover {
	background-color: gray;
	color: white;
}
.dropDownMenu>li:hover>ul {
	display: block;
}
.dropDownMenu ul>li:hover>ul {
	display: inline-block;
}
.dropDownMenu ul>li  {
	display: block;
	padding: 4px;
}
.dropDownMenu ul>li>a {
	display: inline-block;
	padding: 4px;
	text-decoration: none;
	color: black;
}
/*
.dropDownMenu li:hover {
	background-color:lightblue;
}
.dropDownMenu .select {
	background-color: lightgreen;
}
*/
/* button ul>li>a
--------------------------------------*/
ul.button {}
ul.button>li {
	list-style-type: none;
}
ul.button>li>a {
	display: block;
	margin: 1px;
	padding: .6em;
	text-align: center;
/*
	line-height: initial;
	border: 1px gray solid;
*/
	background-color: lightgrey;
	border-radius: 5px;
	color: black;
	text-decoration: none;
	height: 100%;
	display: grid;
	place-items: center;
}
ul.button>li>a:hover {
	color: white;
	background-color: gray;
}

/* インデックスページ用
--------------------------------------*/
.menu_contents { /* ul */
/*
	width: 100%;
*/
	max-width: 880px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 3px;
}
.menu_contents>li {
/*
	width: 33.33%;
*/
	width: calc((100% - 6px) / 3);
	max-width: 20em;
}
.menu_contents>li>a {
	font-size: 100%;
	padding: 1em !important;
}

.menu_relation { /* ul */
/*
	width: 100%;
*/
	max-width: 880px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: .4em 0;
}
.menu_relation>li {
	width: 20%;
}
.menu_relation>li>a {
	padding: 1em;
	border: 3px gray double !important;
}

/* 履歴一覧 */
.menu_latest {
	width: 100%;
/*	max-width: 880px;*/
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: left;
}
.menu_latest li {
	width: 20%;
	max-width: 12em;
}

/* pageType = pageIndex
--------------------------------------*/
#pageIndex .search_simple {
	width: auto;
	margin-bottom: 4px;
	display: block;
}
#pageIndex .search_simple input[type="text"] {
	font-size: 135%;
	height: 2em;
	width: 100%;
	padding: .4em;
}
#pageIndex form.simple button {
	top: 27.5% !important;
	right: 1.5%
}
/*
ID: C
------------------*/
#contextMenu {
	border: 1px gray solid;
	border-radius: .3em;
	background-color: whitesmoke;/*lightgrey;*/
	padding: .3em;
	position: absolute;
/*
	min-width: 100px;
	min-height: 100px;
*/
	left: 0;
	top: 0;
	z-index: 200;
	display: block;
	white-space: nowrap;
}
#contextMenu ul {
	display: block;
	padding: 0;
	margin: 0;
}
#contextMenu li {
	display: block;
	padding: 0;
}
#contextMenu li a {
	display: block;
	padding: .3em .6em;
	border: 1px solid whitesmoke;/*lightgrey solid;*/
	border-radius: .3em;
	text-decoration: none;
	color: inherit;
}
#contextMenu li a:hover {
	border-color: gray;
}



/* サイドメニュー
--------------------------------------*/
#sidemenuFlipFlop {
	display: none !important;
}
#sidemenu {
	position: sticky;
	z-index: 100;
	top: 0;
}
#sidemenu li {
	display: block;
}
#sidemenu li>a {
	margin: 0;
	padding: 8px;
	text-decoration: none;
	color: #000;
	display: inline-block;
	text-decoration: none;
	font-size: 100%;/*10.5pt;*/
	width: inherit;
}
#sidemenu>ul>li {
	border-bottom: 1px gray solid;
}
#sidemenu>ul>li>dl {}
#sidemenu>ul>li>dl>dt,
#sidemenu>ul>li>a,
#sidemenu details>summary {
/*
	display: block;
*/
	width: 100%;
	margin: 0;
	padding: 8px;
	color: #fff;
	cursor: pointer;
}


#sidemenu>ul>li>dl>dd,
#sidemenu details>*:last-child {
	background-color: #ddd;
	width: -moz-fit-content;
}
#sidemenu>ul>li>dl>dd>ul>li {
	position: relative;
}
#sidemenu ul {}
#sidemenu li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}
#sidemenu li>ul {
	position: absolute;
	display: none;
	border: 1px gray solid;
	background-color: #eee;
	top: -1px;
	white-space: nowrap;
	z-index: 2000;
}
/* 1段目 */
#sidemenu li {
	width: 140px;/*80px;*/
}
#sidemenu li>ul {
	left: 140px;/*80px;*/
}
/* 2段目 */
#sidemenu li>ul>li {
	width: 140px;
}
#sidemenu li>ul>li>ul {
	left: 140px;
}
/* 3段目 */
#sidemenu li>ul>li>ul>li {
	width: 120px;
}
#sidemenu ul>li:hover>ul {
	display: inline-block;
	background-color: #eee !important;
}
#sidemenu ul>li:hover>ul {
	display: inline-block;
}
#sidemenu ul li>div {
	display:inline-block;
}
#sidemenu li:hover {
	background-color: #666;
}
#sidemenu li li:hover {
	background-color: #ccc;
}
#sidemenu .select {
	background-color: lightgreen;
}


/* input
--------------------------------------*/
a.detail,
button,
input[type=button],
input[type=submit] {
	color: #000;
	display: inline;
	padding: 2px;
	margin:0 .5px;
	border: 1px gray solid;
	border-radius: 3px;
	font-size: 9pt;/*75%;/*9pt;*/
	background-color: #e0e0e0;
	text-decoration: none;
}
a.detail:hover,
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
	cursor: pointer;
	background-color:#e0f0ff;
}

button[disabled] {
	border-color: lightgrey;
	color: gray;
}
button[disabled]:hover {
	background-color: #e0e0e0;
}

select {
	padding:1.4px 2.8px;
	margin:0 .5px;
	border: 1px gray solid;
	font-size: 9pt;/*75%;/*9pt;*/
}

form {
/*
	display: inline;
*/
	width: fit-content;
}

form.simple {
	position: relative;
}
form.simple input {
	width: 6em;
	padding-right: 20px;
	font-size: 80%;
}
/*
form.simple input:focus {
	width: 9em;
}
*/
form.simple button {
	position: absolute;
	top: 2px;
	right: 12px;
	border: none;
	width: 18px;
	height: 18px;
	background-color: transparent;
	text-indent: -10em;
	overflow: hidden;
}
/* フォームの送信ボタンをbottomで最大幅で表示 */
form div.fixBottom {
	width:100%;
	position: sticky;
	bottom: 0;
}


/*======================================
上書き
--------------------------------------*/
section h2 {
/*
	display: none;
*/
	font-weight: normal;
}

/*======================================
SECTION:
	TABLE
--------------------------------------*/
td>table {
	margin: 0;
}
td td {
	background-color: transparent;
}

td.dbl_l, /* 二重罫線 */
th.dbl_l {
	border-left: 3px gray double;
}

/* カレンダー用
--------------------------------------*/
.wday0 { /* sunday */
	background-color: #ffd0d0;
}
.wday6 { /*saturday */
	background-color: #d0d0ff;
}



.ui-widget {
	font-size: inherit;
}



.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
	font-size: inherit;
}

/*
jQueryUI：datepicker
*/
table.ui-datepicker-calendar td {
	font-size: 100%;/*12pt;*/
	height: 100%;
}


/* x-ui-tabs
------------------*/
.ui-tabs .ui-tabs-nav li {
	top: inherit !important;
}
.x-ui-tabs .ui-widget-header {
	font-size: 9pt;
}
/*
.ui-tabs-panel {
	background-color: white !important;
}
*/
.ui-tabs-panel .menu {
	margin-bottom: 3px;
}

/* カード <div.cards>
----------------------------------------*/
.cards {}
.card {
	border: 1px gray solid;
	margin: 4px;
}
.card:first-child {
	margin-top: 0;
}
.card-header {
	border-bottom: 1px gray solid;
	background-color: #eee;
	padding: 4px 8px;
}
.card-body {
	padding: 4px 8px;
}
	.card-body ul {
		margin-left: 2em;
	}
.card-footer {
	padding: 4px 8px;
	line-height: 110%;
}

/*======================================
screen:
	ID
--------------------------------------*/
#popupWindow {
	position: relative;
}
#popupWindow form footer {
	display: block;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}
#popupWindow form footer>button {
	width: 100%;
	border-width: 1px 0 0 0;
	border-radius: initial;
	margin: 0;
	padding: .6em;
	font-size: 100%;
}

/*======================================
screen:
	PCサイズ限定
--------------------------------------*/
@media screen and (min-width: 801px){

	.sidemenu>.select>ul {/* 選択状態 */
		display: inline-block;
		position: relative;
		left: 0;
		border: none;
	}


}
/*======================================
 screen:
--------------------------------------*/
@media screen and (max-width: 800px){

/* 変更なし
	body {
		font-size: 12pt;
	}
*/
	.row2>* {
		display: block;
		width: 100% !important;
		max-width: 100% !important;
	}


body {
	grid-template-areas:
		"header header"
		"main main"
		"footer footer";
}
	#middle {
		display: initial;
	}
	#sidemenuFlipFlop {
		display: inline !important;
	}
/*
	aside,
	#sidemenu {
*/
aside {
		top: 28px;
		left: -1000px;
		position: absolute;
	}

	.menu_contents>li {
		width: 50%;
		max-width: inherit;
	}
	.menu_relation>li {
		width: 33.33%;
		max-width: inherit;
	}
	.menu_latest>li {
		width: 33.33%;
		max-width: inherit;
	}

}

/*======================================
 screen:
--------------------------------------*/
@media screen and (max-width: 480px){

	 body {
		font-size: 14pt;
	}

	.mode-sp-on {
		display: inline-block !important;
	}
	.mode-sp-off {
		display: none !important;
	}
	#middle {
/*		display: inherit;*/
	}
	#storeName {
		display: none !important;
	}
/*
	#sidemenu {
*/
aside {
		width: 100%;
	}
	#sidemenu dd {
		position: inherit;
	}
	#sidemenu li {
		width: 100%;
	}
	.sidemenu-view { /* トグル表示用 */
		display: block !important;
	}
	#sidemenu li>ul>li {
		width: 100%;
	}
	#sidemenu>li>a {
		text-align: left;
		font-size: initial;
	}
	#sidemenu>li>ul {
		left: 140px;
	}
	#sidemenu li>li {
		left: 0;
	}
	#sidemenu dd {
		width: 100% !important;
	}
	#sidemenu dd>ul {
		position: initial;
	}
	#sidemenu>li.select>ul {
		display: inline-block;
	}
	#sidemenu>ul>li>a {
		text-align: center;
		font-size: inherit;
	}

	.menu_contents>li {
		width: 100%;
	}
	.menu_relation>li {
		width: 100%;
	}
	.menu_latest li {
		width: 100%;
	}

	footer {
		font-size: 80%;
	}
}

/*======================================
 print
--------------------------------------*/
@media print {

	body {
		display: inherit !important;
	}

	aside {
		display: none !important;
	}

	th, td {
		color: black !important;
/*
		background-color: white !important;
		border:1px gray solid !important;
*/
		font-size: 10.5pt;
	}
	th a,
	td a {
		text-decoration: none;
	}

	#menu,
	#notice-message {
		display :none;
	}

	#sidemenu {
		display: none;
	}
/*
	#middle {
		display: initial;
	}
*/

	.print-media_none,
	.media-print_none {
		display: none;
	}
	/* 編集用ボタンを非表示に */
	table.columns td button.edit {
		display: none;
	}
	table.columns td>button.edit+span {
		padding: 0;
	}

	form {
		display :none;
	}
	.menu {
		display: none;
	}
	main>nav {
		display: none;
	}
}

