﻿@charset "UTF-8";

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, em, img, small, strong, var, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
	vertical-align: baseline;
	background: transparent;
}

/*これがないとIEのログイン画面が崩れる*/
html {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
}
/* END */

article, aside, figcaption, figure, footer, header,  menu, nav, section {
	display: block;
}
ul {
	list-style: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input, select, textarea {
	vertical-align: middle;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 16px;
}
select::-ms-expand {
    display: none;
}
img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: middle;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
body {
	width: 100%;
	min-height: 100vh;
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	flex-direction: column;
	background: #f3f3f3;
	font-size: 16px;
	font-family: "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
	line-height: 1.6;
	color: #333;
}
@media all and (-ms-high-contrast:none) {
body {
	font-family: "メイリオ",Meiryo,"游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}
}
@media only screen and (max-width: 800px) {
body{
	min-width: 0px;
}
}
/************************************ リンク*/
a:link,a:visited {
	color: #333;
	text-decoration: none;
}
a:hover,a:active {
	text-decoration: none;
}
/************************************** ログイン*/
.base_wrap {
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
 	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
	background: url('../img/base_ninow.png') 50% 50% no-repeat;
	background-size: cover;
}
.inner_login {
	width: 600px;
	background:  rgba(255, 255, 255, .6);
	border-radius: 10px;
	padding: 50px;
	margin: 0 auto;
}
.inner_login img {
	width: 300px;
	height: 69px;
}
/*--------------------------------------
　フォーム
--------------------------------------*/
.login input[type="text"],
.login input[type="password"] {
	width: 100%;
	border: solid 1px #fff;
	border-radius: 3px;
	background: rgba(255, 255, 255, .5);
	padding: 15px;
}
.login input[type=checkbox] {
	display: none;
}
.check_type01{
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	font-weight: bold;
	padding-left: 30px;
	vertical-align: middle;
	cursor: pointer;
}
.check_type01:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	display: inline-block;
	width: 26px;
	height: 26px;
	border: solid 3px #333;
	border-radius: 50%;
	content: '';
}
.check_type01:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: -2px;
	left: 10px;
	bottom: 0;
	margin: auto;
	display: inline-block;
	width: 6px;
	height: 12px;
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 100;
}
.login input[type=checkbox]:checked + .check_type01::before {
	opacity: 1;
}
.login input[type=checkbox]:checked + .check_type01::after {
	background: #333;
}
/*ラジオボタン*/
.radio_type01 {
	display: none;
}
.radio-parts01 {
	padding-left: 30px;
	position: relative;
	margin-right: 30px;
}
.radio-parts01::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	background: #e8e8e8;
	border-radius: 50%;
}
.radio_type01:checked + .radio-parts01::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 2px;
	left: 6px;
	bottom: 0;
	margin: auto;
	width: 13px;
	height: 13px;
	background: #2ac278;
	border-radius: 50%;
}
.label_required {
	position: absolute;
	top: 7px;
	right: 30px;
	margin: auto;
	display: block;
	width: 50px;
	height: 22px;
	background: rgba(237, 105, 124, .4);
	border: solid 1px #ed697c;
	border-radius: 22px;
	font-size: 12px;
	color: #ed697c;
	text-align: center;
}
/*セレクトボックス*/
.select_status select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
	width: 200px;
	border: solid 1px #ccc;
	border-radius: 3px;
	padding: 8px 10px;
}
.select_status label {
	position: relative;
}
.select_status label::after {
	position: absolute;
	top: 0;
	right: 15px;
	bottom: 0;
	margin: auto;
	display: inline-block;
	font-family: FontAwesome;
	content: "\f107";
	pointer-events: none;
}

/* セレクトボックス disable用クラス */
.status_disable {
	background: #f8f8f8;
	color: #ccc;
}
.status_disable select {
	color: #ccc;
}

/*トグルスイッチ*/
.toggle input {
	display: none;
}
.toggle input+label,
.toggle input+label::before,
.toggle input+label::after {
	-webkit-transition: .2s;
	transition: .2s;
}
.toggle input+label {
	display: block;
	position: relative;
	width: 60px;
	height: 30px;
	border-radius: 3px;
	vertical-align: middle;
	margin: 0 auto;
	cursor: pointer;
}
.toggle input+label::before {
	display: block;
	content: '\f00c';
	font-family: FontAwesome;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 16px;
	margin: 0 auto;
}
.toggle-select+label {
	background: #eee;
}
.toggle-select:checked+label {
	background: #2ac278;
}
.toggle-select:checked+label::before {
	color: #fff;
}

