.m-category-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 700;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.m-category-bg.on {
  opacity: 1;
  visibility: visible;
}

.mobile-category {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 80vh;
  max-width: 768px;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  z-index: 701;
  transition: all 0.2s ease-in-out;
}
.mobile-category.on {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .mobile-category {
    height: 100vh;
    border-radius: 0;
  }
}
.mobile-category .m-head {
  flex: 0 0 auto;
  width: 100%;
  height: 48px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  background: #f0f0f0;
  border-bottom: 1px solid #ddd;
}
.mobile-category .m-head .m-close {
  width: 32px;
  height: 32px;
  padding: 4px;
  border: 1px solid #aaa;
  border-radius: 10000rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.mobile-category .m-head .m-close > svg {
  width: 100%;
  height: 100%;
  fill: #707070;
  transition: all 0.2s ease-in-out;
}
.mobile-category .m-head .m-close:hover {
  border-color: #AC0730;
}
.mobile-category .m-head .m-close:hover > svg {
  fill: #AC0730;
}
.mobile-category .m-body {
  width: 100%;
  height: auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
}
.mobile-category .m-body .m-left-cate {
  flex: 0 0 140px;
  background: #f0f0f0;
  overflow: auto;
}
.mobile-category .m-body .m-left-cate .item {
  flex: 0 0 auto;
  width: 100%;
  height: 40px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  word-break: keep-all;
  color: #818181;
  cursor: pointer;
}
.mobile-category .m-body .m-left-cate .item.current {
  background: white;
  color: black;
  font-weight: 600;
}
.mobile-category .m-body .m-depth-wrap {
  flex: 1 1 auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-category .m-body .m-depth-wrap .first-depth-box {
  position: relative;
  width: 100%;
  height: auto;
  padding-bottom: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.mobile-category .m-body .m-depth-wrap .first-depth-box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #aaa;
}
.mobile-category .m-body .m-depth-wrap .first-depth-box > a {
  padding: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #fafafa;
}
.mobile-category .m-body .m-depth-wrap .first-depth-box > a > span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  word-break: keep-all;
  color: #22979F;
}
.mobile-category .m-body .m-depth-wrap .first-depth-box > a > svg {
  width: 20px;
  height: 20px;
  fill: #22979F;
}
.mobile-category .m-body .m-depth-wrap .m-depth-grid {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  overflow: auto;
}
@media (max-width: 640px) {
  .mobile-category .m-body .m-depth-wrap .m-depth-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .mobile-category .m-body .m-depth-wrap .m-depth-grid {
    grid-template-columns: 1fr;
  }
}
.mobile-category .m-body .m-depth-wrap .m-depth-grid .item {
  width: 100%;
  height: auto;
}
.mobile-category .m-body .m-depth-wrap .m-depth-grid .item > a {
  width: 100%;
  padding: 8px;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  word-break: keep-all;
  color: #3D3D3D;
  background: #fafafa;
  border-radius: 4px;
}

#header {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  z-index: 500;
}
#header .top {
  width: 100%;
  height: 32px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: black;
}
#header .top .container {
  width: 95%;
  height: 100%;
  max-width: 1520px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#header .top .container a {
  font-size: 16px;
  line-height: 1.3;
  word-break: keep-all;
  color: white;
}
@media (max-width: 1280px) {
  #header .top .container a {
    font-size: 14px;
  }
}
#header .top .container .member-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1280px) {
  #header .top .container .member-nav {
    gap: 12px;
  }
}
#header .middle {
  width: 100%;
  height: 120px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: white;
  border-bottom: 1px solid #f0f0f0;
}
@media (max-width: 1280px) {
  #header .middle {
    height: 70px;
  }
}
@media (max-width: 768px) {
  #header .middle {
    height: auto;
    padding: 12px 0;
  }
}
#header .middle .container {
  width: 95%;
  height: 100%;
  max-width: 1520px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 768px) {
  #header .middle .container {
    flex-wrap: wrap;
    gap: 12px 16px;
  }
}
#header .middle .container #h-logo {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  display: flex;
  width: 248px;
}
#header .middle .container #h-logo > img {
  width: auto;
  height: 100%;
}
#header .middle .container #h-logo > h1 {
  font-size: 40px;
  width: 100%;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 1280px) {
  #header .middle .container #h-logo > h1 {
    font-size: 28px;
    text-align: left;
  }
}
@media (max-width: 768px) {
  #header .middle .container #h-logo > h1 {
    font-size: 24px;
  }
}
#header .middle .container #h-search-form {
  width: 700px;
  height: 60px;
  padding: 0 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  background: #ddd;
  border-radius: 100000rem;
}
@media (max-width: 1280px) {
  #header .middle .container #h-search-form {
    flex: 0 1 480px;
    width: auto;
    height: 40px;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  #header .middle .container #h-search-form {
    padding: 0 1rem;
    height: 36px;
    flex: 1 1 100%;
    order: 3;
  }
}
#header .middle .container #h-search-form > input {
  flex: 1 1 auto;
  max-width: auto;
  background: transparent;
  font-size: 16px;
  line-height: 1.2;
  border: none;
  color: black;
}
@media (max-width: 1280px) {
  #header .middle .container #h-search-form > input {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #header .middle .container #h-search-form > input {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
  }
}
#header .middle .container #h-search-form > input::-moz-placeholder {
  color: #707070;
}
#header .middle .container #h-search-form > input::placeholder {
  color: #707070;
}
@media (max-width: 768px) {
  #header .middle .container #h-search-form > input::-moz-placeholder {
    color: #3D3D3D;
  }
  #header .middle .container #h-search-form > input::placeholder {
    color: #3D3D3D;
  }
}
#header .middle .container #h-search-form > button {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
}
@media (max-width: 1280px) {
  #header .middle .container #h-search-form > button {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 768px) {
  #header .middle .container #h-search-form > button {
    width: 24px;
    height: 24px;
  }
}
#header .middle .container #h-search-form > button > svg {
  width: 100%;
  height: 100%;
  fill: black;
}
#header .middle .container .special-price-wrap {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
@media (max-width: 1280px) {
  #header .middle .container .special-price-wrap {
    gap: 10px;
  }
}
#header .middle .container .special-price-wrap > p {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  word-break: keep-all;
  color: black;
}
@media (max-width: 1280px) {
  #header .middle .container .special-price-wrap > p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #header .middle .container .special-price-wrap > p {
    font-size: 12px;
  }
}
#header .middle .container .special-price-wrap > p > em {
  font-weight: 700;
  color: #22979F;
}
#header .middle .container .special-price-wrap > img {
  flex: 0 0 auto;
  width: auto;
  height: 80px;
}
@media (max-width: 1280px) {
  #header .middle .container .special-price-wrap > img {
    height: 48px;
  }
}
@media (max-width: 768px) {
  #header .middle .container .special-price-wrap > img {
    height: 32px;
  }
}
#header .middle .container .special-price-wrap > svg {
  width: 36px;
  height: 36px;
  fill: #aaa;
}
@media (max-width: 1280px) {
  #header .middle .container .special-price-wrap > svg {
    width: 28px;
    height: 28px;
  }
}
#header .bottom {
  width: 100%;
  height: 66px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: white;
}
@media (max-width: 1280px) {
  #header .bottom {
    height: 48px;
  }
}
#header .bottom .container {
  position: relative;
  width: 95%;
  height: 100%;
  max-width: 1520px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1280px) {
  #header .bottom .container {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  #header .bottom .container {
    justify-content: space-between;
  }
}
#header .bottom .container .left-category {
  position: absolute;
  left: 0;
  top: 0;
  width: 240px;
  height: 806px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #AC0730;
}
@media (max-width: 1280px) {
  #header .bottom .container .left-category {
    display: none;
  }
}
#header .bottom .container .left-category .cate-head {
  width: 100%;
  height: auto;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
