﻿@charset "utf-8";

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul{
list-style:none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}

/* 全体 */
html {
	height: 100%;
}
body {
	margin: 0;
	padding: 0;
	font-family: "メイリオ","ＭＳ Ｐゴシック", Arial, sans-serif;
	color: #444;
	height: 100%;
	min-width: 1280px;
}
input, select {
	width: 98%;
	padding: 3px;
	font-family: "メイリオ","ＭＳ Ｐゴシック", Arial, sans-serif;
	font-size: 0.9em;
	border: 1px solid #999;
}
input[type="submit"], input[type="reset"] {
	height: 39px;
	background: #888;
	color: #fff;
	border-style: none;
	box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
}
input[type="submit"]:hover, input[type="reset"]:hover {
	background: #aaa;
}
button {
	font-family: "メイリオ","ＭＳ Ｐゴシック", Arial, sans-serif;
	cursor: pointer;
	outline: none;
}
div#contents {
    /* 各画面のコンテナ */
    display: inline-block;
    width: calc( 100% - 110px );
    vertical-align: top;
    margin-top: 10px;
    height: 100%;
}

/* ログイン画面 */
/* Version */
div.version {
    margin: 5px auto;
    text-align: right;
}

div.version p {
    padding: 20px 10px;
    color: #000;
}

body#top {
    background: #e5ff88;
}
div.system_name {
	width: 750px;
	height: 200px;
	margin: 50px auto;
	font-weight: bold;
	font-size: 2.5em;
	color: #000;
}
div.system_name p.system_name {
	text-align: center;
	position: relative;
	top: 80px;
}
div#login {
	width: 400px;
	margin: 0 auto;
}
div#login div {
	margin:10px 0;
}
div#login label {
	display: block;
	width: 100%;
	padding: 5px 0;
	font-size: 0.9em;
}
div#login div.button {
    text-align: center;
    margin-top: 30px;
}
div#login button {
    background-color: transparent;
    border: solid 2px #000;
    line-height: 30px;
    width: 100px;
    font-size: 0.8em;
}
div#login button:hover {
    background-color: rgba(255, 255, 255, .2);
}
/* 2020/06/04追加 登録画面 */
div.regist_title {
    width: 250px;
    height: 75px;
    margin: 25px auto;
    font-size: 2em;
    color: #000;
}
div.regist_title p.regist_title {
    text-align: center;
    position: relative;
    top: 40px;
    bottom: 30px;
}
div#login asterisk {
    font-size: large;
    color: #F00;
}
div.radio-row {
    text-align: left;
}
div.radio-row label {
    vertical-align: top;
}
div#login div.a {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
/* 2020/06/04追加 登録画面ここまで */

/* ヘッダ */
header {
    background: #e5ff88;
    color: #000;
    height: 80px;
}
header table.header {
	width: 100%;
	height: 80px;
}
header table.header td {
	vertical-align: middle;
	font-size: 1.50em;
}
header table.header td.icon {
	width: 8%;
	text-align: center;
}
header table.header td.comp_name {
	width: 38%;
}
header table.header td.screen_name {
	width: 34%;
}
header table.header td.user_name {
    width: 10%;
    text-align: right;
    font-size: 12px;
}
header table.header td.logout {
    width: 10%;
    text-align: center;
}
header table.header td.logout button {
	background-color: transparent;
	border: solid 2px #ff9999;
	line-height: 30px;
	width: 100px;
	font-size: 0.65em;
	color: #ff9999;
}
header table.header td.logout button:hover {
	background-color: rgba(255, 255, 255, .2);
}

/* エラーメッセージ*/
div#errorMessage ul {
    list-style-type: disc;
    color: darkred;
}
div#errorMessage ul li{
    margin: 3px 0;
}
/* メニュー */
nav {
	width: 100px;
	margin-top: 10px;
	display: inline-block;
}
nav ul li {
    text-align: center;
    background: #333;
    height: 90px;
    font-size: 0.8em;
    border: solid 2px #444;
}
nav ul li.active {
	background: #fff;
}
nav ul li.active a {
	color: #444;
}
nav ul li a {
	display: block;
	text-align: center;
	height: 90px;
	text-decoration: none;
	color: #fff;
}
nav ul li a img {
	position: relative;
	top: 10px;
}
nav ul li a span {
    display: block;
    width: 100%;
    position: relative;
    top: 13px;
}
nav ul li a:hover {
    text-decoration: none;
    color: #fff;
}
nav ul li.active a:hover {
    color: #444;
}
/* 依頼管理 */
div#requestOrderMenu {
    display: flex;
    justify-content: space-between;
}
div#requestOrderMenu input[type="button"] {
    width: 100px;
    margin-bottom: 10px;
}
/* 依頼管理 地図表示*/
div#requestOrderMapMenu {
    display: flex;
    justify-content: space-between;
}
div#requestOrderMapMenu input[type="button"] {
    width: 100px;
    margin-bottom: 10px;
}
form#request input {
	width: 100px;
	margin-bottom: 10px;
}
input[type="radio"].radio_order {
    width: 20px;
}
.info-window {
    color: midnightblue;
    font-weight:bold;
}

