@charset "UTF-8";
body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important;
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: white;
  z-index: 100;
}
header .top-txt-banner {
  position: relative;
  width: 100%;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}
header .top-txt-banner p {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
header .top-txt-banner .close-btn {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../img/header_close_btn.svg) no-repeat center center/contain;
}
header .top-txt-banner.hide {
  margin-top: -36px;
}
header .gnb-area {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 48px 80px;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}
header .gnb-area .logo-img {
  width: 87px;
  height: 33px;
  background: url(../img/logo_bk.svg) no-repeat center center/contain;
  transform: translateY(-6px);
}
header .gnb-area .menus {
  display: flex;
  gap: 20px;
}
header .gnb-area .menus > li > a {
  position: relative;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  padding-bottom: 14px;
}
header .gnb-area .menus > li > a::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1d1d1d;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  display: none;
}
header .gnb-area .menus > li > a:hover::before {
  opacity: 1;
}
header .gnb-area .menus > li .sub-menus {
  margin-top: 32px;
  display: flex;
  flex-flow: column;
  gap: 30px;
  display: none;
  opacity: 0;
}
header .gnb-area .menus > li .sub-menus > li {
  color: #555;
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.15px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
header .gnb-area .menus > li .sub-menus > li:hover {
  color: #1d1d1d;
}
header .gnb-area .gnb-center-area {
  width: 100%;
  padding-left: 40px;
}
header .gnb-area .search-area {
  position: relative;
  border-bottom: 2px solid #000;
  max-width: 340px;
  min-width: 180px;
  width: 100%;
  padding-bottom: 7px;
  float: right;
}
header .gnb-area .search-area input {
  width: 100%;
  border: none;
  outline: none;
  background: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.16px;
}
header .gnb-area .search-area .search-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: url(../img/header_search_btn.svg);
  filter: invert(1);
}
header .gnb-area .category-menus {
  margin-left: 80px;
}
header .gnb-area .category-menus li {
  margin-right: 55px;
}
header .gnb-area .right-menus {
  margin-left: 40px;
  gap: 40px;
}
header .gnb-area .right-menus > li {
  min-width: auto;
}
header .gnb-area .right-menus li a {
  position: relative;
}
header .gnb-area .right-menus li a::before {
  background-color: white;
}
header .gnb-area .right-menus .has-cart {
  position: absolute;
  top: -1px;
  right: -9px;
  width: 5px;
  height: 5px;
  border-radius: 2.5px;
  background-color: #bf1238;
}
@media screen and (max-width: 1300px) {
  header .gnb-area .category-menus {
    margin-left: 40px;
  }
  header .gnb-area .menus li {
    min-width: auto;
  }
  header .gnb-area .right-menus {
    gap: 20px;
  }
}
header.fixed {
  position: fixed;
}
header.hide {
  transform: translateY(-100%);
}
header.transparent {
  background-color: transparent;
}
header.transparent .gnb-area .logo-img {
  background: url(../img/logo_wh.svg) no-repeat center center/contain;
}
header.transparent .gnb-area .menus > li > a {
  color: white;
}
header.transparent .gnb-area .search-area {
  border-bottom: 2px solid #fff;
}
header.transparent .gnb-area .search-area .search-btn {
  filter: invert(0);
}
header.transparent .gnb-area .search-area input {
  color: white;
}
header.show-sub-menus .gnb-area {
  background-color: white;
  padding-bottom: 60px;
}
header.show-sub-menus .gnb-area .menus > li > a {
  color: #1d1d1d;
}
header.show-sub-menus .gnb-area .menus > li > a::before {
  display: block;
}
header.show-sub-menus .gnb-area .sub-menus {
  display: flex !important;
  opacity: 1 !important;
}
header.show-sub-menus .gnb-area .search-area {
  border-bottom: 2px solid #000;
}
header.show-sub-menus .gnb-area .search-area .search-btn {
  filter: invert(1);
}
header.show-sub-menus .gnb-area .logo-img {
  width: 87px;
  height: 33px;
  background: url(../img/logo_bk.svg) no-repeat center center/contain;
}

