/* Common */
.sec {
  padding: 100px 0;
}

.sec-title {
  margin-top: -6px;
  margin-bottom: 45px;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  font-family: 'RedHatDisplay';
}


.more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 23px;
  width: 140px;
  height: 50px;
  border-radius: 25px;
  background-color: #fff;
}

.more-btn p {
  margin-top: -5px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1c2d56;
  letter-spacing: -0.01em;
  line-height: 1;
}

.more-btn i {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  transition: all .2s ease-out;
}

.more-btn i::after, 
.more-btn i::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #1c2d56;
}

.more-btn i::after {
  width: 2px;
  height: 100%;
}

.more-btn i::before {
  width: 100%;
  height: 2px;
}

@media(min-width:1201px) {
  .more-btn:hover i {
    transform: rotate(90deg);
  }
}

@media(max-width:1200px) {
  .sec {
    padding: 85px 0;
  }

  .sec-title {
    margin-top: -5px;
    margin-bottom: 35px;
    font-size: 3.2rem;
  }


  .more-btn {
    gap: 0 20px;
    width: 125px;
    height: 45px;
  }

  .more-btn p {
    margin-top: -4px;
    font-size: 1.6rem;
  }

  .more-btn i::after {
    width: 2px;
  }

  .more-btn i::before {
    height: 2px;
  }

}

@media(max-width:1024) {
  .sec {
    padding: 75px 0;
  }

  .sec-title {
    margin-top: -4px;
    margin-bottom: 30px;
    font-size: 3rem;
  }


  .more-btn {
    gap: 0 15px;
    width: 110px;
    height: 40px;
  }

  .more-btn p {
    margin-top: -3px;
    font-size: 1.5rem;
  }

  .more-btn i {
    width: 12px;
    height: 12px;
  }


  .more-btn i::after {
    width: 2px;
  }

  .more-btn i::before {
    height: 2px;
  }

}

@media(max-width:768px) {
  .sec {
    padding: 75px 0;
  }

  .sec-title {
    margin-top: -3px;
    margin-bottom: 25px;
    font-size: 2.8rem;
  }


  .more-btn {
    gap: 0 12px;
    width: 100px;
    height: 35px;
  }

  .more-btn p {
    margin-top: -2px;
    font-size: 1.4rem;
  }


  .more-btn i::after {
    width: 1px;
  }

  .more-btn i::before {
    height: 1px;
  }

}

@media(max-width:500px) {
  .sec {
    padding: 65px 0;
  }

  .sec-title {
    margin-top: -2px;
    margin-bottom: 20px;
    font-size: 2.4rem;
  }


  .more-btn {
    gap: 0 10px;
    width: 90px;
    height: 30px;
  }

  .more-btn p {
    margin-top: -1px;
    font-size: 1.3rem;
  }
  
  .more-btn i {
    width: 10px;
    height: 10px;
  }

}

/* ----- S:Section01 -----*/
.sec--01 {
  width:100%;
  height:100vh;
  padding:0px;
  background-color:#000;
}

.sec--01 .visual {
  position: relative;
  width:100%;
  height:100%;
}

.sec--01 .background {
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width:100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size:cover;
  z-index:1;
}

.sec--01 .swiper-container {
  height:100%;
}

.sec--01 .swiper-wrapper {
  height:100%;
}

.sec--01 .swiper-slide {
  height:100%;
  overflow: hidden;
}

.sec--01 .swiper-controls {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  left:50%;
  bottom: 90px;
  transform: translateX(-50%);
  max-width:1430px;
  width:100%;
  margin:0 auto;
  padding:0px 15px;
  z-index:3;
}

.sec--01 .controls-navi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width:231px;
  width:100%;
}

.sec--01 .controls-navi .main-pagination {
  width:auto;
  margin-top: -3px;
  font-size:1.6rem;
  color:#fff;
  order: 2;
}

.sec--01 .controls-navi .main-pagination span {
  display: inline-block;
  vertical-align: middle;
  width: fit-content;
  text-align: center;
}

.sec--01 .controls-navi .main-pagination span.current,
.sec--01 .controls-navi .main-pagination span.total {
  width:12px;
}

.sec--01 .controls-navi .main-pagination span.line {
  margin:0px 2px;
}

.sec--01 .controls-navi .progressbar {
  width:180px;
  height:4px;
  background-color:rgba(255, 255, 255, 0.5);
  order: 1;
}

.sec--01 .controls-navi .progressbar span {
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
}

.sec--01 .controls-navi .progressbar span.active {
  width:100%;
  -moz-transition:all 5s ease;
  -webkit-transition:all 5s ease;
  transition:all 5s ease;
}

.sec--01 .swiper-controls .arrow {
  display: inline-flex;
  align-items: center;
  gap: 0 15px;
  margin-left: 19px;
}


