@charset "UTF-8";
/* -----------------------
汎用
----------------------- */
body {
  background: #e6e6e6;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  overflow: hidden;
  font-size: 0.1em;
  line-height: 0;
}

.clearfix {
  min-height: 1px;
}

.row-eq-height {
  display: flex;
  margin-bottom: 30px;
}

.inline {
  display: inline;
}

.display_table {
  display: table;
}

.display_table_full {
  display: table;
  width: 100%;
}

.display_table-cell {
  display: table-cell;
  vertical-align: middle;
}

*:focus {
  outline: none;
}

a:focus, a:hover {
  outline: none;
  transition-property: "opacity,color,background-color";
  -webkit-transition-property: "opacity,color,background-color";
  -moz-transition-property: "opacity,color,background-color";
  -o-transition-property: "opacity,color,background-color";
  -ms-transition-property: "opacity,color,background-color";
  transition-duration: 0.15s;
  -moz-transition-duration: 0.15s;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  -ms-transition-duration: 0.15s;
}
a:focus.img_thumb, a:hover.img_thumb {
  opacity: 0.8;
  transition-property: opacity;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-duration: 0.15s;
  -moz-transition-duration: 0.15s;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  -ms-transition-duration: 0.15s;
}

.img_thumb,
.img_thumb_unfill {
  width: 100%;
  height: 100%;
  padding: 100% 0 0 0;
  display: none;
}