/*条件指定*/
.condition-entry .inner,
.inner_collectively {
	width: 100%;
	background: #f3f3f3;
	font-size: 0;
	padding: 30px 20px;
}
.condition-entry .inner dl {
	display: inline-block;
	width: calc(100% / 4);
	font-size: 16px;
	margin-bottom: 20px;
}
.condition-entry .inner dl dt,
.condition-entry .inner dl dd {
	display: inline-block;
	vertical-align: middle;
}
.condition-entry .inner dl dt {
	width: 90px;
	font-weight: bold;
	text-align: right;
	margin-right: 3px;
}
.condition-entry .inner dl dd input,
.inner_collectively dl dd input {
	width: 100%;
	background: #fff;
	border: solid 1px #ccc;
	border-radius: 3px;
	padding: 8px 10px;
}
.condition-entry .inner dl dd select,
.inner_collectively dl dd select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
	width: 150px;
	background: #fff;
	border: solid 1px #ccc;
	border-radius: 3px;
	padding: 5px 10px;
}
.condition-entry .inner dl dd label,
.inner_collectively dl dd label {
	position: relative;
}
.condition-entry .inner dl dd label::after,
.inner_collectively dl dd label::after {
	position: absolute;
	top: 0;
	right: 15px;
	bottom: 0;
	margin: auto;
	display: inline-block;
	font-family: FontAwesome;
	content: "\f107";
	pointer-events: none;
}
/*一括操作*/
.inner_collectively dl {
	display: inline-block;
	width: calc(100% / 3);
	font-size: 16px;
}
.inner_collectively dl dt,
.inner_collectively dl dd {
	display: inline-block;
	vertical-align: middle;
}
.inner_collectively dl dt {
	width: 120px;
	font-weight: bold;
	text-align: right;
	margin-right: 3px;
}
.inner_collectively dl dd select {
	width: 200px;
}
.inner_collectively dl:last-of-type dd input {
	background: url('../images/ico-calender.png') 96% 50% no-repeat #fff;
	background-size: 20px 20px;
}
/*条件指定（帳票印刷）*/
.business_form .inner dl {
	width: calc(100% / 2);
	font-size: 16px;
	margin-bottom: 0;
}
.business_form .inner dl dt,
.business_form .inner dl dd {
	display: inline-block;
	vertical-align: middle;
}
.business_form .inner dl dt {
	width: 50px;
	text-align: left;
}
.business_form .inner dl:nth-of-type(1) dd {
	width: auto;
}
.business_form .inner dl:nth-of-type(1) dd input {
	background: url('../images/ico-calender.png') 96% 50% no-repeat #fff;
	background-size: 20px 20px;
}
.business_form .inner dl:nth-of-type(1) dd:first-of-type::after {
	display: inline-block;
	content: '～';
	margin: 0 10px;
}
.business_form .inner dl:nth-of-type(1) dd input {
	width:200px;
}
.business_form .inner dl:nth-of-type(2) dd select {
	width: 400px;
}
.print_form .inner {
	width: 100%;
	background: #f3f3f3;
	padding: 30px 20px;
}
.print_form .inner dl dt,
.print_form .inner dl dd {
	display: inline-block;
	vertical-align: middle;
}
.print_form .inner dl dd input {
	background: #fff;
	border: solid 1px #ccc;
	border-radius: 3px;
	padding: 8px 10px;
}
.print_form .inner dl dd:first-of-type::after {
	display: inline-block;
	content: '～';
	margin: 0 10px;
}
.print_form .inner p span {
	background: #666;
	border-radius: 20px;
	font-size: 12px;
	color: #ffff;
	padding: 4px 12px;
	vertical-align: middle;
}
.print_form .inner p span::before {
	display: inline-block;
	content: '\f0a4';
	font-family: FontAwesome;
	margin-right: 5px;
	position: relative;
	top: -1px;
}
.btn_condition-entry,
.act_collectively {
	float: right;
	display: block;
	width: 126px;
	background: #ed697c;
	border-radius: 50px;
	font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
	color: #fff;
	padding: 5px;
	text-align: center;
	cursor: pointer;
    margin-bottom: 25px;
}
.btn_condition-entry::before {
	display: inline-block;
	content: '\f002';
	font-family: FontAwesome;
	font-weight: normal;
	margin-right: 3px;
}
.act_collectively::before {
	display: inline-block;
	content: '\f00c';
	font-family: FontAwesome;
	margin-right: 3px;
}
.btn_condition-fix input {
	display: block;
	width: 100%;
	background: #2ac278;
	font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	padding:  15px;
	cursor: pointer;
}
.condition_content {
	clear: both !important;
}
.btn_pos-ab {
	float: none;
	position: absolute;
	top: -60px;
	right: 0;
    margin-bottom: 0;
}

@media only screen and (max-width: 1470px) {
.condition-entry .inner dl {
	width: calc(100% / 3);
}
.business_form .inner dl {
	width: calc(100% / 2);
}
.inner_collectively dl {
	width: calc(100% / 2);
}
.inner_collectively dl:not(:last-of-type) {
	margin-bottom: 20px;
}
}
@media only screen and (max-width: 1200px) {
.business_form .inner dl {
	display: block;
	width: 100%;
}
.business_form .inner dl:first-of-type {
	margin-bottom: 20px;
}
}
@media all and (-ms-high-contrast:none) {
.btn_condition-entry,
.btn_condition-fix input {
	font-family: "メイリオ",Meiryo,"游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}
}
/************************************** ヘッダー*/
header {
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
 	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	background: #1f2c5b;
	border-bottom: solid 4px #2ac278;
	padding: 20px 30px;
}
header > div:last-of-type {
	color: #fff;
}
header img {
	width: 170px;
	height: 39px;
}
/*--------------------------------------
　ドロップダウン
--------------------------------------*/
.droplist li {
	cursor: pointer;
}

.droplist li.drop {
	position: relative;
}
.droplist li.drop::before {
	content: '';
	display: inline-block;
	width: 26px;
	height: 26px;
	background-image: url('../img/ico_user.png');
	background-size: contain;
	position: relative;
	top: 6px;
}
.droplist > li {
	display: inline-block;
}
.droplist li a {
	padding: 10px 0;
	color: #fff;
	transition: .1s;
}
.droplist li a:hover {
	color: #eee;
}
.dropdownContain {
	width: 180px;
	position: absolute;
	z-index: 2;
	left: 50%;
	margin-left: -80px;
	top: -400px;
}
.dropOut {
	width: 180px;
	background: #fff;
	position: relative;
	margin-top: 0px;
	opacity: 0;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 6px rgba(0,0,0,.15);
	-moz-box-shadow: 0 1px 6px rgba(0,0,0,.15);
	box-shadow: 0 1px 6px rgba(0,0,0,.15);
	transition: .3s;
}

.dropOut ul {
	padding: 10px;
}
.dropOut ul::before{
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid white;
	top: -8px;
	left: 50%;
	margin-left: -8px;
}
.dropOut ul li {
	width: 100%;
}
.dropOut ul li a {
	display: block;
	padding: 5px;
	color: #333;
	transition: .3s;
}
.dropOut ul li a::before {
	display: inline-block;
	width: 15px;
	content: '';
	font-family: FontAwesome;
	margin-right: 5px;
}
.dropOut ul li:nth-of-type(1) a::before {
	content: '\f13e';
}
.dropOut ul li:nth-of-type(2) a::before {
	content: '\f08b';
}
.dropOut ul li:nth-of-type(3) a::before {
	content: '\f2ba';
}
.dropOut ul li a:hover {
	color: #2ac278;
}
.droplist li:hover .dropdownContain {
	top: 40px;
}
.droplist li:hover .dropOut {
	opacity: 1; margin-top: 8px;
}
/************************************** コンテンツ*/
.contents {
	position: relative;
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; 
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	flex-grow: 1;
}
.sidebar .inner {
	display: table;
	height: 100%;
	background: #4a5374;
}
.sidebar .inner > nav,
.sidebar .inner > div {
	display: table-cell;
	vertical-align: top;
	height: 100%;
}
.sidebar .inner > nav {
	display: none;
}
#SlideOpen {
	background: #38405e;
	color: #fff;
	font-size: 10px;
	padding: 15px 10px;
	text-align: center;
	cursor: pointer;
}
#SlideOpen .menu-bar {
	position: relative;
	width: 20px;
	height: 20px;
	margin: 0 auto 5px auto;
}
#SlideOpen .menu-bar span {
	position: absolute;
	display: inline-block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	transition: .6s;
}

