:root {
    --main-color: #FAD983;
    --sub-color-01: #C3EF7B;
    --sub-color-02: #157748;
    --sub-color-03: #2A025B;
    --black-color-01: #000000;
    --black-color-02: #1A1A1A;
    --sub-txt-color-01: #FFFFFF;
    --sub-txt-color-02: #AAAAAA;
    --sub-txt-color-03: #999999;
    --border-color: rgba(255, 255, 255, 0.2);
}
* {
  box-sizing: border-box;
  /*
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  */
  -webkit-tap-highlight-color : transparent;
}
*::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
*::-webkit-scrollbar-thumb {
  height: 10%;
  background: var(--main-color);
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  background: rgba(33, 122, 244, .1);
}
html {
  scroll-behavior : smooth;
}
body {
    font-family: "Pretendard", "Open Sans";
    position: relative;
    background-color: var(--black-color-01);
    overflow: hidden;
    overflow-y: auto;
}
/*seo*/
.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
}

/*공통*/
.wrap {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.mc-wrap {
    width: 100%;
    padding: 150px 0;
    background-color: var(--main-color);
}
.bc-wrap {
    width: 100%;
    padding: 150px 0;
    background-color: var(--black-color-01);
}
.bg-wrap {
    width: 100%;
    padding: 150px 0;
    background-color: var(--black-color-02);
}

.top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
  background-color: var(--sub-color-02);
  cursor: pointer;
  z-index: 98;
}
.top-btn img {
  width: 20px;
  height: 20px;
}
.btn {
    width: 200px;
    min-width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    border: 1px solid var(--border-color);
}
.btn.solid-btn {
    background-color: #1A1A1A;
}
.btn.solid-btn:hover {
    opacity: .9;
}
.btn.basic-btn {
    background-color: transparent;
}
.btn.basic-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
/*header*/
.ham {
    display: none;
}
#ham_btn {
    display: none;
}
#ham_btn + label {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 42px;
  height: 26px;
  cursor: pointer;
  z-index: 10;
}
#ham_btn + label > span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 5px;
  transition: all 300ms;
}
#ham_btn:checked + label > span:nth-child(1) {
  top: 50%;
  transform: translate(0, -50%);
  transform: rotate(45deg);
}
#ham_btn + label > span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
  width: 50%;
}
#ham_btn:checked + label > span:nth-child(2) {
  opacity: 0;
}
#ham_btn + label > span:nth-child(3) {
  bottom: 0;
  background-color: var(--main-color) !important;
}
#ham_btn:checked + label > span:nth-child(3) {
  top: 50%;
  transform: translate(0, -50%);
  transform: rotate(-45deg);
}
.header-wrap {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    transition: all .5s ease-in-out;
}
.header-wrap.on {
    background-color: black;
}
.header-wrap .container {
    width: 100%;
    height: auto;
    max-width: 1600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}
.header-wrap .container .rt {
    display: flex;
    align-items: center;
    gap: 24px;
}
.logo {
    height: 55px;
    display: block;
}
.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.gnb {
    display: flex;
    align-items: center;
    gap: 36px;
    height: 80px;
}
.gnb > li {
    height: 100%;
    position: relative;
    overflow: visible;
}
.gnb > li::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--main-color);
    transition: .2s ease-in-out;
}
.gnb > li:hover::after {
    width: 100%;
}
.gnb > li.on > a {
    color: var(--main-color);
}
.gnb > li.on::after {
    width: 100%;
}
.gnb > li > a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    position: relative;
}
.gnb > li:hover > a {
    color: var(--main-color);
}
.gnb-sub {
    min-width: 120px;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background-color: var(--main-color);
    border-radius: 12px;
    padding: 16px;
    pointer-events: auto;
    display: none;
}
.gnb-sub::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: transparent;
}
.gnb > li:hover .gnb-sub {
    display: flex;
}
.gnb-sub li a {
    display: block;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-color-03);
    text-align: center;
}
.gnb-sub li a.cate {
    font-size: 16px;
    font-weight: 700;
    margin-top: 16px;
}
.gnb-sub li:first-child a {
    margin-top: 0;
}
.gnb-sub li a:hover {
    opacity: .8;
}