#header .bottom .container .left-category .cate-head > b {
  font-size: 18px;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
}
#header .bottom .container .left-category .cate-head > span {
  font-size: 14px;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
  opacity: 0.7;
}
#header .bottom .container .left-category .cate-nav {
  width: 100%;
  height: auto;
  flex: 1 1 auto;
  background: white;
}
#header .bottom .container .left-category .cate-nav > ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#header .bottom .container .left-category .cate-nav > ul > li {
  position: relative;
  flex: 1 1 4%;
  width: 100%;
}
#header .bottom .container .left-category .cate-nav > ul > li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: #ddd;
}
#header .bottom .container .left-category .cate-nav > ul > li > a {
  width: 100%;
  height: 100%;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1.2;
  color: #3D3D3D;
  word-break: keep-all;
  text-align: center;
}
#header .bottom .container .left-category .cate-nav > ul > li .depth-2 {
  position: absolute;
  left: 100%;
  top: 0;
  width: 180px;
  height: auto;
  padding-left: 12px;
  background: #AC0730;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
#header .bottom .container .left-category .cate-nav > ul > li .depth-2 > li {
  position: relative;
  width: 100%;
  background: white;
}
#header .bottom .container .left-category .cate-nav > ul > li .depth-2 > li:not(:last-of-type)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: #ddd;
}
#header .bottom .container .left-category .cate-nav > ul > li .depth-2 > li > a {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1rem;
  line-height: 1.3;
  color: #3D3D3D;
  word-break: keep-all;
}
#header .bottom .container .left-category .cate-nav > ul > li .depth-2 > li:hover > a {
  font-weight: 700;
}
#header .bottom .container .left-category .cate-nav > ul > li:hover > a {
  font-weight: 700;
}
#header .bottom .container .left-category .cate-nav > ul > li:hover .depth-2 {
  display: flex;
}
#header .bottom .container .m-category-open {
  display: none;
}
@media (max-width: 1280px) {
  #header .bottom .container .m-category-open {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    padding-right: 12px;
    cursor: pointer;
  }
  #header .bottom .container .m-category-open > svg {
    width: 32px;
    height: auto;
    fill: black;
    transition: all 0.2s ease-in-out;
  }
  #header .bottom .container .m-category-open::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: #aaa;
  }
}
@media (max-width: 1280px) and (max-width: 768px) {
  #header .bottom .container .m-category-open::after {
    display: none;
  }
}
@media (max-width: 768px) {
  #header .bottom .container .m-category-open {
    padding-right: 0;
  }
}
#header .bottom .container .m-category-open:hover > svg {
  fill: #AC0730;
}
#header .bottom .container .h-global-nav {
  height: 100%;
  display: flex;
  flex-direction: row;
}
#header .bottom .container .h-global-nav .depth-1 {
  height: 100%;
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  #header .bottom .container .h-global-nav .depth-1 {
    gap: 1rem;
  }
}
#header .bottom .container .h-global-nav .depth-1 > li {
  height: 100%;
}
#header .bottom .container .h-global-nav .depth-1 > li > a {
  width: 130px;
  height: 100%;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  #header .bottom .container .h-global-nav .depth-1 > li > a {
    flex: 0 0 auto;
    width: auto;
    padding: 0 10px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  #header .bottom .container .h-global-nav .depth-1 > li > a {
    padding: 0;
    font-size: 14px;
  }
}
#header .bottom .container .shop-nav {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1280px) {
  #header .bottom .container .shop-nav {
    position: relative;
    right: unset;
    top: unset;
    transform: unset;
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  #header .bottom .container .shop-nav {
    display: none;
  }
}
#header .bottom .container .shop-nav > ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
@media (max-width: 1280px) {
  #header .bottom .container .shop-nav > ul {
    gap: 18px;
  }
}
#header .bottom .container .shop-nav > ul > li > a {
  display: flex;
  font-size: 15px;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #header .bottom .container .shop-nav > ul > li > a {
    font-size: 13px;
  }
}