#SlideOpen .menu-bar span:nth-of-type(1) {
	top: 0px;
	left: 0px;
	background: #ed697c;
}
#SlideOpen .menu-bar span:nth-of-type(2) {
	top: 0px;
	right: 0px;
	background: #decd15;
}
#SlideOpen .menu-bar span:nth-of-type(3) {
	bottom: 0px;
	left: 0px;
	background: #2ac278;
}
#SlideOpen .menu-bar span:nth-of-type(4) {
	bottom: 0px;
	right: 0px;
	background: #15bbde;
}

#SlideOpen .active span {
	position: absolute;
	display: block;
	width: 12px;
	height: 2px;
	border-radius: 2px;
}
#SlideOpen .active span:nth-of-type(1) {
	top: 5px;
	transform: rotate(225deg);
}
#SlideOpen .active span:nth-of-type(2) {
	top: 5px;
	transform: rotate(-225deg);
}
#SlideOpen .active span:nth-of-type(3) {
	bottom: 5px;
	transform: rotate(-225deg);
}
#SlideOpen .active span:nth-of-type(4) {
	bottom: 5px;
	transform: rotate(225deg);
}
.container {
	width: 100%;
	box-shadow:8px 9px 19px -11px #333333 inset;
	-moz-box-shadow:8px 9px 19px -11px #333333 inset;
	-webkit-box-shadow:8px 9px 19px -11px #333333 inset;
}
.area_bread-rumb {
	background: #fff;
	border-radius: 5px;
	box-shadow:0px 0px 8px 1px #cccccc;
	-moz-box-shadow:0px 0px 8px 1px #cccccc;
	-webkit-box-shadow:0px 0px 8px 1px #cccccc;
	padding: 10px 20px;
}
.inner_common {
	background: #fff;
	border-radius: 5px;
	padding: 30px 20px;
}
.area_sub_header {
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.select_date {
	display: table;
	width: 270px;
	border: solid 2px #39436a;
	border-radius: 3px;
}
.select_date > dt,
.select_date > dd {
	display: table-cell;
	vertical-align: middle;
}
.select_date > dt {
	width: 70px;
	background: #39436a;
	color: #fff;
	text-align: center;	
	padding: 5px;
}
.select_date > dd input {
	width: 100%;
	height: 100%;
	background: url('../img/ico-calender.png') 93% 50% no-repeat;
	background-size: 20px 20px;
	padding: 5px;
}
/*Placeholder*/
input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #aaa;
	font-size: 14px;
}
input::-moz-placeholder { /* Firefox 19+ */
	color: #aaa;
	font-size: 14px;
}
input:-ms-input-placeholder { /* IE 10+ */
	color: #aaa;
	font-size: 14px;
}
input:-moz-placeholder { /* Firefox 18- */
	color: #aaa;
	font-size: 14px;
}

.floatbox_type01 {
	display: table;
	width: 100%;
}
.floatbox_type01 dt,
.floatbox_type01 dd {
	display: table-cell;
}
.floatbox_type01 dt {
	width: 15%;
	min-width: 230px;
}
.floatbox_type01 dd {
	width: 85%;
}
.floatbox_type01 dd input,
.floatbox_type01 dd textarea {
	width: 100%;
	padding: 8px 10px;
	border-radius: 3px;
	border: solid 1px #ccc;
}
.input_term div {
	display: inline-block;
	vertical-align: middle;
}

