@charset "UTF-8";
/********************************************************
共通css
*******************************************************/
body {
  min-height: 100%;
  background-color: #ffffff;
}

input:-moz-placeholder {
  color: #bfbfbf;
  font-style: italic;
}
input::-moz-placeholder {
  color: #bfbfbf;
  font-style: italic;
}
input:-ms-input-placeholder {
  color: #bfbfbf;
  font-style: italic;
}
input::-webkit-input-placeholder {
  color: #bfbfbf;
  font-style: italic;
}

#wrapper {
  position: relative;
  width: 100%;
  min-width: 980px;
  margin: 0 auto;
}

#wrapper-modal {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

#header {
  background-color: #408eba;
  color: #FFF;
  position: fixed;
  top: 0;
  width: 100%;
  margin: 0 auto;
  /*max-width:1280px;*/
  height: 40px;
  line-height: 40px;
  z-index: 100;
}

.logo {
  padding-top: 3px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.greeting {
  position: absolute;
  top: 3px;
  right: 20px;
  font-size: 14px;
  text-align: right;
  background-image: url(../../images/icon_user.png);
  background-repeat: no-repeat;
  background-position: left 11px;
  background-size: 14px 14px;
  padding-left: 20px;
}

#menu {
  position: absolute;
  top: 0;
  margin: 0 auto;
}

#menu::-webkit-scrollbar {
  display: none;
}

#main {
  position: relative;
  width: 100%;
  max-width: 1280px;
  padding: 40px 15px 90px 265px;
  margin: 0 auto;
}

.new_add_button {
  position: absolute;
  top: 55px;
  right: 15px;
  background-color: #f56854;
}
.new_add_button a {
  display: block;
  color: #FFFFFF;
  padding: 10px 30px;
}

.page-title {
  text-align: left;
  font-size: 24px;
  padding: 15px 0 15px;
  font-weight: bold;
  text-decoration: underline;
}
.page-title ul li {
  float: left;
  width: 50%;
}
.page-title ul li button {
  border: none;
  padding: 10px 40px;
  color: #FFFFFF;
  background-color: #000000;
  cursor: pointer;
}
.page-title ul li button.cancel {
  background-color: #999999;
}
.page-title ul li .register_button {
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
}

.up_error_message {
  padding: 1em 1em 0 1em;
  font-size: 12px;
}

#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 30px;
  line-height: 30px;
  width: 100%;
  text-align: center;
  background-color: #408eba;
  color: #FFFFFF;
  z-index: 100;
}

.copylight {
  width: 100%;
  font-size: 12px;
  text-align: center;
}
.copylight ul {
  overflow: hidden;
}
.copylight li {
  float: left;
  padding: 5px 0 5px 0;
}

.copy_left {
  width: 20%;
  background: #37414b;
}

.copy_right {
  text-align: center;
  width: 80%;
}

.bc_F1 {
  background-color: #F1F1F1;
}

.bc_111 {
  background-color: #111;
}

/********************************************************
　ログインページ
********************************************************/
#login-wrap {
  margin-top: -160px;
  margin-left: -150px;
  position: absolute;
  /* bodyに相対 */
  top: 50%;
  left: 50%;
}

#login-wrap h2 {
  text-align: left;
}

#login-wrap form {
  width: 300px;
  padding: 30px;
  padding-bottom: 20px;
  background: #FFF;
  text-align: center;
}

#login-wrap form p {
  text-align: left;
  color: #333333;
  font-weight: 600;
  font-size: 16px;
}

#login-wrap form input {
  text-align: left;
  width: 100%;
  background: #F6F6F6;
  border: 2px solid #dddddd;
  padding: 8px 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

#login-wrap form #loginBtn {
  width: 40%;
  border: 0;
  background: #408eba;
  color: #f1f1f1;
  text-align: center;
  padding: 5px;
  font-size: 14px;
  cursor: pointer;
  margin: 0 auto;
}
#login-wrap form #loginBtn :hover {
  background: #60acd2;
}
#login-wrap form #loginBtn .hover {
  color: #FFF;
}
#login-wrap form #loginBtn :active {
  background: #60acd2;
}

#error-message {
  width: 100%;
  background: #f1f1f1;
  border: 3px solid #C8C9CA;
  padding: 14px 10px;
  margin-bottom: 18px;
  font-weight: bold;
  position: relative;
  animation: inout 0.4s;
  -webkit-animation: inout 0.4s;
  /* Safari & Chrome */
}