/* 配送管理 */
div#displayMapMenu input[type="button"] {
    width: 100px;
    margin-bottom: 10px;
}
div#displayMapMenu input[type="radio"] {
    width: 30px;
    margin-bottom: 10px;
}
div#displayMapMenu label {
    font-weight:normal;
}

div#displayMapSelectCarName input[type="checkbox"] {
    margin: -1px 3px 0px 0px;
    width: 15px;
    height: 15px;
    max-height: 1.25em;
    vertical-align: middle;
    overflow: hidden;
}
div#displayMapSelectCarName label {
    padding: 0 10px;
    font-weight: normal;
}
form#driver {
	width: 40%;
}
form#driver input {
	width: 100px;
	margin-bottom: 10px;
	margin-right: 10px;
}
div#map {
	vertical-align: top;
	height: 100%;
}
/* 履歴検索 */
div#Search table {
    width: 1000px;
    margin: 0px;
    border: 1px #ccc solid;
    border-collapse: collapse;
}
div#Search table th {
    width: 120px;
    border: 1px #ccc solid;
    border-collapse: collapse;
    vertical-align: middle;
    background-color: #f5f5f5;
    padding: 5px;
    text-align: left;
    font-weight: bold;
}
div#Search td {
    width: 360px;
    border: 1px #ccc solid;
    border-collapse: collapse;
    vertical-align: middle;
    padding: 5px;
}
div#Search input {
    display: inline-block;
}
div#SearchButton {
	width: 1000px;
	text-align: right;
	margin: 10px 0 20px;
}
div#SearchButton input {
	width: 80px;
}
div#SearchButton input[type="button"] {
    height: 39px;
    margin:0 10px;
    background: #888;
    color: #fff;
    border-style: none;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
}

div#SearchButton input[type="button"]:hover {
    background: #aaa;
}
/* マスタ */
/* ユーザー設定 */
div#addUserData input {
    width: 100px;
    margin-bottom: 10px;
}
/* 顧客管理者用ユーザー設定 */
div#clientAdminSettingMenu {
    display: flex;
    justify-content: space-between;
}
div#clientAdminSettingMenu input[type="button"] {
    width: 300px;
    margin-bottom: 10px;
}
/* 配送車マスタ */
div#addCarData input {
    width: 100px;
    margin-bottom: 10px;
}
/* 料金表マスタ */
div#addPriceData input {
    width: 100px;
    margin-bottom: 10px;
}

/* 配送会社マスタ */
div#addCompanyData input {
    width: 100px;
    margin-bottom: 10px;
}

/* 基本設定(管理者用) */
div#SystemSettingAdmin table {
    width: 450px;
    margin: 0px;
    border: 1px #ccc solid;
    border-collapse: collapse;
}

div#SystemSettingAdmin table th {
    width: 150px;
    border: 1px #ccc solid;
    border-collapse: collapse;
    vertical-align: middle;
    background-color: #f5f5f5;
    padding: 5px;
    text-align: left;
    font-weight: bold;
}

div#SystemSettingAdmin td {
    width: 320px;
    border: 1px #ccc solid;
    border-collapse: collapse;
    vertical-align: middle;
    padding: 5px 4px 5px 6px;
}

div#SystemSettingAdmin td input {
    width: 99%;
}

div#SystemSettingAdmin input {
    display: inline-block;
}

div#SystemSettingAdminButton {
    width: 450px;
    text-align: right;
    margin: 10px 0 20px;
}

div#SystemSettingAdminButton input {
    width: 80px;
}

div#SystemSettingAdminButton input[type="button"] {
    height: 39px;
    margin: 0 10px;
    background: #888;
    color: #fff;
    border-style: none;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
}
div#SystemSettingAdminMessage {
    width: 450px;
    text-align: right;
    margin: 10px 0 20px;
}
div#SystemSettingAdminMessage p{
    padding: 5px;
    color:green;
}
/* 基本設定(各社担当者用) */
div#SystemSettingDispatch table {
    width: 450px;
    margin: 0px;
    border: 1px #ccc solid;
    border-collapse: collapse;
}

