﻿@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;*/
    /*background-color:#f0f0f0;*/
}
.inner_login {
	width: 430px;
	/*background:  rgba(255, 255, 255, .6);*/
    background-color:#fff;
	/*border-radius: 10px;*/
	padding: 35px;
    padding-left:30px;
    padding-right:30px;
	margin: 0 auto;
}
.inner_login img {
	/*width: 295px;*/
	/*height: 117px;*/
    width:151px;
    height:74px;
}
/*--------------------------------------
　フォーム
--------------------------------------*/
.login input[type="text"],
.login input[type="password"] {
	width: 100%;
	border: solid 1px #DFDFDF;
	border-radius: 20px;
	background: rgba(255, 255, 255, .5);
	padding: 10px;
    padding-left: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: #0fa921;
	border-radius: 50%;
}
.label_required {
	position: absolute;
	top: 7px;
	right: 30px;
	margin: auto;
	display: block;
	width: 50px;
	height: 22px;
	background: rgba(163, 0, 6, .3);
	border: solid 1px #a30006;
	border-radius: 22px;
	font-size: 12px;
	color: #a30006;
	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_content select {
    -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
	width: 100px;
	border: solid 1px #ccc;
	border-radius: 3px;
	padding: 8px 10px;
}
.select_status_position select {
    -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
	width: 90%;
	border: solid 1px #ccc;
	border-radius: 3px;
	padding: 8px 10px;
}
.select_status label {
	position: relative;
}
.select_status_content label {
	position: relative;
}
.select_status_position 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;
}
.select_status_content label::after {
	position: absolute;
	top: 0;
	right: 15px;
	bottom: 0;
	margin: auto;
	display: inline-block;
	font-family: FontAwesome;
	content: "\f107";
	pointer-events: none;
}
.select_status_position 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: #decd15;
	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 {
	color: rgba(0, 0, 0, .5);
}
.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: #a30006;
	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: #F2F2F2;
	border-bottom: solid 4px #005B5B;
	/*padding: 20px 30px;*/
}
header > div:last-of-type {
	color:#000000;
}
header > div > a > input {
	width: 407px;
	height: 34px;
}
/*--------------------------------------
　ドロップダウン
--------------------------------------*/
/*.droplist li {
	cursor: pointer;
}*/

.droplist li.drop {
	position: relative;
}
.droplist li.drop::before {
	content: '';
	display: inline-block;
	width: 26px;
	height: 26px;
	background: url('../img/ico_user.png') 50% 50% no-repeat;
	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: #a30006;
}
.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;
    height:100%;
}
.sidebar .inner {
	display: table;
	height: 100%;
	background: #006666;
}
.sidebar .inner > nav,
.sidebar .inner > div {
	display: table-cell;
	vertical-align: top;
	height: 100%;
}
.sidebar .inner > nav {
	display: none;
}
#SlideOpen {
	background: #006666;
	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;
	transition: .6s;
}

#SlideOpen .menu-bar span:nth-of-type(1) {
	top: 0px;
	left: 0px;
	background: rgba(255, 255, 255, .8);
}
#SlideOpen .menu-bar span:nth-of-type(2) {
	top: 0px;
	right: 0px;
	background: rgba(255, 255, 255, .6);
}
#SlideOpen .menu-bar span:nth-of-type(3) {
	bottom: 0px;
	left: 0px;
	background: rgba(255, 255, 255, .4);
}
#SlideOpen .menu-bar span:nth-of-type(4) {
	bottom: 0px;
	right: 0px;
	background: rgba(255, 255, 255, .3);
}