@keyframes inout {
  0% {
    transform: scale(0, 0);
    transform: translate(0px, 40px);
    opacity: 0;
  }
  70% {
    transform: scale(1.05, 1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
  }
}
@-webkit-keyframes inout {
  /* Safari & Chrome */
  0% {
    transform: scale(0, 0);
    transform: translate(0px, 40px);
    opacity: 0;
  }
  70% {
    transform: scale(1.05, 1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
  }
}
#error-message:after {
  content: '';
  position: absolute;
  border-top: 20px solid #f1f1f1;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
  bottom: -15px;
  margin-left: -12px;
  right: 10%;
}

#error-message:before {
  content: '';
  position: absolute;
  border-top: 20px solid #C8C9CA;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
  bottom: -20px;
  margin-left: -12px;
  right: 10%;
}

/********************************************************
　ダッシュボード
********************************************************/
.dashboard-wrap {
  text-align: left;
  margin: 15px;
}

.dashboard-wrap ul {
  border: 4px #e8e8e8 solid;
  padding: 10px;
  margin-bottom: 20px;
  background: #FFF;
}

/********************************************************
メニュー
*******************************************************/
.menu-wrap {
  position: fixed;
  /* menuに相対 */
  top: 0;
  background: #f1f1f1;
  border-right: solid 3px #e9e9e9;
  z-index: 90;
  height: 100%;
  width: 250px;
  text-align: left;
  padding-top: 40px;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}
.menu-wrap ul {
  font-size: 14px;
}
.menu-wrap ul div {
  padding: 15px 20px;
  background-color: #999;
  color: #f1f1f1;
}
.menu-wrap li {
  border-bottom: solid 1px #e1e1e1;
}
.menu-wrap a {
  display: block;
  padding: 10px 20px;
  color: #000;
}
.menu-wrap a:hover {
  color: #888;
  background: #f9f9f9;
}
.menu-wrap a.hover {
  color: #BBB;
  background: #f9f9f9;
}
.menu-wrap a:active, .menu-wrap a:focus {
  color: #000;
}

.nav_bord {
  border-bottom: solid 20px #e1e1e1;
}

.nav_bord_t {
  border-top: solid 20px #e1e1e1;
}

#nav li a.active {
  background: #f9f9f9;
  position: relative;
}
#nav li a.active:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 7px;
  height: 7px;
  margin: -6px 0 0 0;
  border-top: solid 3px #408eba;
  border-right: solid 3px #408eba;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/********************************************************
検索枠
*******************************************************/
.search_wrap {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 5px;
  border: solid 1px #cccccc;
  margin-bottom: 15px;
}
.search_wrap table {
  margin: 0px auto;
}
.search_wrap th, .search_wrap td {
  padding: 5px 10px;
}
.search_wrap th {
  font-size: 0.85em;
}
.search_wrap input[type="text"] {
  border: solid 1px #CCCCCC;
  width: 100%;
  padding: 5px 10px;
}
.search_wrap button[type="button"] {
  border: none;
  background-color: #AAAAAA;
  color: #FFFFFF;
  padding: 10px 60px;
  cursor: pointer;
}
.search_wrap button[type="submit"] {
  border: none;
  background-color: #333333;
  color: #FFFFFF;
  padding: 10px 60px;
  cursor: pointer;
}
.search_wrap .submit {
  text-align: center;
  margin: auto;
}
.search_wrap .bg-black {
  background-color: #333333 !important;
}

.p_150 {
  padding-left: 150px;
  padding-right: 150px;
}

.p_100 {
  padding-left: 100px;
  padding-right: 100px;
}

.p_50 {
  padding-left: 50px;
  padding-right: 50px;
}

/********************************************************
ページング枠
*******************************************************/
.paging_wrap {
  width: 100%;
  border: solid 1px #cccccc;
  margin-bottom: 15px;
}
.paging_wrap th, .paging_wrap td {
  padding: 10px;
  border: none !important;
}
.paging_wrap input[type="text"] {
  border: solid 1px #CCCCCC;
  width: 100%;
  padding: 10px;
}
.paging_wrap input[type="submit"] {
  border: none;
  background-color: #333333;
  color: #FFFFFF;
  padding: 5px 10px;
  cursor: pointer;
}
.paging_wrap select {
  border: solid 1px #CCCCCC;
  padding: 5px 10px;
}
.paging_wrap .submit {
  text-align: center;
  margin: auto;
}