.input_term div input {
	background: url('../images/ico-calender.png') 96% 50% no-repeat #fff;
	background-size: 20px 20px;
}
.input_term div:first-of-type::after {
	display: inline-block;
	content: '～';
	margin: 0 10px;
}
.input_term div input {
	width: 200px;
}
.add_pause::before {
	content: '：';
	color: #888;
	margin-right: 10px;
}
.disp-block {
	display: block !important;
}
.inner_timeout {
	width: 1024px;
	margin: 60px auto;
}
.inner_timeout > div {
	background: #fff;
	border-radius: 10px;
	margin: 0 20px;
	padding: 40px 20px;
}
.inner_timeout h1 {
	font-size: 26px;
	font-weight: bold;
	color: #ed697c;
	border-bottom: solid 1px #ccc;
	padding-bottom: 10px;
}
.inner_timeout h1::before {
	display: block;
	content: '\f071';
	font-family: FontAwesome;
	color: rgba(237, 105, 124, .2);
	font-size: 80px;
	line-height: 1;
	text-align: center;
	margin-bottom: 10px;
}
/************************************** ナビゲーション*/
.accordion_menu {
	width: 280px;
	display: block;
	font-size: 16px;
}
.accordion_menu > li {
 	border-bottom: solid 1px #38405e;
}
.accordion_menu > li:hover {
	background: #38405e;
}
.accordion_menu > li > div > p {
	position: relative; 
	padding: 20px;
	color: #fff;
	cursor: pointer;  
}
.accordion_menu > li > p a {
	display: block;
	padding: 20px;
	color: #fff;
	cursor: pointer;  
}
.accordion_menu > li > div > p > span,
.accordion_menu > li > div > li > span {
	position: relative;
	display: block;
	width: 100%;
	margin: 0 auto;
}
.accordion_menu > li > div > p > span::before {
	display: block;
	content: '';
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: .3s;
}
.accordion_menu > li > div > p.active {
	background: #38405e;
	color: #15bbde;
}
.accordion_menu > li > div > p.active > span::before {
	border-top: 2px solid #15bbde;
	border-right: 2px solid #15bbde;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.accordion_menu > li > div > ul {
	background: #38405e;
	padding: 10px 25px;
}
.accordion_menu > li > div > ul > li a {
	display: block;
	width: 100%;
	color: #ededed;
	margin-bottom: 10px;
	transition: .3s;
}
.accordion_menu > li > div > ul > li a:hover {
	opacity: .5;
}
/*--------------------------------------
　カレンダー
--------------------------------------*/
.calender {
	width: 100%;
}
.calender th,
.calender td {
	width: 14.2857143%;
	padding: 10px 15px;
}
.calender th {
	background: #39436a;
	border-right: solid 1px #fff;
	color: #fff;
	font-weight: bold;
}
.calender th:first-child {
	color: #ed697c;
}
.calender th:last-child {
	color: #15bbde;
}
.calender th:first-child {
	border-left: solid 1px #39436a;
}
.calender th:last-child {
	border-right: solid 1px #39436a;
}
.calender td > ul li:first-child {
	text-align: right;
	font-weight: bold;
}
.calender td {
	height: 130px;
	border-right: solid 1px #e0e0e0;
	border-bottom: dashed 1px #e0e0e0;
}
.calender td:first-child {
	border-left: solid 1px #e0e0e0;
	background: rgba(237, 105, 124, .1);
	color: #ed697c;
}
.calender td:last-child {
	background: rgba(21, 187, 222, .1);
	color: #15bbde;
}
.calender tr:last-child td {
	border-bottom: solid 1px #e0e0e0;
}
.calender td ul li.label_request a,
.calender td ul li.label_delivery a {
	display: block;
	border-radius: 3px;
	font-size: 14px;
	color: #fff;
	padding: 5px 10px;
	margin-top: 5px;
}
.calender td ul li.label_request a {
	background: #decd15;
}
.calender td ul li.label_delivery a {
	background: #2ac278;
}
.select_month {
	position: absolute;
	top: 30px;
	right: 20px;
}
.select_month li {
	display: inline-block;
}
.select_month li a {
	display: inline-block;
	margin: 0 2px;
	padding: 3px 10px;
	border-radius: 3px;
}
.select_month li:nth-of-type(1) a,
.select_month li:nth-of-type(3) a {
	background: #e0e0e0;
	color: #909090;
}
.select_month li:nth-of-type(1) a::before {
	display: inline-block;
	content: '\f104';
	font-family: FontAwesome;
	margin-right: 5px;
}
.select_month li:nth-of-type(2) a {
	background: #2ac278;
	color: #fff;
}
.select_month li:nth-of-type(3) a::after {
	display: inline-block;
	content: '\f105';
	font-family: FontAwesome;
	margin-left: 5px;
}
.calender td.today {
	background: rgba(42, 194, 120, .2);
	color: #2ac278;
}
/*カレンダー（リスト型）*/
.dw12 {
	max-width: 1200px;
	margin: 0 auto;
}

.delivery_list {
	border-collapse: collapse;
	width: 100%;
	border: solid #d9d9d9;
	border-width: 0 1px 1px 1px;
}
.delivery_list tr:not(:last-of-type) {
	border-bottom: solid 1px #e1e1e1;
}
.delivery_list th,
.delivery_list td {
	text-align: left;
	padding: 10px 20px;
	vertical-align: middle;
}
.delivery_list th {
	background: #39436a;
	border-right: solid 1px #fff;
	color: #fff;
}
.delivery_list td {
	background: #fff;
	border-right: solid 1px #d9d9d9;
}
.delivery_list tr th:first-child {
	border-left: solid 1px #39436a;
}
.delivery_list tr th:last-child {
	border-right: solid 1px #39436a;
}
.col-type01 {
	width: 100px;
}
.first-col01 {
	width: 50px;
}
.last-col01 {
	width: 115px;
}

.last-col02 {
	width: 210px;
}
.col-holiday td {
	background: rgba(237, 105, 124, .1) !important;
	color: #ed697c;
}
.col-saturday td {
	background: rgba(21, 187, 222, .1) !important;
	color: #15bbde !important;
}
.col-today td {
	background: rgba(42, 194, 120, .2);
    color: #2ac278 !important;
}
.col-today td:first-of-type {
	position: relative;
}
.col-today td:first-of-type::after {
	position: absolute;
	top: 50%;
	right: 10px;
	transform : translateY(-50%);	
	display: block;
	content: '本日';
	background: #2ac278;
	border-radius: 3px;
	color: rgba(255, 255, 255, .8);
	font-size: 14px;
	text-align: center;
	padding: 2px 15px;
}
.btn_driver a,
.btn_delivery a,
.btn_cargo a {
	display: block;
	width: 76px;
	border-radius: 30px;
	font-size: 12px;
	padding: 2px 0;
	text-align: center;
	vertical-align: middle;

}
.btn_delivery a {
	background: #f8c3cb;
	border: solid 1px #ed697c;
	color: #ed697c;
	margin-bottom: 5px;
}
.btn_cargo a {
	background: #b8eaf5;
	border: solid 1px #15bbde;
	color: #15bbde;
}
.btn_driver a {
	background: #aae7c9;
	border: solid 1px #2ac278;
	color: #2ac278;
	margin-bottom: 5px;
}
@supports (-ms-ime-align:auto) {
.col-today td:first-of-type::after {
	transform : none;
}
}
/************************************** タブメニュー*/
label.panel_label {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	display: block;
	width: 100%;
	color: #1f2c5b;
	cursor: pointer;
}
#panels section main {
	display: none;
	box-sizing: border-box;
	max-height: 0;
	opacity: 0;
	overflow-y: hidden;
}
#panel_ctrl01:checked ~ #panels #panel_inner01 main,
#panel_ctrl02:checked ~ #panels #panel_inner02 main,
#panel_ctrl03:checked ~ #panels #panel_inner03 main,
#panel_ctrl04:checked ~ #panels #panel_inner04 main,
#panel_ctrl05:checked ~ #panels #panel_inner05 main {
	display: inline;
	max-height: initial;
	opacity: 1;
}