/* ラジオボタン*/
[type=radio]:checked, [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
[type=radio]:checked + span, [type=radio]:not(:checked) + span {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  margin-right: 10px;
  cursor: pointer;
  line-height: 28px;
  color: #555555;
}
[type=radio]:checked + span:before, [type=radio]:not(:checked) + span:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 2px solid #b6b6b6;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
[type=radio]:checked + span:after, [type=radio]:not(:checked) + span:after {
  position: absolute;
  top: 8px;
  left: 6px;
  content: "";
  width: 10px;
  height: 10px;
  background: #000000;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  transition-property: all;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
[type=radio]:not(:checked) + span:after {
  opacity: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
}
[type=radio]:checked + span:after {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
}
[type=radio].radio-lg:checked + span, [type=radio].radio-lg:not(:checked) + span {
  line-height: 38px;
  margin-right: 20px;
  padding-left: 40px;
  font-size: 1rem;
}
[type=radio].radio-lg:checked + span:before, [type=radio].radio-lg:not(:checked) + span:before {
  width: 28px;
  height: 28px;
}
[type=radio].radio-lg:checked + span:after, [type=radio].radio-lg:not(:checked) + span:after {
  top: 10px;
  left: 8px;
  width: 16px;
  height: 16px;
}
[type=radio].radio-sm:checked + span, [type=radio].radio-sm:not(:checked) + span {
  line-height: 24px;
  margin-right: 20px;
  padding-left: 24px;
  font-size: 0.875rem;
}
[type=radio].radio-sm:checked + span:before, [type=radio].radio-sm:not(:checked) + span:before {
  width: 16px;
  height: 16px;
}
[type=radio].radio-sm:checked + span:after, [type=radio].radio-sm:not(:checked) + span:after {
  width: 8px;
  height: 8px;
}

/* チェックボックス*/
[type=checkbox]:checked, [type=checkbox]:not(:checked) {
  position: absolute;
  left: -9999px;
}
[type=checkbox]:checked + span, [type=checkbox]:not(:checked) + span {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  margin-right: 10px;
  color: #646464;
  line-height: 30px;
  cursor: pointer;
}
[type=checkbox]:checked + span:before, [type=checkbox]:not(:checked) + span:before {
  position: absolute;
  left: 2px;
  top: 6px;
  width: 18px;
  height: 18px;
  content: "";
  background: #ffffff;
  border: 2px solid #b6b6b6;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}
[type=checkbox]:checked + span:after, [type=checkbox]:not(:checked) + span:after {
  position: absolute;
  left: 2px;
  top: 6px;
  width: 18px;
  color: #ffffff;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  text-align: center;
  background: #000000;
  height: 18px;
  line-height: 18px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  transition-property: all;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
[type=checkbox]:not(:checked) + span:after {
  opacity: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
}
[type=checkbox]:checked + span:after {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
}
[type=checkbox].check-lg:checked + span, [type=checkbox].check-lg:not(:checked) + span {
  line-height: 38px;
  margin-right: 20px;
  padding-left: 40px;
  font-size: 1rem;
}
[type=checkbox].check-lg:checked + span:before, [type=checkbox].check-lg:not(:checked) + span:before {
  width: 28px;
  height: 28px;
}
[type=checkbox].check-lg:checked + span:after, [type=checkbox].check-lg:not(:checked) + span:after {
  top: 6px;
  left: 2px;
  width: 28px;
  height: 28px;
  font-size: 18px;
  line-height: 28px;
}
[type=checkbox].check-sm:checked + span, [type=checkbox].check-sm:not(:checked) + span {
  line-height: 27px;
  margin-right: 20px;
  padding-left: 24px;
  font-size: 0.875rem;
}
[type=checkbox].check-sm:checked + span:before, [type=checkbox].check-sm:not(:checked) + span:before {
  width: 16px;
  height: 16px;
}
[type=checkbox].check-sm:checked + span:after, [type=checkbox].check-sm:not(:checked) + span:after {
  width: 16px;
  height: 16px;
  font-size: 12px;
  line-height: 16px;
}

/*テーブル*/
table tr td {
  vertical-align: middle !important;
}
table tr td label {
  margin-bottom: 0;
  font-weight: normal;
}

/*ページング*/
ul.paging {
  margin: 30px auto 0;
  text-align: center;
}
ul.paging li {
  float: left;
}
ul.paging li.disabled a {
  border: none;
  pointer-events: none;
}
ul.paging li a {
  display: block;
  width: 30px;
  margin: 5px;
  height: 30px;
  line-height: 30px;
}
ul.paging li a:hover {
  cursor: pointer;
  text-decoration: none;
}
ul.paging li a i {
  line-height: 28px;
  margin: 0;
}
ul.paging li.on a {
  color: #ffffff;
}

ul.pagination .page-link {
  cursor: pointer;
}

.form-control.small, .form-select.small {
  width: 100px;
}
.form-control.medium, .form-select.medium {
  width: 180px;
}
.form-control.large, .form-select.large {
  width: 365px;
}

.form-select {
  cursor: pointer;
}

textarea {
  width: 100%;
}

:focus {
  outline: none !important;
}

#loading {
  position: fixed;
  background: rgba(255, 255, 255, 0.6);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: none;
}

.loader {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100px;
  height: 100px;
  transform: translateY(-500px);
  border-radius: 50%;
  border: 4px solid #17a2b8;
  border-right-color: transparent;
  animation: spin 1s linear infinite;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
html {
  -webkit-text-size-adjust: 100%;
  line-height: 160%;
  width: 100%;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #666666;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0;
}

ol, ul {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  *font-size: 100%;
  outline: none;
}

* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.tooltip-inner {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* -----------------------
datepicker
----------------------- */
.ui-datepicker {
  display: none;
  background: #ffffff;
  padding: 0;
  z-index: 1000 !important;
  width: auto;
  height: auto;
  font-size: 12px !important;
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev, .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  position: absolute;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  width: 44px;
  height: 44px;
  line-height: 44px;
  top: 0;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before, .ui-datepicker .ui-datepicker-header .ui-datepicker-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
  left: 0;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before {
  content: "\f104";
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  right: 0;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next:before {
  content: "\f105";
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 44px;
  text-align: center;
}
.ui-datepicker table {
  width: 100%;
}
.ui-datepicker table td, .ui-datepicker table th {
  border: none;
  padding: 0;
}
.ui-datepicker table th {
  color: #ffffff;
  line-height: 44px;
  font-weight: normal;
  text-align: center;
}
.ui-datepicker table td span, .ui-datepicker table td a {
  color: #000000;
  display: block;
  padding: 15px 0 13px;
  width: 44px;
  text-align: center;
  text-decoration: none;
}
.ui-datepicker table td span:hover, .ui-datepicker table td a:hover {
  font-weight: bold;
  background: rgba(153, 153, 153, 0.2);
}
.ui-datepicker table td.ui-state-disabled span {
  color: rgba(0, 0, 0, 0.26);
  background: none;
  border: none;
}
.ui-datepicker table:not(.ui-datepicker-ym) td.ui-datepicker-week-end:last-child a {
  color: #0066ff;
}
.ui-datepicker table:not(.ui-datepicker-ym) td.ui-datepicker-week-end:first-child a, .ui-datepicker table:not(.ui-datepicker-ym) td.holiday a {
  color: #cc0000;
}

.month-picker {
  font-size: 12px !important;
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.month-picker table {
  border-spacing: 0 !important;
  border-collapse: separate !important;
  width: 100%;
}
.month-picker .ui-widget-header {
  border: none;
  border-radius: 0;
  margin: 0;
}
.month-picker .ui-widget-header .month-picker-previous .ui-button, .month-picker .ui-widget-header .month-picker-next .ui-button {
  background: none;
  width: 44px;
  height: 44px;
  line-height: 44px;
  padding: 0;
}
.month-picker .ui-widget-header .month-picker-previous .ui-button:before, .month-picker .ui-widget-header .month-picker-next .ui-button:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.month-picker .ui-widget-header .month-picker-previous .ui-button {
  background: url(../img/ios-arrow-back.svg) no-repeat center;
  background-size: 13px;
}
.month-picker .ui-widget-header .month-picker-next .ui-button {
  background: url(../img/ios-arrow-forward.svg) no-repeat center;
  background-size: 13px;
}
.month-picker .month-picker-month-table .ui-button {
  white-space: nowrap;
  padding: 0;
  margin: 0;
  min-width: 44px;
  height: 44px;
  line-height: 44px;
}
.month-picker .month-picker-month-table .ui-button:hover {
  font-weight: bold;
  background: rgba(153, 153, 153, 0.2);
}

@font-face {
  font-family: "NotoSansJapanese";
  src: url("../font/NotoSansJP.ttf") format("truetype");
  font-display: swap;
}
html, body {
  font-family: "NotoSansJapanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

i {
  margin-right: 0.5rem;
}
i:not(.fas) {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1rem;
  vertical-align: middle;
}
i:not(.fas):before {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
}

a {
  color: #0275D8;
}

img {
  max-width: 100%;
}

.spinner-border {
  display: none;
  width: 1rem;
}

/* ラジオボタン*/
[type=radio]:checked + span:before, [type=radio]:not(:checked) + span:before {
  border: 2px solid #b6b6b6;
}
[type=radio]:checked + span:after, [type=radio]:not(:checked) + span:after {
  background: #49AAD2;
}

/* チェックボックス*/
[type=checkbox]:checked + span:before, [type=checkbox]:not(:checked) + span:before {
  border: 2px solid #b6b6b6;
}
[type=checkbox]:checked + span:after, [type=checkbox]:not(:checked) + span:after {
  background: #49AAD2;
}

.ui-datepicker .ui-datepicker-header {
  background: rgb(35.8810572687, 113.2246696035, 145.1189427313);
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:hover, .ui-datepicker .ui-datepicker-header .ui-datepicker-next:hover {
  background: #115A7A;
}
.ui-datepicker table thead th {
  background: #49AAD2;
}
.ui-datepicker table .ui-datepicker-today .ui-state-active, .ui-datepicker table .ui-datepicker-today .ui-state-highlight {
  background: #FFE5B3;
  font-weight: bold;
}
.ui-datepicker table .ui-datepicker-current-day a {
  background: #B3CDFF;
  font-weight: bold;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #fcefa1;
  background: #fbf9ee;
  color: #363636;
}

.ui-state-checked {
  border: 1px solid #fcefa1;
  background: #fbf9ee;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #363636;
}

.input-group-text {
  font-size: 0.75rem;
}

.col-form-label {
  font-weight: bold;
  position: relative;
}
.col-form-label.required:after {
  content: "必須";
  position: absolute;
  color: #ffffff;
  background: #dc001e;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  right: calc(0.375rem + 1px);
}

.input-group-text .required {
  color: #dc001e;
  margin-left: 0.25rem;
}

.form-control::-moz-placeholder {
  color: #707070;
}

.form-control::placeholder {
  color: #707070;
}
.form-control:-ms-input-placeholder {
  color: #707070;
}
.form-control::-ms-input-placeholder {
  color: #707070;
}

.increment_form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.increment_form .form-control {
  width: 4rem;
  margin: 0 4px;
  text-align: center;
}
.increment_form .btn {
  width: 26px;
  height: 26px;
  padding: 0;
  border-radius: 13px;
  text-align: center;
  color: #ffffff;
}

.ympicker:-moz-read-only {
  background: #ffffff !important;
}

.ympicker:read-only {
  background: #ffffff !important;
}

input:-moz-read-only.event-none:focus, select:-moz-read-only.event-none:focus, textarea:-moz-read-only.event-none:focus {
  box-shadow: none;
  border-color: #ced4da;
}

input:read-only.event-none:focus,
select:read-only.event-none:focus,
textarea:read-only.event-none:focus {
  box-shadow: none;
  border-color: #ced4da;
}

.card-title {
  padding: 6px;
  text-align: center;
  background: #94edff;
}

.list-card .card-title {
  background: #dee2e6;
}

.top-info-area {
  border-bottom: 1px solid #c3c3c3;
  padding: 7px 3rem;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 3rem;
}

.content-box {
  padding: 1rem 5rem;
}
.content-box.scroll-wrapper {
  max-height: calc(100vh - 333px);
  overflow-y: auto;
}

.filter-table {
  margin: 1rem 0;
}
.filter-table th {
  font-weight: bold;
  background: #efefef;
  width: 100px;
}
.filter-table td {
  min-width: 100px;
}

.detail-table th {
  text-align: center;
  font-weight: bold;
  background: #efefef;
}
.detail-table thead {
  display: table;
  width: calc(100% - 15px);
  table-layout: fixed;
}
.detail-table tbody {
  display: block;
  min-height: 220px;
  max-height: 220px;
  overflow-y: scroll;
}
.detail-table tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.summary-table th {
  font-weight: bold;
  background: #efefef;
  text-align: center;
}
.summary-table td {
  min-width: 100px;
  text-align: right;
}

.bottom-container {
  background: #fff;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.bottom-container .button-area {
  width: 100%;
  padding: 15px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
.bottom-container .button-area .container .d-flex > div {
  flex: 1;
  margin: 0 8px;
}
.bottom-container .button-area .container .d-flex > div .btn {
  width: 100%;
}
.bottom-container .log-area {
  background: #bebebe;
  min-height: 60px;
}
.bottom-container .log-area .message {
  color: #333;
}
.bottom-container .log-area .message.success {
  color: #198754;
}
.bottom-container .log-area .message.error {
  color: #dc3545;
}
.bottom-container .log-area .message.info {
  color: #0d6efd;
}

.info-message-box {
  padding: 15px;
  margin: 20px 0;
}

.grid-row .card {
  height: 100%;
}

.flex-row-input {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}

.datetime-row {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
  align-items: center;
}
.datetime-row div {
  white-space: nowrap;
}
.datetime-row .timeselect {
  width: 100px;
}

#multiTab .nav-link.active {
  background: #0d6efd;
  color: #fff;
}

#menu_area ul li {
  margin-bottom: 30px;
}
#menu_area ul li .menu {
  background: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}
#menu_area ul li .menu a {
  text-decoration: none;
  color: #0d6efd;
  transition-property: "opacity,color,background-color,border-color";
  -webkit-transition-property: "opacity,color,background-color,border-color";
  -moz-transition-property: "opacity,color,background-color,border-color";
  -o-transition-property: "opacity,color,background-color,border-color";
  -ms-transition-property: "opacity,color,background-color,border-color";
  transition-duration: 0.15s;
  -moz-transition-duration: 0.15s;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  -ms-transition-duration: 0.15s;
}
#menu_area ul li .menu a:hover {
  color: #084298;
}
#menu_area ul li .menu .inner {
  width: 100%;
  padding: 0.75rem;
  flex: 1 1 auto;
  letter-spacing: 0.1rem;
  border: 5px solid #ffffff;
}
#menu_area ul li .menu .inner h1 {
  font-size: 1.75rem;
}
#menu_area ul li .menu .inner h2 {
  font-size: 1.25rem;
}
#menu_area ul li .menu .inner .icon {
  width: 30%;
  padding: 1rem;
  margin: 0;
  text-align: center;
}
#menu_area ul li .menu .inner .icon img {
  width: 80%;
}
#menu_area ul li .menu.daily > .inner:hover:not(a), #menu_area ul li .menu.daily.on > .inner {
  border-color: #cb475c;
}
#menu_area ul li .menu.summary > .inner:hover:not(a), #menu_area ul li .menu.summary.on > .inner:not(a) {
  border-color: #c95f28;
}
#menu_area ul li .menu.stock > .inner:hover:not(a), #menu_area ul li .menu.stock.on > .inner:not(a) {
  border-color: #15a2b8;
}
#menu_area ul li .menu.master > .inner:hover:not(a), #menu_area ul li .menu.master.on > .inner:not(a) {
  border-color: #a5a5a5;
}
#menu_area ul li .menu div.inner::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  margin-left: auto;
  background: url(../img/arrow.svg) no-repeat center;
  background-size: 40px;
}
#menu_area #menu_center, #menu_area #menu_right {
  position: relative;
}
#menu_area #menu_center > ul, #menu_area #menu_right > ul {
  display: none;
}
#menu_area #menu_center > ul li, #menu_area #menu_right > ul li {
  margin-bottom: 1rem;
}
#menu_area #menu_center > ul li .inner, #menu_area #menu_right > ul li .inner {
  padding: 0.5rem;
}
#menu_area #menu_center > ul li div.inner::after, #menu_area #menu_right > ul li div.inner::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-left: auto;
  background: url(../img/arrow.svg) no-repeat center;
  background-size: 20px;
}