#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: 5px 20px;
}
.area_sub_header {
	display: -webkit-box;
    display: -ms-flexbox;
    -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 1px #333;
	border-radius: 3px;
}
.select_date > dt,
.select_date > dd {
	display: table-cell;
	/*vertical-align: middle;*/
}
.select_date > dt {
	width: 80px;
	background: #333;
	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 #006666;*/
}
.accordion_menu > li:hover {
	background: #006666;
}
.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: #006666;
	color: #decd15;
}
.accordion_menu > li > div > p.active > span::before {
	border-top: 2px solid #decd15;
	border-right: 2px solid #decd15;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.accordion_menu > li > div > ul {
	background: #005555;
	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: #a30006;
	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: #333;
	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: #333;
	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: #333;
	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 #333;
	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: #303030;
	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;
}
.bottom_no_line{
    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: #a30006;
	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"],
.btn_common input[type="button"]
 {
	display: inline-block;
	background: #A6A6A6;
	border-radius: 8px;
	font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
	color: #fff;
	font-weight: bold;
	padding: 5px 30px;
	text-align: center;
	vertical-align: middle;
}
.btn_common_red a,
.btn_common_red input[type="submit"],
.btn_common_red input[type="button"]
 {
	display: inline-block;
	background: #A20020;
	border-radius: 8px;
	font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
	color: #fff;
	font-weight: bold;
	padding: 5px 30px;
	text-align: center;
	vertical-align: middle;
}

.btn_common a:hover,
.btn_common input[type="submit"]:hover,
.btn_common input[type="button"]:hover
 {
	opacity: .5;
}
.btn_common_red a:hover,
.btn_common_red input[type="submit"]:hover,
.btn_common_red input[type="button"]:hover
 {
	opacity: .5;
}

.btn_detail a {
	display: inline-block;
	vertical-align: middle;
	background: #fff;
	border: solid 1px #666;
	border-radius: 8px;
	font-size: 14px;
	color: #333;
	padding: 3px 20px;
	text-align: center;
}
.btn_search {
	display: inline-block;
	background: #decd15;
	border-radius: 8px;
	color: rgba(0, 0, 0, .5 ) !important;
	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"], .btn_search input[type="button"] {
	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: #3C7AFC;
	border-radius: 20px;
    width:100%;
}*/
./*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;
}*/
/*
.btnlogin {
	color: #fff;
	font-weight: bold;
	padding: 10px 40px 10px 50px;
	cursor: pointer;
}*/
.btn-valid {
	background: #ff0000;
}
.btn_create a {
	position: relative;
	display: inline-block;
	background: #decd15;
	border-radius: 8px;
	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: #333;
	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: #bdbebd;
}
.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: #a30006;
	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;
}
.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#article_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#article_calendar {
	width:200px;
}
.change_date input#article_calendar::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #333;
	font-size: 16px;
}
.change_date input#article_calendar::-moz-placeholder { /* Firefox 19+ */
	color: #333;
	font-size: 16px;
}
.change_date input#article_calendar:-ms-input-placeholder { /* IE 10+ */
	color: #333;
	font-size: 16px;
}
.change_date input#article_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: #666;
	border-radius: 8px;
	font-size: 14px;
	color: #fff;
	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%;
}
.table_type01_ex1 td{
	padding: 0;
    border: 0;
}
.table_type01_ex1 th {
	padding: 0 10px;
	width: 25%;
	font-size: 14px;
	background-color: #000000;
	border-bottom: solid 1px #ffffff;
}
.table_type01_ex1{
	border: solid 1px #000000;
	width:23%;
	float: left;
}
.table_type01_ex1>tr>td {
	background: #FFFFFF;
}
.table_type01_ex2 {
	border-collapse: separate;
	width: 100%;
}
.table_type01_ex2 td,
.table_type01_ex2 th {
	border-right :0;
	background-color: transparent;
	width: 25%;
	font-size: 14px;
}
.table_type01_ex2 tr:nth-child(even) td {
	background-color: transparent;
}
.table_type01_ex3 {
	border: solid 1px #000000;
	width:100%;
	float: right;
}
.table_type01_ex3 td img {
	float: left;
	width: 50%;
}
.table_type01 tr:not(:last-of-type) {
	border: solid 1px #000000;
}
.table_type01_ex3 th {
	padding: 0;
	font-size: 14px;
    border-bottom: solid 1px #fff;
    background-color: #000000;
}
.table_type01_ex3 td {
	padding: 0;
	border-right: solid 1px #000000;
}
.table_type01 tr th:last-child {
	border-right: solid 1px #fff;
}
.table_type01_ex3 tr:nth-child(even) td {
	/*background-color: #bdbebd;*/
    background-color:  #ffffff;
}
.table_type01_ex3>tr:nth-child(odd)>td{
	background-color: #ffffff;
}
.table_type01_ex4 {
	border-collapse: separate;
	width: 100%;
	height:	66px;
	table-layout: fixed;
}
.table_type01_ex4 td {
	padding: 0;
	background-color: transparent;
	font-size: 14px;
	border: 0;
}
.table_type01_ex4 tr:nth-child(even) td {
	background-color: transparent;
}
.table_type01 tr:first-child {
    border-top: 0;
}