/*footer*/
footer {
    border-top: 1px solid var(--border-color);
}
.footer-wrap {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
    padding: 60px 0;
}
.footer-wrap .lt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}
.footer-wrap .lt .tp > p {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 24px;
}
.footer-wrap .lt .copy {
    font-size: 12px;
    font-weight: 300;
    color: var(--sub-txt-color-02);
}
.footer-wrap .rt {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.fnb {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.fnb li a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
.fnb li a:hover {
    color: var(--sub-txt-color-02);
}
.footer-wrap .rt .info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}
.footer-wrap .rt .info p:first-child {
    font-size: 12px;
    font-weight: 300;
    color: var(--sub-txt-color-02);
    margin-bottom: 8px;
    text-align: right;
}
.footer-wrap .rt .info p:nth-child(2) {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
    text-align: right;
}

/*main*/
.main-banner {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.banner-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.banner-grid .item {
    position: relative;
    overflow: hidden;
}
.banner-grid .item::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--black-color-01);
    animation: curtainDown .3s ease-in-out forwards;;
}
.banner-grid .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 순차 딜레이 */
.banner-grid .item:nth-child(1)::before {
    animation-delay: 0s;
}
.banner-grid .item:nth-child(2)::before {
    animation-delay: 0.3s;
}
.banner-grid .item:nth-child(3)::before {
    animation-delay: 0.6s;
}
.banner-grid .item:nth-child(4)::before {
    animation-delay: 0.9s;
}

/* 커튼 내려가는 애니메이션 */
@keyframes curtainDown {
    from {
        height: 100%;
    }
    to {
        height: 0;
    }
}
.main-banner .content {
    width: 100%;
    padding: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
}
.main-banner .content .banner-logo img {
    width: 250px;
}
.main-banner .content .bt {
    display: flex;
    align-items: center;
    gap: 36px;
    position: relative;
    transition: all .3s ease-in-out .9s;
}
.main-banner.is-active .content .bt {
    gap: 322px;
}
.main-banner .content .bt span {
    display: inline-block;
    font-size: 60px;
    font-weight: 600;
    color: #fff;
}
.sub-slider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(600px);
    width: 250px;
    height: 100px;
    border-radius: 100px;
    overflow: hidden;
    background-color: var(--main-color);
    transition: transform .3s ease 0.9s;
}
.main-banner.is-active .sub-slider {
    transform: translateX(-50%) translateY(-50%);
}
.sub-slider .swiper-slide .img-box {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 16px 24px;
}
.sub-slider .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*scroll down*/
.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-down .scroll-arrow {
  padding-top: 80px;
  position: relative;
}
.scroll-down .scroll-arrow span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: scroll_arorw 2s infinite;
  animation: scroll_arorw 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}
.scroll-down .scroll-arrow span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.scroll-down .scroll-arrow span:nth-of-type(2) {
  top: 12px;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}
.scroll-down .scroll-arrow span:nth-of-type(3) {
  top: 24px;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}
@-webkit-keyframes scroll_arorw {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scroll_arorw {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.main-02 {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}
.main-02 .lt {
    width: 50%;
    height: 100%;
}
.main-02 .lt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}
.main-02 .rt {
    width: 50%;
    padding: 24px 24px 0 60px;
}
.main-02 .rt .txt .tp span {
    font-size: 250px;
    font-weight: 900;
    color: var(--main-color);
    line-height: 0.8;
    mix-blend-mode: difference;
    display: inline-block;
    transition: transform 1s cubic-bezier(.4,0,.2,1);
}

/* 초기 위치 */
.main-02 .rt .txt .tp .brand {
    margin-left: -385px;
    transform: translateX(100vw);
}

.main-02 .rt .txt .tp .story {
    margin-left: -270px;
    transform: translateX(-100vw);
}

/* 스크롤 진입 후 */
.main-02.is-active .rt .txt .tp .brand,
.main-02.is-active .rt .txt .tp .story {
    transform: translateX(0);
}
.main-02 .rt .bt {
    margin-top: 48px;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
}
.main-link {
    display: flex;
    margin-top: 48px;
}
.main-link.center {
    justify-content: center;
}
.main-link a {
    display: block;
    width: 200px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    border: 1px solid var(--border-color);
    transition: all .2s ease-in-out;
}
.main-link a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.main-tit {
    font-size: 150px;
    font-weight: 900;
    margin-bottom: 48px;
    line-height: 1;
}
.main-tit.center {
    text-align: center;
}
.main-tit.purple {
    color: #fff;
}
.main-tit.mc {
    color: #fff;
}
.main-tit.green {
    color: #fff;
}
.fill-title {
    position: relative;
    display: inline-block;
    color: #fff;
    overflow: hidden;
}
.fill-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: var(--fill, 0%);
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
    pointer-events: none;
}
.main-tit.purple.fill-title::after {
    color: var(--sub-color-03);
}
.main-tit.mc.fill-title::after {
    color: var(--main-color);
}
.main-tit.green.fill-title::after {
    color: var(--sub-color-01);
}
.lineup-slider {
    width: 100%;
}
.lineup-slider a {
    display: block;
    position: relative;
}
.lineup-slider .img-box {
    width: 100%;
    aspect-ratio: 2 / 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.lineup-slider .img-box::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(26, 26, 26, 0) 80%, rgba(0, 0, 0, 0.5) 100%);
}
.lineup-slider .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lineup-slider .txt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.lineup-slider .txt p:first-child {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
}
.lineup-slider .txt p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
}