.sec--01 .swiper-controls .prev,
.sec--01 .swiper-controls .next {
  display: inline-block;
  width:7px;
  height:12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size:cover;
  cursor: pointer;
}

.sec--01 .swiper-controls .prev {
  background-image: url('/child/img/main/visual_prev.svg');
}

.sec--01 .swiper-controls .next {
  background-image: url('/child/img/main/visual_next.svg');
}

.sec--01 .swiper-controls .stop {
  display: inline-block;
  width: 7px;
  height: 10px;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size:cover;
  cursor: pointer;
}

.sec--01 .swiper-controls .play {
  display: inline-block;
  width: 7px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-size:cover;
  cursor: pointer;
  background-image: url('/child/img/main/visual_play.svg');
}

.sec--01 .swiper-controls .stop.on {
  display: none;
}

.sec--01 .swiper-controls .play.on {
  display: none;
}

@media(max-width:1200px) {
  .sec--01 {
    width:100%;
    height:100vh;
  }
  
  .sec--01 .swiper-controls {
    bottom: 95px;
  }
  
  .sec--01 .controls-navi {
    max-width:231px;
  }
  
  .sec--01 .controls-navi .main-pagination {
    font-size:1.6rem;
  }
  
  .sec--01 .controls-navi .main-pagination span.current,
  .sec--01 .controls-navi .main-pagination span.total {
    width:12px;
  }
  
  .sec--01 .controls-navi .main-pagination span.line {
    margin:0px 2px;
  }
  
  .sec--01 .controls-navi .progressbar {
    width:180px;
    height:4px;
  }
  
  
  .sec--01 .swiper-controls .arrow {
    gap: 0 15px;
    margin-left: 19px;
  }
  
  
  .sec--01 .swiper-controls .prev,
  .sec--01 .swiper-controls .next {
    width:7px;
    height:12px;
  }
  
  .sec--01 .swiper-controls .stop {
    width: 7px;
    height: 11px;
  }
  
}

@media(max-width:1024px) {
  .sec--01 {
    height:100vh;
  }
  
  .sec--01 .swiper-controls {
    bottom: 100px;
    justify-content: center;
  }
  
  .sec--01 .controls-navi {
    max-width:200px;
  }
  
  .sec--01 .controls-navi .main-pagination {
    font-size:1.4rem;
  }
  
  .sec--01 .controls-navi .main-pagination span.current,
  .sec--01 .controls-navi .main-pagination span.total {
    width:12px;
  }
  
  .sec--01 .controls-navi .main-pagination span.line {
    margin:0px 2px;
  }
  
  .sec--01 .controls-navi .progressbar {
    width:160px;
    height:3px;
  }
  
  
  .sec--01 .swiper-controls .arrow {
    gap: 0 12px;
    margin-left: 15px;
  }
  
  
  .sec--01 .swiper-controls .prev,
  .sec--01 .swiper-controls .next {
    width:7px;
    height:12px;
  }
  
  .sec--01 .swiper-controls .stop {
    width: 7px;
    height: 11px;
  }
  
}

@media(max-width:768px) {
  .sec--01 {
    height:calc(100vh - 70px);
  }
  
  .sec--01 .swiper-controls {
    bottom: 100px;
  }
  
  .sec--01 .controls-navi {
    max-width:190px;
  }
  
  .sec--01 .controls-navi .main-pagination {
    font-size:1.3rem;
  }
  
  .sec--01 .controls-navi .main-pagination span.current,
  .sec--01 .controls-navi .main-pagination span.total {
    width:12px;
  }
  
  .sec--01 .controls-navi .main-pagination span.line {
    margin:0px 2px;
  }
  
  .sec--01 .controls-navi .progressbar {
    width:150px;
    height:2px;
  }
  
  .sec--01 .swiper-controls .arrow {
    gap: 0 10px;
    margin-left: 15px;
  }
  
  .sec--01 .swiper-controls .prev,
  .sec--01 .swiper-controls .next {
    width:6px;
    height:11px;
  }
  
  .sec--01 .swiper-controls .stop {
    width: 6px;
    height: 10px;
  }
  
}

@media(max-width:500px) {
  .sec--01 {
    height:calc(100vh - 70px);
  }
  
  .sec--01 .swiper-controls {
    bottom: 105px;
  }
  
  .sec--01 .controls-navi {
    max-width:180px;
  }
  
  .sec--01 .controls-navi .main-pagination {
    font-size:1.2rem;
  }
  
  .sec--01 .controls-navi .main-pagination span.current,
  .sec--01 .controls-navi .main-pagination span.total {
    width:12px;
  }
  
  .sec--01 .controls-navi .main-pagination span.line {
    margin:0px 2px;
  }
  
  .sec--01 .controls-navi .progressbar {
    width:140px;
    height:2px;
  }
  
  .sec--01 .swiper-controls .arrow {
    gap: 0 10px;
    margin-left: 15px;
  }
  
  .sec--01 .swiper-controls .prev,
  .sec--01 .swiper-controls .next {
    width:6px;
    height:11px;
  }
  
  .sec--01 .swiper-controls .stop {
    width: 6px;
    height: 10px;
  }
  
}
/* ----- E:Section01 -----*/