.main-page .inner-container {
  width: 100%;
  min-width: 1200px;
  max-width: 2400px;
  margin: 0 auto;
  padding: 0 80px;
}
.main-page #main-banner-swiper {
  position: relative;
  height: 41.25vw;
  min-height: 600px;
  max-height: 792px;
}
.main-page #main-banner-swiper .swiper-slide a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.main-page #main-banner-swiper .swiper-slide img {
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  transform: translate(-50%, -50%);
}
.main-page #main-banner-swiper .swiper-pagination {
  bottom: 74px;
}
.main-page #main-banner-swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  border-radius: 0;
  background-color: white;
  width: 85px;
  height: 3px;
  opacity: 0.7;
}
.main-page #main-banner-swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.main-page #main-txt-banner-swiper {
  margin-top: 34px;
  height: -moz-fit-content;
  height: fit-content;
}
.main-page #main-txt-banner-swiper .title {
  color: #1d1d1d;
  text-align: center;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.46px;
  text-transform: uppercase;
}
.main-page #main-txt-banner-swiper .subtitle {
  margin-top: 20px;
  color: #555;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.2px;
  text-transform: uppercase;
}
.main-page .sec1 {
  position: relative;
  padding: 160px 0 80px;
}
.main-page .sec1 .banners {
  display: flex;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}
.main-page .sec1 .banners li {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 36.59%;
  overflow: hidden;
  background-color: red;
}
.main-page .sec1 .banners li a {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.main-page .sec1 .banners li a span {
  position: absolute;
  bottom: 40px;
  left: 50%;
  text-align: center;
  color: #f9f9f9;
  transform: translateX(-50%);
  font-family: Pretendard;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.24px;
  text-transform: uppercase;
}
.main-page .sec1 .banners li a span::after {
  position: absolute;
  display: block;
  content: " ";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: white;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.main-page .sec1 .banners li:hover span::after {
  opacity: 1;
}
.main-page .sec2 {
  padding: 80px 0;
}
.main-page .sec2 h3 {
  color: #1d1d1d;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}
.main-page .sec2 .sec2-swiper {
  width: 110%;
}
.main-page .sec2 .sec2-swiper .swiper-wrapper {
  transition-property: height;
}
.main-page .sec2 .sec2-swiper .swiper-wrapper .swiper-slide {
  width: 360px;
}
.main-page .sec2 .sec2-swiper .swiper-wrapper .swiper-slide .prd-img-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
}
.main-page .sec2 .sec2-swiper .swiper-wrapper .swiper-slide .prd-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-page .sec2 .sec2-swiper .swiper-wrapper .swiper-slide .prd-name {
  margin: 24px 0 14px;
  color: #2d2d2d;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.main-page .sec2 .sec2-swiper .swiper-wrapper .swiper-slide .sale-percent {
  color: #bf1238;
  font-size: 18px;
  font-weight: 600;
}
.main-page .sec2 .sec2-swiper .swiper-wrapper .swiper-slide .sale-price {
  color: #2d2d2d;
  font-size: 18px;
  font-weight: 500;
}
.main-page .sec2 .tabs {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 56px;
}
.main-page .sec2 .tabs > li {
  color: #8e8e8e;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
}
.main-page .sec2 .tabs > li.active, .main-page .sec2 .tabs > li:hover {
  color: #1d1d1d;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  text-transform: uppercase;
  border-bottom: #1d1d1d;
  text-decoration: underline;
}
.main-page .sec2 .tab-content {
  margin-top: 42px;
  min-height: 440px;
}
.main-page .sec2 .tab-content > div {
  display: none;
}
.main-page .sec2 .tab-content > div.active {
  display: block;
}
.main-page .sec3 {
  padding: 80px 0;
}
.main-page .sec3 .inner-container {
  width: 1440px;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}
.main-page .sec3 .inner-container .text-btn-area {
  flex-grow: 1;
  display: flex;
  gap: 34px;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
}
.main-page .sec3 .inner-container .text-btn-area button {
  position: relative;
  color: #c6c6c6;
  font-size: 46px;
  line-height: 55px;
  font-weight: 600;
  letter-spacing: -0.46px;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}
.main-page .sec3 .inner-container .text-btn-area button::after {
  position: absolute;
  display: block;
  content: " ";
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #000;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.main-page .sec3 .inner-container .text-btn-area button:hover {
  color: #000;
}
.main-page .sec3 .inner-container .text-btn-area button.active {
  color: #000;
}
.main-page .sec3 .inner-container .text-btn-area button.active::after {
  opacity: 1;
  width: 100%;
}
.main-page .sec3 .inner-container .thumb-btn-area {
  width: 49px;
  min-width: 49px;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  gap: 10px;
}
.main-page .sec3 .inner-container .thumb-btn-area button {
  position: relative;
}
.main-page .sec3 .inner-container .thumb-btn-area button::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.main-page .sec3 .inner-container .thumb-btn-area button.active::after {
  opacity: 0;
}
.main-page .sec3 .inner-container .swiper-area {
  overflow: hidden;
  width: 658px;
  height: 823px;
}
.main-page .sec3 .inner-container .swiper-area #sec3-swiper {
  width: 100%;
  height: 100%;
}
.main-page .sec3 .inner-container .swiper-area #sec3-swiper .swiper-slide a img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.main-page .sec3 .inner-container .swiper-area #sec3-swiper .swiper-slide a span {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 12px 10px;
  color: #fff;
  font-size: 16px;
  line-height: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.main-page .sec3 .inner-container .swiper-area #sec3-swiper .swiper-slide a span::before {
  margin-right: 10px;
  display: inline-block;
  content: "+";
  font-weight: 100;
  line-height: 19px;
  font-size: 22px;
  color: white;
}
.main-page .sec4 {
  padding: 80px 0;
}
.main-page .sec4 h3 {
  color: #1d1d1d;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.46px;
  text-transform: uppercase;
}
.main-page .sec4 #sec4-swiper {
  margin-top: 52px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.main-page .sec4 #sec4-swiper .swiper-slide {
  width: 529px;
}
.main-page .sec4 #sec4-swiper .swiper-slide .img-wrap {
  width: 100%;
  height: 662px;
}
.main-page .sec4 #sec4-swiper .swiper-slide .img-wrap img {
  width: 100%;
  height: 100%;
}
.main-page .sec4 #sec4-swiper .swiper-slide .category {
  margin-top: 16px;
  color: var(--Identity-Color-Text---body, #555);
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.14px;
  text-transform: uppercase;
}
.main-page .sec4 #sec4-swiper .swiper-slide .title {
  margin-top: 12px;
  color: var(--Identity-Color-Text---title, #1d1d1d);
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.26px;
  text-transform: uppercase;
}