#panel_ctrl01:checked ~ .tabs_list #li-for-panel_inner01 label.panel_label,
#panel_ctrl02:checked ~ .tabs_list #li-for-panel_inner02 label.panel_label,
#panel_ctrl03:checked ~ .tabs_list #li-for-panel_inner03 label.panel_label,
#panel_ctrl04:checked ~ .tabs_list #li-for-panel_inner04 label.panel_label,
#panel_ctrl05:checked ~ .tabs_list #li-for-panel_inner05 label.panel_label {
	background-color: #1f2c5b;
	color: #fff;
}

.tabs_list {
	display: table;
	width: 100%;
	list-style: none;
	font-size: 0;
	margin: 0;
	padding: 0;
	text-align: center;
	margin-bottom: 30px;
}
.tabs_list li {
	display: inline-table;
	width: 150px;
	height: 40px;
	line-height: 40px;
	border: solid #1f2c5b;
	background: #fff;
	border-width: 2px 0 2px 2px;
	font-size: 18px;
	text-align: center;
}
.tabs_list li:first-of-type {
	border-radius: 5px 0 0 5px;
}
.tabs_list li:last-of-type {
	border-radius: 0 5px 5px 0;
	border-width: 2px;
}
.panel-radios {
	display: none;
}
/************************************** フッター*/
footer {
	background: #1f2c5b;
	font-size: 12px;
	color: #fff;
	padding: 10px 0;
}
/************************************** 見出し*/
h2, h3, h4, h5 {
	font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
	font-weight: bold;
}
.bottom_line {
	border-bottom: solid 1px #ccc;
	font-size: 30px;
	padding-bottom: 8px;
}
.ttl_belt {
	font-size: 22px;
	background: #e0e0e0;
	border-radius: 5px;
	color: #666;
	padding: 8px 15px;
}
@media all and (-ms-high-contrast:none) {
h2, h3, h4, h5 {
	font-family: "メイリオ",Meiryo,"游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}
}
/*--------------------------------------
　アイコン（一覧用）
--------------------------------------*/
.ico_font {
	font-size: 26px;
}
.ico_font::before {
	content: '';
	font-family: FontAwesome;
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	background: #2ac278;
	border-radius: 50%;
	font-size: 20px;
	font-weight: normal;
	color: #fff;
	text-align: center;
	margin-right: 10px;
	position: relative;
	top: -4px;
}
.ico_calender::before {
	content: '\f073';
}
.ico_list::before {
	content: '\f0ca';
}
.ico_id::before {
	content: '\f2c2';
}
.ico_base::before {
	content: '\f041';
}
.ico_deli::before {
	content: '\f278';
}
.ico_owner::before {
	content: '\f007';
}
.ico_photo::before {
	content: '\f03e';
}
.ico_sign::before {
	content: '\f040';
}
/************************************** ボタン*/
.btn_common a,
.btn_common input[type="submit"] {
	display: inline-block;
	background: #fff;
	background: #a1e4f2;
	border: solid 2px #15bbde;
	border-radius: 50px;
	font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
	color: #15bbde;
	font-weight: bold;
	padding: 5px 30px;
	text-align: center;
	vertical-align: middle;
}
.btn_detail a {
	display: inline-block;
	vertical-align: middle;
	background: #aae7c9;
	border: solid 2px #2ac278;
	border-radius: 30px;
	font-size: 14px;
	color: #2ac278;
	padding: 3px 20px;
	text-align: center;
}
.btn_search {
	display: inline-block;
	background: #decd15;
	border-radius: 30px;
	color: #8d852e;
	padding: 3px 15px 3px 10px;
	vertical-align: middle;
}
.btn_search::before {
	display: inline-block;
	content: '\f002';
	font-family: FontAwesome;
	color: #8d852e;
	margin-right: 5px;
}
.btn_search input[type="submit"] {
	border: none !important;
	font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
	font-weight: bold;
	font-size: 14px;
	color: #fff;
	text-align: center;
	padding: 5px 15px 5px 30px;
}
/* 旧サーチボタン
.btn_search {
	position: relative;
	display: inline-block;
	background: #decd15;
	border-radius: 40px;
	vertical-align: middle;
}
.btn_search::before {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	display: block;
	content: '\f002';
	font-family: FontAwesome;
	color: #fff;
}
.btn_search input[type="submit"] {
	border: none !important;
	font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
	font-weight: bold;
	font-size: 14px;
	color: #fff;
	text-align: center;
	padding: 5px 15px 5px 30px;
}*/
.btn_login {
	position: relative;
	display: inline-block;
	background: #aae7c9;
	border: solid 3px #2ac278;
	border-radius: 60px;
}
.btn_login::before {
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
	content: '';
	display: block;
	width: 16px;
	height: 20px;
	background: url('../img/ico-login-close.png');
	background-size: contain;
	transition: .6s;
}
.btn_login:hover::before {
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
	content: '';
	display: block;
	width: 16px;
	height: 20px;
	background: url('../img/ico-login-open.png');
	background-size: contain;
}
.btn_login input[type="submit"] {
	color: #2ac278;
	font-weight: bold;
	padding: 10px 50px;
	cursor: pointer;
}
.btn-valid {
	background: #ff0000;
}
.btn_create a {
	position: relative;
	display: inline-block;
	background: #decd15;
	border-radius: 40px;
	color: #8d852e;
	font-size: 15px;
	vertical-align: middle;
	padding: 3px 12px;
}
.btn_create a::before {
	display: inline-block;
	content: '\f055';
	font-family: FontAwesome;
	margin-right: 3px;
}
.btn_change input,
.btn_change div {
	width: 100px;
	height: 36px;
	line-height: 36px;
	background: #ededed;
	border: solid 1px #ccc;
	border-radius: 3px;
	font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
	color: #888;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
}
@media all and (-ms-high-contrast:none) {
.btn_common a,
.btn_common input[type="submit"],
.btn_search input[type="submit"],
.btn_change input {
	font-family: "メイリオ",Meiryo,"游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}
}
/************************************** ページネーション*/
.pagination {
	position: relative;
	font-size: 16px;
	line-height: 1 !important;
}
.pagination-box {
	display: inline-block;
}
.pagination span, .pagination a {
	display: block;
	float: left;
	margin-right: 10px; 
	padding: 12px 15px 12px 15px;
	text-decoration: none;
	width: auto;
	color: #909090;
	background: #e0e0e0;
	border-radius: 3px;
}
.pagination span.page-of {
	background: none;
	color: #333;
}
.pagination a:hover {
	color: #fff;
	background: #666;
}
.pagination .current {
	padding: 12px 15px 12px 15px;
	background: #666;
	color: #fff;
	border-radius: 3px;
}
/************************************ テーブル*/ 
.table_type01,
.table_type03 {
	border-collapse: collapse;
	width: 100%;
	border: solid #d9d9d9;
	border-width: 0 1px 1px 1px;
}
.table_type01 tr:not(:last-of-type) {
	border-bottom: solid 1px #e1e1e1;
}
.table_type01 th, .table_type01 td,
.table_type03 th, .table_type03 td {
	text-align: left;
	padding: 10px 20px;
	vertical-align: middle;
}
.table_type01 th {
	background: #39436a;
	border-right: solid 1px #fff;
	color: #fff;
}
.table_type01 th a {
	position: relative;
	display: block;
	color: #fff;
}
.table_type01 th a::after {
	position: absolute;
	top: 50%;
	right: -10px;
	transform: translateY(-50%);
	display: block;
	content: '';
	width: 4px;
	height: 12px;
	background: url('../images/sort_default.png');
	background-size: contain;
}
.table_type01 th a.desc::after {
	position: absolute;
	top: 50%;
	right: -10px;
	transform: translateY(-50%);
	display: block;
	content: '';
	width: 4px;
	height: 12px;
	background: url('../images/sort_desc.png');
	background-size: contain;
}
.table_type01 th a.asc::after {
	position: absolute;
	top: 50%;
	right: -10px;
	transform: translateY(-50%);
	display: block;
	content: '';
	width: 4px;
	height: 12px;
	background: url('../images/sort_asc.png');
	background-size: contain;
}
.table_type01 td,
.table_type03 td {
	background: #fff;
	border-right: solid 1px #d9d9d9;
}
.table_type01 tr th:first-child {
	border-left: solid 1px #39436a;
}
.table_type01 tr th:last-child {
	border-right: solid 1px #39436a;
}
.table_type01 tr:nth-child(even) td {
	background: #ededed;
}
.table_type01 .last-col01 {
	width: 115px;
}
.table_type02 {
	border-collapse: separate;
    border-spacing: 0 15px;
	width: 100%;
	text-align: left;
}
.table_type02 th {
	position: relative;
	width: 15%;
	min-width: 170px;
	background: #e0e0e0;
	color: #666;
	padding: 15px;
}
.table_type02 td {
	background: #f3f3f3;
	padding: 15px 30px;
}
.table_type03 th {
	background: #666;
	border-right: solid 1px #fff;
	color: #fff;
}
.table_type03 th:last-of-type {
	border-right: none;
}
.table_type03 th:first-of-type {
	width: 50px;
}
.table_type03 th:last-of-type {
	width: 100px;
	text-align: center;
}
.table_type03 td {
	border-bottom: solid 1px #d9d9d9;
}
.input_bordered input {
	width: 100%;
	padding: 8px 10px;
    border-radius: 3px;
    border: solid 1px #ccc;
}
.table_fixed {
	border-collapse: collapse;
	border-spacing: 0;
	width: 720px;
	border: solid #d9d9d9;
	border-width: 0 1px 1px 1px;
	background: #fff;
	margin: 0 auto 55px auto;
	overflow-x: hidden;
	overflow-y: scroll;
}
.table_fixed thead,
.table_fixed tbody {
	display: block;
}
.table_fixed tbody {
	height: 300px;
	overflow-y: scroll;
}
.table_fixed th,
.table_fixed td {
	table-layout:fixed;
	padding: 10px 20px;
}
.table_fixed th {
	width: 144px;
	background: #666;
	color: #fff;
}
.table_fixed th:not(:last-of-type) {
	border-right: solid 1px #fff;
}
.table_fixed td {
	width: 144px;
}
.table_fixed td:not(:last-of-type) {
	border-right: solid 1px #d9d9d9;
}
.table_fixed tbody::-webkit-scrollbar {
	display: none;
}
/************************************ ドラッグ&ドロップ*/ 
.droparea {
	border:solid 1px #f3f3f3;
	border-radius: 5px;
	padding: 20px 10px;
}

.dropover {
	background: rgba(42, 194, 120, .1);
	border: dashed 1px #ccc;
}
.ui-droppable p {
	margin: 10px;
	background: #f3f3f3;
	border: solid 1px #ccc;
	border-radius: 3px;
	padding: 5px 10px;
	list-style: none;
	cursor: move;
}
.ui-droppable-disabled {
	padding: .15em 0;
}
.dropone p {
	margin: 0;
	background: none;
	border: none;
	border-radius: 0;
	list-style: none;
	cursor: move;
}
.select_files {
	display: table;
}
.select_files input,
.select_files label {
	display: table-cell;
	vertical-align: middle;
}
.select_files label {
	background: #decd15;
	color: #fff;
	padding: 0 15px;
	border-radius: 0 5px 5px 0;
}
.select_files label::before {
	content: '\f115';
	font-family: FontAwesome;
}
.select_files label input {
	display: none;
}
.select_files input {
	border: solid #efefef;
	border-width: 1px 0 1px 1px;
	border-radius: 5px 0 0 5px;
	padding: 10px;
}

/************************************ lightbox*/
.lb-data .lb-close {
	display: none !important;
}
/************************************ lightbox*/
.li-number {
	list-style-type: decimal;
	padding-left: 1.5em;
}

/************************************ modal*/
.modal-open {
	cursor: pointer;
}
#modal-close {
	position: absolute;
	top: 17px;
	right: 20px;
}
#modal-close img {
	width: 30px;
	height: 30px;
	cursor: pointer;
}
#modal-content {
	position: relative;
	width: 100%;
	max-width: 800px;
	height: 700px;
	background: #f3f3f3;
	box-shadow:0px 0px 15px 0px #000000;
	-moz-box-shadow:0px 0px 15px 0px #000000;
	-webkit-box-shadow:0px 0px 15px 0px #000000;
	color: #333;
	margin: 10px;
	z-index: 9999;
}
#modal-overlay {
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	background:	rgba(0, 0, 0, 0.7);
	z-index: 9998;
}
#modal-content,
#modal-overlay {
	display: none;
	position: fixed;
}
#modal-content > section > h2 {
	font-size: 22px;
	color: rgba(0, 0, 0, .9);
	border-bottom: solid 1px rgba(0, 0, 0, .2);
	margin-bottom: 20px;
	padding: 15px 20px;
}
#modal-content > section > div {
	margin: 20px 20px 35px 20px;
}
#modal-content > section table {
	padding: 20px;
	color: rgba(0, 0, 0, .6);
}
/*ページネーション（モーダル用）*/
#modal-content .pager {
	position: absolute;
	left: 20px;
	bottom: 100px;
}
#modal-content .pager span {
	background: #e0e0e0;
	border-radius: 3px;
	color: #909090;
	font-size: 14px;
	cursor: pointer;
	padding: 5px 10px;
}
#modal-content .pager span:not(:last-of-type) {
	margin-right: 5px;
}
#modal-content .pager span.active {
	background: #666;
	color: #fff;
}
.modal-ok input {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: #2ac278;
	color: #fff;
	padding: 20px;
	cursor: pointer;
}
.content-type01 {
	max-width: 1024px !important;
	height: 80% !important;
	overflow-y: scroll !important;
	
}
.modal-1col {
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.modal-1col input {
	width: 100%;
	background: #2ac278;
	color: #fff;
	padding: 20px;
	cursor: pointer;
}

.modal-2col {
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.modal-2col input {
	width: 50%;
	background: #2ac278;
	color: #fff;
	padding: 20px;
	cursor: pointer;
}
.modal-2col input:last-of-type {
	background: #ed697c;
}
/*２つボタン下固定*/
.modal-2col2 {
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.modal-2col2 input {
	position: absolute;
	bottom: 0;
	width: 50%;
	background: #2ac278;
	color: #fff;
	padding: 20px;
	cursor: pointer;
}
.modal-2col2 input:last-of-type {
	right: 0;
	background: #ed697c;
}

.type_car th,
.type_car td,
.type_owner th,
.type_owner td {
	padding: 8px 20px;
}
.type_car th:nth-of-type(2) {
	width: 283px;
}
.check_type02 input {
	display: none;
}
.check_type02 input+label,
.check_type02 input+label::before,
.check_type02 input+label::after {
	-webkit-transition: .2s;
	transition: .2s;
}
.check_type02 input+label {
	display: inline-block;
	position: relative;
	width: 24px;
	height: 24px;
	border-radius: 3px;
	vertical-align: middle;
	margin: 0 auto;
	cursor: pointer;
}
.check_type02 input+label::before {
	display: inline-block;
	content: '\f00c';
	font-family: FontAwesome;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: rgba(0, 0, 0, .2);
	font-size: 14px;
	margin: 0 auto;
}
.check-select+label {
	background: #fff;
	border: solid 1px rgba(0, 0, 0, .2);
}
.check-select:checked+label {
	background: #aae7c9;
	border: solid 1px #2ac278;
}
.check-select:checked+label::before {
	color: #2ac278;
}

.status_control {
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    flex-wrap: wrap;
}
.check_all,
.change_status,
.change_date {
	margin: 0 20px;
}
.check_ex-comp,
.check_all > label,
.change_status > label,
.change_status > div,
.change_date > div {
	display: inline-block;
	margin-right: 5px;
	vertical-align: middle;
	margin-bottom: 10px;
}
.check_all label {
	padding-left: 30px;
	text-indent: -30px;
	cursor: pointer;
}
.check_all input {
	display: none;
}
.check_parts {
	position: relative;
	padding-left: 30px;
}
.check_parts::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background: #fff;
	border: solid 1px rgba(0, 0, 0, .2);
	border-radius: 3px;
	text-indent: 0;
}
.check_parts::after {
	display: block;
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
	content: '\f00c';
	font-family: FontAwesome;
	color: rgba(0, 0, 0, .2);
	font-size: 14px;
	text-indent: 0;
}
.check_all input:checked + .check_parts {
	color: #2ac278;
}
.check_all input:checked + .check_parts::before {
	background: #aae7c9;
	border: solid 1px #2ac278;
}
.check_all input:checked + .check_parts::after {
	color: #2ac278;
}

.change_date input#calendar {
	width: 100%;
    background: #fff;
    border: solid 1px #ccc;
    border-radius: 3px;
    padding: 8px 10px;
	background: url('../images/ico-calender.png') 96% 50% no-repeat #fff;
	background-size: 20px 20px;
}
.change_date input#calendar {
	width:200px;
}
.change_date input#calendar::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #333;
	font-size: 16px;
}
.change_date input#calendar::-moz-placeholder { /* Firefox 19+ */
	color: #333;
	font-size: 16px;
}
.change_date input#calendar:-ms-input-placeholder { /* IE 10+ */
	color: #333;
	font-size: 16px;
}
.change_date input#calendar:-moz-placeholder { /* Firefox 18- */
	color: #333;
	font-size: 16px;
}
/*一括操作用*/
.change_date input#change_calendar {
	width: 100%;
    background: #fff;
    border: solid 1px #ccc;
    border-radius: 3px;
    padding: 8px 10px;
	background: url('../images/ico-calender.png') 96% 50% no-repeat #fff;
	background-size: 20px 20px;
}
.change_date input#change_calendar {
	width:200px;
}
.change_date input#change_calendar::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #333;
	font-size: 16px;
}
.change_date input#change_calendar::-moz-placeholder { /* Firefox 19+ */
	color: #333;
	font-size: 16px;
}
.change_date input#change_calendar:-ms-input-placeholder { /* IE 10+ */
	color: #333;
	font-size: 16px;
}
.change_date input#change_calendar:-moz-placeholder { /* Firefox 18- */
	color: #333;
	font-size: 16px;
}
.status_disable {
	background: #f8f8f8;
	color: #ccc;
}
.status_disable select {
	color: #ccc;
}
.check_ex-comp input {
	display: none;
}
.check_ex-comp input+label {
	border-radius: 36px;
	color: #fff;
	padding: 8px 15px;
	cursor: pointer;
}
.check_ex-comp .check-target+label {
	background: #ed697c;
}
.check_ex-comp .check-target:checked+label {
	background: #2ac278;
}
@media only screen and (max-width: 900px) {
.status_control {
    -webkit-box-align: stretch
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
}
}

