@charset "UTF-8";
#categoryEditPage {
  /* カテゴリー編集画面 */
}
#categoryEditPage .content-header {
  width: 90%;
  margin: 40px auto;
}
#categoryEditPage .catForm {
  width: 90%;
  margin: 0 auto;
}
#categoryEditPage .catForm .category {
  grid-template: auto/1fr;
}
#categoryEditPage .catForm .category-item.parent {
  display: grid;
  grid-template: auto/150px 1fr;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
}
#categoryEditPage .catForm .category-name {
  padding: 10px 15px;
  cursor: unset;
}
#categoryEditPage .catForm .category-child {
  margin: 0px;
}
#categoryEditPage .catForm .deleteFile {
  margin-left: auto !important;
}
#categoryEditPage .catForm button[type=submit] {
  font-size: 12px;
  padding: 0.4em;
  border-radius: 4px;
  margin-left: auto;
  height: auto;
}
#categoryEditPage #catAddModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  /* バツボタン */
}
#categoryEditPage #catAddModal.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#categoryEditPage #catAddModal .catAddModalContent {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  height: auto;
  max-height: 90%;
  overflow: unset;
}
#categoryEditPage #catAddModal .catAddModalContent .cat_list {
  margin-bottom: 20px;
}
#categoryEditPage #catAddModal .modal-close {
  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;
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: border 0.15s ease-out;
  transition: border 0.15s ease-out;
}
#categoryEditPage #catAddModal .modal-close:hover {
  border: 2px solid #333;
}
#categoryEditPage #catAddModal .catEditForm .category {
  grid-template: auto/1fr;
}
#categoryEditPage #catAddModal .catEditForm .category-item.parent {
  display: grid;
  grid-template: auto/150px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
#categoryEditPage #catAddModal .catEditForm .category-child {
  margin: 0px;
}
#categoryEditPage #catAddModal .catEditForm .category-name {
  padding: 10px 15px;
}/*# sourceMappingURL=admin-category.css.map */