.main-04 {
    position: relative;
    text-align: center;
}
.lookbook-slider {
    width: 100%;
    position: relative;
}
.lookbook-slider .swiper-slide a {
    display: block;
}
.lookbook-slider .swiper-slide .img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.lookbook-slider .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}
.lookbook-slider .swiper-slide a > p {
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    text-align: left;
}
.lookbook-nav {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background-color: var(--black-color-01);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: .2s ease-in-out;
}
.lookbook-nav:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
.lookbook-nav.lookbook-prev {
    left: 16px;
    background-image: url('../images/common/nav_prev_arrow.png');
    background-position: center center;
    background-size: 24px 24px;
    background-repeat: no-repeat;
}
.lookbook-nav.lookbook-next {
    right: 16px;
    background-image: url('../images/common/nav_next_arrow.png');
    background-position: center center;
    background-size: 24px 24px;
    background-repeat: no-repeat;
}
.lookbook-nav .arrow {
    width: 24px;
    position: relative;
    z-index: 2;
}
/* 위치 담당 */
.lookbook-nav .txt-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    overflow: hidden;
}

/* 회전 담당 */
.lookbook-nav .txt {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: rotateText 12s linear infinite;
    transform-origin: 50% 50%;
    will-change: transform;
}

@keyframes rotateText {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.swiper-button-disabled {
    display: none;
}
.main-05 {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}
.main-05 .bg {
    width: 100%;
    height: 100%;
    position: relative;
}
.main-05 .bg::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
.main-05 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}
.main-05 .content {
    width: 100%;
    height: 100%;
    padding: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.main-05 .content span {
    font-size: 20px;
    font-weight: 600;
    color: var(--sub-color-01);
}
.main-05 .content .main-link a {
    border: 1px solid var(--sub-color-01);
    color: var(--sub-color-01);
}

/*pages*/
.page-area {
    display: flex;
    flex-direction: column;
    gap: 200px;
    padding-bottom: 150px;
}
.page-area.pb-none {
    padding-bottom: 0;
}
.intro-banner {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.intro-banner .bg {
    width: 100%;
    height: 100%;
}
.intro-banner .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.intro-banner .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 200px;
    font-weight: 400;
    color: #fff;
    mix-blend-mode: difference;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    display: flex;
    align-items: center;
}

.brand-01-01 .tp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin-bottom: 48px;
}
.brand-01-01 .tp span {
    display: inline-block;
    font-size: 80px;
    font-weight: 700;
    color: var(--main-color);
}
.brand-slider {
    width: 300px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    padding: 16px;
}
.brand-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brand-01-01 .bt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.brand-01-01 .bt p {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
    text-align: center;
}
.brand-01-02 .img-box {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.scroll-scale img {
    transform: scale(0);
    transform-origin: center center;
    will-change: transform;
}
.brand-01-03 .tp {
    width: 100%;
    height: 760px;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 48px;
}
.brand-01-03 .tp .img-box {
    width: 50%;
    height: 100%;
}
.brand-01-03 .tp .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brand-01-03 .tp .txt {
    margin-left: -170px;
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    mix-blend-mode: difference;
}
.brand-01-03 .bt {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
}
.brand-02-01 {
    display: flex;
    flex-direction: column;
    gap: 150px;
}
.brand-02-01 .box .hd {
    padding: 16px 24px;
    border-radius: 24px;
    background-color: var(--black-color-02);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 36px;
    font-weight: 300;
    color: #fff;
}
.brand-02-01 .box .hd img {
    width: 42px;
    padding-top: 5px;
}
.brand-02-01 .group .bt {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}
.brand-02-01 .group .lt {
    width: 50%;
    font-size: 28px;
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
    padding-top: 48px;
}
.brand-02-01 .group .list {
    width: 50%;
}
.brand-02-01 .group .list .item {
    padding: 48px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.brand-02-01 .group .list .item:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}
.brand-02-01 .group .list .item p:first-child {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
}
.brand-02-01 .group .list .item p:last-child {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
}
.bumpersole-01-01 p:first-child {
    font-size: 58px;
    font-weight: 700;
    color: var(--main-color);
    text-align: center;
    line-height: 1.2;
    margin-bottom: 36px;
}
.bumpersole-01-01 p:last-child {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
    text-align: center;
}
.bumpersole-01-02 {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.bumpersole-01-02 > p {
    font-size: 58px;
    font-weight:  700;
    color: var(--main-color);
    width: 100%;
    max-width: 1600px;
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.bumpersole-01-02 .item-wrap {
    position: relative;
    height: 100%;
}
.bumpersole-01-02 .item-wrap .item {
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateY(100%);
}
.bumpersole-01-02 .item-wrap .item:first-child {
    transform: translateY(0);
}
.bumpersole-01-02 .item-wrap .item:nth-of-type(1) { z-index: 1; }
.bumpersole-01-02 .item-wrap .item:nth-of-type(2) { z-index: 2; }
.bumpersole-01-02 .item-wrap .item:nth-of-type(3) { z-index: 3; }
.bumpersole-01-02 .item-wrap .item .bg {
    width: 100%;
    height: 100%;
}
.bumpersole-01-02 .item-wrap .item .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}
.bumpersole-01-02 .item-wrap .item .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 24px;
    padding: 150px 0;
}
.bumpersole-01-02 .item-wrap .item .txt p:first-child {
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    text-align: right;
}
.bumpersole-01-02 .item-wrap .item .txt p:last-child {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
    text-align: right;
}
.bumpersole-01-03 {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}
.bumpersole-01-03 > p {
    font-size: 58px;
    font-weight: 700;
    color: var(--main-color);
}
.bumpersole-01-03 .rt {
    width: 100%;
    max-width: 1100px;
}
.bumpersole-01-03 .rt > p {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 48px;
}
.bumpersole-01-03 .grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.bumpersole-01-03 .grid .item .img-box {
    width: 100%;
    aspect-ratio: 2 / 3;
    margin-bottom: 16px;
}
.bumpersole-01-03 .grid .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}
.bumpersole-01-03 .grid .item p {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}
.loobook-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.loobook-grid .item {
    display: block;
    position: relative;
}
.loobook-grid .item .img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}
.loobook-grid .item .img-box::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(26, 26, 26, 0) 80%, rgba(26, 26, 26, 0.8) 100%);
    transition: all .2s ease-in-out;
}
.loobook-grid .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}
.loobook-grid .item > p {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    padding: 48px;
    display: flex;
    align-items: flex-end;
    opacity: 1;
    transition: all .2s ease-in-out;
}
.loobook-grid .item:hover > p {
    opacity: 0;
}
.loobook-grid .item .cover {
    position: relative;
}
.loobook-grid .item .cover::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: all .2s ease-in-out;
}
.loobook-grid .item:hover .cover::after {
    background-color: rgba(0, 0, 0, 0.7);
}
.loobook-grid .item .view-more {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background-image: url('../images/common/nav_next_arrow.png');
    background-position: center center;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    overflow: hidden;
    background-color: var(--black-color-01);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease-in-out;
    opacity: 0;
}
.loobook-grid .item:hover .view-more {
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 1;
}
.loobook-grid .item .view-more .txt-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    overflow: hidden; 
}
.loobook-grid .item .view-more .txt {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: rotateText 12s linear infinite;
    transform-origin: 50% 50%;
    will-change: transform;
}

