.aside section.__block.category-block {
  position: relative;
}
.aside section.__block.category-block .category-body {
  padding: 24px 12px;
}
.aside section.__block.category-block .category-body p {
  margin: 0 0 24px 0;
  font-size: 18px;
  color: #00367c;
  font-weight: bold;
}
.aside section.__block.category-block .category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.aside section.__block.category-block .category-list .category-item {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  position: relative;
}
.aside section.__block.category-block .category-list .category-item.category-item--direct .category-item-link {
  display: inline-block;
  padding: 8px 0px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  cursor: pointer;
  width: 100%;
}
.aside section.__block.category-block .category-list .category-item.category-item--direct .category-item-link:hover {
  background-color: #e3f2fd;
}
.aside section.__block.category-block .category-list .category-item.category-item--direct .category-popup {
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: 8px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 500px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}
.aside section.__block.category-block .category-list .category-item.category-item--direct .category-popup.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.aside section.__block.category-block .category-list .category-item.category-item--direct .category-popup .category-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e0e0e0;
}
.aside section.__block.category-block .category-list .category-item.category-item--direct .category-popup .category-popup-header .category-popup-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.aside section.__block.category-block .category-list .category-item.category-item--direct .category-popup .category-popup-header .category-popup-title .category-popup-title-bar {
  display: block;
  width: 4px;
  height: 20px;
  background-color: #00367c;
  border-radius: 2px;
}
.aside section.__block.category-block .category-list .category-item.category-item--direct .category-popup .category-popup-header .category-popup-title .category-popup-title-text {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.aside section.__block.category-block .category-list .category-item.category-item--direct .category-popup .category-popup-header .category-popup-button {
  display: inline-block;
  padding: 6px 16px;
  background-color: #00367c;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  border-radius: 50px;
  transition: background-color 0.2s ease;
}
.aside section.__block.category-block .category-list .category-item.category-item--direct .category-popup .category-popup-header .category-popup-button:hover {
  background-color: #00367c;
}
.aside section.__block.category-block .category-list .category-item.category-item--direct .category-popup .category-subsublist {
  padding: 16px 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.aside section.__block.category-block .category-list .category-item.category-item--direct .category-popup .category-subsublist .category-subsubitem {
  margin: 0;
  padding: 0;
  width: 50%;
  box-sizing: border-box;
}
.aside section.__block.category-block .category-list .category-item.category-item--direct .category-popup .category-subsublist .category-subsubitem a {
  display: block;
  padding: 8px 20px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: background-color 0.2s ease;
}
.aside section.__block.category-block .category-list .category-item.category-item--direct .category-popup .category-subsublist .category-subsubitem a:hover {
  background-color: #f5f5f5;
}
@media (max-width: 768px) {
  .aside section.__block.category-block .category-list .category-item.category-item--direct .category-popup .category-subsublist {
    flex-direction: column;
  }
  .aside section.__block.category-block .category-list .category-item.category-item--direct .category-popup .category-subsublist .category-subsubitem {
    width: 100%;
  }
}
.aside section.__block.category-block .category-list .category-item.category-item--direct.is-hovered .category-item-link {
  background-color: #e3f2fd;
}
.aside section.__block.category-block .category-list .category-item .category-item-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.aside section.__block.category-block .category-list .category-item .category-item-label .category-item-icon {
  display: block;
  width: 24px;
}
.aside section.__block.category-block .category-list .category-sublist {
  list-style: none;
  margin: 12px 0 0 0;
  padding: 0;
}
.aside section.__block.category-block .category-list .category-sublist .category-subitem {
  position: relative;
  margin-bottom: 4px;
}
.aside section.__block.category-block .category-list .category-sublist .category-subitem .category-subitem-link {
  display: block;
  padding: 7px 0px 8px 15px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  display: flex;
  justify-content: space-between;
}
.aside section.__block.category-block .category-list .category-sublist .category-subitem .category-subitem-link span {
  font-size: 12px;
}
.aside section.__block.category-block .category-list .category-sublist .category-subitem .category-subitem-link:hover {
  background-color: #e3f2fd;
}
.aside section.__block.category-block .category-list .category-sublist .category-subitem.is-hovered .category-subitem-link {
  background-color: #e3f2fd;
}
.aside section.__block.category-block .category-list .category-sublist .category-subitem .category-popup {
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: 8px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 500px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}
.aside section.__block.category-block .category-list .category-sublist .category-subitem .category-popup.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.aside section.__block.category-block .category-list .category-sublist .category-subitem .category-popup .category-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e0e0e0;
}
.aside section.__block.category-block .category-list .category-sublist .category-subitem .category-popup .category-popup-header .category-popup-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.aside section.__block.category-block .category-list .category-sublist .category-subitem .category-popup .category-popup-header .category-popup-title .category-popup-title-bar {
  display: block;
  width: 4px;
  height: 20px;
  background-color: #00367c;
  border-radius: 2px;
}
.aside section.__block.category-block .category-list .category-sublist .category-subitem .category-popup .category-popup-header .category-popup-title .category-popup-title-text {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.aside section.__block.category-block .category-list .category-sublist .category-subitem .category-popup .category-popup-header .category-popup-button {
  display: inline-block;
  padding: 6px 16px;
  background-color: #00367c;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  border-radius: 50px;
  transition: background-color 0.2s ease;
}
.aside section.__block.category-block .category-list .category-sublist .category-subitem .category-popup .category-popup-header .category-popup-button:hover {
  background-color: #004a9f;
}
.aside section.__block.category-block .category-list .category-sublist .category-subitem .category-popup .category-subsublist {
  padding: 16px 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.aside section.__block.category-block .category-list .category-sublist .category-subitem .category-popup .category-subsublist .category-subsubitem {
  margin: 0;
  padding: 0;
  width: 50%;
  box-sizing: border-box;
}
.aside section.__block.category-block .category-list .category-sublist .category-subitem .category-popup .category-subsublist .category-subsubitem a {
  display: block;
  padding: 8px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.2s ease;
}
.aside section.__block.category-block .category-list .category-sublist .category-subitem .category-popup .category-subsublist .category-subsubitem a:hover {
  background-color: #f5f5f5;
}
@media (max-width: 768px) {
  .aside section.__block.category-block .category-list .category-sublist .category-subitem .category-popup .category-subsublist {
    flex-direction: column;
  }
  .aside section.__block.category-block .category-list .category-sublist .category-subitem .category-popup .category-subsublist .category-subsubitem {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .aside section.__block.category-block .category-list .category-sublist .category-subitem .category-popup {
    position: static;
    margin-left: 0;
    margin-top: 8px;
    min-width: 280px;
    box-shadow: none;
    border: 1px solid #e0e0e0;
    transform: none;
  }
  .aside section.__block.category-block .category-list .category-sublist .category-subitem .category-popup.is-active {
    transform: none;
  }
}

.category-block-sp {
  display: none;
}
@media (max-width: 768px) {
  .category-block-sp {
    display: block;
  }
}
.category-block-sp .__body p {
  margin: 0 0 16px 0;
  font-size: 14px;
  color: #333;
}
.category-block-sp .category-sp-container {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  padding: 20px;
}
.category-block-sp .category-sp-level-1-2 {
  transition: transform 0.3s ease;
}
.category-block-sp .category-sp-level-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 10;
  padding: 20px;
}
.category-block-sp .category-sp-container.show-level-3 .category-sp-level-1-2 {
  transform: translateX(-100%);
}
.category-block-sp .category-sp-container.show-level-3 .category-sp-level-3 {
  transform: translateX(0);
  padding: 20px;
}
.category-block-sp .category-sp-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.category-block-sp .category-sp-item {
  margin-bottom: 8px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}
.category-block-sp .category-sp-item .category-sp-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: background-color 0.2s ease;
}
.category-block-sp .category-sp-item .category-sp-toggle:hover {
  background-color: #eeeeee;
}
.category-block-sp .category-sp-item .category-sp-toggle .category-sp-icon {
  font-size: 20px;
  margin-right: 12px;
}
.category-block-sp .category-sp-item .category-sp-toggle .category-sp-text {
  flex: 1;
  text-align: left;
  font-weight: 500;
}
.category-block-sp .category-sp-item .category-sp-toggle .category-sp-arrow {
  font-size: 12px;
  color: #00367c;
  transition: transform 0.2s ease;
}
.category-block-sp .category-sp-item.is-open .category-sp-toggle {
  background-color: #e3f2fd;
}
.category-block-sp .category-sp-item.is-open .category-sp-toggle .category-sp-arrow {
  transform: rotate(180deg);
}
.category-block-sp .category-sp-item.is-open .category-sp-sublist {
  max-height: 1000px;
  opacity: 1;
}
.category-block-sp .category-sp-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.category-block-sp .category-sp-subitem {
  border-top: 1px solid #e0e0e0;
}
.category-block-sp .category-sp-subitem .category-sp-subtoggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 12px 40px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  text-align: left;
  transition: background-color 0.2s ease;
}
.category-block-sp .category-sp-subitem .category-sp-subtoggle:hover {
  background-color: #f5f5f5;
}
.category-block-sp .category-sp-subitem .category-sp-subtoggle .category-sp-subtext {
  flex: 1;
}
.category-block-sp .category-sp-subitem .category-sp-subtoggle .category-sp-subarrow {
  font-size: 18px;
  color: #999;
}
.category-block-sp .category-sp-level-3-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}
.category-block-sp .category-sp-level-3-header .category-sp-back {
  padding: 6px 12px;
  background: transparent;
  border: none;
  font-size: 14px;
  color: #00367c;
  cursor: pointer;
  transition: color 0.2s ease;
}
.category-block-sp .category-sp-level-3-header .category-sp-back:hover {
  color: #004a9f;
}
.category-block-sp .category-sp-level-3-header .category-sp-level-3-title {
  flex: 1;
  margin: 0;
  padding: 0 12px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-align: center;
}
.category-block-sp .category-sp-level-3-header .category-sp-level-3-link {
  padding: 6px 12px;
  background: #00367c;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.category-block-sp .category-sp-level-3-header .category-sp-level-3-link:hover {
  background-color: #004a9f;
}
.category-block-sp .category-sp-level-3-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.category-block-sp .category-sp-level-3-list .category-sp-level-3-item {
  border-bottom: 1px solid #e0e0e0;
}
.category-block-sp .category-sp-level-3-list .category-sp-level-3-item a {
  display: block;
  padding: 14px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.2s ease;
}
.category-block-sp .category-sp-level-3-list .category-sp-level-3-item a:hover {
  background-color: #f5f5f5;
}