/* ----- S:Section02 -----*/
.sec--02 {
  padding: 80px 0;
}

.sec--02 .quick-list {
  display: flex;
  align-items: start;
  gap: 0 29px;
}

.sec--02 .list-item {
  width: 100%;
}

.sec--02 .list-item .thumb {
  position: relative;
  max-width: 150px;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 13px;
  background-color: #f5f5f5;
  overflow: hidden;
}

.sec--02 .list-item .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all .3s ease-in;
}

.sec--02 .list-item .item-title {
  width: 100%;
  margin-bottom: -5px;
  font-size: 1.4rem;
  text-align: center;
}

@media(min-width:1201px) {
  .sec--02 .list-item .thumb:hover img {
    transform: scale(1.1);
  }
}

@media(max-width:1200px) {
  .sec--02 {
    padding: 70px 0;
  }
  
  .sec--02 .quick-list {
    gap: 0 20px;
  }
  
  /* .sec--02 .list-item .thumb {
    margin-bottom: 13px;
  } */
  

  .sec--02 .list-item .item-title {
    margin-bottom: -4px;
  }
  
}

@media(max-width:1024px) {
  .sec--02 {
    padding: 60px 0;
  }
  
  .sec--02 .quick-list {
    gap: 0 20px;
  }
  
  /* .sec--02 .list-item .thumb {
    margin-bottom: 13px;
  } */
  

  .sec--02 .list-item .item-title {
    margin-bottom: -4px;
    font-size: 1.3rem;
  }
  
}


@media(max-width:900px) {
  .sec--02 {
    padding: 60px 0;
  }
  
  .sec--02 .quick-list {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .sec--02 .list-item {
    width: calc(25% - 15px);
  }
  
  .sec--02 .list-item .thumb {
    max-width: 100%;
    margin-bottom: 13px;
  }
  

  .sec--02 .list-item .item-title {
    margin-bottom: -4px;
  }
  
}

@media(max-width:768px) {
  .sec--02 {
    padding: 50px 0;
  }
  
  .sec--02 .quick-list {
    gap: 20px;
  }
  
  .sec--02 .list-item {
    width: calc(25% - 15px);
  }
  
  .sec--02 .list-item .thumb {
    margin-bottom: 12px;
  }
  

  .sec--02 .list-item .item-title {
    margin-bottom: -3px;
    font-size: 1.2rem;
  }
  
}

@media(max-width:500px) {
  .sec--02 {
    padding: 45px 0;
  }
  
  .sec--02 .quick-list {
    gap: 12px 6px;
  }
  
  .sec--02 .list-item {
    width: calc(25% - 4.5px);
  }
  
  .sec--02 .list-item .thumb {
    margin-bottom: 10px;
  }
  

  .sec--02 .list-item .item-title {
    margin-bottom: -2px;
    font-size: 1.1rem;
  }
  
}
/* ----- E:Section02 -----*/

/* ----- E:Section03 -----*/
.sec--03 {
  background-color: #f5f5f5;
}

.sec--03 .brand-widget {
  position: relative;
}

.brand-widget .thumb {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  padding-top: calc(427/329*100%);
  overflow: hidden;
}

.brand-widget .thumb > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.brand-widget .brand-title {
  margin-bottom: -5px;
  font-size: 1.8rem;
  font-weight: 700;
}

.brand-widget .prev,
.brand-widget .next {
  position: absolute;
  top: calc(50% - 45px);
  z-index: 1;
  width: 16px;
  height: 28px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; 
  cursor: pointer;
}

.brand-widget .prev.swiper-button-disabled,
.brand-widget .next.swiper-button-disabled {
  display: none;
}


.brand-widget .prev {
  left: -60px;
  background-image: url('/child/img/main/prev_arrow.svg');
}

.brand-widget .next {
  right: -60px;
  background-image: url('/child/img/main/next_arrow.svg');
}

@media(max-width:1600px) {
  .sec--03 .brand-widget {
    padding: 0 15px;
  }

  .brand-widget .prev {
    left: -15px;
  }
  
  .brand-widget .next {
    right: -15px;
  }
}

@media(max-width:1400px) {
  .sec--03 .brand-widget {
    padding: 0 30px;
  }
  
  .brand-widget .prev {
    left: -5px;
  }
  
  .brand-widget .next {
    right: -5px;
  }
}

@media(max-width:1200px) {
  .sec--03 .brand-widget {
    padding: 0 30px;
  }
  
  .brand-widget .thumb {
    margin-bottom: 15px;
  }

  .brand-widget .brand-title {
    margin-bottom: -4px;
    font-size: 1.6rem;
  }
  
  .brand-widget .prev,
  .brand-widget .next {
    width: 14px;
    height: 25px;
  }
  
  .brand-widget .prev {
    left: 0;
  }
  
  .brand-widget .next {
    right: 0;
  }
}

@media(max-width:1024px) {
  .sec--03 .brand-widget {
    padding: 0 20px;
  }
  
  .brand-widget .thumb {
    margin-bottom: 15px;
  }

  .brand-widget .brand-title {
    margin-bottom: -3px;
    font-size: 1.6rem;
  }
  
  .brand-widget .prev,
  .brand-widget .next {
    width: 13px;
    height: 22px;
  }
}

@media(max-width:768px) {
  .sec--03 .brand-widget {
    padding: 0;
  }
  
  .brand-widget .thumb {
    margin-bottom: 12px;
  }

  .brand-widget .brand-title {
    margin-bottom: -2px;
    font-size: 1.5rem;
  }
  
  .brand-widget .prev,
  .brand-widget .next {
    display: none;
    width: 13px;
    height: 22px;
  }
}

@media(max-width:500px) {
  .brand-widget .thumb {
    margin-bottom: 10px;
  }

  .brand-widget .brand-title {
    margin-bottom: -1px;
    font-size: 1.4rem;
  }
  
  .brand-widget .prev,
  .brand-widget .next {
    display: none;
    width: 13px;
    height: 22px;
  }
}
/* ----- E:Section03 -----*/

/* ----- E:Section04 -----*/
.new-arrivals-widget {
  position: relative;
}

.new-arrivals-widget .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 13px;
  overflow: hidden;
}