/********************************************************
一覧枠
*******************************************************/
.list_wrap {
  position: relative;
}
.list_wrap .new_add_button {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: #f56854;
}
.list_wrap .new_add_button a {
  display: block;
  color: #FFFFFF;
  padding: 10px 30px;
}
.list_wrap .company_name {
  font-size: 18px;
  padding-bottom: 20px;
  font-weight: bold;
}
.list_wrap td {
  border: solid 1px #CCCCCC;
  padding: 5px 10px;
  font-size: 14px;
}
.list_wrap td li {
  padding: 5px;
  border-bottom: solid 1px #eeeeee;
  font-size: 14px;
}
.list_wrap td li:last-child {
  border-bottom: none;
}
.list_wrap td span.c_name {
  font-weight: bold;
}
.list_wrap td span.kana {
  font-weight: bold;
  font-size: 10px;
  color: #888888;
}
.list_wrap td span.title {
  font-weight: bold;
}
.list_wrap td.title {
  color: #FFFFFF;
  font-weight: bold;
  background-color: #3c8dbc;
  text-align: center;
  font-size: 14px;
}
.list_wrap td.operation {
  text-align: center;
  padding-top: 0;
}
.list_wrap td.operation img {
  vertical-align: bottom;
}
.list_wrap td.operation button {
  border: none;
}

.con_wrap td {
  border: none;
  padding: 10px;
  font-size: 12px;
}
.con_wrap tr.border_b {
  border-bottom: solid 1px #eeeeee;
}

/********************************************************
伝票詳細
*******************************************************/
.voucher_detail_wrap .menu {
  padding: 15px;
  margin-bottom: 15px;
  text-align: center;
  border: solid 3px #3c8dbc;
  font-weight: bold;
  color: #999999;
}
.voucher_detail_wrap .menu input[type="button"] {
  border: none;
  padding: 0;
  font-weight: bold;
  cursor: pointer;
}
.voucher_detail_wrap .menu input[type="button"]:hover {
  color: #666666;
}
.voucher_detail_wrap td.client_name {
  font-size: 20px;
  font-weight: bold;
}
.voucher_detail_wrap td.status {
  text-align: right;
}
.voucher_detail_wrap td.status ul {
  width: 300px;
  border-bottom: solid 1px #CCCCCC;
  overflow: hidden;
  margin-left: auto;
  margin-bottom: 10px;
  font-size: 14px;
}
.voucher_detail_wrap td.status li {
  float: left;
  width: 100%;
  text-align: left;
  padding: 0 5px;
}
.voucher_detail_wrap td.status li.title {
  width: 30%;
  text-align: left;
}
.voucher_detail_wrap td.status li.con {
  width: 70%;
  text-align: right;
}
.voucher_detail_wrap .detail {
  margin-bottom: 20px;
  font-size: 12px;
}
.voucher_detail_wrap .detail td {
  border: solid 1px #CCCCCC;
  padding: 5px 10px;
}
.voucher_detail_wrap .detail td.title {
  color: #000000;
  background-color: #f1f1f1;
  text-align: center;
  font-size: 14px;
}
.voucher_detail_wrap .detail td.alert_p {
  color: #ffffff;
  background-color: #f56854;
  text-align: center;
  font-size: 14px;
}
.voucher_detail_wrap .detail td.alert_o {
  color: #ffffff;
  background-color: #f39c11;
  text-align: center;
}
.voucher_detail_wrap .detail td.alert_o a {
  color: #ffffff;
}
.voucher_detail_wrap .register {
  margin-bottom: 10px;
}
.voucher_detail_wrap .register td {
  border: solid 1px #CCCCCC;
  background-color: #FFFFFF;
}
.voucher_detail_wrap .register td.title {
  text-align: center;
  background-color: #f1f1f1;
  padding: 5px;
}
.voucher_detail_wrap .register td.alert_p {
  color: #ffffff;
  background-color: #f56854;
  text-align: center;
}
.voucher_detail_wrap .register td.center {
  text-align: center;
}
.voucher_detail_wrap .register td.left {
  text-align: center;
}
.voucher_detail_wrap input[type="text"] {
  border: none;
  width: 100%;
  padding: 5px;
}
.voucher_detail_wrap input[type="password"] {
  border: none;
  width: 100%;
  padding: 5px;
}
.voucher_detail_wrap input[type="file"] {
  display: none;
}
.voucher_detail_wrap label.uf {
  display: inline-block;
  border: solid 1px #CCCCCC;
  padding: 0 10px;
  font-size: 12px;
  cursor: pointer;
}
.voucher_detail_wrap #file_info {
  color: #888;
  font-size: 12px;
  font-weight: 100;
}
.voucher_detail_wrap select {
  border: none;
  background-color: #FFFFFF;
  width: 100%;
  padding: 5px;
}
.voucher_detail_wrap textarea {
  border: none;
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  padding: 5px;
  display: block;
}
.voucher_detail_wrap button {
  border: none;
  padding: 10px 40px;
  color: #FFFFFF;
  background-color: #000000;
  cursor: pointer;
}
.voucher_detail_wrap button.cancel {
  background-color: #999999;
}
.voucher_detail_wrap button.lists {
  background-color: #ffffff;
  padding: 4px 0px;
}
.voucher_detail_wrap .register_button {
  margin-top: 30px;
  text-align: center;
}

