.category_product_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 11px;
     -moz-column-gap: 11px;
          column-gap: 11px;
  row-gap: 22px;
  padding: 0 10px 50px;
}
.category_product_item {
  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;
}
.category_product_name {
  text-align: center;
  font-weight: bold;
  min-height: 33px;
  font-size: 11px;
  margin-top: 10px;
}
.category_product_txt {
  display: none;
}
.category_product_btn {
  text-align: center;
  color: #fff;
  background: #ceb48c;
  font-size: 10px;
  line-height: 2;
  border-radius: 15px;
  width: 90px;
  margin: 10px auto 0;
}
.page-category.body_fixed {
  overflow: hidden;
}
.category_modal_container {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  top: 0;
  left: 0;
  z-index: 110;
}
.category_modal_container .category_modal_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 100%;
  max-height: 100%;
  background: rgba(103,88,81,0.5);
}
.category_modal_container .category_modal_contents--wrap {
  margin-top: 32px;
  padding: 0 10px;
  position: absolute;
  z-index: 130;
  width: calc(100% - 20px);
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}
.category_modal_container .category_modal_contents {
  width: 100%;
  height: calc(100vh - 162px);
  max-height: 650px;
  padding: 20px 20px 0;
  border-radius: 20px;
  background: #f8f8f4;
  -webkit-box-shadow: 0 10px 15px rgba(0,0,0,0.161);
          box-shadow: 0 10px 15px rgba(0,0,0,0.161);
}
.category_modal_container .category_modal_scroll {
  overflow-y: scroll;
  height: calc(100% - 90px);
  max-height: 540px;
  padding-bottom: 10px;
}
.category_modal_container .category_modal_scroll::-webkit-scrollbar {
  width: 2px;
  background: #fff;
}
.category_modal_container .category_modal_scroll::-webkit-scrollbar-thumb {
  background: #675851;
  max-height: 231px;
}
.category_modal_container .category_modal_scroll::-webkit-scrollbar-track {
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.category_modal_container .category_modal_head {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}
.category_modal_container .category_modal_explain {
  margin: 20px 0;
}
.category_modal_container .category_modal_title {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  margin: 20px 0;
  padding-bottom: 10px;
  border-bottom: solid 1px #3f3d3c;
}
.category_modal_container .category_modal_point--list {
  counter-reset: number 0;
}
.category_modal_container .category_modal_point--list li + li {
  margin-top: 16px;
}
.category_modal_container .category_modal_point--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 12px;
}
.category_modal_container .category_modal_point--item:before {
  counter-increment: number 1;
  content: counter(number) " ";
  min-width: 26px;
  width: 26px;
  height: 26px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50%;
  background: #c6112f;
  color: #fff;
  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;
  text-align: center;
}
.category_modal_container .category_modal_point--note {
  font-size: 10px;
}
.category_modal_container .category_modal_list--wrap {
  -webkit-box-shadow: 0 -4px 6px rgba(0,0,0,0.161);
          box-shadow: 0 -4px 6px rgba(0,0,0,0.161);
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -20px;
}
.category_modal_container .category_modal_list--link {
  background: #c6112f;
  color: #fff;
  font-weight: bold;
  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: 259px;
  text-align: center;
  margin: 0 auto;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  height: 50px;
  border-radius: 25px;
}
.category_modal_container .category_modal_close {
  cursor: pointer;
  color: #fff;
  line-height: 1;
  margin-top: 18px;
  text-align: center;
}
