/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
}

body, table,
input, textarea, select, option,
h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

table,
input, textarea, select, option {
  line-height: 1.1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
}

a,
a img {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:hover img {
  opacity: 0.80;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

img {
  max-width: 100%;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

:root {
  --main-color:#009944;
  --green:#007568;
  --sub-green: #F9FCF0;
  --pale-yellow: #FFFF99;
  --sub-color:rgb(235,245,122);
  --light-bg: rgba(153, 204, 0, 0.06);
  --sub-color1: #F9FCF0;
  --sub-color2: #F6FFDC;
  --bg-main:#fafafa;
  --hover-secondary:#F9FFE8;
  --hover-primary: #6C9000;
  --hover-sidebar: #9b9000;
  --hover-table: #ffffeb;
  --error-color: #B00020;
  --red:#f35111;
  --red-secondary:#FFF0F0;
  --blue:#2A53A1;
  --blue-secondary:#ECF2FF;
  --black: #000000;
  --white: #FFFFFF;
  --border1: #DDDDDD;
  --border2:#EEEEEE;
  --border3:#E0E0E0;
  --ng-color: #E91111;
}

/*------------------------------------------------------------
	Layout
------------------------------------------------------------*/
body {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  font-style: normal;
  color: var(--black);
  min-width: 1100px;
  overflow-x: auto;
/*  opacity: 0;*/
  pointer-events: none;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  background-color: var(--bg-main);
}

.c-page-main {
  background: var(--bg-main);
  margin-top: 100px;
  width: calc(100% - 230px);
  margin-left: 230px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  min-height: calc(100vh - 175px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-page-main.active {
  width: calc(100% - 52px);
  margin-left: 52px;
}

.c-page-main.active .c-page-header {
  width: calc(100% - 52px);
  left: 52px;
}

.c-page-main--02 {
  padding-bottom: 100px;
}

.c-page-main--02 .c-page-footer {
  z-index: 2;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.c-page-header {
  position: fixed;
  width: calc(100% - 230px);
  left: 230px;
  top: 56px;
  z-index: 105;   /* 最前面 */
  padding: 24px 24px 0 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border1);
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  height: 50px;
}

.c-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  margin-top: -20px;
}

.c-tabs li {
  border: 1px solid var(--border1);
  border-bottom: 0;
  color: #808080;
  display: block;
  border-radius: 4px 4px 0px 0px;
  /*padding: 8px 16px 0 16px;*/
  margin-right: 4px;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  white-space: nowrap;
  width: 190px;
  height: 45px;
  text-align: center;
}

.c-tabs li:last-child {
  margin-right: 0;
}

.c-tabs li a {
  border-bottom: 2px solid transparent;
  padding: 8px 16px 8px 16px;
  /*padding-bottom: 8px;*/
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: block;
  height: 100%;
  width: 100%
}

.c-tabs li:hover, .c-tabs li.active {
  background: #F6F6F6;
}

.c-tabs li:hover a, .c-tabs li.active a {
  color: var(--black);
  font-weight: 700;
  border-color: var(--green);
}

.c-page-content {
  padding: 30px;
  min-height: 400px;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.c-page-content__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -15px;
}

.c-page-content__row .text-save {
  background: var(--white);
  border: 1px solid #CDCDCD;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  font-size: 1.2rem;
  color: #666666;
  padding: 7px 15px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-page-content__row .text-save span {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--black);
}

.c-page-content__header__box {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--white);
  border: 1px solid var(--border3);
  border-radius: 4px;
  padding: 22px;
}

.c-page-content__header .c-form--search {
  border: 1px solid #E0E0E0;
  background: var(--white);
  border-radius: 4px;
  padding: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 15px 0 15px;
  margin-top: 15px;
}

.c-page-content__header .c-form--search .c-form-group {
  width: 25vw;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.c-page-content__header .c-form--search .c-form-group--w1 {
  width: 10vw;
}

@media only screen and (max-width: 1180px) {
  .c-page-content__header .c-form--search .c-form-group--w1 {
    width: 125px;
  }
}

.c-page-content__header .c-form--search .c-form__left {
  width: calc(100% - 285px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-page-content__header .c-form--search .c-form__right {
  width: 285px;
}

.c-page-content__header .c-form--search .btn-download {
  border-radius: 8px;
}

.c-page-content__header--01 .c-form-group {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.c-page-content__header--01 .c-form-group__input {
  width: 10vw;
}

.c-page-content__header--01 .c-form-group__input:last-child {
  width: 25%;
}

.c-page-content__tabs {
  background: var(--white);
  border: 1px solid var(--border1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 217px;
  padding: 6px;
}

.c-page-content__tabs li {
  height: 32px;
  width: 85px;
  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;
  border-radius: 2px;
  font-size: 1.3rem;
  cursor: pointer;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  border: 1px solid transparent;
  margin-left: 1px;
}

.c-page-content__tabs li:first-child {
  margin-left: 0;
}

.c-page-content__tabs li:hover, .c-page-content__tabs li.active {
  background: var(--sub-color2);
  border: 1px solid var(--green);
  font-weight: 700;
}

.c-page-content__tabs li.active {
  pointer-events: none;
}

.c-page-content__tabs li.no:hover {
  color: var(--black);
  background: transparent;
  border-color: transparent;
}

.c-page-content__tabs02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--border1);
  margin-top: 30px;
}

.c-page-content__tabs02 li {
  height: 40px;
  margin-left: 25px;
  position: relative;
  cursor: pointer;
}

.c-page-content__tabs02 li:after {
  content: '';
  height: 2px;
  width: 100%;
  left: 0;
  bottom: 0;
  position: absolute;
  background: var(--green);
  opacity: 0;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.c-page-content__tabs02 li:first-child {
  margin-left: 0;
}

.c-page-content__tabs02 li a {
  display: block;
  height: 100%;
  width: 100%;
  color: #666666;
  font-size: 1.5rem;
}

.c-page-content__tabs02 li.active a, .c-page-content__tabs02 li:hover a {
  font-weight: 700;
  color: var(--black);
}

.c-page-content__tabs02 li.active:after, .c-page-content__tabs02 li:hover:after {
  opacity: 1;
}

.c-page-footer {
  padding: 20px;
  margin-top: auto;
  background: var(--white);
  border-top: 1px solid #CDCDCD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.ui-icon-gripsmall-diagonal-se {
  z-index: 1 !important;
}

.c-selected-list {
  margin-top: 25px;
}

.c-selected-list__inner {
  border: 1px solid #CDCDCD;
  min-height: 68px;
  padding: 6px 10px 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0 0 0;
}

.c-selected-list__item {
  border: solid 1px var(--green);
  border-radius: 4px;
  background: #F6FFDC;
  font-size: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5px 5px;
  margin: 4px 4px 0 0;
}

.c-selected-list__item span {
  display: inline-block;
  vertical-align: middle;
}

.c-selected-list__item .icon-delete {
  width: 15px;
  height: 15px;
  display: inline-block;
  position: relative;
  border-radius: 50%;
  vertical-align: middle;
  padding: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-left: 5px;
}

.c-selected-list__item .icon-delete:hover {
  background: #C4DF9B;
}

.c-selected-list__item .icon-delete:before, .c-selected-list__item .icon-delete:after {
  content: '';
  background: var(--black);
  position: absolute;
  width: 10px;
  height: 1px;
}

.c-selected-list__item .icon-delete:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 7px;
  left: 3px;
}

.c-selected-list__item .icon-delete:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 7px;
  left: 3px;
}

.c-result__inner {
  border: 1px solid var(--border1);
  background: var(--white);
  border-radius: 4px;
  padding: 24px;
  margin-top: 20px;
}

.c-result .title {
  font-weight: 500;
  font-size: 2rem;
}

.c-result__table {
  width: 100%;
  white-space: nowrap;
  height: calc(100% - 40px);
  padding-bottom: 10px;
  overflow: auto;
}

.c-icon-hover {
  position: relative;
}

.c-icon-hover span {
  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;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.c-icon-hover__title {
  color: var(--white);
  font-size: 1.2rem;
  background: var(--black);
  position: absolute;
  border-radius: 4px;
  text-align: center;
  padding: 2px 5px;
  width: 60px;
  z-index: 1;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.c-icon-hover:hover span {
  background: #F6F6F6;
}

.c-icon-hover:hover .c-icon-hover__title {
  opacity: 1;
}

.c-menu-right {
  position: absolute;
  right: 10px;
  top: 20px;
  width: 20px;
  height: 16px;
  cursor: pointer;
  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;
  z-index: 1;
}

.c-menu-right span {
  display: block;
  width: 4px;
  border-radius: 50%;
  height: 4px;
  background: #A7A7A7;
  top: 0;
  left: 5px;
}

.c-menu-right__popup {
  width: 165px;
  -webkit-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.28);
          box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.28);
  border-radius: 2px;
  background: var(--white);
  position: absolute;
  right: 10px;
  margin-top: 20px;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.c-menu-right__popup.active {
  opacity: 1;
  pointer-events: all;
}

.c-menu-right__popup li {
  font-size: 1.5rem;
}

.c-menu-right__popup a {
  display: block;
  padding: 7px 10px;
}

.c-menu-right__popup a:hover {
  background: var(--border2);
}

.c-profile {
  position: fixed;
  top: 56px;
  right: -400px;
  height: calc(100vh - 56px);
  width: 378px;
  background: var(--white);
  border: 1px solid var(--border2);
  -webkit-box-shadow: -2px 0px 8px rgba(0, 0, 0, 0.05);
          box-shadow: -2px 0px 8px rgba(0, 0, 0, 0.05);
  z-index: 106;
  overflow: hidden;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  opacity: 0;
  pointer-events: none;
}

.c-profile.active {
  opacity: 1;
  pointer-events: all;
  right: 0;
}

.c-profile__inner {
  padding: 15px 24px;
  height: 100%;
  overflow-y: auto;
  position: relative;
  z-index: 1;
}

.c-profile__avatar {
  width: 198px;
  height: 198px;
  border-radius: 50%;
  margin: 0 auto;
}

.c-profile__avatar img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-profile__name {
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
}

.c-profile__body {
  border-top: 1px solid var(--border2);
  margin-top: 50px;
  padding-top: 15px;
}

.c-profile__body dl {
  margin-bottom: 15px;
}

.c-profile__body dt {
  color: #959595;
  font-size: 1.3rem;
}

.c-profile__body dd {
  font-size: 1.5rem;
  margin-top: 3px;
}

.c-profile__over {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}

.c-list-select-move {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-list-select-move__item {
  color: #666666;
  background: var(--sub-green);
  border-radius: 4px;
  width: 305px;
}

.c-list-select-move__item .box-add-list {
  height: 188px;
  overflow: hidden;
}

.c-list-select-move__item .box-add-list__inner {
  height: 100%;
  overflow-y: auto;
}

.c-list-select-move__item .add-list {
  padding: 10px 20px 0 20px;
}

.c-list-select-move__item .add-list li {
  background: var(--white);
  border: 1.2px solid #C4DF9B;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  padding: 9.5px 20px 9.5px 10px;
  margin-top: 4px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  position: relative;
}

.c-list-select-move__item .add-list li .icon-delete {
  width: 15px;
  height: 15px;
  display: inline-block;
  position: relative;
  border-radius: 50%;
  vertical-align: middle;
  padding: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-left: 5px;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
}

.c-list-select-move__item .add-list li .icon-delete:hover {
  background: var(--green);
}

.c-list-select-move__item .add-list li .icon-delete:hover:before, .c-list-select-move__item .add-list li .icon-delete:hover:after {
  background: var(--white);
}

.c-list-select-move__item .add-list li .icon-delete:before, .c-list-select-move__item .add-list li .icon-delete:after {
  content: '';
  background: #7BA400;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  width: 10px;
  height: 1px;
}

.c-list-select-move__item .add-list li .icon-delete:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 7px;
  left: 3px;
}

.c-list-select-move__item .add-list li .icon-delete:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 7px;
  left: 3px;
}

.c-list-select-move__item .add-list li.selected {
  background: var(--sub-color2);
  border-color: var(--green);
}

.c-list-select-move__item .add-list li.selected .icon-delete {
  opacity: 1;
  pointer-events: all;
}

.c-list-select-move__item--02 {
  background: #F6F6F6;
}

.c-list-select-move__item--02 .add-list li {
  border-color: var(--border1);
}

.c-list-select-move__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 20px 20px 10px 20px;
}

.c-list-select-move__title img {
  margin-right: 5px;
}

.c-list-select-move__icon {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 80px;
}

.c-list-select-move__icon button {
  background: var(--white);
  border: 1px solid var(--border1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  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;
  margin-top: 10px;
}

.c-list-select-move__icon button:first-child {
  margin-top: 0;
}

.c-list-select-move .c-form-group--search {
  margin-top: 0 !important;
}

.c-list-select-move .c-form-group--search .c-search {
  z-index: 2;
}

.ui-datepicker-calendar td.zero a:before {
  content: "0";
}

/*------------------------------------------------------------
    Header
------------------------------------------------------------*/
.c-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 56px;
  padding: 12px 20px;
  background: var(--white);
  border-bottom: 1px solid #F2F2F2;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 105; /* 最前面 */
}

.c-header__logo {
  width: 146px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-header__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-header__options .select2-container {
  width: 90px !important;
}

.c-header__options__icon {
  color: #CDCDCD;
  display: table;
  margin: 0 24px;
}



.c-header .c-language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-header .c-language select {
  font-weight: 700;
  margin-left: 2px;
  width: 65px;
  line-height: 35px;
  height: 35px;
}

.c-header .c-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-header .c-user__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  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;
  background: #E7E7E7;
  margin-left: -4px;
}

.c-header .c-user__name {
  font-weight: 700;
}

/*------------------------------------------------------------
    Sidebar
------------------------------------------------------------*/
.c-sidebar {
  background: var(--green);
  width: 230px;
  position: fixed;
  left: 0;
  top: 56px;
  height: 100%;
  z-index: 10;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.c-sidebar.active {
  width: 52px;
}

.c-sidebar.active .c-sidebar__icon img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.c-sidebar.active .c-nav a span {
  opacity: 0;
  pointer-events: none;
}

.c-sidebar__icon {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  cursor: pointer;
}

.c-sidebar__icon img {
  padding: 0 14px;
}

.c-sidebar .c-nav {
  overflow: auto;
  height: 100%;
  padding-bottom: 200px;
}

.c-sidebar .c-nav::-webkit-scrollbar {
  display: none;
}

.c-sidebar .c-nav li {
  margin-bottom: 5px;
}

.c-sidebar .c-nav li.active a {
  background: var(--hover-sidebar);
}

.c-sidebar .c-nav li.active a span {
  color: var(--white);
  font-weight: 700;
}

.c-sidebar .c-nav li.active a:before {
  opacity: 1;
}

.c-sidebar .c-nav li.active a img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.c-sidebar .c-nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0px 10px 18px;
  position: relative;
  white-space: nowrap;
  color: var(--white);
  text-decoration: none;
}

.c-sidebar .c-nav a img {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.c-sidebar .c-nav a span {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.c-sidebar .c-nav a:before {
  content: '';
  height: 100%;
  width: 4px;
  background: #7c7403;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.c-sidebar .c-nav a:hover {
  background: var(--hover-sidebar);
}

.c-sidebar .c-nav a:hover span {
  color: var(--white);
  font-weight: 700;
}

.c-sidebar .c-nav a:hover:before {
  opacity: 1;
}

.c-sidebar .c-nav a:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.c-sidebar .unread-badge {
  width: 3rem;
  margin-left: 10px;
  text-align:center;
  background: var(--ng-color);
  border-radius: 20px;
  color: var(--white);
}


/*------------------------------------------------------------
    btn
------------------------------------------------------------*/
.c-button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-button-group .btn,
.c-profile .btn-logout {
  height: 36px;
  width: 140px;
  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;
  color: var(--green);
  background: var(--white);
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid var(--green);
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.c-button-group .btn:nth-child(2) {
  margin-left: 6px;
}

.c-button-group .btn:hover,
.c-profile .btn-logout:hover {
  background: #92C3BC;
}

.c-button-group .btn--primary {
  background: var(--green);
  color: var(--white);
}

.c-button-group .btn--primary:hover {
  background: var(--hover-sidebar);
  border-color: var(--hover-sidebar);
}

.c-button-group .btn.disabled {
  opacity: .5;
  cursor: not-allowed;
}

.c-button-group .btn.disabled:hover,
.btn-conditions-save:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}


.c-button-arrow {
  position: absolute;
  right: 20px;
  bottom: 12px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: ease .2s ease;
  transition: ease .2s ease;
}

.c-button-arrow.is-show {
  opacity: 1;
  pointer-events: all;
}

.c-button-arrow button {
  cursor: pointer;
  border: 0;
  background: transparent;
}

.c-btn02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.c-btn02 svg {
  margin-left: 5px;
}

.c-btn02 svg path {
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.c-btn02:hover {
  opacity: 1;
  font-weight: 500;
}

.c-btn02:hover svg path {
  fill: var(--green);
}

.c-delete-item, .c-delete-item02 {
  display: none;
}

.c-delete-item.active, .c-delete-item02.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn-delete {
  height: 36px;
  width: 140px;
  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;
  color: var(--red);
  background: var(--white);
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid var(--red);
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.btn-delete:hover,
.btn-conditions-delete:hover {
  background: #f01e13;
  color: #fff;
}

.btn-download {
  cursor: pointer;
  background: var(--white);
  border: 1px solid #CDCDCD;
  border-radius: 4px;
  padding: 0 10px;
  height: 36px;
  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;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.btn-download:hover {
  background: var(--bg-main);
}

.btn-download img {
  margin-right: 5px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.btn-download[disabled] {
  pointer-events: none;
}

.btn-conditions-delete,
.btn-conditions-save {
  cursor: pointer;
  background: var(--white);
  border: 1px solid #CDCDCD;
  border-radius: 4px;
  height: 36px;
  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;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  margin-left: 3px;
  font-size: 1.2rem;
  width: 80px;
}

.btn-conditions-save,
.c-profile .btn-logout {
  margin-left: 6px;
}

.btn-conditions-csv {
  cursor: pointer;
  background: var(--white);
  border: 1px solid #CDCDCD;
  border-radius: 4px;
  height: 36px;
  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;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  margin-left: 3px;
  font-size: 1.2rem;
}

.btn-conditions-csv:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.c-profile .c-button-group {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*------------------------------------------------------------
title
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-title01 {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-title01 img {
  margin: 5px 5px 0 0;
  height: 25px;
}

.c-title02 {
  font-weight: 500;
  font-size: 2.0rem;
  line-height: 28px;
  padding: 0.6rem 2rem;
  border-left: 4px solid var(--green);
  margin-bottom: 20px;
}

.c-title03 {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 22px;
}

.c-title04 {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 21px;
}

/*------------------------------------------------------------
   Table
------------------------------------------------------------*/
table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border2);
}

.c-table01 {
  border-collapse: separate;
  /* Don't collapse */
  border-spacing: 0;
  border-bottom: 0;
  border-top: 0;
}

.c-table01__header span {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 15px;
}

.c-table01__header td {
  font-weight: 500;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
  border-top: 1px solid var(--border2);
}

.c-table01__header .icon-sort {
  cursor: pointer;
  margin-left: 10px;
  width: 15px;
  z-index: 1;
  position: absolute;
  right: 10;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-table01__header .js-sort.active .number-sort {
  opacity: 1;
  pointer-events: all;
}

.c-table01__header p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--black) !important;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  position: relative;
}

.c-table01__header .number-sort {
  background: #222222;
  color: var(--white);
  font-size: 1.3rem;
  border-radius: 8px;
  width: 22px;
  height: 20px;
  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;
  padding: 0;
  margin-left: 15px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  cursor: pointer;
}

.c-table01 td {
  background: var(--white);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border2);
  font-size: 1.6rem;
  border-left: solid 1px var(--border2);
  text-align: left;
}

.c-table01 td:first-child {
  border-left: 0;
}

.c-table02 {
  border-collapse: separate;
  border-spacing: 0;
  border-bottom: 0;
  border-top: 0;
}

.c-table02 td {
  border-bottom: 1px solid var(--border2);
  border-left: 1px solid var(--border2);
  padding: 10.5px;
  white-space: nowrap;
}

.c-table02 td.fw {
  font-weight: 500;
  padding: 10.5px 20px;
  border-left: 0;
}

.c-table02__header td {
  padding: 11.5px 5px;
  font-weight: 500;
  position: -webkit-sticky;
  position: sticky;
  top: -26px;
  z-index: 1;
  border-top: 1px solid var(--border2);
  background: var(--white);
  text-align: left;
}

.c-table02__header td:first-child {
  padding-left: 20px;
}

.c-table03 {
  background: var(--white);
  border: none;
  margin: 0 15px;
}

.c-table03 td {
  border-left: 0;
  padding: 7px 0px 7px 10px;
  border-bottom: 1px solid var(--border2);
}

.c-table03 tr:last-child {
  border-bottom: hidden;
}

.c-table03 td p {
  line-height: 19px;
}

.c-table03__ttl {
  font-weight: 500;
  width: 30%;
}

.c-table03 .text-edit {
  vertical-align: top;
  text-align: left;
  position: relative;
  padding: 7px 0px 7px 7px;
}

.c-table03 .text-edit__inner {
  overflow: hidden;
}

.c-table03 .text-edit__box {
  height: 100%;
  overflow-y: auto;
}

.c-table03 .text-edit .c-icon-hover {
  position: absolute;
  right: 0;
  top: 7px;
  border-radius: 50%;
  background: var(--white);
}

.c-table01--edit {
  width: calc(100% - 1px);
}

.c-table01--edit tr:last-child td:first-child {
  border-bottom-left-radius: 4px;
}

.c-table01--edit tr:last-child td:last-child {
  border-bottom-right-radius: 4px;
}

.c-table01--edit .c-form-group__checkbox {
  margin-top: -10px;
  user-select: none;
}

.c-table01--edit td {
  white-space: nowrap;
  position: relative;
  padding: 0 15px;
  height: 40px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  border-left: solid 1px var(--border2);
}

.c-table01--edit td [type="checkbox"]:checked + label, .c-table01--edit td [type="checkbox"]:not(:checked) + label {
  padding-left: 15px;
}

.c-table01--edit td:first-child {
  width: 45px;
  border-left: 0;
}

.c-table01--edit td:nth-child(2) {
  width: 45px;
  border-left: 0;
}

.c-table01--edit td:last-child {
  width: 160px;
}

.c-table01--edit td p {
  overflow: hidden;
  width: 100px;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.c-table01--edit td input {
  height: 40px;
}

.c-table01--edit td.icon {
  width: 20px;
  text-align: center;
  cursor: pointer;
  padding-left: 8px;
}

.c-table01--edit td.icon .icon__hover {
  width: 26px;
  height: 26px;
  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;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.c-table01--edit td.icon .icon__hover:hover {
  background: var(--white);
  border-radius: 50%;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
}

.c-table01--edit td.icon img {
  width: 20px;
  height: 20px;
  max-width: none;
}

.c-table01--edit tr {
  cursor: pointer;
}

.c-table01--edit tr:hover {
  position: relative;
  z-index: 1;
}

.c-table01--edit tr:hover td {
  background: var(--hover-table);
}

.c-table01--edit tr:hover .c-select__arrow {
  opacity: 1;
}

.c-table01--edit tr:hover p {
  color: var(--green);
}

.c-table01--edit tr:hover .c-icon-hover {
  background: #F6F6F6;
}

.c-table01--edit tr:hover .btn-edit, .c-table01--edit tr:hover .icon-download {
  opacity: 1;
  pointer-events: all;
}

.c-table01--edit tr.bg-yellow td {
  background: rgba(255, 255, 153, 0.5);
}

.c-table01--edit tr.td-bg td {
  background: var(--sub-green);
}

.c-table01--edit tr.td-bg td .c-icon-hover {
  background: var(--sub-green);
}

.c-table01--edit .c-table01__header td,
.c-table02 .c-table02__header td,
.c-table01 .c-table01__header td {
  padding: 11.5px 15px;
  position: -webkit-sticky;
  position: sticky;
  z-index: 3;
  background: #F4F3E4 !important;
}

.c-table01--edit .btn-edit, .c-table01--edit .icon-download {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.c-table01--edit .btn-edit {
  right: 10px;
}

.c-table01--edit .btn-edit__popup {
  position: absolute;
  background: var(--white);
  -webkit-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.28);
          box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.28);
  border-radius: 2px;
  width: 498px;
  right: 0;
  bottom: -150px;
  padding: 24px;
  display: none;
}

.c-table01--edit .btn-edit__popup .c-form-group__input {
  width: 100%;
}

.c-table01--edit .btn-edit__popup.active {
  opacity: 1;
  pointer-events: all;
}

.c-table01--edit .btn-edit__popup input {
  background: transparent;
}

.c-table01--edit .btn-edit__popup .c-button-group {
  margin-top: 24px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-table01--edit .btn-edit__close {
  position: absolute;
  width: 40px;
  height: 40px;
  cursor: pointer;
  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;
  right: 0;
  top: 0;
}

.c-table01--edit .icon-download {
  right: 0;
}

.c-table01--edit .c-select {
  width: 88px;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 4px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.c-table01--edit .c-select:focus-within, .c-table01--edit .c-select.active {
  border-color: var(--green);
  -webkit-box-shadow: 0px 0px 4px var(--green);
          box-shadow: 0px 0px 4px var(--green);
}

.c-table01--edit .c-select:focus-within .c-select__arrow, .c-table01--edit .c-select.active .c-select__arrow {
  opacity: 1;
}

.c-table01--edit .c-select select {
  height: 40px;
  padding: 0 10px 0 5px;
  background: transparent;
  display: block;
}

.c-table01--edit .c-select__arrow {
  right: 5px;
  opacity: 0;
  width: 15px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.c-table01--edit .c-icon-hover {
  background: var(--white);
  border-radius: 50%;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.c-table01--edit .c-icon-hover__title {
  bottom: -15px;
  z-index: 0;
  left: 40%;
}

.c-table-box tr:hover .c-icon-hover {
  background: transparent;
}

.c-table-box .c-icon-hover {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-table-box .c-icon-hover a {
  color: #547100;
  cursor: pointer;
  text-decoration: underline;
}

.c-table-box .c-icon-hover__title {
  bottom: -20px;
  left: 50%;
}

.table-fixed-left td.fixed, .table-fixed-left02 td.fixed {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  border-right: 1px solid var(--border2);
}

.table-fixed-left td.fixed--02, .table-fixed-left02 td.fixed--02 {
  border-right: 0;
  border-left: 1px solid var(--border2);
}

.table-fixed-left .c-table01__header td.fixed, .table-fixed-left02 .c-table01__header td.fixed {
  z-index: 4;
}

.table-fixed-left td:nth-child(2) {
  border-left: none;
}

.table-fixed-left02 table {
  border-left: 0;
}

.table-fixed-left02 table td {
  border-radius: 0 !important;
}

.table-fixed-left02 table td:nth-child(3) {
  border-left: none;
}

.table-fixed-left02 table td.fixed {
  left: 46px;
}

.table-fixed-left02 table td.fixed--02 {
  left: 0;
}

/*------------------------------------------------------------
   Select, input,...
------------------------------------------------------------*/
.c-select {
  position: relative;
  cursor: pointer;
}

.c-header .c-select {
  margin-left: 10px;
}

.c-select__arrow {
  position: absolute;
  width: 15px;
  pointer-events: none;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-select--02 select {
  border-radius: 4px;
  padding: 0px 10px 0px 10px;
  width: 100%;
  height: 35px;
  border: solid 1px transparent;
  border: 1px solid #BABABA;
}

.c-select--02 select option {
  display: block;
  background: var(--white);
}


.c-select--02 .c-select__arrow {
  right: 10px;
}

.c-select.color select {
  color: #A2A2A2;
}

.c-select.color select option {
  color: #000000;
}

select {
  cursor: pointer;
  font-family: noto-sans-cjk-jp, sans-serif;
  border: 0;
  background: transparent;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 10px;
  font-size: 1.4rem;
  line-height: 1.4;
}

select::-ms-expand {
  display: none;
}

input {
  font-family: noto-sans-cjk-jp, sans-serif;
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0;
  display: block;
  font-size: 1.6rem;
  width: 100%;
  height: 35px;
  box-sizing: border-box;
  resize: none;
}

input:focus {
  border-color: var(--green);
}

input.input02 {
  background: transparent;
  border: 1px solid #BABABA;
  padding: 10px;
  border-radius: 4px;
}

input.input02::-webkit-input-placeholder {
  color: #A2A2A2;
}

input.input02:-ms-input-placeholder {
  color: #A2A2A2;
}

input.input02::-ms-input-placeholder {
  color: #A2A2A2;
}

input.input02::placeholder {
  color: #A2A2A2;
  font-size: 5.9rm;
}

input.input02:focus {
  border-color: var(--green);
  -webkit-box-shadow: 0px 0px 4px var(--green);
          box-shadow: 0px 0px 4px var(--green);
}

input.input03,
.c-profile__body dd {
  background: #fafafa;
  border: 1px solid #BABABA;
  padding: 10px 10px;
  font-size: 1.6rm;
  border-radius: 4px;
  height: 49px;
}

textarea {
  resize: vertical;
  font-size: 1.6rem;
  background: var(--white);
  font-family: noto-sans-cjk-jp, sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 1px #E0E0E0;
  border-radius: 4px;
  line-height: 1.4;
  padding: 24px;
}

textarea::-webkit-input-placeholder {
  color: var(--black);
}

textarea:-ms-input-placeholder {
  color: var(--black);
}

textarea::-ms-input-placeholder {
  color: var(--black);
}

textarea::placeholder {
  color: var(--black);
}

textarea:focus {
  border-color: var(--green) !important;
  -webkit-box-shadow: 0px 0px 4px var(--green);
          box-shadow: 0px 0px 4px var(--green);
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 4px;
  cursor: pointer;
  font-size: 1.5rem;
  font-family: noto-sans-cjk-jp, sans-serif;
  line-height: 20px;
  display: inline-block;
  color: var(--black);
}

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border: 1px solid #CDCDCD;
  border-radius: 100%;
  background: var(--white);
}

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
  content: '';
  width: 9px;
  height: 9px;
  background: var(--green);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 2.2px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type="radio"]:not(:checked) + label:after {
  opacity: 0;
}

[type="radio"]:checked + label:after {
  opacity: 1;
}

[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type="checkbox"]:checked + label,
[type="checkbox"]:not(:checked) + label {
  position: relative;
  padding: 2.3px 1.3px 0 31px;
  cursor: pointer;
  font-size: 1.6rem;
  font-family: noto-sans-cjk-jp, sans-serif;
  line-height: 20px;
  display: inline-block;
  color: var(--black);
}

[type="checkbox"]:checked + label:before,
[type="checkbox"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #CDCDCD;
  background: var(--white);
}

[type="checkbox"]:checked + label:before {
  background: var(--green);
  border-color: var(--green);
}

[type="checkbox"]:checked + label:after,
[type="checkbox"]:not(:checked) + label:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 3px;
  width: 11px;
  height: 8px;
  background: url("../images/icon/Icon_Artwork.svg");
  background-size: cover;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
}

[type="checkbox"]:checked + label:after {
  opacity: 1;
}

/*  検索フォームのキャンセルボタン設定  */
input[type="search"]::-webkit-search-cancel-button {
  height: 16px;
  width: 16px;
}

.check-all [type="checkbox"]:checked + label:after, .check-all [type="checkbox"]:not(:checked) + label:after {
  width: 10px;
  height: 2px;
  background: url("../images/icon/minus.svg") center;
  background-size: cover;
}

.c-form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-form-group--centerR {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-form-group--centerR .c-form-group__ttl {
  margin-right: 10px;
  white-space: nowrap;
  font-size: 1.6rem;
}

.c-form-group--mrb textarea {
  margin-top: 10px;
}

.c-form-group--disabled .c-form-group__ttl {
  margin-bottom: 5px;
}

.c-form-group .c-form-group__ttl.ml {
  margin-left: 30px;
}

.c-form-group__radio {
  width: 100%;
}

.c-form-group__radio input {
  display: none;
}

.c-form-group__checkbox input {
  display: none;
}

.c-form-group__dropdown {
  padding: 5px 0 20px 0;
  display: none;
}

.c-form-group__child {
  margin-top: 10px;
}

.c-form-group__child .c-form-group__radio label {
  color: #959595;
}

.c-form-group--csv .c-select {
  width: auto;
  border: 1px solid #CDCDCD;
  background: var(--white);
  border-radius: 4px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.c-form-group--csv .c-select__csv {
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

.c-form-group--csv .c-select__arrow {
  right: 10px;
}

.c-form-group--csv .c-select select {
  width: 100%;
  height: 100%;
  text-indent: 25px;
  padding-right: 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@-moz-document url-prefix() {
  .c-form-group--csv .c-select select {
    text-indent: 8px;
  }
}

.c-form-group--csv .c-select select option {
  width: 100%;
}

.c-form-group--disabled .c-form-group__input {
  background: var(--bg-main);
}

.c-form-group--file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.c-form-group--file .c-form-group__input {
  width: calc(100% - 30px);
}

.c-form-group--file .input02 {
  background: transparent;
}

.c-form-group--file .file {
  display: none;
}

.c-form-group--file .c-icon-hover {
  width: 22px;
}

.c-form-group--file .c-icon-hover__title {
  left: auto;
  -webkit-transform: none;
          transform: none;
  right: 0;
  width: 125px;
}

.c-form-group .c-error {
  position: relative;
}

.c-form-group .c-error .count {
  font-size: 1.3rem;
  color: #A2A2A2;
  position: absolute;
  right: 0;
  top: 0;
}

.c-form-group .c-error .count.active .after {
  color: var(--error-color);
}

.c-form-group .c-error .count.active.black .after {
  color: var(--error-color);
}

.c-form-group .c-error .count.black .after {
  color: var(--black);
}

.c-form-group input.error {
  border-color: var(--error-color);
}

.c-form-group input.error:focus {
  border-color: var(--error-color);
  -webkit-box-shadow: 0px 1px 0px 0px var(--error-color);
          box-shadow: 0px 1px 0px 0px var(--error-color);
}

.c-form-group textarea.error {
  border-color: var(--error-color) !important;
  -webkit-box-shadow: 0px 0px 0px 1px var(--error-color);
          box-shadow: 0px 0px 0px 1px var(--error-color);
}

.c-form-group textarea.error:focus {
  border-color: var(--error-color) !important;
  -webkit-box-shadow: 0px 0px 0px 1px var(--error-color);
          box-shadow: 0px 0px 0px 1px var(--error-color);
}

.c-form-group label.error {
  background-image: url("../images/icon/icon-!.svg");
  background-repeat: no-repeat;
  background-position: left 0 center;
  background-size: 16px 16px;
  color: var(--error-color);
  font-size: 1.3rem;
  padding: 1px 40px 1px 20px;
  margin-top: 5px;
  line-height: 1.1;
  display: block;
}

.c-make-color {
  background: var(--bg-main);
  border-radius: 4px;
  padding: 24px 24px 16px 24px;
  margin-right: 0;
}

.c-make-color__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 0 -8px;
}

.c-make-color__item {
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px;
  position: relative;
  margin-left: 8px;
  width: 182px;
  margin-bottom: 8px;
}

.c-make-color__item:after {
  content: '';
  height: 100%;
  width: 1px;
  background: var(--border2);
  position: absolute;
  left: 88px;
}

.c-make-color .color {
  width: 80px;
  height: 28px;
  cursor: pointer;
  margin-left: 8px;
}

.c-make-color .t {
  width: 80px;
  margin-right: 8px;
  text-align: center;
}

.c-make-color__popup {
  position: absolute;
  width: 182px;
  background: var(--white);
  -webkit-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.28);
          box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.28);
  border-radius: 2px;
  z-index: 1;
  right: -120px;
  top: 50px;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.c-make-color__popup.active {
  opacity: 1;
  pointer-events: all;
}

.c-make-color__popup ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -8px;
}

.c-make-color__popup ul li {
  width: 24px;
  height: 24px;
  -webkit-box-shadow: 0px 0px 0px 1px var(--border2);
          box-shadow: 0px 0px 0px 1px var(--border2);
  border-radius: 2px;
  border: 2px solid #FFFFFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  padding: 1px;
  margin: 0 0 6px 6px;
}

.c-make-color__popup ul li span {
  display: block;
  height: 100%;
  width: 100%;
}

.c-search {
  position: relative;
  height: 36px;
  width: 100%;
  border: 1px solid #CDCDCD;
  background: var(--white);
  border-radius: 4px;
}

.c-search button {
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.c-search input {
  width: 100%;
  background: var(--white);
  height: 100%;
  border-radius: 4px;
  border: 0;
  padding: 0 15px 0 40px;
}

.c-search input::-webkit-input-placeholder {
  color: #BDBDBD;
}

.c-search input:-ms-input-placeholder {
  color: #BDBDBD;
}

.c-search input::-ms-input-placeholder {
  color: #BDBDBD;
}

.c-search input::placeholder {
  color: #BDBDBD;
}

.c-form-group--search {
  margin-top: 5px;
  padding: 20px;
  position: relative;
}

.c-form-group--search .c-search {
  position: relative;
}

.c-form-group--search .c-search.active {
  border-color: var(--green);
}

.c-form-group--search__content {
  margin-top: 10px;
  position: absolute;
  background: var(--white);
  -webkit-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.28);
          box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.28);
  width: 100%;
  left: 0;
  top: -8px;
  padding-top: 60px;
  border-radius: 2px;
  display: none;
}

.c-form-group--search__content__inner {
  height: 150px;
  overflow: hidden;
}

.c-form-group--search__content__box {
  height: 100%;
  overflow-y: auto;
}

.c-form-group--search__content ul li {
  cursor: pointer;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  padding: 8px 20px;
}

.c-form-group--search__content ul li:hover {
  background: var(--border2);
}

.c-form-group--search__over {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  display: none;
}

/*------------------------------------------------------------
   Breadcrumb
------------------------------------------------------------*/
.c-breadcrumb li {
  display: inline;
}

.c-breadcrumb li a {
  color: #7F7F7F;
}

.c-breadcrumb li:before {
  content: '>';
  color: #222222;
  padding: 0 12px;
  display: inline-block;
}

.c-breadcrumb li:last-child a {
  font-weight: bold;
  color: var(--black);
  font-weight: bold;
  pointer-events: none;
}

.c-breadcrumb li:first-child::before {
  display: none;
}

/*------------------------------------------------------------
  Modal
------------------------------------------------------------*/
.c-modal, .c-modal02 {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 105;
  background: rgba(0, 0, 0, 0.3);
  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;
  overflow-y: auto;
  opacity: 0;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  pointer-events: none;
}

.c-modal.active, .c-modal02.active {
  opacity: 1;
  pointer-events: all;
}

.c-modal__inner, .c-modal02__inner {
  background: var(--white);
  width: 498px;
  padding: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: auto;
  z-index: 1;
}

.c-modal__head, .c-modal02__head {
  position: relative;
  width: 100%;
}

.c-modal__head__title, .c-modal02__head__title {
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 22px;
  padding-right: 20px;
}

.c-modal__head__icon, .c-modal02__head__icon {
  cursor: pointer;
  width: 40px;
  height: 40px;
  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;
  position: absolute;
  right: -20px;
  top: -20px;
}

.c-modal__body, .c-modal02__body {
  margin-top: 30px;
}

.c-modal__body__form, .c-modal02__body__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-modal__body .c-form-group, .c-modal02__body .c-form-group {
  display: block;
  margin-top: 35px;
}

.c-modal__body .c-form-group:first-child, .c-modal02__body .c-form-group:first-child {
  margin-top: 0;
}

.c-modal__body .c-form-group__radio label, .c-modal02__body .c-form-group__radio label {
  padding-top: 5px;
  padding-bottom: 5px;
}

.c-modal__body .c-form-group input, .c-modal02__body .c-form-group input {
  background: transparent;
}

.c-modal__body .c-form-group textarea, .c-modal02__body .c-form-group textarea {
  border: 1px solid #BABABA;
  resize: none;
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  height: 190px;
}

.c-modal__body .c-form-group textarea::-webkit-input-placeholder, .c-modal02__body .c-form-group textarea::-webkit-input-placeholder {
  color: #A2A2A2;
}

.c-modal__body .c-form-group textarea:-ms-input-placeholder, .c-modal02__body .c-form-group textarea:-ms-input-placeholder {
  color: #A2A2A2;
}

.c-modal__body .c-form-group textarea::-ms-input-placeholder, .c-modal02__body .c-form-group textarea::-ms-input-placeholder {
  color: #A2A2A2;
}

.c-modal__body .c-form-group textarea::placeholder, .c-modal02__body .c-form-group textarea::placeholder {
  color: #A2A2A2;
}

.c-modal__body .ttl, .c-modal02__body .ttl {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.c-modal__body .title, .c-modal02__body .title {
  font-size: 1.6rem;
  font-weight: 700;
}

.c-modal__footer, .c-modal02__footer {
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-top: 30px;
}

.c-modal__footer .c-button-group, .c-modal02__footer .c-button-group {
  border-top: 1px solid var(--border1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 24px 0 24px;
}

.c-modal__over, .c-modal02__over {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.c-modal .c-table-box--csv.c-table-box, .c-modal02 .c-table-box--csv.c-table-box {
  height: calc(100vh - 490px);
  min-height: 350px;
  overflow: hidden;
}

.c-modal .c-table-box--csv.c-table-box__inner, .c-modal02 .c-table-box--csv.c-table-box__inner {
  height: 100%;
  overflow: auto;
}

.c-modal .c-table-box--csv.c-table-box .c-table01 td, .c-modal02 .c-table-box--csv.c-table-box .c-table01 td {
  white-space: nowrap;
}

.c-modal .c-table-box--csv.c-table-box .c-table01 td:nth-child(8), .c-modal02 .c-table-box--csv.c-table-box .c-table01 td:nth-child(8) {
  text-align: left;
  width: 100px;
}

.c-modal .c-table-box--csv.c-table-box .c-table01 td:nth-child(9), .c-modal02 .c-table-box--csv.c-table-box .c-table01 td:nth-child(9) {
  text-align: left;
  width: 120px;
}

.c-modal .c-table-box--csv.c-table-box .c-table01 tbody td, .c-modal02 .c-table-box--csv.c-table-box .c-table01 tbody td {
  color: #666666;
}

.c-modal .c-table-box--csv.c-table-box .c-table01 tbody tr:nth-child(even) td, .c-modal02 .c-table-box--csv.c-table-box .c-table01 tbody tr:nth-child(even) td {
  background: var(--bg-main);
}

.c-modal .c-table-box--csv.c-table-box .c-table01__header td, .c-modal02 .c-table-box--csv.c-table-box .c-table01__header td {
  border-bottom: solid 1px #CDCDCD;
}

.c-modal .c-paginator02, .c-modal02 .c-paginator02 {
  position: static;
  background: transparent;
  padding: 24px 0 0 0;
  background: transparent;
}

.c-modal--change-password .c-modal02__inner, .c-modal02--change-password .c-modal02__inner {
  width: 390px;
}

.c-modal--change-password .c-modal02__footer, .c-modal02--change-password .c-modal02__footer {
  margin-top: 0;
  padding: 0 25px;
}

.c-modal--change-password .c-modal02__footer .c-button-group, .c-modal02--change-password .c-modal02__footer .c-button-group {
  border: 0;
  padding-top: 10px;
}

.c-modal--change-password .c-form-group__title, .c-modal02--change-password .c-form-group__title {
  color: #666666;
}

.c-modal.c-modal02, .c-modal02.c-modal02 {
  z-index: 106;
}

.c-modal-loading {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  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;
  overflow-y: auto;
  opacity: 0;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  pointer-events: none;
}

.c-modal-loading.active {
  opacity: 1;
  pointer-events: all;
}

.c-modal-loading__inner {
  background: var(--white);
  -webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  width: 300px;
  padding: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: auto;
  z-index: 1;
}

.c-modal-loading__head {
  position: relative;
  width: 100%;
}

.c-modal-loading__head__icon {
  cursor: pointer;
  width: 40px;
  height: 40px;
  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;
  position: absolute;
  right: -20px;
  top: -20px;
}

.c-modal-loading .c-button-group {
  margin-top: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-modal-loading .c-button-group .btn {
  height: 40px;
  width: 140px;
}

.c-modal-loading__item {
  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;
}

.c-modal-loading .text {
  color: #666666;
  font-size: 1.7rem;
  font-weight: 500;
  margin-left: 10px;
}

.c-modal-loading .loader {
  width: 58px;
  height: 58px;
  border: 5px solid var(--green);
  border-top-color: var(--border2);
  border-radius: 50%;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.c-modal-loading .done {
  opacity: 0;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(0.05);
            transform: scale(0.05);
  }
  40% {
    -webkit-transform: scale(1.14);
            transform: scale(1.14);
  }
  75% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(0.05);
            transform: scale(0.05);
  }
  40% {
    -webkit-transform: scale(1.14);
            transform: scale(1.14);
  }
  75% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.c-modal-loading.active .done {
  -webkit-animation: scale 1.5s ease-in-out;
          animation: scale 1.5s ease-in-out;
  opacity: 1;
}

.c-modal--save-search table {
  border-color: #CDCDCD;
  margin-top: 10px;
}

.c-modal--save-search table th {
  color: #959595;
  font-weight: 400;
  border-right: solid 1px #CDCDCD;
  width: 100px;
}

.c-modal--save-search table th, .c-modal--save-search table td {
  border-top: solid 1px #CDCDCD;
  padding: 14px 10px;
}

.c-modal--save-search table th span, .c-modal--save-search table td span {
  margin-right: 10px;
  display: inline;
  line-height: 1.4;
}

.c-modal--save-search table th span:last-child, .c-modal--save-search table td span:last-child {
  margin-right: 0;
}

.c-chart {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: calc(100% - 60px);
}

.c-chart__item {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  position: relative;
}

.c-chart__item svg {
  width: 100%;
  height: 100%;
}

.c-chart .doughnutSummary {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  cursor: default;
}

.c-chart .doughnutSummaryTitle {
  color: #A2A2A2;
  font-size: 1.2rem;
}

.c-chart .doughnutSummaryNumber {
  width: 100%;
  color: #222222;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  font-size: 3.8rem;
}

.c-chart__notes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  overflow: hidden;
  overflow-x: auto;
}

.c-chart__notes li {
  white-space: nowrap;
  margin-right: 10px;
}

.c-chart__notes li:last-child {
  margin-right: 0;
}

.c-chart__notes .title {
  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;
}

.c-chart__notes .title span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
}

.c-chart__notes .title p {
  font-size: 1.2rem;
}

.c-chart__notes .number {
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
}

/*------------------------------------------------------------
  paginate
------------------------------------------------------------*/
/* paginator */
.c-paginator02 {
  position: absolute;
  right: 0;
  width: 100%;
  bottom: 0;
  z-index: 4;
  padding: 0 30px 12px 30px;
  background: var(--bg-main);
  margin-bottom: -15px;
}

.c-paginator02 div {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-paginator02 button {
  width: 25px;
  height: 25px;
  cursor: pointer;
  border-radius: 0.25rem;
  margin-left: 10px;
  background: transparent;
  border: 1px solid #CDCDCD;
  font-weight: 400;
  margin-top: 7.5px;
}

.c-paginator02 button:first-child, .c-paginator02 button:last-child, .c-paginator02 button:nth-child(2), .c-paginator02 button:nth-last-child(2) {
  border: none;
}

.c-paginator02 button:first-child, .c-paginator02 button:last-child {
  width: auto;
  margin: 0;
  padding-top: 6.5px;
}

.c-paginator02 button.color_page {
  background: var(--green);
  font-weight: 700;
}

.c-paginator02 span {
  color: #8c8c8c;
}

.c-paginator02 span:first-child {
  margin-right: 15px;
}

.c-paginator02 span:last-child {
  margin-right: 0px;
}

.c-paginator02 .title {
  color: #000000;
  vertical-align: 7.5px;
  font-weight: 400;
  font-size: 1.4rem;
}

.c-paginator02 .page-num_span,
.c-paginator02 .page-num_disp {
  vertical-align: 7.5px;
  margin-right: 7px;
}

.c-paginator02 select {
  width: 66px;
  padding: 0 1rem;
  border-radius: 4px;
  height: 24px;
  border: 1px solid #CDCDCD;
  background: url("../images/icon/arrow-select.svg") right #fff;
  background-position-x: 80%;
  -webkit-appearance: none;
  background-repeat: no-repeat;
  margin-right: 15px;
}

.c-paginator02 .select2-container {
  margin: 0 10px -10px 10px;
}
.c-paginator02 span:nth-child(2) {
  margin-bottom: 10px;
}
/*------------------------------------------------------------
  Form
------------------------------------------------------------*/
.c-form .title02 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.c-form__title {
  font-weight: 500;
  font-size: 2.0rem;
  white-space: nowrap;
  padding: 0.2rem 2rem;
  border-left: 4px solid var(--green);
  margin-bottom: 20px;
}

.c-form__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--white);
  border: 1px solid var(--border1);
  border-radius: 4px;
  padding: 24px;
  margin-top: 10px;
}

.c-form__box span {
  margin: 0 20px 0 0;
}

@media only screen and (max-width: 1270px) {
  .c-form__box span {
    margin: 0 10px 0 2px;
  }
}

.c-form .text-and {
  margin: 5px 10px 0 -10px;
}

@media only screen and (max-width: 1270px) {
  .c-form .text-and {
    margin-left: 0;
  }
}

.c-form .c-form-group {
  width: 25vw;
  margin-right: 20px;
  position: relative;
}

@media only screen and (max-width: 1270px) {
  .c-form .c-form-group {
    margin-right: 10px;
  }
}

.c-form .c-form-group--w1 {
  width: 25vw;
}

.c-form .c-form-group--w2 {
  width: 3.5vw;
}

@media only screen and (max-width: 1440px) {
  .c-form .c-form-group--w2 {
    width: 45px;
  }
}

.c-form .c-form-group--w3 {
  width: 6.3vw;
}

@media only screen and (max-width: 1440px) {
  .c-form .c-form-group--w3 {
    width: 100px;
  }
}

.c-form .c-form-group__input {
  width: 100%;
}

.c-form .c-form-group__input--calendar {
  position: relative;
}

.c-form .c-form-group__input--calendar input {
  cursor: pointer;
}

.c-form .c-form-group__input--calendar img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 5px;
  pointer-events: none;
}

.c-form .c-form-group__input.datetime-local input {
  background-image: url("../images/icon/calendar.svg");
  background-repeat: no-repeat;
  background-position: center right 5px;
}

.c-form .c-form-group input {
  background: transparent;
}

.c-form .c-form-group .c-select {
  width: 100%;
}

.c-form .c-form-group .c-select select {
  height: 35px;
}

.c-form .c-form-group .title {
  font-size: 1.3rem;
  position: absolute;
  top: -25px;
  white-space: nowrap;
}

.c-form__item {
  margin-top: 30px;
}

.c-form__item--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 45px 0;
}

.c-form__item--flex .c-form__title {
  width: auto;
  margin-right: 15px;
}

.c-form__item--flex .c-form-group {
  margin-right: 30px;
}

.c-form__item--01 .c-form__box {
  padding-top: 35px;
}

.c-form__item--02 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-form__item--02 .c-form__box {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-form__item--03 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-form__item--04 .c-form-group {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-form__item--04 .c-form-group__input {
  width: 70px;
}

.c-form__item--04 .c-form-group span {
  margin-right: 15px;
  display: block;
}

.c-form__item--04 .c-form-group span:last-child {
  margin: 0 0 0 15px;
}

.c-form__item--05 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-form__item--05 .c-form__box {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-form__item--05 .c-form-group {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 295px;
}

.c-form__item--05 .c-form-group span {
  margin: 0 5px;
}

.c-form__item--05 .c-form-group span:first-child {
  margin-left: 0;
}

.c-form__item--05 .c-form-group .c-select {
  width: 55px;
  margin-left: 10px;
}

.c-form__item--05 .c-form-group:last-child {
  width: calc(100% - 295px);
}

.c-form__item--05 .c-form-group:last-child .c-form-group__input {
  width: 25vw;
}

.c-form__item--05 .title02 {
  width: 100%;
}

.c-form__list {
  width: 255px;
}

.c-form__list:last-child {
  margin-left: 30px;
}

.c-form__list__inner {
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--border1);
  padding: 5px 15px 15px 15px;
  margin-top: 10px;
  position: relative;
}

.c-form__list li {
  background: var(--hover-secondary);
  border: solid 1px var(--green);
  padding: 8.5px 15px;
  margin-top: 9px;
  font-size: 1.5rem;
  border-radius: 4px;
  position: relative;
  cursor: all-scroll;
}

.c-form__list li .icon-delete {
  width: 15px;
  height: 15px;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  vertical-align: middle;
  padding: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}

.c-form__list li .icon-delete:hover {
  background: #C4DF9B;
}

.c-form__list li .icon-delete:before, .c-form__list li .icon-delete:after {
  content: '';
  background: var(--black);
  position: absolute;
  width: 10px;
  height: 1px;
}

.c-form__list li .icon-delete:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 7px;
  left: 3px;
}

.c-form__list li .icon-delete:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 7px;
  left: 3px;
}

.c-form__list__btn {
  background: #F6F6F6;
  margin-top: 20px;
  border-radius: 4px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  width: 88px;
  font-size: 1.2rem;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.c-form__list__btn .icon {
  width: 8px;
  height: 8px;
  position: relative;
  display: block;
  margin: 0;
}

.c-form__list__btn .icon:before, .c-form__list__btn .icon:after {
  content: '';
  background: var(--black);
  position: absolute;
}

.c-form__list__btn .icon:before {
  width: 100%;
  height: 2px;
  top: 3px;
  left: 0;
}

.c-form__list__btn .icon:after {
  width: 2px;
  height: 100%;
  left: 3px;
}

.c-form__list__btn .text {
  margin: 0;
  width: calc(100% - 20px);
}

.c-form__list--02 {
  width: calc(100% - 255px);
}

.c-form__list--02 .c-form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 20px;
}

.c-form__list--02 .c-form-group__title {
  width: 60px;
  margin-right: 15px;
}

.c-form__list--02 .c-form-group .c-select {
  width: 25vw;
}

.c-form__list--02 .c-form-group__select-fake {
  width: 25vw;
}

.c-form__list .c-row-group {
  position: absolute;
  width: 300px;
  background: var(--white);
  z-index: 1;
  -webkit-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.28);
          box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.28);
  border-radius: 2px;
  padding: 40px 24px 0 24px;
  left: 0;
  margin-top: 10px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.c-form__list .c-row-group.active {
  opacity: 1;
  pointer-events: all;
}

.c-form__list .c-row-group__icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 15px;
}

.c-form__list .c-row-group table {
  border: 0;
  border-collapse: separate;
  border-spacing: 0 1px;
}

.c-form__list .c-row-group table td {
  border: 1px solid var(--border1);
  border-top-color: transparent;
  border-right-color: transparent;
  border-left-color: transparent;
  padding: 9.5px 5px;
  width: 50%;
}

.c-form__list .c-row-group table tr:first-child td {
  border-top: 1px solid var(--border1);
}

.c-form__list .c-row-group table tr:first-child td:hover, .c-form__list .c-row-group table tr:first-child td.active {
  border-color: var(--green);
}

.c-form__list .c-row-group__item {
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  cursor: pointer;
  position: relative;
}

.c-form__list .c-row-group__item:hover, .c-form__list .c-row-group__item.active {
  background: var(--sub-green);
  border: solid 1px var(--green);
}

.c-form__list .c-row-group__item:hover:after, .c-form__list .c-row-group__item.active:after {
  opacity: 1;
}

.c-form__list .c-row-group__item.active {
  pointer-events: none;
}

.c-form .c-button-group {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 24px 0;
}

.c-form .c-form-group__select-fake {
  position: relative;
}

.c-form .c-form-group__select-fake input {
  cursor: pointer;
  padding-right: 30px;
  width: 100%;
}

.c-form .c-form-group__select-fake .arrow {
  position: absolute;
  right: 10px;
  width: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-form .c-form-group .c-checkbox-popup {
  background: var(--white);
  -webkit-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.28);
          box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.28);
  border-radius: 2px;
  min-width: 140px;
  height: 205px;
  padding: 15px;
  position: absolute;
  z-index: 1;
  margin-top: 5px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.c-form .c-form-group .c-checkbox-popup__inner {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.c-form .c-form-group .c-checkbox-popup.active {
  opacity: 1;
  pointer-events: all;
}

.c-form .c-form-group .c-checkbox-popup .c-form-group__checkbox {
  margin-top: 10px;
}

.c-form .c-form-group .c-checkbox-popup .c-form-group__checkbox label {
  font-size: 1.4rem;
}

.c-form .c-form-group .c-checkbox-popup .c-form-group__checkbox:first-child {
  margin-top: 0;
}

.c-form .tabs-time {
  border: 1px solid var(--border1);
  background: var(--white);
  border-radius: 4px;
  padding: 15px 15px 24px 15px;
}

.c-form .tabs-time ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 38px;
  background: #F6F6F6;
  border-radius: 4px;
}

.c-form .tabs-time ul li {
  background: #F6F6F6;
  width: 60px;
  height: 100%;
  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;
  cursor: pointer;
  border: 1px solid var(--border2);
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  margin-left: 1px;
}

.c-form .tabs-time ul li:hover, .c-form .tabs-time ul li.active {
  background: #F6FFDC;
  border-color: var(--green);
}

.c-form .tabs-time ul li:first-child {
  border-radius: 4px 0 0 4px;
  margin-left: 0;
}

.c-form .tabs-time ul li:last-child {
  border-radius: 0 4px 4px 0;
}

.c-form .tabs-time ul li.active {
  pointer-events: none;
}

.c-form .tabs-time__content {
  display: none;
}

.c-form .tabs-time .box {
  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;
  margin-top: 10px;
}

.c-form .tabs-time .box span {
  margin: 0 0 0 5px;
}

.c-form .tabs-time .box .c-select:first-child {
  margin-left: 0;
}

.c-form .tabs-time .box .c-select.w1 {
  width: 82px;
}

.c-form--02.c-form .c-form-group {
  display: block;
  margin-bottom: 15px;
  width: 100%;
}

.c-form--02.c-form .c-form-group.is-error svg path {
  fill: var(--error-color);
}

.c-form--02.c-form .c-form-group.is-error .c-form-group__input:focus-within .c-form-group__icon svg path {
  fill: var(--error-color);
}

.c-form--02.c-form .c-form-group__title {
  font-weight: 500;
}

.c-form--02.c-form .c-form-group__icon {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  /*background: var(--white);*/
  cursor: pointer;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.c-form--02.c-form .c-form-group__icon.js-show-password {
  opacity: 0;
  pointer-events: none;
  top: 50%;
  background: none;
}

.c-form--02.c-form .c-form-group__icon svg path {
  fill: #A7A7A7;
}

.c-form--02.c-form .c-form-group__input {
  position: relative;
}

.c-form--02.c-form .c-form-group__input:focus-within {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.c-form--02.c-form .c-form-group__input:focus-within .c-form-group__icon svg path {
  fill: var(--main-color);
}

.c-form--02.c-form .c-form-group__input--icon input {
  padding-right: 30px;
}

.c-form--02.c-form .c-form-group__input.active .js-hidden-password {
  opacity: 0;
  pointer-events: none;
}

.c-form--02.c-form .c-form-group__input.active .js-show-password {
  opacity: 1;
  pointer-events: all;
  top: 50%;
}

.c-form--02.c-form .c-button-group .btn {
  border-radius: 2px;
  width: 100%;
  height: 42px;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

input::-webkit-clear-button {
  display: none;
}

.filter-multi-select:focus-within,
.select2-selection:focus-within {
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 4px var(--green);
          box-shadow: 0px 0px 4px var(--green);
}

.c-modal__alert {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 22px;
  padding-right: 20px;
  padding-top: 20px;
}

.point {
  color: var(--red);
}

.c-page-content .c-form-group__input input::-webkit-search-cancel-button,
.c-page-content .c-form-group input::-webkit-search-cancel-button,
.c-modal__inner input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("../images/icon/png/search_clear_button.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding-right: 0px;
}

.c-page-content .c-form-group__radio span,
.c-modal__inner .c-form-group__radio span {
  margin: 0px 15px;
}
/*# sourceMappingURL=common.css.map */

.select2-container--default .select2-selection--multiple .select2-selection__choice{
  background-color:#F6FFDC;
  border-radius:4px;
  padding: 1.5px 5px;
  padding-left: 9px;
  font-size: 1.3rem;
  position: relative;
  display: inline-flex;
  flex-flow: row-reverse;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
  background-color: transparent;
  color: #000;
  border: 0;
  font-weight: 900;
  cursor: pointer;
  position: relative;
  padding: 0 6px;
}

.select2-selection--multiple .select2-selection__choice__remove:hover{
  border-radius: 50%;
  background: radial-gradient(#127a6e,#FFF);
}

select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{
  border-left:1px solid #000;
  border-right:none;
  border-top-left-radius:0;
  border-bottom-left-radius:0;
  border-top-right-radius:4px;
  border-bottom-right-radius:4px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{
  color:#555;
  outline:none
}

.select2-container .select2-search--inline .select2-search__field{
  margin-left:8px;
  height: 23px;
}

.select2-container textarea {
  line-height: 1.6;
}

/* ▼ select2の文字色 */
.select2-search__field::-webkit-input-placeholder,
.select2-search__field::placeholder  {
  color: #999 !important;
}

/* ▼ select2チェックボックス */
.select2-results__option .wrap {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}

.select2-results__option .wrap:before,
.select2-container--default .select2-results__option--selected .wrap:before{
  background: #fff;
  border: 1px solid #a3a3a3;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
  border-radius: 10%;
}

.select2-container--default .select2-results__option--selected .wrap:before{
  background-color: var(--green);
}
/* ▲ select2チェックボックス */
/* モーダルの文字数表示されるtextareaサイズを手動で調節 */
.c-modal textarea {
  padding: 0 !important;
  width: 100%;
  height: 29px;
  resize: vertical !important;
}

#loading-panel-container {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: none;
}

#loading-panel {
    position: fixed;
    z-index: 100;
    inset: 0;
    width: 130px;
    height: 130px;
    margin: auto;
    background-color: rgba(255, 255, 255, 0);
    display: block;
}

#loading-icon-area {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.6);
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

#loading-icon-area img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
}

#loading-message {
  color: var(--bg-main);
}

#chat-notice-panel {
    position: fixed;
    z-index: 2;
    bottom: 50px;
    right: 50px;
    width: 300px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    display: none;
}


.no-decolation-link {
  cursor: default;
  text-decoration: none;
  color: #000000;
}
