@charset "UTF-8";
[v-cloak] {
  visibility: hidden;
}

pre.data_disp {
  position: fixed;
  bottom: 0;
  right: 0;
  background: #333;
  color: #fff;
  z-index: 1000;
  font-size: 10px;
  height: 5vh;
  max-width: 500px;
  overflow: auto;
  opacity: 0.8;
}
pre.data_disp:hover {
  height: 100vh;
  opacity: 1;
}

/* html
******************************************************/
html, body {
  font-family: "メイリオ", meiryo, "游ゴシック Medium", sans-serif;
  font-size: 16px;
  background-color: #fefefe;
}

*, *:before, *:after {
  font-family: "メイリオ", meiryo, "游ゴシック Medium", sans-serif !important;
}

html, body, a, p {
  color: #03241f;
}

/* 汎用スタイル
******************************************************/
.form_label {
  font-size: 12px;
  line-height: 2.5em;
  color: #367e69;
  font-weight: bold;
}
.form_label:before {
  content: "●";
  margin-right: .25em;
}

.tips {
  font-size: 12px;
  color: #f33;
  margin: 4px 0;
}

/* 共通パーツ
******************************************************/
/* ローディング */
#loadigArea {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.7);
}
#loadigArea.v-enter, #loadigArea.v-leave-to {
  opacity: 0;
}
#loadigArea.v-enter-active, #loadigArea.v-leave-active {
  transition: opacity 0.3s;
}

/* レイアウト
******************************************************/
#container {
  height: 100%;
}

#layout {
  min-width: 1000px;
  height: 100%;
}
#layout .ant-layout {
  background-color: #fefefe;
}
#layout .ant-layout-sider {
  overflow: auto;
}
#layout .ant-layout-sider.ant-layout-sider-collapsed {
  overflow: hidden;
}
#layout .ant-layout-content {
  overflow: auto;
  padding: 16px;
  background-color: #e5e9f8;
}
#layout .ant-layout-content .ant-breadcrumb {
  font-size: 12px;
}
#layout section + section {
  margin-top: 32px;
}

/* サイドメニュー
******************************************************/
#side_menu {
  border-right: 1px solid #8d9edf;
  background-color: #b5c0ea;
}
#side_menu .ant-menu {
  border-bottom: 1px solid #8d9edf !important;
  background-color: transparent;
}

.category_group {
  margin-top: 0px;
}
.category_group .ant-menu-item-group-title {
  padding: 4px 12px;
  display: flex;
  align-items: center;
  background-color: #798dd9;
  color: white;
}
.category_group .ant-menu-item-group-title .category_name {
  margin-left: .5em;
  font-size: 12px;
}
.category_group .ant-menu-item {
  margin-top: 0;
  margin-bottom: 0 !important;
  position: relative;
  transition: all 0.25s;
  height: 50px;
  line-height: 50px;
}
.category_group .ant-menu-item:not(:last-child) {
  border-bottom: 1px solid #8d9edf !important;
}
.category_group .ant-menu-item .menu_name {
  font-size: 16px;
  color: #5b6fb9;
  font-weight: bold;
}
.category_group .ant-menu-item .alert_badge {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.category_group .ant-menu-item.ant-menu-item-disabled {
  transition: none;
  pointer-events: none;
}
.category_group .ant-menu-item.ant-menu-item-disabled i.menu_icon {
  opacity: .5;
}
.category_group .ant-menu-item.ant-menu-item-disabled .menu_name {
  color: rgba(255, 255, 255, 0.3) !important;
}
.category_group .ant-menu-item.ant-menu-item-disabled:hover, .category_group .ant-menu-item.ant-menu-item-disabled:focus {
  background-color: inherit;
}
.category_group .ant-menu-item.ant-menu-item-disabled:hover .menu_name, .category_group .ant-menu-item.ant-menu-item-disabled:focus .menu_name {
  font-weight: normal;
}
.category_group .ant-menu-item:hover, .category_group .ant-menu-item:focus {
  background-color: #f1f3fb;
  padding-left: 28px !important;
}
.category_group .ant-menu-item:hover .menu_name, .category_group .ant-menu-item:focus .menu_name {
  color: #2f47a4;
}
.category_group .ant-menu-item.ant-menu-item-selected {
  background-color: #f1f3fb;
  pointer-events: none;
}
.category_group .ant-menu-item.ant-menu-item-selected .menu_name {
  color: #2f47a4;
}

/* メニュー縮小時 */
.ant-menu-inline-collapsed .ant-menu-item-group-title {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

/* アラートバッチ */
.alert_badge p {
  color: #fff;
}

/* ヘッダー
******************************************************/
#content_header {
  padding: 0 8px;
  height: 54px;
  line-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #e5e9f8;
  border-bottom: 2px solid #c9d1f0;
}
#content_header .header_left, #content_header .header_right {
  display: flex;
  align-items: center;
}
#content_header .user_id {
  padding-right: 1em;
  font-size: 14px;
}

