@charset "utf-8";
/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
html {
  font-size: 70%;
}
body {
  color: #262626;
  font-size: 1.6rem;
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans",
    "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo,
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /*fotterを画面下部に固定*/
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
*,
::before,
::after {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: #262626;
  cursor: pointer;
}
a.underline {
  text-decoration: underline;
  color: #0000FF;
}

/* エラー */
.error_message {
  margin: 20px 10px 10px 10px;
  color: #ff0000;
  text-align: justify;
}
.error_message:empty {
  margin: 0px 0px 0px 0px;
}

/*header
---------------------------------------------------------------------------*/
/*header*/
.header {
  position: fixed;
  display: flex;
  flex-flow: row nowrap;
  background-color: #ffffff;
  align-items: center;
  height: 40px;
  width: 100%;
  padding-left: 40px;
  justify-content: space-between;
  z-index: 10;
}
/*headerシステム名称*/
.header .title {
  display: inline;
  font-weight: normal;
  font-size: 1.8rem;
  letter-spacing: 1px;
}
/*headerロゴ*/
.header .info {
  margin-left: 10px;
  margin-right: 5px;
}
.header .logo {
  height: 30px;
  vertical-align: middle;
}
/*header内の項目*/
.header .flexitem2 {
  margin-left: 5px;
  white-space: nowrap;
}
.header .flexitem3 {
  flex-grow: 1;
  margin-left: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header .flexitem4 {
  margin-right: 10px;
}

/*nav
---------------------------------------------------------------------------*/
/*メニュー初期位置*/
.nav {
  position: fixed;
  top: 0;
  left: -200px;
  width: 200px;
  height: 100%;
  padding: 0 0 50px;
  background-color: #f2f2f2;
  -webkit-transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 100;
}
/*メニュー開いたとき*/
.nav.active {
  left: 0;
}
/*メニュータイトル*/
.nav .title {
  background-color: #000000;
  color: #fff;
  height: 40px;
  width: 100%;
  line-height: 40px;
  padding-left: 40px;
  margin: 0 0 0 0;
  font-size: 1em;
}
.nav .nav-list {
  width: 100%;
  height: 100%;
}
.nav .menu-bottom {
  position: fixed;
  z-index: 10;
  bottom: 10px;
  text-align: center;
  word-break: break-all;
}
/*メニュー項目*/
.nav .nav-item {
  display: block;
  font-size: 0.9em;
}
/*メニューアイテムボタン*/
.nav .nav-item .btn {
  display: block;
  padding: 10px;
  color: #262626;
  background-color: #f2f2f2;
  border: none;
  border-radius: 0;
  transition: 0.3s;
  letter-spacing: 1px;
  font-size: 1.6rem;
  width: 100%;
  text-align: left;
}
/*ハンバーガー部分*/
.nav-drawer {
  position: fixed;
  z-index: 105;
  top: 0;
  display: block;
  box-sizing: content-box;
  width: 26px;
  padding: 0;
  padding: 17px 7px 18px;
  border: 0;
  outline: 0;
  background-color: #000000;
  cursor: pointer;
}
/*ハンバーガーボタン*/
.drawer-icon {
  position: relative;
  display: block;
  margin-top: 4px;
}
.drawer-icon,
.drawer-icon:before,
.drawer-icon:after {
  height: 1px;
  width: 100%;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #fff;
}
.drawer-icon:before,
.drawer-icon:after {
  position: absolute;
  top: -8px;
  left: 0;
  content: " ";
}
.drawer-icon:after {
  top: 8px;
}

/*ハンバーガー挙動　三から×へ*/
.nav-drawer.active .drawer-icon {
  background-color: transparent;
}
.nav-drawer.active .drawer-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
}
.nav-drawer.active .drawer-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0;
}