.table_type01_ex5 {
    border:0;
    table-layout:fixed;
}

.table_type01_ex5 tr {
    border-right:0;
}

.table_type01_ex5 td {
    border-top:0;
    border-bottom:solid 1px;
    background-color:transparent;
}

.table_type01_ex5 tr:last-child td{
    border-top:0;
    border-bottom:0;
    background-color:transparent;
}

.table_type01_ex5 tr:nth-child(even) td {
    background-color:transparent;
}

.table_type01_ex5 tr td:nth-last-child(1) {
    border-right:0;
}

.table_type01_ex5 tr:not(:last-of-type) {
    border-right: 0;
}

.table_type01_ex6 {
    border-top:0;
    table-layout: fixed;
}

.table_type01_ex6 tr:first-child {
    border-top: 0;
    border-bottom: 0;
}

.table_type01_ex6 tr:nth-child(even) td {
    background-color: transparent;
}

.table_type01_ex6 tr:nth-child(odd) td {
    background-color: #bdbebd;
}

.table_type01_ex7 {
    width: 100%;
    table-layout: fixed;
}

.table_type01_ex7 tr:nth-child(odd) td {
    background-color: transparent;
}

.table_type01_ex7 tr:nth-child(even) td {
    background-color: #bdbebd;
}

.table_type01_ex8 {
    width: 100%;
    table-layout: fixed;
}

.table_type01_ex8 tr:not(:last-of-type){
    border-left:0;
}

.w05{
    width:0.5%;
}
.w1_5{
    width:1.5%;
}

.w1{
    width:1%;
}
.w1_5{
    width:1.5%;
}

.w2 {
    width: 2%;
}
.w2_5{
    width:2.5%;
}
.w3 {
    width: 3%;
}
.w4 {
    width: 4%;
}
.w5 {
	width: 5%;
}
.w5_1 {
	width: 5.5%;
}
.w6 {
	width: 6%;
}

.w7 {
	width: 7%;
}

.w8 {
	width: 8%;
}

.w9 {
    width: 9%;
}