/*検索ボックス*/
.area_input {
	width: 100%;
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.area_input input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	background: #fff;
	border: solid #39436a;
	border-width: 2px 0 2px 2px;
	border-radius: 3px 0 0 3px;
	padding: 6px 10px;
}
.area_input div {
	background: #39436a;
	border-radius: 0 3px 3px 0;
	color: #fff;
	font-weight: bold;
    text-align: center;
    padding: 6px 12px;
	font-size: 90%;
	cursor: pointer;
}
.area_input div::before {
	content: '\f002';
	font-family: FontAwesome;
	margin-right: 5px;
}
/*********************************************************************
 * 処理中
 *********************************************************************/
 #loading{
    border: solid 1px #ccc; 
    background: #fff;
    border-radius: 5px;
    padding: 15px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    box-shadow:0px 2px 0px 0px #ccc;
}

#loading-only{
    /*border:					1px dashed #999;*/
    padding:				15px;
    position:				fixed;
    top:					50%;
    left:					50%;
	/*background-color:		#FFF;*/
	background-image:		url( "../img/loading.gif" );
	background-size:		cover;
    filter:					alpha(opacity=85);
    -moz-opacity:			0.85;
	opacity:				0.85;
	z-index: 10000;
}


#loading .loadingMsg{
	text-align:	center;
	padding-top: 100px;
	width: 220px;
	background-image: url( "../img/loading.gif" );
	background-position: 50% 30%;
	background-repeat: no-repeat;
	z-index: 10001;
}

