.main.main--home section.__block.__block--free-3 {
  background: none;
}

.searchProducts__wrapper {
  margin: 0 auto 40px;
}

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

.searchProducts__wrapper .searchProducts__title {
  color: #00367c;
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 12px;
}

@media (max-width: 768px) {
  .searchProducts__wrapper .searchProducts__title {
    font-size: 22px;
    padding: 0 16px;
  }
}

.searchProducts__wrapper .searchProducts__content__title {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 768px) {
  .searchProducts__wrapper .searchProducts__content__title {
    font-size: 18px;
    margin: 0;
  }
}

.searchProducts__wrapper .searchProducts__content__title::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: #00367c;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .searchProducts__wrapper .searchProducts__content__title::before {
    width: 16px;
    height: 16px;
  }
}

.searchProducts__wrapper .searchProducts__content {
  padding: 0;
}

.searchProducts__wrapper .searchProducts__tabs {
  display: flex;
  gap: 4px;
  padding: 0;
  margin: 0;
  width: 70%;
}

.searchProducts__wrapper .searchProducts__tabs .searchProducts__tab {
  flex: 1;
  padding: 12px 16px;
  background: none;
  border: 1px solid #dcdcdc;
  border-bottom: 2px solid transparent;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  color: #333333;
  transition: all 0.2s ease;
}

.searchProducts__wrapper .searchProducts__tabs .searchProducts__tab:hover {
  background-color: #ffffff;
}

.searchProducts__wrapper .searchProducts__tabs .searchProducts__tab.searchProducts__tab--active {
  background-color: #ffffff;
  color: #00367c;
  border-bottom: 3px solid #00367c;
}

.searchProducts__wrapper .searchProducts__panels {
  position: relative;
  min-height: 400px;
}

.searchProducts__wrapper .searchProducts__panel {
  display: none;
  padding: 20px;
  position: relative;
  background: #fff;
}

.searchProducts__wrapper .searchProducts__panel.searchProducts__panel--active {
  display: block;
}

.searchProducts__wrapper .searchProducts__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .searchProducts__wrapper .searchProducts__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .searchProducts__wrapper .searchProducts__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .searchProducts__wrapper .searchProducts__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

.searchProducts__wrapper .searchProducts__item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
  border: 1px solid #dcdcdc;
  padding: 12px 4px;
}

.searchProducts__wrapper .searchProducts__item:hover {
  transform: translateY(-2px);
}

.searchProducts__wrapper .searchProducts__item .searchProducts__item-image {
  width: 70%;
  margin: 0 auto;
  aspect-ratio: 1;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 8px;
}

.searchProducts__wrapper .searchProducts__item .searchProducts__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.searchProducts__wrapper .searchProducts__item .searchProducts__item-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

.searchProducts__wrapper .searchProducts__item .searchProducts__item-text {
  font-size: 14px;
  line-height: 1.4;
  flex: 1;
  text-align: center;
  font-weight: bold;
}

.searchProducts__wrapper .searchProducts__item .searchProducts__item-icon {
  width: 14px;
  height: 14px;
  background-color: #00367c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 8px;
}

.searchProducts__wrapper .searchProducts__item .searchProducts__item-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid #ffffff;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.searchProducts__wrapper .searchProducts__view-all {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.searchProducts__wrapper .searchProducts__view-all:hover {
  color: #4577ef;
}

@media (min-width: 769px) {
  .searchProducts__wrapper.searchProducts__wrapper--sp {
    display: none;
  }
}

.searchProducts__wrapper.searchProducts__wrapper--sp .searchProducts__content {
  border-radius: 8px;
  overflow: hidden;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .accordion-header {
  margin: 0 16px 8px;
  padding: 8px 16px;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s ease;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .accordion-header::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333333;
  border-bottom: 2px solid #333333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .accordion-header.accordion-header--active::after {
  transform: rotate(-135deg);
}

.searchProducts__wrapper.searchProducts__wrapper--sp .accordion-content {
  max-height: 0;
  overflow-y: hidden;
  overflow-x: visible;
  transition: max-height 0.3s ease;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .accordion-content.accordion-content--active {
  max-height: 5000px;
  overflow-y: visible;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .accordion-content__header {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  position: relative;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .accordion-content__header::-webkit-scrollbar {
  display: none;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .searchProducts__tabs {
  display: flex;
  gap: 8px;
  padding: 12px 12px 0;
  margin: 0;
  background: #fff;
  border-bottom: 1px solid #dcdcdc;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .searchProducts__tabs .searchProducts__tab {
  flex: 0 0 auto;
  padding: 8px 16px;
  background: #fff;
  border-radius: 0;
  border: 0px solid #dcdcdc;
  cursor: pointer;
  font-size: 14px;
  color: #333333;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .searchProducts__tabs .searchProducts__tab:hover {
  background-color: #ffffff;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .searchProducts__tabs .searchProducts__tab.searchProducts__tab--active {
  color: #00367c;
  border-bottom: 3px solid #00367c;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .searchProducts__panels {
  position: relative;
  min-height: auto;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .searchProducts__panel {
  display: none;
  padding: 24px 12px;
  position: relative;
  background: #fff;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .searchProducts__panel.searchProducts__panel--active {
  display: block;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .searchProducts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .searchProducts__wrapper.searchProducts__wrapper--sp .searchProducts__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.searchProducts__wrapper.searchProducts__wrapper--sp .searchProducts__item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
  border: 1px solid #dcdcdc;
  padding: 12px 4px;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .searchProducts__item:hover {
  transform: translateY(-2px);
}

.searchProducts__wrapper.searchProducts__wrapper--sp .searchProducts__item .searchProducts__item-image {
  width: 70%;
  margin: 0 auto;
  aspect-ratio: 1;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 8px;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .searchProducts__item .searchProducts__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .searchProducts__item .searchProducts__item-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .searchProducts__item .searchProducts__item-text {
  font-size: 12px;
  line-height: 1.4;
  flex: 1;
  text-align: center;
  font-weight: bold;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .searchProducts__item .searchProducts__item-icon {
  width: 14px;
  height: 14px;
  background-color: #00367c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 8px;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .searchProducts__item .searchProducts__item-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid #ffffff;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .searchProducts__view-all {
  position: absolute;
  bottom: 16px;
  right: 16px;
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.searchProducts__wrapper.searchProducts__wrapper--sp .searchProducts__view-all:hover {
  color: #4577ef;
}

/*# sourceMappingURL=searchProducts.css.map */