div#SystemSettingDispatch table th {
    width: 150px;
    border: 1px #ccc solid;
    border-collapse: collapse;
    vertical-align: middle;
    background-color: #f5f5f5;
    padding: 5px;
    text-align: left;
    font-weight: bold;
}

div#SystemSettingDispatch td {
    width: 320px;
    border: 1px #ccc solid;
    border-collapse: collapse;
    vertical-align: middle;
    padding: 5px 4px 5px 6px;
}

    div#SystemSettingDispatch td input {
        width: 99%;
    }

div#SystemSettingDispatch input {
    display: inline-block;
}

div#SystemSettingDispatchButton {
    width: 450px;
    text-align: right;
    margin: 10px 0 20px;
}

div#SystemSettingDispatchButton input {
    width: 80px;
}

div#SystemSettingDispatchButton input[type="button"] {
    height: 39px;
    margin: 0 10px;
    background: #888;
    color: #fff;
    border-style: none;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
}

div#SystemSettingDispatchMessage {
    width: 450px;
    text-align: right;
    margin: 10px 0 20px;
}

div#SystemSettingDispatchMessage p {
    padding: 5px;
    color: green;
}
div#masterMenu {
	margin-bottom: 10px;
}
div#masterMenu button {
	width: 120px;
	height: 39px;
	background: #888;
	color: #fff;
	border-style: none;
	box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
}
div#requestOrderMainMenu {
    margin-bottom: 10px;
}
div#requestOrderMainMenu button {
    width: 120px;
    height: 39px;
    background: #888;
    color: #fff;
    border-style: none;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
}
table#basicSetting {
	font-size: 0.9em;
}
table#basicSetting th {
	border: solid 1px #444;
	background: #444;
	width: 150px;
	color: #fff;
}
table#basicSetting td {
	width: 500px;
}
input#id, input#loginPass {
	width: 45%;
}
select#tax, select#roundingProcessing {
	width: 46%;
}
/* dialogで使用するテーブルの設定 */
table#dialog-table, table#dialog-map-table {
    width: 98%;
    margin: 0px auto;
    border: 1px #ccc solid;
    border-collapse: collapse;
}
table#dialog-table th, table#dialog-map-table th {
    width: 140px;
    border: 1px #ccc solid;
    border-collapse: collapse;
    vertical-align: top;
    background-color: #f5f5f5;
    padding: 5px;
    text-align: left;
    font-weight: normal;
}
table#dialog-table td, table#dialog-map-table td {
    border: 1px #ccc solid;
    border-collapse: collapse;
    vertical-align: top;
    padding: 5px;
}
table#dialog-table label {
    font-weight: normal;
}
table#dialog-table input[type="radio"] {
    width: 30px;
}
table#dialog-map-table th {
    width: 80px;
}
input#map_address {
    max-width: 800px !important;
    display: inline;
    width: 99% !important;
}

.ui-dialog-buttonset {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    text-align: left;
    justify-content: space-around;
    -webkit-justify-content: space-around;
}

.btn-map {
    width: 50px !important;
    display: inline !important;
    margin:3px 0px 0px;
    border-radius: 3px !important;
    color: #ffffff !important;
    background-color: #444444 !important;
    opacity: 0.9;
}

.btn-auto-calc {
    width: 75px !important;
    display: inline;
    margin: 3px 0px 0px;
    border-radius: 3px !important;
    color: #ffffff !important;
    background-color: #444444 !important;
    opacity: 0.9;
}

.btn-map:hover, .btn-auto-calc:hover {
    opacity: 0.8;
}

.btn-delete {
    color: darkred !important;
    background-color: #FFEBE6 !important;
    opacity: 0.9;
}
.btn-cancel {
    color: #CC6600 !important;
    background-color: #ffffcc !important;
    opacity: 0.9;
}
.btn-update {
    color: midnightblue !important;
    background-color: honeydew !important;
    opacity: 0.9;
}
.btn-userorder {
    color: red !important;
    background-color: yellow !important;
    opacity: 0.9;
}
.btn-leave-work {
    color: #003300 !important;
    background-color: #DDFFDD !important;
    opacity: 0.9;
}
.btn-close {
}
table#basicSetting {
    font-size: 0.9em;
}

table#basicSetting th {
    border: solid 1px #444;
    background: #444;
    width: 150px;
    color: #fff;
    padding: 5px;
}

table#basicSetting td {
    width: 500px;
    padding:5px;
}