/* コンテンツ
******************************************************/
#contents .content_area {
  margin: 45px auto;
  padding: 30px;
  border-radius: 16px;
  background-color: #fff;
  filter: drop-shadow(0 5px 10px #bbcffa);
  flex-grow: inherit;
  width: calc(100% - 90px);
  min-height: calc(100% - 90px);
}
#contents .content_area .content_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

/* button
******************************************************/
.a-btn + .a-btn {
  margin-left: 6px;
}

.ant-btn:not(.ant-btn-primary):not(.ant-btn-danger):not(:hover):not(:focus) {
  border-color: #9e9e9e;
}

/* 非活性 */
/* select
******************************************************/
.ant-select {
  min-width: 200px;
}

/* form
******************************************************/
/* テキストカラー */
.ant-input {
  color: #03241f;
}

.ant-form-item {
  color: rgba(3, 36, 31, 0.8);
}

.ant-input,
.ant-input-number,
.ant-select-selection {
  border-color: #9e9e9e;
}

.ant-select-arrow .ant-select-arrow-icon {
  color: #9e9e9e;
}

.ant-select-disabled .ant-select-selection {
  border-color: #d9d9d9;
}

/* modal
******************************************************/
/* テキストカラー */
.ant-modal-confirm-body .ant-modal-confirm-title {
  color: rgba(3, 36, 31, 0.85);
}
.ant-modal-confirm-body .ant-modal-confirm-content {
  color: rgba(3, 36, 31, 0.65);
}

/* テキストカラー（メッセージ） */
.ant-message {
  color: #03241f;
}

/* table
******************************************************/
/* 外周ボーダーを設定 */
.ant-table {
  border: 1px solid #9e9e9e;
  border-radius: 4px;
  overflow: hidden;
}

/* ボーダーの色変更 */
.ant-table-bordered .ant-table-header > table {
  border-top: none;
  border-left: none;
}

.ant-table-bordered .ant-table-body > table {
  border-left: none;
}

.ant-table-bordered .ant-table-fixed-right table thead th {
  border-left: 1px solid #dddddd;
}

/* ヘッダーテキストを中央寄せで固定 */
.ant-table-thead th {
  text-align: center !important;
}

.ant-table-thead > tr > th {
  color: #fff;
  background-color: #4db396;
}

.ant-table-thead > tr:first-child > th:last-child {
  border-top-right-radius: 0;
}

/* ソート中カラムの背景色 */
.ant-table-tbody > tr > td.ant-table-column-sort {
  background-color: #ebfff5;
}

.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters:hover .anticon-filter:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.ant-table-thead > tr > th.ant-table-column-sort,
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters .anticon-filter.ant-table-filter-open,
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:hover,
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:hover .anticon-filter {
  background-color: #71c2ab;
}

.ant-table-thead > tr > th .ant-table-filter-selected.anticon,
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down.on,
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up.on {
  color: #fff;
}

/* テーブル内のボタン */
.ant-table tbody td .btn_group .ant-btn:first-child {
  margin-bottom: 2px;
}

/* checkbox
******************************************************/
.ant-checkbox-wrapper {
  display: inline-flex;
  align-items: center;
}

/* upload
******************************************************/
.upload_file_select > span {
  display: flex;
  align-items: stretch;
}

.ant-upload-list-item {
  margin-top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.ant-upload-list.ant-upload-list-text {
  margin-left: 8px;
}

.ant-upload-list-item-name {
  padding: 1px 24px 1px 18px;
}

.ant-upload-list.ant-upload-list-text > div,
.ant-upload-list.ant-upload-list-text > div > span {
  display: flex;
  align-items: center;
  height: 100%;
}

.ant-upload-list-item-info {
  border-radius: 4px;
}
.ant-upload-list-item-info > span {
  display: flex;
  align-items: center;
}
.ant-upload-list-item-info > span > i {
  margin-top: 4px;
}

/* divider
******************************************************/
.ant-divider-horizontal.ant-divider-with-text-left:before {
  width: 0%;
}

.ant-divider-horizontal.ant-divider-with-text-left:after,
.ant-divider-horizontal.ant-divider-with-text-right:before {
  width: 100%;
  top: 10%;
}

.ant-divider-horizontal.ant-divider-with-text-left:after {
  border-color: #4db396;
}

.ant-divider-horizontal.ant-divider-with-text-left .ant-divider-inner-text,
.ant-divider-horizontal.ant-divider-with-text-right .ant-divider-inner-text {
  padding: 0.25em 1em;
  border-radius: 25px;
  background-color: #4db396;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.ant-divider-dashed {
  border-color: #b5c0ea;
  margin: 15px 0;
}