@media (max-width: 768px) {
  .category-block {
    display: none;
  }
}

.category-search-sp .__body {
  position: relative;
}
.category-search-sp .category-sp-container {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  padding: 20px;
}
@media (min-width: 769px) {
  .category-search-sp .category-sp-container {
    display: none;
  }
}
.category-search-sp .category-sp-new-products {
  margin: 0 0 12px 0;
  font-size: 12px;
  color: #00367c;
  font-weight: bold;
  padding: 0;
}
.category-search-sp .category-sp-level-1-2 {
  transition: transform 0.3s ease;
}
.category-search-sp .category-sp-level-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 10;
  padding: 20px;
}
.category-search-sp .category-sp-container.show-level-3 {
  overflow: scroll;
}
.category-search-sp .category-sp-container.show-level-3 .category-sp-level-1-2 {
  transform: translateX(-100%);
}
.category-search-sp .category-sp-container.show-level-3 .category-sp-level-3 {
  transform: translateX(0);
}
.category-search-sp .category-sp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.category-search-sp .category-sp-item {
  margin-bottom: 0;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 1px 1px 6px -2px rgba(0, 0, 0, 0.4);
}
.category-search-sp .category-sp-item:last-child {
  border-bottom: none;
}
.category-search-sp .category-sp-item .category-sp-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 16px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}
.category-search-sp .category-sp-item .category-sp-toggle:hover {
  background-color: #f5f5f5;
}
.category-search-sp .category-sp-item .category-sp-toggle .category-sp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}
.category-search-sp .category-sp-item .category-sp-toggle .category-sp-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.category-search-sp .category-sp-item .category-sp-toggle .category-sp-text {
  flex: 1;
  text-align: left;
  font-weight: normal;
  font-size: 14px;
  color: #333;
}
.category-search-sp .category-sp-item .category-sp-toggle .category-sp-arrow {
  font-size: 14px;
  color: #00367c;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 8px;
  line-height: 1;
  transform: rotate(180deg);
}
.category-search-sp .category-sp-item.is-open .category-sp-toggle {
  background-color: #e3f2fd;
}
.category-search-sp .category-sp-item.is-open .category-sp-toggle .category-sp-arrow {
  transform: rotate(180deg);
}
.category-search-sp .category-sp-item.is-open .category-sp-sublist {
  max-height: 1000px;
  opacity: 1;
}
.category-search-sp .category-sp-item.category-sp-item--direct .category-sp-toggle .category-sp-arrow {
  transform: none;
  color: #999;
}
.category-search-sp .category-sp-item.category-sp-item--direct .category-sp-toggle--direct:hover {
  background-color: #f5f5f5;
}
.category-search-sp .category-sp-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  background: #ffffff;
}
.category-search-sp .category-sp-subitem {
  border-top: 1px solid #f0f0f0;
}
.category-search-sp .category-sp-subitem .category-sp-subtoggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  padding-left: 52px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  text-align: left;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}
.category-search-sp .category-sp-subitem .category-sp-subtoggle:hover {
  background-color: #f5f5f5;
}
.category-search-sp .category-sp-subitem .category-sp-subtoggle .category-sp-subtext {
  flex: 1;
}
.category-search-sp .category-sp-subitem .category-sp-subtoggle .category-sp-subarrow {
  font-size: 16px;
  color: #999;
  flex-shrink: 0;
  margin-left: 8px;
}
.category-search-sp .category-sp-level-3-header {
  display: flex;
  align-items: center;
  padding: 0 0 12px 0;
  background: transparent;
  border: none;
}
.category-search-sp .category-sp-level-3-header .category-sp-back {
  padding: 6px 12px;
  background: transparent;
  border: none;
  font-size: 14px;
  color: #00367c;
  cursor: pointer;
  transition: color 0.2s ease;
}
.category-search-sp .category-sp-level-3-header .category-sp-back:hover {
  color: #3d6ae0;
}
.category-search-sp .category-sp-level-3-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.category-search-sp .category-sp-level-3-list .category-sp-level-3-item {
  box-shadow: 1px 1px 6px -2px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  background: #ffffff;
}
.category-search-sp .category-sp-level-3-list .category-sp-level-3-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.2s ease;
}
.category-search-sp .category-sp-level-3-list .category-sp-level-3-item a:hover {
  background-color: #f5f5f5;
}
.category-search-sp .category-sp-level-3-list .category-sp-level-3-item a .category-sp-level-3-arrow {
  font-size: 16px;
  color: #999;
  flex-shrink: 0;
  margin-left: 8px;
}
.category-search-sp .category-sp-level-3-list .category-sp-level-3-item.category-sp-level-3-item--all {
  background: #00367c;
  box-shadow: 1px 1px 6px 0px rgba(69, 119, 239, 0.4);
}
.category-search-sp .category-sp-level-3-list .category-sp-level-3-item.category-sp-level-3-item--all a {
  color: #ffffff;
  font-weight: 500;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
}
.category-search-sp .category-sp-level-3-list .category-sp-level-3-item.category-sp-level-3-item--all a:hover {
  background-color: #3d6ae0;
}
.category-search-sp .category-sp-level-3-list .category-sp-level-3-item.category-sp-level-3-item--all a .category-sp-external-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' d='M12 4v8H4V4h8m0-1H4c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z'/%3E%3Cpath fill='%23ffffff' d='M11 5H6v1h4v4h1V5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .category-search-sp .__tree {
    display: none;
  }
}/*# sourceMappingURL=category.css.map */