/*メニュー裏のグレー部分*/
.main_cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
/*メニュー開いたときの裏のグレー部分*/
.main_cover.active {
  height: 100%;
  visibility: visible;
  background: rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/*main
---------------------------------------------------------------------------*/
/*fotterを画面下部に固定用*/
.main {
  flex: 1;
  display: flex;
  flex-flow: column nowrap;
}
/*contents*/
 /*flex 親 縦*/
.flex-row {
  display: flex;
  flex-flow: row wrap;
}
 /*flex 親 横*/
.flex-column {
  display: flex;
  flex-flow: column nowrap;
}
 /*flex 子 スマホ時変化する*/
.flex-w30P {
  width: 30%;
}
.flex-w50P {
  width: 50%;
}
/*headerより下でfooterまでの範囲*/
.contents {
  scrollbar-gutter: stable;
  width: 100%;
  padding-left: 10px;
  padding-bottom: 30px;
}
.contents .w100P {
  padding: 0.5em 0 0.5em 0;
}
.outer {
  margin: 1em 1em;
}
.contents .heading {
  scrollbar-gutter: stable;
  position: fixed;
  z-index: 10;
  top: 40px;
  left: 0px;
  height: 33px;
  width: 100%;
  padding: 0.3em 0 0.3em 10px;
  background-color: black;
  color: white;
  font-size: 1.2em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-weight: normal;
}
/*右寄せボタン用*/
.btn-right {
  text-align: right;
}

/* パーツ
---------------------------------------------------------------------------*/
.mb1em {
  margin-bottom: 1em;
}
.mr1em {
  margin-right: 1em;
}
.textR {
  text-align: right;
}
.textC {
  text-align: center;
}

.flex-w30P,
.w30P {
  width: 30%;
}
.flex-w50P,
.w50P {
  width: 50%;
}
.w70P {
  width: 70%;
}
.w80P {
  width: 80%;
}
.w50 {
  width: 50px;
}
.w60 {
  width: 60px;
}
.w70 {
  width: 70px;
}
.w80 {
  width: 80px;
}
.w90 {
  width: 90px;
}
.w100 {
  width: 100px;
}
.w130 {
  width: 130px;
}
.w600 {
  width: 600px;
}
.w1000 {
  width: 1000px;
}

/*項目用*/
.w-label {
  width: 130px;
}
/*数字6桁 123,456*/
.w-num6 {
  width: 130px;
}
/*数字5.2桁 123.45*/
.w-num52 {
  width: 100px;
}
/*数字9.3桁 123456.789*/
.w-num93 {
  width: 165px;
}
/*単位*/
.w-unit {
  width: 34px;
}
.w-unit2 {
  width: 50px;
}

.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
/*button*/
.btn {
  display: inline-block;
  width: 140px;
  padding: 7px;
  border: 1px solid #ff6600;
  background-color: rgba(255, 102, 0, 0.3);
  /*色*/
  border: 1px solid #b4b4b4;
  background: #b4b4b4;
  border-radius: 3px;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  transition: 0.3s;
  cursor: pointer;
}
.btn.btn-normal {
  background: #f2f2f2;
  border: 1px solid #262626;
  color: #262626;
  transition: 0.3s;
}
.btn.btn-normal:hover {
  color: #262626;
  background-color: #fff;
}
.btn.btn-disabled {
  background: #fff;
  border: 1px solid #bfbfbf;
  color: #bfbfbf;
}
/*赤いボタン*/
.btn.btn-red {
  background: #fff;
  border: 1px solid #ff0000;
  color: #262626;
}
.btn.btn-red:hover {
  color: #fff;
  background-color: #ff0000;
}
/*青いボタン*/
.btn.btn-blue {
  background: #1c93d3;
  border: 1px solid #262626;
  color: #fff;
}
.btn.btn-blue:hover {
  background: #fff;
  color: #1c93d3;
}
/*アイコンボタン*/
.btn.btn-icon {
  display: inline-block;
  width: auto;
  padding: 7px;
  border: none;
  background-color: #ffffff;
  border: none;
  background: #fff;
  border-radius: 3px;
  color: #646467;
  font-size: 1.5em;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  transition: 0.3s;
  cursor: pointer;
}
/*小ボタン*/
.btn-s {
  width: 80px;
}
/*大ボタン*/
.btn-m {
  width: 120px;
}
.btn + .btn {
  margin-left: 1em;
}
/*form*/
.form {
  display: block;
  width: 100%;
  padding: 5px 16px;
  margin: 5px 0;
  font-size: 1em;
  border: 1px solid #dfdfdf;
  transition: 0.3s;
}
/* フォームプレースフォルダー */
.form::placeholder {
  color: #a6a6a6;
  font-size: 1.1rem;
}
/*フォームフォーカス時 */
.login .form-login:focus {
  outline: 0;
  box-shadow: 0 0 3px #ff6600;
}
.label.square::before {
  content: "■";
  margin-left: 0;
}
.required::after {
  content: "※必須";
  font-size: 0.9em;
  color: red;
  margin-left: 0.5em;
}
input[type="number"] {
  padding: 5px;
}
/*chackbox*/
.label {
  display: block;
  padding: 0.2em 0 0.3em;
  font-size: 1em;
  font-weight: normal;
  line-height: 1;
  color: #262626;
  text-align: left;
  white-space: nowrap;
}
input[type="checkbox"],
input[type="radio"] {
  margin: 0px 0.5em 2px 0;
}
.labelbox {
    margin-top: 10px;
    margin-bottom: 10px;
	margin-right: 5px;
}
.labelbox input {
	display: none;
}
.labelbox span {
	color: #000;
	padding: 5px 20px;
    cursor: pointer;
    text-decoration: underline;
}
.labelbox input:checked + span {
	color: #FFF;
	background: #00F;
}

/*デートピッカー の左右ボタン*/
.calendar-inline button {
    width: 32px;
    height: 32px;
    vertical-align: top;
    border-radius: 16px;
}
.calendar-inline .bi-caret-left-fill,
.calendar-inline .bi-caret-right-fill {
    color: black;
}

/*日付入力のフォントサイズ*/
input[class*="datepicker"] {
    font-size: inherit;
    height: 32px;
}

/*カレンダーの角を落とす*/
.datepicker th,
.datepicker td {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}

/*今日ボタン*/
.datepicker table {
    border-collapse: separate;
}
.datepicker tfoot .today {
    vertical-align: middle;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

/*カレンダーアイコン*/
.pic-calendar {
    display: inline-block;
    position: relative;
}
.pic-calendar::before {
    width: 16px;
    height: 16px;
    display: inline-block;
    position: absolute;
    top: 7px;
    right: 10px;
}

/*カレンダーページング部分*/
.calendar {
    display: inline-block;
    padding-left: 0;
    margin: 1em 1em 1em 0;
}
.calendar > li {
  display: inline;
  vertical-align: middle;
}
.calendar > li .calendardata {
  padding: 3px 6px;
  margin: 0 0.5em;
}
/*table*/
table {
  font-size: 1.3em;
}
/*table内のinputの余白を調整*/
.table .check {
  vertical-align: middle;
  text-align: center;
}
.table .check input[type="checkbox"] {
  margin: 0;
}
.table .form {
  margin: 0;
}
/*bootstrap上書き用*/
h4 {
  font-size: 1.6rem;
}
.table > thead > tr > th {
  vertical-align: top;
}
.table > tbody > tr > td {
  padding: 4px 8px;
}
.table > tbody > tr > td:empty:not(:has(input)) {
  padding: 8px;
}
.table tr {
  height: 40px;
}

/*table グレーのみ*/
.table.table-border th,
.table.table-border td {
  border: 1px solid #ddd;
}
table:not(.table-light) thead tr {
  background-color: #d0d0d0;
}
thead tr th,
tbody tr td {
  padding: 8px;
}
table:not(.table-light) tbody tr:nth-child(odd) {
  background-color: #f0f0f0;
}

/*table 色なし用*/
.table.table-light.table-border tr,
.table.table-light.table-border th,
.table.table-light.table-border td {
  border: 1px solid #292929;
}
/*table 色なし用背景色　黄色*/
.table.table-light.table-border td.yellow {
  background-color: #FFF2CC;
}
/*table 色なし用背景色　緑色*/
.table.table-light.table-border td.green {
  background-color: #E2EFDA;
}
/*table 色なし用背景色　赤色*/
.table.table-light.table-border td.red {
  background-color: #FCE4D6;
}
/*td 中央寄せ*/
td.textC {
  text-align: center;
}

/* グリッドヘッダの左側の線(第３列以外の最初の列) */
.ui-jqgrid-htable tr:not(.jqg-third-row-header) th:first-child {
    border-left-width: 1px !important;
    border-left-style: solid !important;
    border-bottom-width: 0px !important;
}
/* グリッドヘッダの上側の線(最初の行の列) */
.ui-jqgrid-htable tr:first-child th {
    border-top-width: 1px !important;
    border-top-style: solid !important;
}
/*データ領域の上側の線(非表示最初の行)*/
.ui-jqgrid-btable tr.jqgfirstrow td {
    border-top-width: 1px !important;
    border-top-style: solid !important;
}
/*データ領域の左側の線(各行の最初の列)*/
.ui-jqgrid-btable tr td:first-child {
    border-left-width: 1px !important;
    border-left-style: solid !important;
}

/*通知欄*/
.notification {
  margin: 10px 10px 10px 10px;
  color: #ff0000;
  text-align: justify;
}
.notification:empty {
  margin: 0px 0px 0px 0px;
}

/*footer
---------------------------------------------------------------------------*/

/*fotterを画面下部に固定*/
.footer {
  position: fixed;
  z-index: 10;
  bottom: 0px;
  line-height: 30px;
  width: 100%;
  background-color: white;
}
.footer .copyright {
  font-size: 1.1rem;
  text-align: center;
}

/*画面幅768px以上の設定（スマホ縦横以外）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
/*画面幅768px以上の設定（スマホ縦横以外）をここに記入*/
  .contents {
    width: 100%;
    max-width: 1920px;
    margin-top: 70px;
  }
  .contents:has(.button_area) {
    padding-top: 50px;
  }
  .contents:has(.site_name) {
    padding-top: 30px;
  }
  .contents:has(.button_area):has(.site_name) {
    padding-top: 105px;
  }
  /* hover時に使用*/
  a:hover {
    text-decoration: none;
    color: #14628c;
  }
  .btn:hover {
    background: rgba(28, 147, 211, 0.5);
    color: #262626;
  }

  /*header
---------------------------------------------------------------------------*/
  .header .flexitem2 {
    flex-grow: 0;
  }
  .header .flexitem3 {
    line-height: 40px;
  }

  /*nav
---------------------------------------------------------------------------*/
  /*スマホ非表示に使用*/
  .pcnone {
    display: none;
  }

  /*メニューアイテム非表示*/
  .nav .nav-item.pcnone {
    display: none;
  }

  /*メニュー項目*/
  .nav .nav-item {
    padding-top: 5px;
    border-bottom: 1px solid #000;
  }
  /*メニューアイテムボタン*/
  .nav .nav-item .btn {
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
  }
  /*メニュー項目ホバー時*/
  .nav .nav-item:hover {
    background-color: #b4b4b4;
  }
  /*メニュー下部*/
  .nav .menu-bottom {
    width: 200px;
    font-size: 1.5rem;
  }

  /*移動ボタンエリア*/
  .button_area {
    position: fixed;
    flex: 1;
    left: 0px;
    top: 70px;
    height: 50px;
    width: 100%;
    background-color: white;
    z-index: 5;
  }
  .site_name {
    position: fixed;
    flex: 1;
    top: 110px;
    height: 30px;
    width: 100%;
    background-color: white;
    z-index: 5;
    padding-top: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .outer {
    height:100%;
  }

}

/*画面幅768px以下の設定（スマホの時 縦横含む）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
/*画面幅768px以上の設定（スマホの時 縦横含む）をここに記入*/
  /*スマホ非表示に使用*/
  .contents:has(.site_name) {
    padding-top: 30px;
  }
  .mobilenone {
    display: none;
  }
  .btn.btn-normal.mobilenone,
  .nav .nav-item.mobilenone {
    display: none;
  }
  .table > thead > tr > th.mobilenone,
  .table > tbody > tr > td.mobilenone {
    display: none;
  }
  .btn:hover {
    background: rgba(28, 147, 211, 0.5);
    color: #262626;
  }
  /*header
---------------------------------------------------------------------------*/
  .mobile .header {
    flex-flow: row wrap;
    background-color: #fff;
    height: 44px;
    width: 100%;
    max-width: 1920px;
    padding-left: 0px;
    align-items: flex-start;
  }
  .mobile .header .logo {
    height: 38px;
    padding-top: 6px;
    vertical-align: middle;
  }
  /*header項目の並び替え用*/
  .mobile .header .flexitem1 {
    order: 1;
  }
  .mobile .header .flexitem2 {
    order: 2;
    margin-right: auto;
  }
  .mobile .header .flexitem3 {
    order: 4;
    flex-grow: 0;
    position: absolute;
    top: 20px;
    right: 0px;
    width: 100%;
    max-width: calc(100% - 80px);
    padding-right: 40px;
    margin: 7px 5px 2px 5px;
    text-align: right;
    font-size: 0.8em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /*nav
---------------------------------------------------------------------------*/
  /*メニュー初期位置*/
  .mobile .nav {
    left: -100%;
    height: auto;
    width: 100%;
    padding: 0;
    justify-content: center;
  }
  .mobile .nav .title {
    position: fixed;
    display: flex;
    flex-flow: row nowrap;
    height: 44px;
    line-height: 44px;
    padding-left: 10px;
  }
  /*メニュー開いたとき*/
  .mobile .nav.active {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow-y: auto;
  }
  .mobile .nav-list {
    height: 90%;
    margin-top: 30px;
    padding: 10%;
  }
  .mobile .nav-drawer {
    padding: 18px 7px 20.5px;
    left: calc(100% - 40px);
  }
  .mobile .nav .nav-item {
    border-bottom: none;
  }
  /*メニューアイテムボタン　黄色*/
  .mobile .nav .nav-item .btn {
    border: 1px solid #000;
    background: rgba(255, 241, 203, 1);
    text-align: center;
    text-decoration: none;
    line-height: 1;
    margin-bottom: 20px;
  }
  /*メニューアイテムボタン 黒*/
  .mobile .nav .nav-item.black .btn {
    background: rgb(0, 0, 0);
    color: #fff;
  }
  /*メニューアイテムボタン 白*/
  .mobile .nav .nav-item.white .btn {
    background: #f2f2f2;
  }
  .mobile .nav .nav-item:last-child {
    margin-top: 50px;
  }
  /*メニュー項目ホバー時*/
  .mobile .nav .nav-item .btn:hover {
    background-color: #F0A000;
  }
  .mobile .nav .nav-item.black .btn:hover {
    background-color: #808080;
  }
  .mobile .nav .nav-item.white .btn:hover {
    background-color: #b4b4b4;
  }
  /*メニュー下部*/
  .mobile .nav .menu-bottom {
    width: 100%;
    font-size: 1.5rem;
  }

  /*main
---------------------------------------------------------------------------*/
  /*main項目並び替え*/
  .mobile .main .header {
    order: 1;
    z-index: 10;
  }

  .mobile .main .nav {
    order: 3;
  }

  /*contents*/
  .mobile .contents {
    width: 100%;
    max-width: 1920px;
    margin-top: 80px;
  }
  .mobile .contents:has(.button_area) {
    padding-bottom: 80px;
  }
  .mobile .contents .heading {
    top: 44px;
    height: 36px;
    padding: 0.3em 0 0.3em 10px;
  }

  .mobile .flex-w30P,
  .mobile .w30P {
    width: 80%;
  }
  .mobile .flex-w50P,
  .mobile .w50P {
    width: 80%;
  }

  /*移動ボタンエリア*/
  .button_area {
    position: fixed;
    flex: 1;
    left: 0;
    bottom: 30px;
    height: 50px;
    width: 100%;
    background-color: white;
    z-index: 5;
    text-align: center;
  }
  .button_area * {
    margin-right: 20px;
  }
  .site_name {
    position: fixed;
    flex: 1;
    top: 80px;
    height: 30px;
    width: 100%;
    background-color: white;
    z-index: 5;
    padding-top: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .outer {
    height: 100%;
  }
}