.result-area {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  color: #2c2c2a;
  background: #e6e6e6;
  padding: 0;
}
.result-area .day-block {
  background: #fff;
  padding: 1rem 1.25rem;
  margin-bottom: 0.5cm;
}
.result-area .day-block:last-child {
  margin-bottom: 0;
}
.result-area .report-head {
  color: #2c2c2a;
  font-size: 16px;
}
.result-area .report-head .title-main {
  letter-spacing: 0.3em;
  font-size: 1.15em;
  font-weight: 700;
  color: #2c2c2a;
}
.result-area .meta-range {
  font-size: 14px;
  line-height: 1.5;
  color: #2c2c2a;
}
.result-area .table {
  width: 100%;
  border-collapse: collapse !important;
  border-spacing: 0;
  color: #2c2c2a;
  font-family: inherit;
  margin-bottom: 0;
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-color: #2c2c2a;
  --bs-table-border-color: #8d8d6b;
  --bs-border-color: #8d8d6b;
}
.result-area .table thead th, .result-area .table .bg-head {
  background-color: #f0e68c !important;
  color: #3a3a20 !important;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
.result-area .table tbody tr.row-cat td {
  background-color: #e8f4d4 !important;
  color: #2c2c2a;
  font-weight: 500;
}
.result-area .table tbody tr.row-cat td p {
  min-height: 1.3rem;
  line-height: 1.3rem;
}
.result-area .table tbody tr.row-product td {
  background-color: #ffffff !important;
  color: #2c2c2a;
}
.result-area .table .num {
  text-align: right;
  white-space: nowrap;
}
.result-area .table .ctr {
  text-align: center;
  white-space: nowrap;
}
.result-area .table .lft {
  text-align: left;
}
.result-area .table .rgt {
  text-align: right;
  white-space: nowrap;
}/*# sourceMappingURL=style.css.map */