.customer-area {
    padding: 200px 0 150px;
}
.customer-area .page-tit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 100px;
}
.customer-area .page-tit .page-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}
.customer-area .page-tit .page-nav span {
    font-size: 16px;
    font-weight: 300;
    color: var(--sub-txt-color-02);
}
.customer-area .page-tit .page-nav span:last-child {
    font-weight: 500;
}
.customer-area .page-tit .page-nav img {
    width: 16px;
}
.customer-area .page-tit > h2 {
    font-size: 100px;
    font-weight: 700;
    color: #fff;
}
.customer-area .customer-expl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    border-radius: 12px;
    background-color: var(--black-color-02);
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 100px;
}
.customer-area .customer-expl img {
    width: 24px;
    padding-top: 4px;
}
.form-area .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}
.form-area .input-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.form-area .input-grid.col-span-2 {
    grid-column: 1 / -1;
}
.form-area .input-grid > p {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.form-area .input-grid > p b {
    font-weight: 700;
    color: var(--main-color);
}
.form-area .input-grid input[type="text"],
.form-area .input-grid input[type="password"],
.form-area .input-grid input[type="email"],
.form-area .input-grid input[type="number"],
.form-area .input-grid input[type="file"],
.form-area .input-grid .input-file {
    width: 100%;
    background-color: transparent;
    height: 60px;
    padding: 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}
.form-area .input-grid textarea {
    padding: 16px;
    height: 200px;
    background-color: transparent;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    border: 1px solid var(--border-color);
}
.form-area .input-grid input[type="text"]:focus,
.form-area .input-grid input[type="password"]:focus,
.form-area .input-grid input[type="email"]:focus,
.form-area .input-grid input[type="number"]:focus,
.form-area .input-grid input[type="file"]:focus,
.form-area .input-grid .input-file {
    outline: none;
    border-bottom: 1px solid var(--main-color);
}
.form-area .input-grid textarea:focus {
    outline: none;
    border: 1px solid var(--main-color);
}
.form-area .input-grid .form-expl {
    font-size: 14px;
    font-weight: 300;
    color: var(--main-color);
    line-height: 1.3;
}
.file-upload {
  display: flex;
  align-items: center;
  gap: 8px;
}
.file-upload .file-btn {
    cursor: pointer;
}
.file-upload .file-btn:hover {
    opacity: .8;
}
.btn-wrap {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 48px;
}
.btn-wrap.center {
    justify-content: center;
}
.btn-wrap.mt-24 {
    margin-top: 24px;
}
.customer-list {
    border-top: 2px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.customer-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 48px;
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
    cursor: pointer;
}
.customer-list li::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    transition: all .2s ease-in-out;
}
.customer-list li:hover::after {
    width: 100%;
}
.customer-list li:last-child {
    border-bottom: none;
}
.customer-list li.empty {
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}
.customer-list li .num {
    font-weight: 700;
    color: var(--main-color);
    min-width: 50px;
    text-align: center;
}
.customer-list li .tit {
    font-weight: 400;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.customer-list li .writer {
    min-width: 120px;
    width: 120px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.customer-list li .date {
    min-width: 80px;
    width: 80px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.customer-list li .reply span {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}
.customer-list li .reply span.no {
    background-color: transparent;
}
.customer-list li .reply span.yes {
    background-color: var(--sub-color-02);
}
/*Pagination*/
.pagination {
  position: relative;
  margin-top: 16px;
}
.pagination.mt-0 {
    margin-top: 0;
}
.pagination.mt-60 {
  margin-top: 60px;
}
.pagination.mt-24 {
  margin-top: 24px;
}
.pagination.mt-12 {
  margin-top: 12px;
}
.pagination > a {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.pagination li {
  width: 28px;
  height: 28px;
}
.pagination li a {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--sub-txt-color-02);
}
.pagination li a:not(.arrow):hover {
    color: var(--main-color);
    text-decoration: underline;
}
.pagination li.on {
    color: var(--main-color);
    text-decoration: underline;
}
.pagination li.on a {
    color: var(--main-color);
    text-decoration: underline;
}
.pagination li a img {
  height: 10px;
  object-fit: cover;
}
.customer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 102;
  display: none;
}
.customer-modal .modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--black-color-02);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  gap: 16px;
}
.customer-modal .modal-box input[type="password"] {
    width: 100%;
    height: 60px;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
}
.customer-modal .modal-box input[type="password"]:focus {
    outline: none;
    border-bottom: 1px solid var(--main-color);
}
.view-tit-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.view-tit-box .tit {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
}
.view-tit-box .info {
    display: flex;
    align-items: center;
}
.view-tit-box .info span {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--sub-txt-color-02);
}
.view-tit-box .info span b {
    font-weight: 500;
    margin-right: 12px;
}
.view-tit-box .info span b.yes {
    color: var(--sub-color-02);
}
.view-tit-box .info span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: var(--border-color);
    margin: 0 12px;
}
.file-box {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.file-box a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.file-box a img {
  height: 18px;
}
.file-box a span {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: var(--sub-txt-color-03);
}
.file-box a:hover span {
  text-decoration: underline;
}
.file-box a.empty {
  font-weight: 500;
}
.editor-area {
    padding: 96px 0;
    min-height: 250px;
    line-height: 1.5;
    font-size: 16px !important;
    color: #fff !important;
}
.reply-box {
    border-radius: 12px;
    padding: 36px 24px;
    background-color: var(--black-color-02);
}
.reply-box .tp {
    display: flex;
    align-items: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.reply-box .tp span {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #fff;
}
.reply-box .tp span b {
    font-weight: 500;
}
.reply-box .tp span b.yes {
    color: var(--sub-color-02);
}
.reply-box .tp span b.no {
    color: var(--sub-txt-color-02);
}
.reply-box .tp span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: var(--border-color);
    margin: 0 12px;
}
.reply-box .bt span {
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
}
.lineup-banner {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.lineup-banner .bg {
    width: 100%;
    height: 100%;
    position: relative;
}
.lineup-banner .bg::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}
.lineup-banner .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lineup-banner .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
}
.lineup-banner .txt img {
    width: 32px;
    margin-bottom: 16px;
}
.lineup-banner .txt .category {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
}
.lineup-banner .tit {
    width: 100%;
    z-index: 2;
    font-size: 180px;
    font-weight: 400;
    color: #fff;
    line-height: .9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: .5;
}
.lineup-01 p:first-child {
    font-size: 58px;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1.2;
    margin-bottom: 36px;
}
.lineup-01 p:last-child {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
}
.section-tit {
    font-size: 58px;
    font-weight: 700;
    color: #fff;
}
.section-tit.center {
    text-align: center;
    margin-bottom: 48px;
}
.lineup-02 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.color-slider {
    width: 100%;
    max-width: 760px;
    aspect-ratio: 4 / 3;
    border-radius: 0 48px 0 48px;
    overflow: hidden;
}
.color-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.color-pagination {
    width: 180px !important;
    position: relative;
    bottom: unset;
    left: unset;
    top: unset;
    right: unset;
    transform: unset;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end !important;
    gap: 16px;
}
.color-pagination .swiper-pagination-bullet {
    color: var(--sub-txt-color-02);
    font-size: 24px;
    font-weight: 500;
    white-space: nowrap;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    opacity: 1;
    width: max-content !important;
    height: auto !important;
    margin: 0 !important;
    transition: all .2s ease-in-out;
}
.color-pagination .swiper-pagination-bullet::before {
    content: "";
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    display: inline-block;
    transition: all .2s ease-in-out;
}
.color-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    color: var(--main-color)
}
.color-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    width: 48px;
    transition: all .2s ease-in-out;
}
.mt-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.lineup-03 {
    width: 100%;
    max-width: 1000px;
    height: 450px;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
    position: relative;
    border-radius: 0 48px 0 48px;
}
.lineup-03 .bg {
    width: 100%;
    height: 100%;
    position: relative;
}
.lineup-03 .bg::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.lineup-03 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lineup-03 .txt {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 24px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 48px;
}
.lineup-03 .txt p:first-child {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}
.lineup-03 .txt p:nth-child(2) {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
    text-align: left;
}
.lineup-04 {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
table {
    width: 100%;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-collapse: collapse !important;
    table-layout: fixed;
}
table th, table td {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 16px;
    text-align: center;
    vertical-align: middle;
}
table th {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background-color: var(--black-color-01);
}
table td {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}
.lineup-04 .size-expl {
    font-size: 14px;
    font-weight: 300;
    color: var(--main-color);
    text-align: center;
    line-height: 1.3;
    margin-top: 24px;
}
.lineup-05 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 36px;
}
.lineup-05 .lt .price-won {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    margin-top: 48px;
}
.lineup-05 .rt {
    position: relative;
    width: 100%;
    max-width: 950px;
    min-height: 800px;
}
.lineup-05 .rt .img-box {
    mix-blend-mode: difference;
}
.lineup-05 .rt .img-box:first-child {
    position: absolute;
    top: 100px;
    left: 0;
    width: 300px;
    aspect-ratio: 3 / 4;
    z-index: 2;
}
.lineup-05 .rt .img-box:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    width: 700px;
    aspect-ratio: 2 / 1;
}
.lineup-05 .rt .img-box:nth-child(3) {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 400px;
    aspect-ratio: 1 / 1;
}
.lineup-05 .rt .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}
.lineup-editor-area {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}