.new-arrivals-widget .thumb > div {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.new-arrivals-widget .item-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #092956;
}

.new-arrivals-widget .item-text {
  margin-bottom: 8px;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.6rem;
}

.new-arrivals-widget .item-price {
  font-size: 1.6rem;
  font-weight: 700;
}


.new-arrivals-widget .prev,
.new-arrivals-widget .next {
  position: absolute;
  top: calc(50% - 45px);
  z-index: 1;
  width: 16px;
  height: 28px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; 
  cursor: pointer;
}

.new-arrivals-widget .prev {
  left: -60px;
  background-image: url('/child/img/main/prev_arrow.svg');
}

.new-arrivals-widget .next {
  right: -60px;
  background-image: url('/child/img/main/next_arrow.svg');
}


.new-arrivals-widget .prev.swiper-button-disabled,
.new-arrivals-widget .next.swiper-button-disabled {
  display: none;
}

.new-arrivals-widget .new-arrivals-pagination {
  display: none;
  position: relative;
  width: 100%;
  height: 4px;
  max-width: 100%;
  margin-top: 25px;
  overflow: hidden;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.1);
}
.new-arrivals-widget .new-arrivals-pagination .swiper-pagination-progressbar-fill {
  border-radius: 4px;
  background-color: #1c2d56;
}

@media(max-width:1600px) {
  .new-arrivals-widget {
    padding: 0 15px;
  }

  .new-arrivals-widget .prev {
    left: -15px;
  }
  
  .new-arrivals-widget .next {
    right: -15px;
  }
}

@media(max-width:1400px) {
  .new-arrivals-widget {
    padding: 0 30px;
  }
  
  .new-arrivals-widget .prev {
    left: -5px;
  }
  
  .new-arrivals-widget .next {
    right: -5px;
  }
}

@media(max-width:1200px) {
  .new-arrivals-widget {
    padding: 0 30px;
  }
  
  .new-arrivals-widget .thumb {
    margin-bottom: 13px;
  }

  .new-arrivals-widget .item-title {
    font-size: 1.5rem;
  }
  
  .new-arrivals-widget .item-text {
    margin-bottom: 8px;
    font-size: 1.5rem;
  }
  
  .new-arrivals-widget .item-price {
    font-size: 1.5rem;
  }
  
  
  .new-arrivals-widget .prev,
  .new-arrivals-widget .next {
    width: 14px;
    height: 25px;
  }
  
  .new-arrivals-widget .prev {
    left: -5px;
  }
  
  .new-arrivals-widget .next {
    right: -5px;
  }
}