/********************************************************
取引先管理
*******************************************************/
a.button1 {
  background-color: #408eba;
  color: #FFF;
  padding: 8px;
  font-size: 13px;
}

a.button2 {
  display: inline-block;
  background-color: #A8A28A;
  color: #FFF;
  padding: 10px 40px;
  margin: 0 auto;
}

a.button3 {
  display: block;
  background-color: #408eba;
  color: #FFF;
  padding: 8px;
  text-align: center;
  font-size: 12px;
}

article.client,
article.bill,
article.operator {
  text-align: left;
  margin: 10px;
}
article.client section,
article.bill section,
article.operator section {
  position: relative;
  margin-bottom: 40px;
}
article.client section .list_order,
article.bill section .list_order,
article.operator section .list_order {
  position: absolute;
  top: 0;
  right: 0;
}
article.client section .list_order select,
article.bill section .list_order select,
article.operator section .list_order select {
  border: solid 2px #aaa;
  padding: 4px 5px;
  background-color: #FFF;
  cursor: pointer;
}
article.client section button,
article.bill section button,
article.operator section button {
  width: auto;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  font-size: 0;
  line-height: 0;
  overflow: visible;
  cursor: pointer;
}
article.client section h1,
article.bill section h1,
article.operator section h1 {
  font-size: 20px;
  margin-bottom: 1em;
}
article.client section h2,
article.bill section h2,
article.operator section h2 {
  display: inline-block;
  background-color: #408eba;
  color: #FFF;
  max-width: 100%;
  padding: 10px 20px;
}
article.client section .top .trigger,
article.bill section .top .trigger,
article.operator section .top .trigger {
  cursor: pointer;
  display: inline-block;
}
article.client section .top .search,
article.bill section .top .search,
article.operator section .top .search {
  display: none;
  /*border:solid 3px #408eba;*/
  background-color: #FFF;
  padding: 20px 10px;
}
article.client section .top .search table,
article.bill section .top .search table,
article.operator section .top .search table {
  width: 100%;
  /*          input[type="text"]{
              border:solid 1px #ccc;
              max-width: 100%;
              padding:0.5em;
            }
  */
  /*          input[type="date"]{
              min-height: 2.5em;
              border:solid 1px #ccc;
              padding:0.5em;
              width:12em;
              max-width:100%;
              vertical-align:middle;
            }
            @media only screen and (max-width:750px) {
              input[type="date"]{
                width:7em;
              }
            }
  */
}
article.client section .top .search table td .c_input,
article.bill section .top .search table td .c_input,
article.operator section .top .search table td .c_input {
  width: 80%;
  height: 30px;
  vertical-align: central;
}
article.client section .top .search table li,
article.bill section .top .search table li,
article.operator section .top .search table li {
  margin-bottom: 20px;
}
article.client section .top .search table li span,
article.bill section .top .search table li span,
article.operator section .top .search table li span {
  font-weight: 600;
}
article.client section .top .search table li:last-child,
article.bill section .top .search table li:last-child,
article.operator section .top .search table li:last-child {
  margin-bottom: 0;
}
article.client section .top .search table .client_input,
article.bill section .top .search table .client_input,
article.operator section .top .search table .client_input {
  border: solid 1px #ccc;
  width: 70%;
  padding: 0.5em;
}
article.client section .top .search table .date_input,
article.bill section .top .search table .date_input,
article.operator section .top .search table .date_input {
  min-height: 2.5em;
  border: solid 1px #ccc;
  padding: 0.5em;
  width: 7em;
}
article.client section .top .search table select,
article.bill section .top .search table select,
article.operator section .top .search table select {
  border: solid 1px #ccc;
  padding: 0.5em;
  max-width: 100%;
  background-color: #FFF;
  cursor: pointer;
}
article.client section .top .search table input[type="radio"],
article.bill section .top .search table input[type="radio"],
article.operator section .top .search table input[type="radio"] {
  display: none;
}
article.client section .top .search table input[type="radio"] + label,
article.bill section .top .search table input[type="radio"] + label,
article.operator section .top .search table input[type="radio"] + label {
  position: relative;
  padding-left: 16px;
}
article.client section .top .search table input[type="radio"] + label span,
article.bill section .top .search table input[type="radio"] + label span,
article.operator section .top .search table input[type="radio"] + label span {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-block;
  width: 14px;
  height: 14px;
  cursor: pointer;
  border-radius: 7px;
  background-color: #f1f1f1;
  border: solid 2px #408eba;
}
article.client section .top .search table input[type="radio"]:checked + label span,
article.bill section .top .search table input[type="radio"]:checked + label span,
article.operator section .top .search table input[type="radio"]:checked + label span {
  background-color: #f1f1f1;
  border: solid 5px #408eba;
}
article.client section .c_button,
article.bill section .c_button,
article.operator section .c_button {
  text-align: center;
  margin-top: 20px;
  font-size: 0;
}
article.client section .c_button ul,
article.bill section .c_button ul,
article.operator section .c_button ul {
  overflow: hidden;
  display: inline-block;
  margin: 0 auto;
}
article.client section .c_button li,
article.bill section .c_button li,
article.operator section .c_button li {
  float: left;
  margin-right: 20px;
  font-size: 14px;
}
article.client section .c_button li:last-child,
article.bill section .c_button li:last-child,
article.operator section .c_button li:last-child {
  margin-right: 0;
}
article.client section .c_button a,
article.bill section .c_button a,
article.operator section .c_button a {
  display: inline-block;
  background-color: #408eba;
  color: #FFF;
  padding: 6px 20px 10px 20px;
}
article.client section .c_button input[type="submit"],
article.bill section .c_button input[type="submit"],
article.operator section .c_button input[type="submit"] {
  border: none;
  background-color: #408eba;
  color: #FFF;
  padding: 10px 20px;
  cursor: pointer;
}
article.client section .c_button .reset_button a,
article.bill section .c_button .reset_button a,
article.operator section .c_button .reset_button a {
  display: inline-block;
  background-color: #aaa;
  color: #FFF;
  padding: 10px 20px;
}
article.client section .regist,
article.bill section .regist,
article.operator section .regist {
  border: solid 3px #408eba;
  background-color: #FFF;
  padding: 10px;
}
article.client section .regist .message_box,
article.bill section .regist .message_box,
article.operator section .regist .message_box {
  background-color: #eee;
  padding: 10px;
}
article.client section .regist .message_box p,
article.bill section .regist .message_box p,
article.operator section .regist .message_box p {
  margin-bottom: 0.5em;
}
article.client section .regist .message_box p:last-of-type,
article.bill section .regist .message_box p:last-of-type,
article.operator section .regist .message_box p:last-of-type {
  margin-bottom: 0;
}
article.client section .regist li,
article.bill section .regist li,
article.operator section .regist li {
  margin-top: 30px;
}
article.client section .regist li span, article.client section .regist li p,
article.bill section .regist li span,
article.bill section .regist li p,
article.operator section .regist li span,
article.operator section .regist li p {
  font-weight: 600;
}
article.client section .regist li:last-child,
article.bill section .regist li:last-child,
article.operator section .regist li:last-child {
  margin-bottom: 0;
}
article.client section .regist input[type="email"],
article.client section .regist input[type="url"],
article.bill section .regist input[type="email"],
article.bill section .regist input[type="url"],
article.operator section .regist input[type="email"],
article.operator section .regist input[type="url"] {
  border: solid 1px #ccc;
  padding: 0.5em;
  width: 40em;
  max-width: 100%;
}
article.client section .regist .regist_input_text,
article.bill section .regist .regist_input_text,
article.operator section .regist .regist_input_text {
  border: solid 1px #ccc;
  padding: 3px 5px;
  width: 20em;
  max-width: 100%;
}
article.client section .regist .regist_input_date,
article.bill section .regist .regist_input_date,
article.operator section .regist .regist_input_date {
  border: solid 1px #ccc;
  padding: 3px 5px;
  width: 7em;
}
article.client section .regist .regist_client_input,
article.bill section .regist .regist_client_input,
article.operator section .regist .regist_client_input {
  border: solid 1px #ccc;
  width: 70%;
  padding: 3px 5px;
}
article.client section .regist input[type="tel"],
article.client section .regist input[type="number"],
article.client section .regist input[type="date"],
article.client section .regist input[type="password"],
article.bill section .regist input[type="tel"],
article.bill section .regist input[type="number"],
article.bill section .regist input[type="date"],
article.bill section .regist input[type="password"],
article.operator section .regist input[type="tel"],
article.operator section .regist input[type="number"],
article.operator section .regist input[type="date"],
article.operator section .regist input[type="password"] {
  border: solid 1px #ccc;
  padding: 3px 5px;
  width: 15em;
  max-width: 100%;
}
article.client section .regist input[type="file"],
article.bill section .regist input[type="file"],
article.operator section .regist input[type="file"] {
  display: none;
}
article.client section .regist label.uf,
article.bill section .regist label.uf,
article.operator section .regist label.uf {
  display: inline-block;
  background-color: #666;
  color: #FFF;
  padding: 10px;
  cursor: pointer;
}
article.client section .regist .file_info,
article.bill section .regist .file_info,
article.operator section .regist .file_info {
  color: #888;
  font-size: 12px;
  font-weight: 100;
}
article.client section .regist select,
article.bill section .regist select,
article.operator section .regist select {
  border: solid 1px #ccc;
  padding: 3px 5px;
  max-width: 100%;
  background-color: #FFF;
  cursor: pointer;
}
article.client section .regist input[type="radio"],
article.bill section .regist input[type="radio"],
article.operator section .regist input[type="radio"] {
  display: none;
}
article.client section .regist input[type="radio"] + label,
article.bill section .regist input[type="radio"] + label,
article.operator section .regist input[type="radio"] + label {
  position: relative;
  padding-left: 16px;
}
article.client section .regist input[type="radio"] + label span,
article.bill section .regist input[type="radio"] + label span,
article.operator section .regist input[type="radio"] + label span {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-block;
  width: 14px;
  height: 14px;
  cursor: pointer;
  border-radius: 7px;
  background-color: #f1f1f1;
  border: solid 2px #408eba;
}
article.client section .regist input[type="radio"]:checked + label span,
article.bill section .regist input[type="radio"]:checked + label span,
article.operator section .regist input[type="radio"]:checked + label span {
  background-color: #f1f1f1;
  border: solid 5px #408eba;
}
article.client section .regist input[type="checkbox"] + label,
article.bill section .regist input[type="checkbox"] + label,
article.operator section .regist input[type="checkbox"] + label {
  position: relative;
  padding-left: 16px;
  cursor: pointer;
}
article.client section .regist input[type="checkbox"] + label span,
article.bill section .regist input[type="checkbox"] + label span,
article.operator section .regist input[type="checkbox"] + label span {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-block;
  width: 14px;
  height: 14px;
  cursor: pointer;
  border-radius: 7px;
  background-color: #f1f1f1;
  border: solid 2px #408eba;
}
article.client section .regist input[type="checkbox"]:checked + label span,
article.bill section .regist input[type="checkbox"]:checked + label span,
article.operator section .regist input[type="checkbox"]:checked + label span {
  background-color: #f1f1f1;
  border: solid 5px #408eba;
}
article.client section .regist textarea,
article.bill section .regist textarea,
article.operator section .regist textarea {
  border: solid 1px #ccc;
  padding: 0.5em;
  width: 100%;
}
article.client section .regist .submit_button,
article.bill section .regist .submit_button,
article.operator section .regist .submit_button {
  text-align: center;
}
article.client section .regist input[type="button"],
article.client section .regist input[type="submit"],
article.bill section .regist input[type="button"],
article.bill section .regist input[type="submit"],
article.operator section .regist input[type="button"],
article.operator section .regist input[type="submit"] {
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  background-color: #408eba;
  color: #FFF;
  margin-bottom: 30px;
}
article.client section .regist #sortable,
article.bill section .regist #sortable,
article.operator section .regist #sortable {
  margin: 0 0 20px 0;
  padding: 0;
}
article.client section .regist #sortable li,
article.bill section .regist #sortable li,
article.operator section .regist #sortable li {
  margin-top: 0;
  padding: 10px 0;
  background-color: #FFFFFF;
}
article.client section .regist table.item_list,
article.bill section .regist table.item_list,
article.operator section .regist table.item_list {
  width: 100%;
  border-left: solid 1px #FFFFFF;
  /*margin-bottom:20px;*/
}
article.client section .regist table.item_list li,
article.bill section .regist table.item_list li,
article.operator section .regist table.item_list li {
  margin-top: 0;
}
article.client section .regist table.item_list td,
article.bill section .regist table.item_list td,
article.operator section .regist table.item_list td {
  border-bottom: solid 1px #FFFFFF;
  border-right: solid 1px #FFFFFF;
  padding: 0 5px;
  vertical-align: middle;
}
article.client section .regist table.item_list td input[type="text"],
article.client section .regist table.item_list td input[type="number"],
article.bill section .regist table.item_list td input[type="text"],
article.bill section .regist table.item_list td input[type="number"],
article.operator section .regist table.item_list td input[type="text"],
article.operator section .regist table.item_list td input[type="number"] {
  border: none;
  border-bottom: solid 1px #cccccc;
  padding: 10px 5px;
  width: 100%;
}
article.client section .regist table.item_list td button,
article.bill section .regist table.item_list td button,
article.operator section .regist table.item_list td button {
  border: none;
  width: 100%;
  cursor: pointer;
  margin: 0;
  padding: 0;
}
article.client section .regist table.item_list td button img,
article.bill section .regist table.item_list td button img,
article.operator section .regist table.item_list td button img {
  height: 20px;
  width: auto;
  vertical-align: bottom;
  cursor: pointer;
}
article.client section .regist table.item_list .title,
article.bill section .regist table.item_list .title,
article.operator section .regist table.item_list .title {
  padding: 5px;
  text-align: center;
  background-color: #408eba;
  color: #f1f1f1;
}
article.client section .regist table.item_list .t_del,
article.bill section .regist table.item_list .t_del,
article.operator section .regist table.item_list .t_del {
  text-align: center;
}
article.client section .regist table.item_list .t_del img,
article.bill section .regist table.item_list .t_del img,
article.operator section .regist table.item_list .t_del img {
  height: 20px;
  width: auto;
  vertical-align: bottom;
  cursor: pointer;
}
article.client section .regist table.total,
article.bill section .regist table.total,
article.operator section .regist table.total {
  width: 100%;
  margin-bottom: 20px;
}
article.client section .regist table.total td,
article.bill section .regist table.total td,
article.operator section .regist table.total td {
  padding: 10px 5px 0 5px;
  vertical-align: middle;
  text-align: right;
}
article.client section .regist table.total td input[type="text"],
article.bill section .regist table.total td input[type="text"],
article.operator section .regist table.total td input[type="text"] {
  border: solid 1px #cccccc;
  padding: 3px 5px;
  width: 100%;
}
article.client section .regist table.total td input[type="number"],
article.bill section .regist table.total td input[type="number"],
article.operator section .regist table.total td input[type="number"] {
  border: solid 1px #cccccc;
  padding: 3px 5px;
  width: 60px;
}
article.client section .regist table.total .title,
article.bill section .regist table.total .title,
article.operator section .regist table.total .title {
  padding: 5px;
  text-align: center;
  background-color: #408eba;
  color: #f1f1f1;
}
article.client section .regist table.total .t_del,
article.bill section .regist table.total .t_del,
article.operator section .regist table.total .t_del {
  text-align: center;
}
article.client .navi,
article.bill .navi,
article.operator .navi {
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
}
article.client .list,
article.bill .list,
article.operator .list {
  border: solid 3px #408eba;
  background-color: #FFF;
  padding: 10px;
}
article.client .list table,
article.bill .list table,
article.operator .list table {
  width: 100%;
}
article.client .list table th, article.client .list table td,
article.bill .list table th,
article.bill .list table td,
article.operator .list table th,
article.operator .list table td {
  border: solid 1px #999;
  padding: 10px;
}
article.client .list table td.c_number,
article.bill .list table td.c_number,
article.operator .list table td.c_number {
  width: 5%;
}
article.client .list table td.c_info,
article.bill .list table td.c_info,
article.operator .list table td.c_info {
  width: 75%;
}
article.client .list table td.c_edit,
article.bill .list table td.c_edit,
article.operator .list table td.c_edit {
  width: 20%;
}
article.client .list .list_title,
article.bill .list .list_title,
article.operator .list .list_title {
  font-weight: 600;
}
article.client .list ul,
article.bill .list ul,
article.operator .list ul {
  overflow: hidden;
  width: 100%;
}
article.client .list ul li,
article.bill .list ul li,
article.operator .list ul li {
  padding: 5px 3px;
  border-bottom: solid 1px #ddd;
}
article.client .list ul li:last-child,
article.bill .list ul li:last-child,
article.operator .list ul li:last-child {
  border-bottom: none;
}
article.client .list ul .corp_title,
article.bill .list ul .corp_title,
article.operator .list ul .corp_title {
  font-weight: 600;
}
article.client .list ul .corp_title p,
article.bill .list ul .corp_title p,
article.operator .list ul .corp_title p {
  font-weight: normal;
  font-size: 10px;
  color: #888;
}
article.client .list .bgc_eee,
article.bill .list .bgc_eee,
article.operator .list .bgc_eee {
  background-color: #ddd;
}