.w10 {
	width: 10%;
}
.w11 {
    width:11%;
}
.w12 {
	width: 12%;
}
.w16{
    width:16%;
}
.w18 {
	width: 18%;
}
.w20 {
	width: 20%;
}
.w22 {
	width: 22%;
}
.w23 {
	width: 23%;
}
.w24 {
	width: 24%;
}
.w25{
    width:25%;
}
.w32 {
	width: 32%;
}
.w30 {
    width: 30%;
}
.w36 {
    width:36%;
}
.w42 {
    width:42%;
}
.w48 {
    width:48%;
}
.w39 {
    width: 39%;
}
.w102 {
    width:102%;
}
.hidden {
	display: none;
}
.table_type01_ex4 .border_right {
	border-right: solid 1px #000000;
}
.body_err
{
    background: url(../img/bk_stripe.gif);
}
.lblErrMsg {
    font-size: 18pt;
    font-weight: bold;
    font-family: "ＭＳ ゴシック";
    font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Osaka", "Hiragino Kaku Gothic Pro", "MS UI Gothic", "lr oSVbN", "qMmpS Pro W3", "ＭＳ Ｐゴシック", "MS P Gothic","微软雅黑", "Microsoft Yahei", "Hiragino Sans GB", tahoma, arial, "宋体" !important;
    color: #909090;
}
#btnOK {
    border: 1px solid buttonface;
    -webkit-appearance: button;
    font-size: 14px;
    background: aliceblue;
}
.login-img3-body {
    margin: 0;
    background: url(../img/bg-1.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.mv {
    padding: 10px 0 80px;
}
video#bgvid, .bgvid {
    position: fixed;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    z-index: -100;
}
.login-img3-body .login-form {
    border: 0px solid #B0B6BE;
    background: rgba(213,215,222,0.2);
}
.login-form {
    max-width: 350px;
    margin: 200px auto 0;
    background: #d5d7de;
}
.login-wrap {
    padding: 20px;
}
.login-img3-body .login-form p, .login-img2-body .login-form p {
    color: #34aadc;
}
.login-form p {
    text-align: center;
    color: #b6b6b6;
    font-size: 16px;
    font-weight: 300;
}
.login-form .input-group {
    padding-bottom: 15px;
}
.login-form .btn {
    border-radius: 0;
}
.login-form .input-group-addon {
    padding: 6px 12px;
    font-size: 16px;
    color: #8b9199;
    font-weight: normal;
    line-height: 1;
    text-align: center;
    background-color: #ffffff;
    border: none;
    border-radius: 0;
}
.btn_logout {
    height: 35px;
    width: 75px;
    margin-bottom: 5px;
    margin-right: 10px;
    color: #ffffff;
    background-color: #B00E23;
    /*background-image: url(../img/logout_bk.png);*/
    border: none;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    overflow: visible;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
    white-space: nowrap;
    transition: background-color .2s ease-out;
    background-clip: padding-box;
    border-radius: 3px;
    background-position: bottom;
    background-repeat: repeat-x;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset;
    border-radius:5px;
}
.btn_menu {
    width: 75px;
    height: 35px;
    margin-bottom: 5px;
    margin-right: 10px;
    cursor: pointer;
    font-weight: bold;
    /*background-image: url(../img/bk_stripe.gif);*/
    background-color: #fff;
    border: none;
    padding: 0;
    border-radius:5px;
}
.down_csv   {
    background-color: rgb(176, 14, 35);
    border-radius: 3px;
    width: 90px;
    height: 30px;
    font-size: 20px;
    color: white;
    position: fixed;
    bottom: 10px;
    right: 300px;
    cursor: pointer;
}
/*
.btn_update {
    background-color: rgb(176, 14, 35);
    border-radius: 3px;
    width: 90px;
    height: 30px;
    font-size: 20px;
    color: white;
    position: fixed;
    bottom: 10px;
    right: 100px;
    cursor: pointer;
}*/
/*#article_tab_total td {
    background-color: rgb(230, 184, 183);
}*/
#article_tab_totals td {
    background-color: white;
}


.old_date {
    height: 30px;
    background-color: yellow;
    border-radius: 3px;
    text-align: center;
    padding: 3px;
    width:200px;
}

.btn {
    display: inline-block;
    border: none;
    border-radius: .3em;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.1), inset 0 -0.25em 0 rgba(0,0,0,.25), 0 0.25em 0.25em rgba(0,0,0,.05);
    cursor: pointer;
    padding: .5em 0 .75em;
    position: relative;
    text-decoration: none;
    text-shadow: 0 1px 1px hsla(0,0%,100%,.25);
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width:100%;
}

.btn-active {
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.2), inset 0 2px 0 hsla(0,0%,100%,.1), inset 0 0.25em 0.5em rgba(0,0,0,.05);
    margin-top: .25em;
    padding-bottom: .5em;
}

.btn_search {
    background-color: rgb(176, 14, 35);
    border-radius: 3px;
    width: 90px;
    color: white;
    cursor: pointer;
}

.condition_input {
    background: #fff;
    border: solid 1px #ccc;
    border-radius: 3px;
    padding: 8px 10px;
}

.tdLb {
	width: 100px;
	height: 20px;
	text-align: center;
}
.tdLbpwd {
    width: 40%;
    height: 20px;
    text-align: center;
}
.tdSpan {
    width: 60px;
	height: 20px;
	text-align: center;
}

.btn_update {
    display: inline-block;
	background: #a30006;
	border-radius: 8px;
	font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
	color: #fff;
	font-weight: bold;
	padding: 5px 30px;
	text-align: center;
	vertical-align: middle;
}