@media(max-width:1024px) {
  .new-arrivals-widget {
    padding: 0 30px;
  }
  
  .new-arrivals-widget .thumb {
    margin-bottom: 13px;
  }

  .new-arrivals-widget .item-title {
    font-size: 1.4rem;
  }
  
  .new-arrivals-widget .item-text {
    margin-bottom: 8px;
    font-size: 1.4rem;
  }
  
  .new-arrivals-widget .item-price {
    font-size: 1.4rem;
  }
  
  .new-arrivals-widget .prev,
  .new-arrivals-widget .next {
    width: 13px;
    height: 22px;
  }
  
  .new-arrivals-widget .prev {
    left: -5px;
  }
  
  .new-arrivals-widget .next {
    right: -5px;
  }
}

@media(max-width:768px) {
  .new-arrivals-widget {
    padding: 0;
  }
  
  .new-arrivals-widget .thumb {
    margin-bottom: 12px;
  }

  .new-arrivals-widget .item-title {
    font-size: 1.3rem;
  }
  
  .new-arrivals-widget .item-text {
    margin-bottom: 6px;
    font-size: 1.3rem;
  }
  
  .new-arrivals-widget .item-price {
    font-size: 1.3rem;
  }
  
  .new-arrivals-widget .prev,
  .new-arrivals-widget .next {
    display: none;
    width: 13px;
    height: 22px;
  }
  
  .new-arrivals-widget .prev {
    left: -0;
  }
  
  .new-arrivals-widget .next {
    right: -0;
  }
  
  .new-arrivals-widget .new-arrivals-pagination {
    display: block;
    height: 3px;
    border-radius: 5px;
  }
  
  .new-arrivals-widget .new-arrivals-pagination .swiper-pagination-progressbar-fill {
    border-radius: 5px;
  }

}

@media(max-width:500px) {
  .new-arrivals-widget .thumb {
    margin-bottom: 10px;
  }

  .new-arrivals-widget .item-title {
    font-size: 1.2rem;
  }
  
  .new-arrivals-widget .item-text {
    margin-bottom: 5px;
    font-size: 1.2rem;
  }
  
  .new-arrivals-widget .item-price {
    font-size: 1.2rem;
  }
  
  /* .new-arrivals-widget .new-arrivals-pagination {
    display: block;
    width: 100%;
  } */
  
  .new-arrivals-widget .new-arrivals-pagination {
    height: 2px;
    margin-top: 20px;
    border-radius: 5px;
  }
  
  .new-arrivals-widget .new-arrivals-pagination .swiper-pagination-progressbar-fill {
    border-radius: 5px;
  }
}
/* ----- E:Section04 -----*/

/* ----- S:Section05 -----*/
.sec--05 {
  position: relative;
  padding: 83px 0 82px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/main/sec05_bg.png');
  overflow: hidden;
}

.sec--05::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 1s ease-out;
}

.sec--05 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sec--05 .text {
  max-width: 315px;
  width: 100%;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.523;
}

.sec--05.aos-animate::after {
  left: 100%;
}

@media(max-width:1200px) {
  .sec--05 {
    padding: 80px 0;
  }
  
  .sec--05::after {
    left: 15%;
  }
  
  .sec--05 .text {
    font-size: 2.4rem;
  }
}

@media(max-width:1024px) {
  .sec--05 {
    padding: 70px 0;
  }
  
  .sec--05::after {
    left: 15%;
  }
  
  .sec--05 .text {
    font-size: 2.2rem;
  }
}

@media(max-width:768px) {
  .sec--05 {
    padding: 60px 0;
  }
  
  .sec--05::after {
    left: 15%;
  }
  
  .sec--05 .text {
    font-size: 2rem;
  }
}

@media(max-width:500px) {
  .sec--05 {
    padding: 50px 0;
  }
  
  .sec--05::after {
    left: 0;
    transition:all .6s ease-in-out;
  }
  
  .sec--05 .text {
    max-width: 200px;
    font-size: 1.8rem;
  }
}
/* ----- E:Section05 -----*/
/* ----- E:Section06 -----*/
.sec--06 {
  background-color: #f5f5f5;
}

.sec--06 .sec-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -10px;
  margin-bottom: 39px;
}

.sec--06 .more-btn {
  width: auto;
  background-color: #f5f5f5;
}

.collection-widget .list {
  display: flex;
  align-items: start;
  gap: 0 28px;
}

.collection-widget .list-item:nth-of-type(2) {
  margin-top: 80px;
}

.collection-widget .list-item {
  max-width: 448px;
  width: 33.33%;
}

.collection-widget .list-item .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 0.973 / 1;
  overflow: hidden;
}

.collection-widget .list-item .thumb > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all .35s ease-in;
  -webkit-transition: all .35s ease-in;
}

.collection-widget .list-item .cont {
  width: 100%;
  min-height: 100px;
  padding: 38px 40px 34px;
  background-color: #fff;
}

.collection-widget .list-item .cont p {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
}