@media only screen and (min-width: 1280px) {
  #menu {
    left: 0 !important;
  }
}
@media only screen and (max-width: 1279px) {
  #menu {
    left: -250px;
  }

  #main {
    padding-left: 15px;
  }

  .copylight {
    padding-left: 0;
  }

  #button {
    width: 24px;
    height: 16px;
    display: block;
    position: fixed;
    cursor: pointer;
    top: 10px;
    left: 20px;
    z-index: 9999;
  }

  #button span {
    width: 100%;
    height: 4px;
    display: block;
    background: #FFF;
    position: absolute;
    -webkit-transition: all .2s;
    transition: all .2s;
    border-radius: 4px;
    position: absolute;
    /* buttonに相対 */
  }

  #button .top {
    top: 0;
  }

  #button .middle {
    top: 50%;
  }

  #button .bottom {
    top: 100%;
  }

  .open .top {
    -webkit-transform: translateY(8px) rotate(-135deg) scale(1);
    transform: translateY(8px) rotate(-135deg) scale(1);
    background: #FFF;
  }

  .open .middle {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  .open .bottom {
    -webkit-transform: translateY(-8px) rotate(135deg) scale(1);
    transform: translateY(-8px) rotate(135deg) scale(1);
    background: #FFF;
  }
}
/********************************************************
　ページ送り
********************************************************/
.pageing-sell {
  text-align: center;
  margin: 30px auto 30px auto;
  padding: 0;
}