/*#m-dialog{
    border:					1px outset #999;
    padding:				15px;
    position:				fixed;
    top:					50%;
    left:					40%;
    background-color:		#dcdcdc;
    filter:					alpha(opacity=85);
    -moz-opacity:			1.0;
	opacity:				1.0;
	z-index: 10002;
}

#dialog-message{
    text-align:				left;
    padding-top:			10px;
	width:					600px;
	z-index: 10003;
}*/
/******************************************/

/* 削除用ボタン*/
.btn_delete a {
	display: inline-block;
	vertical-align: middle;
	background: rgb(255, 197, 130);
	border: solid 2px #EE5A44;
	border-radius: 30px;
	font-size: 14px;
	color: #EE5A44;
	padding: 3px 20px;
	text-align: center;
}

/*モーダル用検索ボックス*/
input.modal-search{
	width: 132px;
	background: #fff;
	border: solid 1px #ccc;
	border-radius: 3px;
	padding: 8px 10px;
	margin-right: 13px;
}

/* 未了選択の説明（仮） */
.check_all_text{
	color: #555;
	display: inline-block;
	border-bottom:dashed 1px #555;
}
 
/* ツールチップ部分を隠す */
.check_all_text{
	display: none;
}
 
/* マウスオーバー */
.check_all_text:hover {
	position: relative;
	color: #333;
}
 
/* マウスオーバー時にツールチップを表示 */
.check_ex-comp:hover + .check_all_text{
	display: block;
	position: absolute;
	top:150px;
	background-color: #444;
	padding: 5px;
	width: 300px;
	color: #fff;
	font-size: 90%;
	z-index: 100;
/*伝票印刷用モーダル*/
.select_contents dt {
	font-size: 18px;
	font-weight: bold;
}
.select_contents dd {
	padding-left: 30px;
}
.parts-type02::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	background: #fff;
	border: solid 1px rgba(0, 0, 0, .2);
	border-radius: 50%;
}