@charset "UTF-8";
/* Scss Document */

/********************
common
********************/

html {
  font-size: 10px;
  width: 100%;
  min-width: 1280px;
  height: 100%;
  word-break: break-all;
  word-wrap: break-word;
}

body {
  margin: 0;
  font-family: "Noto Sans Japanese", sans-serif;
  font-size: 10px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

body a {
  text-decoration: none;
  color: #000;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

body a:hover {
  opacity: 0.7;
}

body ul {
  padding: 0;
}

/*パンくず*/

.bread-crumb {
  font-size: 1.2rem;
  text-align: left;
}

.bread-crumb li {
  display: inline-block;
}

/*共通ボタンスタイル*/

.btn {
  border-radius: 5px;
  color: #fff;
  font-size: 1.6rem;
  padding: 2px 12px;
  cursor: pointer;
  /*ボタン個別スタイル*/
}

.btn a {
  color: #fff;
}

.btn input {
  border: none;
}

.btn.normal {
  background: #3a4e5a;
  border-bottom: 3px solid #2a3b44;
}

.btn.normal.posting {
  background: #3a4e5a;
}

.btn.normal.posting span {
  padding-left: 20px;
}

.btn.normal.posting-order span {
  background: url("../images/icon05_02.png") no-repeat left center/12px;
}

.btn.normal.posting-quotation span {
  background: url("../images/icon04_02.png") no-repeat left center/12px;
}

.btn.normal.posting-invoice span {
  background: url("../images/icon06_02.png") no-repeat left center/12px;
}

.btn.sub {
  background: #2895d8;
  border-bottom: 3px solid #2683bc;
}

.btn.sub.arrow {
  background: #2895d8 url("../images/arrow01.png") no-repeat right 10px center;
  border-bottom: 1px solid #2683bc;
}

.btn.sub.pdf span {
  background: url("../images/icon_pdf.png") no-repeat left center;
  background-size: 14px;
  /*border-bottom: 1px solid #04A3AF;*/
  padding-left: 24px;
}

.btn.sub.edit span {
  background: url("../images/icon_edit.png") no-repeat left center;
  background-size: 16px;
  /*border-bottom: 1px solid #04A3AF;*/
  padding-left: 24px;
}

.btn.delete {
  background: #777777;
  border-bottom: 3px solid #888888;
  width: 60px;
  height: 28px;
}

.btn.delete span {
  background: url("../images/delete.png") no-repeat left center;
  padding-left: 18px;
  background-size: 12px;
}

/*input*/

input {
  border: 1px solid #999999;
  -webkit-box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1) inset;
}

/********************
header
********************/

header {
  padding: 10px;
  background: #f1fcff;
  border-bottom: 1px solid #ccc;
  -webkit-box-shadow: 0 1px 13px #ccc;
  box-shadow: 0 1px 13px #ccc;
  position: relative;
}

header .head-contents {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

header .head-contents h1 {
  margin: 0;
  color: #252f33;
  font-size: 2.6rem;
  float: left;
}

header .head-contents .head-right-contents {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

header .head-contents .head-right-contents p {
  font-size: 1.6rem;
}

header .head-contents .head-right-contents p span {
  margin-right: 20px;
}

header .head-contents .head-right-contents a.logout-btn {
  width: 140px;
  height: 33px;
  text-align: center;
  border-bottom: 3px solid #d92231;
  color: #fff;
  border-radius: 5px;
  margin-left: 40px;
  font-size: 1.4rem;
  background: #e62535 url(../images/header-icon.png) no-repeat left 20px center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 5px 0 5px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/********************
nav
********************/

.side-nav {
  width: 220px;
  background: #f9f9f9;
  z-index: 100;
  transition: 0.3s ease-in-out;
  overflow: visible;
}

.side-nav.single-nav {
  overflow: visible;
}

.side-nav .nav-container {
  position: sticky;
  top: 0;
}

.side-nav .navToggle:not(.active)+.nav {
  min-width: 220px;
}

.side-nav ul.nav-ttl {
  margin-top: 48px;
  -webkit-margin-after: 0em;
  margin-block-end: 0em;
}

.side-nav ul.nav-ttl li:not(:first-of-type) {
  margin: 37px 0 0;
}

.side-nav ul.nav-ttl li .sub_tit {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #3a4e5a;
  display: block;
  margin-bottom: 14px;
}

.side-nav ul.nav-ttl li ul.nav-list li {
  margin: 0;
  position: relative;
}

.side-nav .active+.nav ul.nav-ttl li ul.nav-list li {
  padding-top: 10px;
}

.side-nav .active+.nav ul.nav-ttl li ul.nav-list li:last-child {
  padding-bottom: 10px;
}

.side-nav ul.nav-ttl li ul.nav-list li>a {
  display: block;
  padding: 8px 15px 8px 41px;
  background-color: #e1eff9;
  margin-bottom: 2px;
  font-size: 1.4rem;
  transition: none;
  /* color: #fff; */
}

.side-nav ul.nav-ttl li ul.nav-list li>a span {
  font-size: 1.4rem;
  color: #fff;
  text-align: left;
  font-weight: normal;
}

.side-nav ul.nav-ttl li ul.nav-list li>a span::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.side-nav ul.nav-ttl li ul.nav-list li>a span::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* .side-nav ul.nav-ttl li ul.nav-list li > a::before {
  content: "";
  width: 35px;
  height: 1px;
  background: #fff;
  position: absolute;
  right: 22px;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0.3;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
} */

.side-nav ul.nav-ttl li.customers_and_suppliers ul.nav-list li.customers>a {
  background-image: url("../images/icn_customer.png");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 17px;
  border-left: 5px solid #f99338;
}

.side-nav ul.nav-ttl li.customers_and_suppliers ul.nav-list li.suppliers>a {
  background-image: url("../images/icn_suppliers.png");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 17px;
  border-left: 5px solid #f99338;
}

.side-nav ul.nav-ttl li.items_management ul.nav-list li.items>a {
  background-image: url("../images/icn_items.png");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 17px;
  border-left: 5px solid #e36457;
}

.side-nav ul.nav-ttl li.form_management ul.nav-list li.quotes>a {
  background-image: url("../images/icn_quotes.png");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 17px;
  border-left: 5px solid #63ad51;
}

.side-nav ul.nav-ttl li.form_management ul.nav-list li.bills>a {
  background-image: url("../images/icn_bills.png");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 17px;
  border-left: 5px solid #63ad51;
}

.side-nav ul.nav-ttl li.form_management ul.nav-list li:nth-child(3)>a {
  background-image: url("../images/icn_orders.png");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 17px;
  border-left: 5px solid #63ad51;
}

.side-nav ul.nav-ttl li.orders_management ul.nav-list li.orders>a {
  background-image: url("../images/icn_orders.png");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 17px;
  border-left: 5px solid #2895d8;
}

.side-nav ul.nav-ttl li.orders_management ul.nav-list li.payment>a {
  background-image: url("../images/icn_payments.png");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 17px;
  border-left: 5px solid #2895d8;
}

.side-nav ul.nav-ttl li.administrators ul.nav-list li>a {
  background-image: url("../images/icn_charges.png");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 17px;
}

.side-nav ul.nav-ttl li.administrators ul.nav-list li>a {
  border-left: 5px solid #7b7bc9;
}

.side-nav .active+.nav ul.nav-ttl li ul.nav-list li>a {
  border-left: none;
}

/* .side-nav ul.nav-ttl li:nth-child(5) ul.nav-list li:first-child a::before {
  display: none;
}

.side-nav ul.nav-ttl li:nth-child(5) ul.nav-list li:first-child span::before {
  content: none;
}

.side-nav ul.nav-ttl li:nth-child(5) ul.nav-list li:first-child .plus a::after {
  content: none;
} */

.side-nav ul.nav-list-open li {
  padding: 10px;
  border-bottom: 1px solid #e8e8e8;
  width: 25px;
}

.side-nav ul.nav-list-open li img {
  max-width: 100%;
}

.navToggle {
  display: block;
  position: relative;
  right: 0;
  width: 50px;
  height: 48px;
  cursor: pointer;
  z-index: 3;
  text-align: center;
  margin-left: auto;
}

.navToggle span {
  display: block;
  position: absolute;
  /* .navToggleに対して */
  width: 30px;
  border-bottom: solid 3px #3a4e5a;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  left: 0;
  right: 0;
  margin: auto;
}

.navToggle span:nth-child(1) {
  width: 20px;
  top: 16px;
  left: -14px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navToggle span:nth-child(2) {
  top: 23px;
}

.navToggle span:nth-child(3) {
  width: 20px;
  top: 30px;
  left: -14px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navToggle.active span:nth-child(1) {
  width: 30px;
  left: 0;
  top: 12px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.navToggle.active span:nth-child(2) {
  top: 21px;
}

.navToggle.active .navToggle.active span:nth-child(3), .navToggle.active span:nth-child(3) {
  width: 30px;
  top: 30px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

/********************
main
********************/

.main-contents {
  width: 100%;
  /* overflow-y: hidden; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.right-contents {
  position: relative;
  width: calc(100% - 220px);
  padding: 20px 0 100px;
  /*margin-left: 220px;*/
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.right-contents.right-contents-smart {
  width: calc(100% - 220px);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.right-contents .right-contents-inner {
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}

.right-contents .contents {
  border-bottom: 3px solid #e5e5e5;
  background-color: #2f3947;
  position: relative;
  padding: 5px 15px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.right-contents .contents h2 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0;
  text-align: left;
}

.right-contents .contents a {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #2895d8 url(../images/arrow01.png) no-repeat right 10px center;
  border-bottom: 1px solid #04a3af;
  color: #fff;
  width: 150px;
  height: 100%;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 4px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border-radius: 5px; */
}

.right-contents .project-list {
  width: 100%;
  margin: 0 auto;
}

.right-contents .projects-table {
  width: 100%;
  font-size: 1.5rem;
  border: 1px solid #dddddd;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  border-spacing: 0;
  border-collapse: separate;
  /* margin-top: 10px; */
}

.right-contents .projects-table thead tr th {
  border-bottom: 2px solid #2895d8;
}

.right-contents .projects-table thead tr th:first-child {
  border-radius: 10px 0 0 0;
}

.right-contents .projects-table thead tr th:last-child {
  border-radius: 0 10px 0 0;
}

.right-contents .projects-table tr:hover {
  background: rgba(255, 230, 123, 0.6);
}

.right-contents .projects-table tr:nth-of-type(2n) {
  background: rgba(255, 230, 123, 0.1);
}

.right-contents .projects-table tr th {
  text-align: left;
  font-weight: normal;
  background: #e1eff9;
  border-bottom: 1px solid #ddd;
  padding: 15px;
}

.right-contents .projects-table tr td {
  padding: 15px;
  border-bottom: 1px solid #dddddd;
  color: #555555;
}

.right-contents .projects-table tr .price {
  text-align: right;
  padding: 15px;
}

.right-contents .graph img {
  max-width: 100%;
}

/********************
footer
********************/

footer {
  background-color: rgba(153, 188, 201, 0.4);
  text-align: center;
  padding: 20px 0 0;
  width: 100%;
}

footer p {
  margin: 20px 0 0;
  padding: 10px 0;
  background: #193644;
  color: #fff;
}

/********************
ナビゲーション
********************/

.side-nav.single-nav {
  width: 50px;
}

.side-nav.single-nav .nav {
  width: 50px;
  position: relative;
}

.side-nav.single-nav .nav .nav-ttl {
  background: #f9f9f9;
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
  margin-top: 0;
}

.side-nav.single-nav .nav .nav-ttl>li {
  display: block;
  margin: 0;
  position: relative;
}

/* .side-nav.single-nav .nav .nav-ttl .nav-list {
  padding: 5px 0;
} */

.side-nav.single-nav .nav .nav-ttl>li li a {
  border-radius: 100%;
  width: 34px;
  height: 34px;
  margin: auto;
  padding: 0;
}

.side-nav.single-nav .nav .nav-ttl>li.customers_and_suppliers li.customers a {
  background: #f99338 url(../images/icn_customer.png) 50% 50% no-repeat;
}

.side-nav.single-nav .nav .nav-ttl>li.customers_and_suppliers li.suppliers a {
  background: #f99338 url("../images/icn_suppliers.png") 50% 50% no-repeat;
}

.side-nav.single-nav .nav .nav-ttl>li.customers_and_suppliers::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 80%;
  border-bottom: 1px solid #e8e8e8;
}

.side-nav.single-nav .nav .nav-ttl>li.items_management li.items a {
  background: #e36457 url("../images/icn_items.png") 50% 50% no-repeat;
}

.side-nav.single-nav .nav .nav-ttl>li.items_management::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 80%;
  border-bottom: 1px solid #e8e8e8;
}

.side-nav.single-nav .nav .nav-ttl>li.form_management li.quotes a {
  background: #63ad51 url("../images/icn_quotes.png") 50% 50% no-repeat;
}

.side-nav.single-nav .nav .nav-ttl>li.form_management li.bills a {
  background: #63ad51 url("../images/icn_bills.png") 50% 50% no-repeat;
}

.side-nav.single-nav .nav .nav-ttl>li.form_management li.orders a {
  background: #63ad51 url("../images/icn_orders.png") 50% 50% no-repeat;
}

.side-nav.single-nav .nav .nav-ttl>li.form_management::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 80%;
  border-bottom: 1px solid #e8e8e8;
}

.side-nav.single-nav .nav .nav-ttl>li.orders_management li:first-of-type a {
  background: #2895d8 url("../images/icn_orders.png") 50% 50% no-repeat;
}

.side-nav.single-nav .nav .nav-ttl>li.orders_management li:last-of-type a {
  background: #2895d8 url("../images/icn_payments.png") 50% 50% no-repeat;
}

.side-nav.single-nav .nav .nav-ttl>li.orders_management::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 80%;
  border-bottom: 1px solid #e8e8e8;
}

.side-nav.single-nav .nav .nav-ttl>li.administrators li a {
  background: #7b7bc9 url("../images/icn_charges.png") 50% 50% no-repeat;
}

.side-nav.single-nav .nav .nav-ttl>li span {
  display: none;
}

.side-nav.single-nav .nav .nav-ttl>li .nav-list li a {
  /* background-color: transparent !important;
  background-position: 16px center !important; */
  /* margin: 0;
  padding: 23px 0; */
  text-indent: -9999em;
  line-height: 1;
}

/* .side-nav.single-nav .nav .nav-ttl > li .nav-list li a::before {
  content: none;
} */

.side-nav.single-nav+.right-contents {
  width: calc(100% - 50px);
  /* margin-left: 50px; */
}

.single-nav .navToggle {
  background: #777777;
}

.single-nav .navToggle span {
  border-bottom: solid 3px #fff;
}

.single-nav .nav:hover .text {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.single-nav .nav-list li {
  list-style-type: none;
}

.single-nav .nav-list a {
  text-shadow: 0 1px 0 black;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

/* .single-nav .nav-list a:hover {
  color: white;
  -webkit-transform: translateX(10px) scale(1.2);
  transform: translateX(10px) scale(1.2);
} */

.text {
  position: absolute;
  left: 50px;
  top: 0;
  z-index: 980;
  /*height:100%;*/
  background: #f9f9f9;
  -webkit-transition: -webkit-transform 0.24s linear;
  transition: -webkit-transform 0.24s linear;
  transition: transform 0.24s linear;
  transition: transform 0.24s linear, -webkit-transform 0.24s linear;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transform: perspective(1000px) rotateY(90deg);
  transform: perspective(1000px) rotateY(90deg);
}

/* IE10〜11 */

_:-ms-input-placeholder, :root .text {
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg);
}

/* Edge */

@supports (-ms-ime-align: auto) {
  .text {
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
  }
}

.text ul {
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
  margin: 0;
}

.text li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 49px;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
}

.text li:nth-child(3) {
  padding: 10px 0;
  height: auto;
}

.text li:nth-child(4), .text li:nth-child(5) {
  height: 49px;
}

.text li:nth-child(n+6) {
  height: 45px;
}

.text li:nth-of-type(2)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  border-bottom: 1px solid #e8e8e8;
}

.text li:nth-of-type(3)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  border-bottom: 1px solid #e8e8e8;
}

.text li:nth-of-type(5)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  border-bottom: 1px solid #e8e8e8;
}

/* .text li:nth-of-type(8)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  border-bottom: 1px solid #e8e8e8;
} */

.text li>a {
  display: block;
  width: 200px;
  /* height: 60px; */
  line-height: 34px;
  text-indent: 1em;
  font-size: 1.4em;
  text-decoration: none;
  color: #3a4e5a;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
}

.text li>a:hover {
  -webkit-transform: translateX(-14px);
  transform: translateX(-14px);
}

.text li .plus a::before {
  background: #01adc3;
}

.text li .plus a::after {
  background: #01adc3;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .single-nav .nav:hover .text {
    transform: none;
  }
}

.plus {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  z-index: 10;
}

.plus:hover::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 6px 4px 0;
  border-color: transparent #78bfe4 transparent transparent;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transform: translateX(100%);
}

.plus:hover::after {
  content: "新規作成";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  width: 50px;
  height: 25px;
  padding: 2px 4px;
  box-sizing: border-box;
  background: #78bfe4;
  color: #fff;
  border-radius: 4px;
  letter-spacing: 0.05em;
  transform: translateX(110%);
}

.plus a {
  display: block;
  height: 100%;
  position: relative;
  text-indent: -9999em;
  background-color: rgba(40, 149, 216, 0.3);
  border-radius: 100%;
}

.plus a::after {
  content: "" !important;
  width: 14px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 4px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.plus a::before {
  content: "" !important;
  width: 14px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 4px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

/*ポップアップ*/

div#popup {
  z-index: 999;
  top: 50% !important;
  left: 50% !important;
  position: fixed !important;
  transform: translate(-50%, -50%);
  height: 90vh;
  width: auto !important;
}

.popup_contents_area {
  height: calc(90vh - 90px);
  overflow: auto;
}

.popup_contents_area table td {
  font-size: 14px !important;
}

#popup-bg {
  position: fixed !important;
  z-index: 101;
}

/*セレクトボタン*/

.selectWrap {
  position: relative;
  display: inline-block;
  border: 1px solid #999999;
  -webkit-box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1) inset;
}