.collection-widget .list-item--01 {
  transform: translateX(-30%);
  opacity: 0;
  transition: all .5s ease-out;
}
.collection-widget .list-item--01.aos-animate {
  transform: translateX(0);
  opacity: 1;
}

.collection-widget .list-item--02 {
  transform: translateY(30%);
  opacity: 0;
  transition: all .5s ease-out;
  transition-delay: .2s;
}
.collection-widget .list-item--02.aos-animate {
  transform: translateY(0);
  opacity: 1;
}

.collection-widget .list-item--03 {
  transform: translateX(30%);
  opacity: 0;
  transition: all .5s ease-out;
  transition-delay: .4s;
}
.collection-widget .list-item--03.aos-animate {
  transform: translateX(0);
  opacity: 1;
}

@media(min-width:1201px) {
  .collection-widget .list-item .thumb:hover > div {
    transform: scale(1.08);
  }
}

@media(max-width:1200px) {
  .sec--06 .sec-title {
    margin-top: -10px;
    margin-bottom: 35px;
  }
  
  .collection-widget .list {
    gap: 0 20px;
  }
  
  .collection-widget .list-item:nth-of-type(2) {
    margin-top: 70px;
  }
  
  .collection-widget .list-item {
    max-width: 448px;
    width: 33.33%;
  }
  
  .collection-widget .list-item .cont {
    min-height: 90px;
    padding: 35px 35px 30px;
  }
  
  .collection-widget .list-item .cont p {
    font-size: 1.8rem;
  }
}

@media(max-width:1024px) {
  .sec--06 .sec-title {
    margin-top: -10px;
    margin-bottom: 30px;
  }
  
  .collection-widget .list {
    gap: 0 15px;
  }
  
  .collection-widget .list-item:nth-of-type(2) {
    margin-top: 60px;
  }
  
  .collection-widget .list-item {
    max-width: 448px;
    width: 33.33%;
  }
  
  .collection-widget .list-item .cont {
    min-height: 80px;
    padding: 30px 30px 25px;
  }
  
  .collection-widget .list-item .cont p {
    font-size: 1.6rem;
  }
}

@media(max-width:768px) {
  .sec--06 .sec-title {
    margin-top: -6px;
    margin-bottom: 25px;
  }
  
  .collection-widget .list {
    gap: 0 10px;
  }
  
  .collection-widget .list-item:nth-of-type(2) {
    margin-top: 50px;
  }
  
  .collection-widget .list-item {
    max-width: 448px;
    width: 33.33%;
  }
  
  .collection-widget .list-item .cont {
    min-height: 70px;
    padding: 20px;
  }
  
  .collection-widget .list-item .cont p {
    font-size: 1.4rem;
  }
}

@media(max-width:650px) {
  .collection-widget .list {
    flex-direction: column;
    gap: 20px 10px;
  }
  
  .collection-widget .list-item:nth-of-type(2) {
    margin-top: 0;
    margin-left: 28%;
  }
  
  .collection-widget .list-item {
    max-width: 448px;
    width: 72%;
  }
  
  .collection-widget .list-item .cont {
    min-height: auto;
    padding: 15px;
  }
  
  .collection-widget .list-item--01 {
    transform: translateX(-30%);
    opacity: 0;
    transition: all .5s ease-out;
  }
  .collection-widget .list-item--01.aos-animate {
    transform: translateX(0);
    opacity: 1;
  }
  
  .collection-widget .list-item--02 {
    transform: translateX(30%);
    opacity: 0;
    transition: all .5s ease-out;
  }
  .collection-widget .list-item--02.aos-animate {
    transform: translateX(0);
    opacity: 1;
  }
  
  .collection-widget .list-item--03 {
    transform: translateX(-30%);
    opacity: 0;
    transition: all .5s ease-out;
  }
  .collection-widget .list-item--03.aos-animate {
    transform: translateX(0);
    opacity: 1;
  }
}

@media(max-width:500px) {
  .sec--06 .sec-title {
    margin-top: -4px;
    margin-bottom: 20px;
  }
  
  .collection-widget .list {
    gap: 15px 10px;
  }
  
  .collection-widget .list-item:nth-of-type(2) {
    margin-top: 0;
    margin-left: 28%;
  }
  
  .collection-widget .list-item {
    max-width: 448px;
    width: 72%;
  }
  
  .collection-widget .list-item .cont {
    padding: 12px;
  }
  
  .collection-widget .list-item .cont p {
    font-size: 1.3rem;
  }
}
/* ----- E:Section06 -----*/
/* ----- S:Section07 -----*/
.sec--07 .sec-title {
  margin-bottom: 37px;
}

.special-deal-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.special-deal-tab .more-btn {
  width: auto;
}