.total td {
    background-color:yellow;
}

.yellow td
{
    background-color:yellow !important;
}

.border_input input 
{
    background: #fff;
    border: solid 1px #ccc;
    border-radius: 3px;
    /*padding: 8px 10px;*/
}

/*.border_input select {
    -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
	width: 100px;
	border: solid 1px #ccc;
	border-radius: 3px;
	padding: 8px 10px;
}*/

/*.condition_select {
    -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
	width: 100px;
	border: solid 1px #ccc;
	border-radius: 3px;
	padding: 8px 10px;
}*/
.float_right 
{
    float:right;
}
.inlie 
{
    display:inline;
}
.float_left {
    float:left;
}

.enter_focus_bg{
     background-color:#FFFFCC !important;
  }
.input_select_focus_bg{
    background-color:#FFFFCC !important;
}

.layui-layer-btn0:focus{
    outline: none;
}
[control_enabled="false"]{
    height:37px;
}

[control_enabled_padding="false"]{
    padding:8px 10px;
}


.left_header .login_text,.header_logo_text{
    margin-left:35px;
    font-weight:bold;
    color:#008080;
    font-style:oblique;
    font-size:22px;
    vertical-align:super;
}
.left_header img{
    vertical-align:baseline !important;
}

/*.title{
    color:#006666;
}*/


/* 分页 */
.table_limit_div{
    width:100%;
    /*background-color:#DDDDDD;*/
    height:40px;
   
}

.table_limit_div .page_div{
     display:flex;
     align-items:baseline;
}

.table_limit_div .limit_btn_group{
    display:flex;
}

.table_limit_div .limit_btn_group div{
    padding:8px;
    /*background-color:#ffffff;*/
    margin-right:2px;


}

.table_limit_div .limit_btn_group .blue{
    color:#000000 !important;
    text-decoration:none;
    cursor:pointer;

}

.table_limit_div .limit_btn_group .grey{
    color:#ECE4E1 !important;
    text-decoration:none;
    cursor:default;

}

.table_limit_div .limit_btn_group .active{
    color:#fff !important;
    background-color:#296D7F;
}

.table_limit_div .limit_btn_group .limit_page_number_group a{
    margin-right:10px;
    border:solid 1px #F5F5F5;
    padding:3px;
    border-radius:5px;
    display:inline-block;
    width:30px;
    height:30px;
    text-align:center;
}
.table_limit_div .limit_btn_group .limit_page_number_group a:last-child{
    margin-right:0px;
}

.table_limit_div .limit_btn_group .limit_page_number_group a:not(.grey):hover{
    color:#fff !important;
    background-color:#296D7F;
}

.green_title{
    color:#006666;
}

.bottom_green_line {
	border-bottom: solid 1px #006666;
    padding-bottom:8px;
}

/*设定INDEX*/

.btnGroupDiv input{
    color:#006666;
    font-weight:bold;
    font-size:1.2em;
    border:solid 1px #8BA259;
    width:200px;
    height:46px;
    text-align:left;
    padding-left:10px;
    cursor:pointer;
}

.btnGroupDiv input:hover{
    color:#fff;
    background-color:#006666;
}

.btnGroupDiv .btnGroupTitle{
    font-weight:bold;
    font-size:1.5em;
    color:#006666;
}

.btnGroupDiv .divGroup .subtitle{
    margin-top:10px;
    font-size:0.9em;
}

.btnGroupDiv .GroupDiv{
    display:flex;
    flex-direction:row;
    margin-top:15px;
    margin-bottom:15px;
}

.btnGroupDiv .GroupDiv .divGroup{
    flex:1;
}

/*新规作成 按钮*/
.add_btn input{
    border:solid 1px #869F52;
    color:#1D7777;
    font-weight:bold;
    cursor:pointer;
    width:123px;
    height:39px;
    font-size:1.1em;

}

.add_btn input:focus,.add_btn input:hover{
    color:#fff;
    background-color:#296D7F;
}