.selectWrap::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #3a4e5a;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -3px;
  z-index: 1;
}

.select select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 30px;
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  padding: 0 40px 0 10px;
  border: 1px solid #b4b3b3;
  border-radius: 2px;
}

/*チェックボタン*/

.checkbox01-input {
  display: none;
}

.checkbox01-parts {
  padding-left: 20px;
  position: relative;
  margin-right: 20px;
}

.checkbox01-parts::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #999;
  border-radius: 4px;
}

.checkbox01-input:checked+.checkbox01-parts::after {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 5px;
  width: 7px;
  height: 14px;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
  border-bottom: 3px solid #009eaa;
  border-right: 3px solid #009eaa;
}

.checkbox01-parts-checked {
  margin-right: 20px;
  content: "";
}

/*検索フォーム*/

.search-info-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.search-info-list .item {
  /* display: inline-block; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.6rem;
  margin-right: 15px;
  /* -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto; */
  padding: 10px 0;
}

.search-info-list .item input {
  max-width: 160px;
  width: 100%;
  margin-left: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.search-info-list .item select {
  border: 1px solid #999999;
  padding: 5px;
  margin-left: 10px;
  font-size: 14px;
}

.status {
  text-align: center;
}

.status .item-name {
  display: inline-block;
  flex: 2;
}

.right-contents .project-list-search {
  background: #f9f9f9;
}

.right-contents .project-list-search .item {
  display: flex;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
}

.right-contents .project-list-search .item input[type="text"] {
  min-width: 160px;
}

.right-contents .project-list-search .item input.btn.normal {
  margin-top: 0;
}

.right-contents .project-list-search .item:nth-of-type(2) input[type="text"] {
  min-width: 240px;
}

.right-contents .new-table.wide_max table.projects-table {
  display: block;
  white-space: nowrap;
  overflow: auto;
}

.right-contents .new-table.wide_max table.projects-table th {
  padding: 12px 30px;
}

.right-contents .new-table.wide_max table.projects-table td {
  padding: 12px 30px;
}

dl.project-area dd div div#target a {
  text-decoration: underline;
}