footer {
  margin-top: 60px;
  border-top: 1px solid #c6c6c6;
  background-color: white;
  padding: 80px;
  display: flex;
  justify-content: space-between;
}
footer .contact {
  color: #1d1d1d;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-transform: uppercase;
}
footer .contact span {
  font-weight: 700;
}
footer .operation-time {
  margin-top: 14px;
  color: #8e8e8e;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-transform: uppercase;
}
footer .info {
  margin-top: 40px;
  color: #575757;
  /* 16px → 12px */
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
footer .info a {
  text-decoration: underline;
}
footer .insuration-title {
  margin-top: 60px;
  color: #1d1d1d;
  /* 16px → 12px */
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
}
footer .insurance {
  /* 16px → 6px */
  margin-top: 6px;
  color: #575757;
  /* 16px → 12px */
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
}
footer .copyright {
  /* 16px → 18px */
  margin-top: 18px;
  color: #bebebe;
  /* 16px → 12px */
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
}
footer .links {
  display: flex;
  gap: 100px;
}
footer .links p {
  color: #1d1d1d;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  text-transform: uppercase;
  white-space: nowrap;
}
footer .links nav {
  margin-top: 20px;
  display: flex;
  flex-flow: column;
  gap: 20px;
}
footer .links nav a {
  color: #575757;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  text-transform: uppercase;
  white-space: nowrap;
}/*# sourceMappingURL=pc.css.map */