#footer {
  width: 100%;
  height: auto;
  padding: 48px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: black;
}
@media (max-width: 1280px) {
  #footer {
    padding: 24px 0;
  }
}
#footer .container {
  width: 95%;
  height: auto;
  max-width: 1520px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 48px;
}
@media (max-width: 1280px) {
  #footer .container {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  #footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
#footer .container .left {
  flex: 0 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 1280px) {
  #footer .container .left {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  #footer .container .left {
    flex: 0 0 auto;
    width: 100%;
  }
}
#footer .container .left > a {
  width: auto;
  height: auto;
  display: flex;
}
#footer .container .left > a > img {
  width: auto;
  height: 100%;
}
#footer .container .left > a > h2 {
  display: block;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 1280px) {
  #footer .container .left > a > h2 {
    font-size: 24px;
  }
}
#footer .container .left .f-info-area {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#footer .container .left .f-info-area > b {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .container .left .f-info-area > b {
    font-size: 1rem;
  }
}
#footer .container .left .f-info-area .info-contents {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#footer .container .left .f-info-area .info-contents .row {
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#footer .container .left .f-info-area .info-contents .row > em {
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
  flex: 0 0 auto;
  font-size: 17px;
  line-height: 1.2;
  color: #aaa;
}
@media (max-width: 1280px) {
  #footer .container .left .f-info-area .info-contents .row > em {
    font-size: 14px;
  }
}
#footer .container .left .f-info-area .info-contents .row > em::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
  background: #aaa;
}
#footer .container .left .f-info-area .info-contents .row > span {
  font-size: 17px;
  line-height: 1.2;
  color: #aaa;
}
@media (max-width: 1280px) {
  #footer .container .left .f-info-area .info-contents .row > span {
    font-size: 14px;
  }
}
#footer .container .right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 1280px) {
  #footer .container .right {
    justify-content: flex-start;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  #footer .container .right {
    flex: unset;
    width: 100%;
    height: auto;
    align-items: flex-start;
  }
}
#footer .container .right .phone-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
@media (max-width: 768px) {
  #footer .container .right .phone-box {
    align-items: flex-start;
  }
}
#footer .container .right .phone-box > span {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #ddd;
}
@media (max-width: 1280px) {
  #footer .container .right .phone-box > span {
    font-size: 14px;
  }
}
#footer .container .right .phone-box > a {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
}
@media (max-width: 1280px) {
  #footer .container .right .phone-box > a {
    font-size: 24px;
  }
}
#footer .container .right .copyright {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #aaa;
}/*# sourceMappingURL=common.css.map */