dl.project-area dd div div#target a:before {
  content: "【住所候補】";
}

span.must div.error-message {
  color: red;
}

span.must div.error-message:before {
  content: "※";
}

.note dl dt {
  clear: left;
}

.detail .note dl dd span.spacer {
  background: white;
  padding: 5px 10px;
  margin-bottom: 5px;
  text-decoration: none;
}

.graphbtn {
  max-width: 970px;
  display: flex;
}

.graphbtn .normal {
  width: 80px;
}

.topbtn {
  border-radius: 5px;
  color: #fff;
  font-size: 1.2rem;
  padding: 2px 12px;
  margin-left: 10px;
  /*ボタン個別スタイル*/
}

.topbtn a {
  color: #fff;
}

.topbtn input {
  border: none;
}

.topbtn.normal {
  background: #3a4e5a;
  border-bottom: 3px solid #2a3b44;
}

.topbtn.normal.active {
  background: gray;
  border-bottom: 3px solid #2a3b44;
}

/*自社情報設定*/

.right-contents #guide, .right-contents #guide+.clear+#contents {
  font-size: 14px;
}

.right-contents #guide+.clear+#contents table input {
  margin: 10px;
  padding: 5px;
}

.right-contents #guide+.clear+#contents table th span {
  padding-right: 10px;
}

/* Not found */

#notfound {
  text-align: center;
  padding: 60px 0;
  font-size: 14px;
}

/* 発注書に関連する要素を非表示 */

#form_ownorder, input[name="reproduce_ownorder"] {
  display: none !important;
}

.doc-menu {
  max-width: 550px !important;
}

.table-menu .left-menu {
  max-width: 210px !important;
}

#CustomerCUTOOFFDATE, #CustomerPAYMENTDAY {
  width: 40%;
}

#CustomerIndexSearch li.item {
  vertical-align: top;
}

.memo-text {
  margin-top: 5px;
  border-radius: 4px;
  width: 70%;
  min-height: 95px;
  padding: 10px;
  font-size: 1.6rem;
  line-height: 1.6;
  border: 1px solid #999;
  box-sizing: border-box;
}