.setting_header_table tr:first-child{
    background-color:#DBEEF4;
    color:#2F6472;
    font-size:1.3em;
}
.setting_header_table th:first-child{
    padding:5px;
}


.setting_table td:first-child{
    padding-left:10px;
}

.setting_table td,.setting_no_table td{
    padding-top:5px;
    padding-bottom:5px;
}

/*.setting_table td{
    border:solid 1px red;
}

.setting_header_table th{
    border:solid 1px red;
}*/

.buttom_group{
    position:fixed;
    bottom:4%;
    left:45%;
}

.setting_header_div{
    display:flex;
    flex-direction:row;
    margin-top:20px;
}

.setting_header_div div:first-child span{
    font-weight:bold;
    font-size:1.5em;
}

.setting_header_div div{
    flex:1;
}

.setting_header_div div:last-child{
    text-align:right;
    margin-right:10px;
}

.setting_edit_btn{
    background-color:#fff;
    cursor:pointer;
    width:116px;
    height:50px;
    background-image: url("../img/pen.png");
    background-repeat: no-repeat;
    background-position: 18px 14px;
}

.setting_edit_btn:disabled{
    cursor:default;
}


.setting_content div{
    width:100%;
    box-sizing: border-box;
    background-color:#fff;
    border-bottom: solid 1px #ccc;
	padding: 20px;
    display: flex; 
    align-items: center;
   
}

.setting_content div span:first-child{
    display:inline-block;
    width:150px;
    margin-right: 20px;
}

.buttom_bgcolor{
    background-color:#fff;
    padding:15px 30px;
}

.buttom_bgcolor input{
    margin-right:10px;
}

.settingBtn{
    background-color:#fff;
    color:#000000;
    border:solid 1px #EBEBEB;
    border-radius:5px;
    width:129px;
    height:43px;
    cursor:pointer;
}

.settingBtn:disabled{
    cursor:default;
}

.activeBtn{
    background-color:#296D7F;
    color:#fff;
}

.saveBtn.settingBtn.activeBtn.clickBtn:focus{
    background-color:aquamarine;
}

.delBtn{
    color:#5097AB;
    /*cursor:pointer;*/
}

.delBtn:disabled{
    cursor:default;
}

.buttomBtnCenter{
    left:45%;
}

.require_color{
    color:red;
    font-weight:bold;
}

.pwd_content .inner_content{
    padding:10px;
}


.pwd_content .inner_content div{
    width:100%;
    box-sizing: border-box;
    display: flex; 
    align-items: center;
    padding:5px;
}

.pwd_content .inner_content input{
    background-color:#fff !important;
    border:none;
}

.pwd_content .inner_content .require_color{
    margin-left:20px;
}


/*---------------------------*/
.apply_content{
    display: flex;
    flex-direction: column;
}
.apply_content .inner_content{
    padding:10px;
    display:flex;
}

.apply_content .inner_content .p_content{
    display:inline-block;
    flex:1;
}

.apply_content .inner_content .p_line{
    display:inline-block;
    flex:none;
}

.apply_content .inner_content .p_line:nth-child(2){
  margin-left:100px;
}



.apply_content .inner_content input[type="text"],
.apply_content .inner_content select,
.apply_content .inner_content input[type="password"]
{
    padding:10px;
    background-color:#fff;
    border:none;
}

.apply_content .inner_content .require_color{
    margin-left:20px;
}
.apply_content .inner_content .sub_text{
    margin-left:30px;
}

/**/
.contentDiv {
    border: solid 1px #BCBCBC;
    height: 700px;
    overflow-y: auto;
    font-size:11px;
}

.setting_btn_group{
    width:100%;
    display:flex;
    align-items: center;

}

.setting_btn_group div{
    flex:1;
}

.setting_btn_group .left{
    text-align:left;
}
.setting_btn_group .right{
    text-align:right;
}

.setting_index_back_btn input{
    background-color:#146A53 !important;
    opacity:inherit !important;
    cursor:pointer;
}

 .setting_content{
       font-size:24px;
 }
.setting_content input[type="text"],
.setting_content input[type="password"]{
    font-size:24px;
}