.pageing-sell li {
  display: inline-block;
  position: relative;
}

.pageing-sell li.pre {
  background: #2e3840;
  font-size: 14px;
  margin-right: 20px;
  color: #FFF;
}

.pageing-sell li.pre:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 8px;
  height: 8px;
  margin: -5px 0 0 0;
  border-bottom: solid 2.5px #fff;
  border-left: solid 2.5px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.pageing-sell li.pre a {
  display: block;
  background: #2e3840;
  color: #FFF;
  padding: 5px 15px 5px 35px;
}

.pageing-sell li.pre a.hover {
  color: #FFF;
}

.pageing-sell li.pre a:active {
  background: #B4B4B5;
}

.pageing-sell li.pre-non {
  background: #B4B4B5;
  font-size: 14px;
  margin-right: 20px;
  color: #FFF;
  padding: 5px 15px 5px 35px;
}

.pageing-sell li.pre-non:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 8px;
  height: 8px;
  margin: -5px 0 0 0;
  border-bottom: solid 2.5px #fff;
  border-left: solid 2.5px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.pageing-sell li.next {
  background: #2e3840;
  font-size: 14px;
  color: #FFF;
}

.pageing-sell li.next:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  margin: -5px 0 0 0;
  border-top: solid 2.5px #fff;
  border-right: solid 2.5px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.pageing-sell li.next a {
  display: block;
  background: #2e3840;
  color: #FFF;
  padding: 5px 35px 5px 15px;
}

.pageing-sell li.next a.hover {
  color: #FFF;
}

.pageing-sell li.next a:active {
  background: #B4B4B5;
}

.pageing-sell li.next-non {
  background: #B4B4B5;
  font-size: 14px;
  color: #FFF;
  padding: 5px 35px 5px 15px;
}

.pageing-sell li.next-non:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  margin: -5px 0 0 0;
  border-top: solid 2.5px #fff;
  border-right: solid 2.5px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media only screen and (max-width: 750px) {
  .sel_w100pa {
    width: 100%;
  }
}
