/* sub.css */
@import url("sub/about-1.css");
@import url("sub/about-2.css");
@import url("sub/about-3.css");
@import url("sub/about-4.css");

@import url("sub/shop-1.css");
@import url("sub/shop-2.css");
@import url("sub/shop-3.css");
@import url("sub/shop-4.css");

@import url("sub/media-1.css");

@import url("sub/community-1.css");

.visual__sub {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* About 각 배경화면 */
.about .visual__sub {
  background-image: url(../1x/s1/about-mv.png);
}

.shop .visual__sub {
  background-image: url(../1x/s2/about-mv.png);
}

.media .visual__sub {
  background-image: url(../1x/s3/about-mv.png);
}

.community .visual__sub {
  background-image: url(../1x/s4/about-mv.png);
}

.visual__sub_text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.visual__sub_text p {
  /* font-family: "KCC-Ahnchangho", "맑은 고딕", sans-serif;*/
  font-size: 4rem;
  line-height: 110%;
  color: #fff;
  margin-bottom: 3rem;
  font-weight: 800;
  opacity: 0.8;
  line-height: 90px;
}

.visual__btn_store {
  border: 1px solid #fff;
  padding: 0.875rem 2.5rem;
  color: #fff;
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .visual__sub {
    height: 80vh;
  }

  .visual__sub_text p {
    font-size: 3rem;
  }

  .visual__btn_store {
    padding: 0.75rem 2.0rem;
  }
}

@media screen and (max-width: 768px) {
  .visual__sub_text p {
    font-size: 2rem;
    line-height: 41px;
  }

  .visual__btn_store {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* category */

.category__section {
  border-bottom: 1px solid #cccccc;
}

.category__layout {
  width: 1600px;
  padding: 0 50px;
  margin: 0 auto;
}

.category__section li {
  cursor: pointer;
}

.category__section .category__layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3.25rem;
}

.category__section_nav_list {
  display: flex;
  gap: 100px;
  line-height: 3.25rem;
}

.category__section_nav_list li {
  position: relative;
  color: #999999;
  font-size: 1.125rem;
}

.category__section_nav_list li.is_active {
  color: #534740;
  font-weight: 600;
}

.category__section_nav_list li.is_active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #534740;
}

.category__section_subnav_list li {
  display: inline-block;
  font-size: 0.75rem;
  color: #999999;
  margin-left: 0.875rem;
}

.category__section_subnav_list li::after {
  content: ">";
  margin-left: 0.875rem;
}

.category__section_subnav_list li:last-child::after {
  content: "";
  margin-left: 0;
}

@media screen and (max-width: 1700px) {
  .category__layout {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .category__section_nav_list {
    gap: 50px;
  }
}

@media screen and (max-width: 768px) {
  .category__layout {
    padding: 0 24px;
  }

  .category__section_nav_list {
    gap: 20px;
  }

  .category__section_nav_list li {
    font-size: 0.875rem;
  }

  .category__section_subnav {
    display: none;
  }
}