.special-deal-tab .tab {
  display: flex;
  align-items: start;
  gap: 0 10px;
}

.special-deal-tab .tab-item {
  width: 120px;
  height: 35px;
  border-radius: 5px;
}

.special-deal-tab .tab-item .tab-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 1px solid #959595;
  font-size: 1.6rem;
  text-align: center;
  overflow: hidden;
  transition: all .2s ease-out;
}

.special-deal-tab .tab-item.on .tab-button {
  background-color: #191919;
  border-color: #191919;
  color: #fff;
}


@media(min-width:1201px) {
  .special-deal-tab .tab-item:hover .tab-button {
    background-color: #191919;
    border-color: #191919;
    color: #fff;
  }
}

@media(max-width:1200px) {
  .special-deal-tab {
    margin-bottom: 20px;
  }
  
  .special-deal-tab .tab {
    gap: 0 5px;
  }
  
  .special-deal-tab .tab-item {
    width: 110px;
    height: 30px;
  }
  
  .special-deal-tab .tab-item .tab-button {
    font-size: 1.6rem;
  }
}

@media(max-width:1024px) {
  .sec--07 {
    position: relative;
  }
  .special-deal-tab {
    margin-bottom: 20px;
  }
  
  .special-deal-tab .more-btn {
    position: absolute;
    top: 85px;
    right: 15px;
    height: auto;
    padding: 10px 0;
  }
  
  .special-deal-tab .tab-container {
    width: 100%;
  } 
  
  .special-deal-tab .tab {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .special-deal-tab .tab-item {
    width: calc(25% - 6px);
    height: 30px;
  }
  
  .special-deal-tab .tab-item .tab-button {
    font-size: 1.4rem;
  }
}

@media(max-width:768px) {
  .special-deal-tab {
    margin-bottom: 15px;
  }
  
  .special-deal-tab .more-btn {
    top: 75px;
    padding: 10px 0;
  }
  
  .special-deal-tab .tab {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .special-deal-tab .tab-item {
    width: calc(25% - 6px);
    height: 25px;
  }
  
  .special-deal-tab .tab-item .tab-button {
    font-size: 1.3rem;
  }
}

@media(max-width:500px) {
  .sec--07 .sec-title {
    width: 310px;
  }
  .special-deal-tab {
    margin-bottom: 12px;
  }
  
  .special-deal-tab .more-btn {
    top: 70px;
    padding: 10px 0;
  }
  
  .special-deal-tab .tab-container {
    width: 100%;
    overflow: auto;
  } 
  
  .special-deal-tab .tab {
    flex-wrap: nowrap;
    width: max-content;
  }
  
  .special-deal-tab .tab-item {
    width: 95px;
    height: 25px;
    margin-right: 8px;
  }
  .special-deal-tab .tab-item:first-of-type {
    margin-left: 0;
  }
  
  .special-deal-tab .tab-item .tab-button {
    font-size: 1.2rem;
  }
}
/* ----- E:Section07 -----*/
.special-deal-widget .list {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 10px 0;
  margin: -14px;
}

.special-deal-widget .list li {
  width: 16.666%;
  padding: 14px;
}

.special-deal-widget .list li a {
  width: 100%;
}

.special-deal-widget .list .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 16px;
  overflow: hidden;
}

.special-deal-widget .list .thumb > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.special-deal-widget .list .category {
  font-size: 1.6rem;
  font-weight: 700;
  color: #092956;
}

.special-deal-widget .list .text {
  margin-bottom: 8px;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.6rem;
}

.special-deal-widget .list .price-box {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.special-deal-widget .list .sale-price {
  font-size: 1.6rem;
  font-weight: 700;
}

.special-deal-widget .list .sale {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ff4e00;
}

.special-deal-widget .list .cost {
  font-size: 1.4rem;
  color: #959595;
  text-decoration:  line-through;
}

@media(max-width:1200px) {
  .special-deal-widget .list {
    gap: 10px 0;
    margin: -12px;
  }
  
  .special-deal-widget .list li {
    width: 16.666%;
    padding: 12px;
  }
  
  .special-deal-widget .list .thumb {
    margin-bottom: 15px;
  }
  
  .special-deal-widget .list .category {
    font-size: 1.6rem;
  }
  
  .special-deal-widget .list .text {
    margin-bottom: 8px;
    font-size: 1.6rem;
  }
  
  .special-deal-widget .list .sale-price {
    font-size: 1.6rem;
  }
  
  .special-deal-widget .list .sale {
    font-size: 1.6rem;
  }
  
  .special-deal-widget .list .cost {
    font-size: 1.4rem;
  }
}

@media(max-width:1024px) {
  .special-deal-widget .list {
    gap: 8px 0;
    margin: -10px;
  }
  
  .special-deal-widget .list li {
    width: 25%;
    padding: 10px;
  }
  
  .special-deal-widget .list .thumb {
    margin-bottom: 15px;
  }
  
  .special-deal-widget .list .category {
    font-size: 1.4rem;
  }
  
  .special-deal-widget .list .text {
    margin-bottom: 8px;
    font-size: 1.4rem;
  }
  
  .special-deal-widget .list .sale-price {
    font-size: 1.4rem;
  }
  
  .special-deal-widget .list .sale {
    font-size: 1.4rem;
  }
  
  .special-deal-widget .list .cost {
    font-size: 1.3rem;
  }
}

@media(max-width:768px) {
  .special-deal-widget .list {
    gap: 8px 0;
    margin: -8px;
  }
  
  .special-deal-widget .list li {
    width: 25%;
    padding: 8px;
  }
  
  .special-deal-widget .list .thumb {
    margin-bottom: 12px;
  }
  
  .special-deal-widget .list .price-box {
    flex-direction: column;
  }
  
  .special-deal-widget .list .price-box > div {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  
  .special-deal-widget .list .category {
    font-size: 1.3rem;
  }
  
  .special-deal-widget .list .text {
    margin-bottom: 6px;
    font-size: 1.3rem;
  }
  
  .special-deal-widget .list .sale-price {
    font-size: 1.3rem;
  }
  
  .special-deal-widget .list .sale {
    font-size: 1.3rem;
  }
  
  .special-deal-widget .list .cost {
    font-size: 1.2rem;
  }
}

@media(max-width:650px) {
  .special-deal-widget .list {
    gap: 6px 0;
    margin: -6px;
  }
  
  .special-deal-widget .list li {
    width: 33.333%;
    padding: 6px;
  }
  
  .special-deal-widget .list .thumb {
    margin-bottom: 10px;
  }
  
  .special-deal-widget .list .price-box {
    flex-direction: column-reverse;
  }
  
  .special-deal-widget .list .price-box > div {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
}

@media(max-width:500px) {
  .special-deal-widget .list {
    gap: 4px 0;
    margin: -4px;
  }
  
  .special-deal-widget .list li {
    width: 33.333%;
    padding: 4px;
  }
  
  .special-deal-widget .list .thumb {
    margin-bottom: 10px;
  }
  
  .special-deal-widget .list .price-box > div {
    flex-direction: column;
  }
  
  .special-deal-widget .list .category {
    font-size: 1.2rem;
  }
  
  .special-deal-widget .list .text {
    margin-bottom: 5px;
    font-size: 1.2rem;
  }
  
  .special-deal-widget .list .sale-price {
    font-size: 1.2rem;
  }
  
  .special-deal-widget .list .sale {
    font-size: 1.2rem;
  }
  
  .special-deal-widget .list .cost {
    font-size: 1.1rem;
  }
}

/* Popup */
#popup {
  position: relative;
}

.popup-layer {
  z-index: 10000;
  position: absolute;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,.25);
  animation: popup-fade .65s ease-in-out .35s forwards;
  opacity: 0;
  max-width:800px;
}

@keyframes popup-fade {
  0% { opacity: 0;
    -webkit-transform: translateY(25px);
    -ms-transform: translateY(25px);
    transform: translateY(25px); }
  100% { opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
}
.popup-layer__body {
  background: #fff;
}

.popup-layer__body img {
  display: block;
  margin: 0 auto;
  border: none;
  max-width: 100%;
}

.popup-layer__foot {
  background: #424242;
}

.popup-layer__foot ul {
  display:flex;
  flex-wrap: wrap;
}

.popup-layer__foot li {
  width:50%;
  padding:10px;
}

.popup-layer__foot li:first-child {
  padding-right:0;
}

.popup-layer__foot li:last-child {
  text-align: right;
}

.popup-layer__foot span {
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  transition:all 0.3s ease;
}

.popup-layer__foot label:hover span { opacity: .7; }

/* .popup-layer-foot { background: #424242; }
.popup-layer-foot span { font-size: 15px; color: #fff; }
.popup-layer-foot label:hover span { opacity: .7; }
.popup-layer-foot li:first-child { padding-right: 0; }
.popup-layer-foot li:last-child { text-align: right; } */


@media (max-width: 1024px){
  /* .popup-layer { z-index: 999; } */
  .popup-layer { top: 95px !important; left: 0 !important; margin: 0 5px; }
}
@media (max-width: 768px){

  .popup-layer {
    width:calc(100% - 10px);
  }

  .popup-layer img {
    max-width: none;
    width:100%;
    height: auto !important;
  }
  .popup-layer-foot span { font-size: 14px; }

}
@media (max-width: 375px){
  .popup-layer-foot li { width: 100%; }
  .popup-layer-foot li:last-child { text-align: left; }
}