/* ---------- S: Common ---------- ---------- */
.sec {
  padding: 150px 0;
}

.more-btn a {
  display: flex;
  align-items: center;
  gap: 0 20px;
}

.more-btn a p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #a18978;
}

.more-btn a i {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;

}

.more-btn a i::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/child/img/main/more-icon.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all .4s ease-out;
}

.more-btn:hover a i::after {
  left: 3px;
}

@media(max-width:1200px) {
  .sec {
    padding: 135px 0;
  }

  .more-btn a {
    gap: 0 18px;
  }

  .more-btn a p {
    font-size: 1.6rem;
  }

}

@media(max-width:1024px) {
  .sec {
    padding: 120px 0;
  }

  .more-btn a {
    gap: 0 15px;
  }

  .more-btn a p {
    font-size: 1.4rem;
  }

  .more-btn a i {
    width: 35px;
    height: 35px;
  }
}

@media(max-width:768px) {
  .sec {
    padding: 105px 0;
  }

  .more-btn a {
    gap: 0 12px;
  }

  .more-btn a p {
    font-size: 1.3rem;
  }

  .more-btn a i {
    width: 32px;
    height: 32px;
  }
}

@media(max-width:500px) {
  .sec {
    padding: 95px 0;
  }

  .more-btn a {
    gap: 0 10px;
  }

  .more-btn a p {
    font-size: 1.2rem;
  }

  .more-btn a i {
    width: 30px;
    height: 30px;
  }
}
/* ---------- E: Common ---------- ---------- */

/* ---------- S: Section01 ---------- ---------- */
.sec01 {
  padding: 0;
}

.sec01 .visual {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('/child/img/main/main_visual.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sec01 .visual video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.sec01 .scroll-btn {
  position: absolute;
  left: 50%;
  bottom: 76px;
  transform: translateX(-50%);
  cursor: pointer;
}

.sec01 .scroll-btn p {
  margin-bottom: 11px;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
}

.sec01 .scroll-btn span {
  position: absolute;
  top: 37px;
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
  display: block;
  width: 14px;
  height: 14px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  animation: scrollDownAni 1s linear infinite;
}

@keyframes scrollDownAni {
  0% {
    top: 37px;
  }

  100% {
    top: 45px;
  }
}

@media(max-width:1200px) {
  .sec01 .visual {
    width: 100%;
    height: auto;
    aspect-ratio: 2.021 / 1;
  }

  .sec01 .scroll-btn {
    bottom: 50px;
  }

  .sec01 .scroll-btn p {
    font-size: 1.6rem;
  }

  .sec01 .scroll-btn span {
    top: 30px;
    width: 14px;
    height: 14px;
  }

  @keyframes scrollDownAni {
    0% {
      top: 30px;
    }

    100% {
      top: 37px;
    }
  }

}

@media(max-width:1024px) {
  .sec01 .scroll-btn {
    bottom: 45px;
  }

  .sec01 .scroll-btn p {
    margin-bottom: 8px;
    font-size: 1.4rem;
  }

  .sec01 .scroll-btn span {
    top: 25px;
    width: 12px;
    height: 12px;
  }

  @keyframes scrollDownAni {
    0% {
      top: 25px;
    }

    100% {
      top: 32px;
    }
  }

}

@media(max-width:768px) {
  .sec01 .visual {
    aspect-ratio: 1.2 / 1;
  }

  .sec01 .scroll-btn {
    bottom: 40px;
  }

  .sec01 .scroll-btn p {
    font-size: 1.3rem;
  }

  .sec01 .scroll-btn span {
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}

@media(max-width:500px) {
  .sec01 .scroll-btn {
    bottom: 35px;
  }

  .sec01 .scroll-btn p {
    margin-bottom: 6px;
    font-size: 1.2rem;
  }

  .sec01 .scroll-btn span {
    top: 20px;
    width: 10px;
    height: 10px;
  }

  @keyframes scrollDownAni {
    0% {
      top: 20px;
    }

    100% {
      top: 25px;
    }
  }
}
/* ---------- E: Section01 ---------- */

/* ---------- S: Section02 ---------- */
.sec02 {
  padding: 98px 0 96px;
  background-color: #fcfaf7;
}

.sec02 .list {
  display: flex;
  align-items: start;
}

.sec02 .list li {
  position: relative;
  width: 25%;
}

.sec02 .list li::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 260px;
  background-color: #bfbfbf;
}

.sec02 .list li:last-of-type::after {
  display: none;
}

.sec02 .list li .box {
  width: 100%;
  padding: 0 10px;
}

.sec02 .list li .icon {
  position: relative;
  display: block;
  width: 103px;
  height: 103px;
  margin: 0 auto 21px;
  overflow: hidden;
}

.sec02 .list li .icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sec02 .list li .tit {
  margin-bottom: 9px;
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
}

.sec02 .list li .txt {
  display: block;
  margin-bottom: 33px;
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
}

.sec02 .list li .more-btn a {
  justify-content: center;
  margin: 0 auto;
}

@media(max-width:1200px) {
  .sec02 {
    padding: 90px 0;
  }

  .sec02 .list li::after {
    height: 230px;
  }

  .sec02 .list li .box {
    padding: 0 10px;
  }

  .sec02 .list li .icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 18px;
  }

  .sec02 .list li .tit {
    /* margin-bottom: 9px; */
    font-size: 2.4rem;
  }

  .sec02 .list li .txt {
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
}

@media(max-width:1024px) {
  .sec02 {
    padding: 80px 0;
  }

  .sec02 .list li::after {
    height: 200px;
  }

  .sec02 .list li .box {
    padding: 0 15px;
  }

  .sec02 .list li .icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 15px;
  }

  .sec02 .list li .tit {
    margin-bottom: 6px;
    font-size: 2.2rem;
  }

  .sec02 .list li .txt {
    margin-bottom: 25px;
    font-size: 1.6rem;
  }
}

@media(max-width:768px) {
  .sec02 {
    padding: 70px 0;
  }

  .sec02 .list {
    flex-wrap: wrap;
    align-items: start;
    margin: -20px 0;
  }

  .sec02 .list li {
    width: 50%;
  }

  .sec02 .list li:nth-of-type(2)::after {
    display: none;
  }

  .sec02 .list li::after {
    height: 170px;
  }

  .sec02 .list li .box {
    padding: 20px 15px;
  }

  .sec02 .list li .icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
  }

  .sec02 .list li .tit {
    margin-bottom: 4px;
    font-size: 2rem;
  }

  .sec02 .list li .txt {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
}

@media(max-width:500px) {
  .sec02 {
    padding: 60px 0;
  }

  .sec02 .list {
    margin: -15px 0;
  }

  .sec02 .list li::after {
    height: 150px;
  }

  .sec02 .list li .box {
    padding: 15px;
  }

  .sec02 .list li .icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 10px;
  }

  .sec02 .list li .tit {
    font-size: 1.8rem;
  }

  .sec02 .list li .txt {
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
}
/* ---------- E: Section02 ---------- */

/* ---------- S: Section03 ---------- */
.sec03 {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/main/sec03_bg.png');
}

.sec03::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  max-width: 972px;
  width: 50.625%;
  z-index: 1;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/main/sec03_bg-rt.png');
}

.sec03 .info {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 100%;
}

.sec03 .info .lt {
  position: relative;
  max-width: 708px;
  width: 50%;
}

.sec03 .info .rt {
  position: relative;
  max-width: 610px;
  width: 43%;
  height: 100%;
  z-index: 2;
}

.sec03 .info .swiper-container {
  width: 100%;
}

.sec03 .info .lt .swiper-container {
  overflow: visible;
}

.sec03 .info .swiper-slide {
  width: 100%;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.sec03 .info .lt .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.sec03 .info .lt .thumb > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sec03 .info .info-pagination {
  position: absolute;
  top: 60px;
  right: -122px;
  transform: translateX(100%);
  z-index: 100;
  width: auto;
  height: fit-content;
}

.sec03 .info .swiper-pagination-bullet {
  position: relative;
  width: auto;
  height: auto;
  background-color: transparent;
  border-radius: 0;
  opacity: 1;
  margin-right: 80px;
}

.sec03 .info .swiper-pagination-bullet:last-of-type {
  margin-right: 0;
}

.sec03 .info .swiper-pagination-bullet span {
  font-size: 2.8rem;
  line-height: 1.3;
  transition: font-weight .4s ease-out;
}

.sec03 .info .swiper-pagination-bullet::after {
  content: "";
  display: none;
  position: absolute;
  bottom: 5px;
  right: -14px;
  z-index: -1;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #a18978;
  transition: display .4s ease-out;
}

.sec03 .info .swiper-pagination-bullet-active span {
  font-weight: 600;
}

.sec03 .info .swiper-pagination-bullet-active::after {
  display: block;
}

.sec03 .info .thumb-swiper {
  direction: rtl;
}

.sec03 .info .thumb-swiper .swiper-slide {
  position: relative;
}

.sec03 .info .thumb-swiper .swiper-slide::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: opacity .4s ease-out;
}

.sec03 .info .thumb-swiper .swiper-slide-active::after {
  opacity: 0;
}

.sec03 .info .cont-swiper .swiper-slide {
  display: flex;
  align-items: end;
  min-height: 500px;
}

.sec03 .info .rt .cont {
  transform: translateX(-80px);
  opacity: 0;
  transition: all .4s ease-out;
  padding-bottom: 50px;
}

.sec03 .info .rt .swiper-slide-active .cont {
  transform: translateX(0);
  opacity: 1;
}

.sec03 .info .rt .cont .tit {
  margin-bottom: 3px;
  font-size: 2.8rem;
}

.sec03 .info .rt .cont h3 {
  margin-bottom: 22px;
  font-size: 8.2rem;
  font-weight: 600;
}

.sec03 .info .rt .cont .txt {
  display: block;
  margin-bottom: 44px;
  font-size: 2rem;
  line-height: 1.5;
}

.sec03 .info .rt .cont .more-btn p {
  font-size: 2rem;
}

.sec03 .info .rt .cont .more-btn i {
  background-color: #fff;
}

.sec03 .info .rt .cont .more-btn i::after {
  background-image: url('/child/img/main/more-icon-on.png');
}

@media(max-width:1470px) {
  .sec03 .info .info-pagination {
    right: -95px;
  }

  .sec03 .info .swiper-pagination-bullet {
    margin-right: 60px;
  }
}

@media(max-width:1200px) {
  .sec03::after {
    display: none;
  }


  .sec03.container {
    overflow: hidden;
  }

  .sec03 .info .lt .swiper-container {
    overflow: hidden;
    direction: ltr;
  }

  .sec03 .info .info-pagination {
    top: 50px;
    right: -14%
  }

  .sec03 .info .swiper-pagination-bullet {
    margin-right: 40px;
  }

  .sec03 .info .swiper-pagination-bullet span {
    font-size: 2.4rem;
  }

  .sec03 .info .swiper-pagination-bullet::after {
    bottom: 5px;
    right: -14px;
    width: 23px;
    height: 23px;
  }

  .sec03 .info .cont-swiper .swiper-slide {
    min-height: 400px;
  }

  .sec03 .info .rt .cont {
    transform: translateX(-80px);
    padding-bottom: 40px;
  }

  .sec03 .info .rt .cont .tit {
    margin-bottom: 0;
    font-size: 2.4rem;
  }

  .sec03 .info .rt .cont h3 {
    margin-bottom: 20px;
    font-size: 7.2rem;
  }

  .sec03 .info .rt .cont .txt {
    margin-bottom: 40px;
    font-size: 1.8rem;
  }

  .sec03 .info .rt .cont .txt br {
    display: none;
  }

  .sec03 .info .rt .cont .more-btn p {
    font-size: 1.8rem;
  }
}

@media(max-width:1024px) {
  .sec03 .info .info-pagination {
    top: 30px;
    right: -14%
  }

  .sec03 .info .swiper-pagination-bullet {
    margin-right: 30px;
  }

  .sec03 .info .swiper-pagination-bullet span {
    font-size: 2.2rem;
  }

  .sec03 .info .swiper-pagination-bullet::after {
    bottom: 4px;
    right: -10px;
    width: 20px;
    height: 20px;
  }

  .sec03 .info .cont-swiper .swiper-slide {
    min-height: 350px;
  }

  .sec03 .info .rt .cont {
    padding-bottom: 20px;
  }

  .sec03 .info .rt .cont .tit {
    font-size: 2.2rem;
  }

  .sec03 .info .rt .cont h3 {
    margin-bottom: 15px;
    font-size: 6.2rem;
  }

  .sec03 .info .rt .cont .txt {
    margin-bottom: 30px;
    font-size: 1.6rem;
  }

  .sec03 .info .rt .cont .more-btn p {
    font-size: 1.6rem;
  }
}

@media(max-width:850px) {
  .sec03 .info {
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }
  .sec03 .info .info-pagination {
    position: unset;
    transform: translate(0);
    margin-bottom: 20px;
  }

  .sec03 .info .swiper-pagination-bullet {
    margin-right: 50px;
  }

  .sec03 .info .lt,
  .sec03 .info .rt {
    max-width: 100%;
    width: 100%;
  }

  .sec03 .info .lt {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .sec03 .info .rt {
    max-width: 430px;
  }

  .sec03 .info .cont-swiper .swiper-slide {
    min-height: auto;
  }

  .sec03 .info .rt .cont {
    padding-bottom: 0;
  }
}

@media(max-width:768px) {
  .sec03 .info {
    gap: 20px 0;
  }

  .sec03 .info .info-pagination {
    margin-bottom: 20px;
  }

  .sec03 .info .swiper-pagination-bullet {
    margin-right: 45px;
  }

  .sec03 .info .swiper-pagination-bullet span {
    font-size: 2rem;
  }

  .sec03 .info .swiper-pagination-bullet::after {
    bottom: 4px;
    right: -10px;
    width: 20px;
    height: 20px;
  }

  .sec03 .info .rt .cont .tit {
    font-size: 2rem;
  }

  .sec03 .info .rt .cont h3 {
    margin-bottom: 12px;
    font-size: 5.2rem;
  }

  .sec03 .info .rt .cont .txt {
    margin-bottom: 25px;
    font-size: 1.4rem;
  }

  .sec03 .info .rt .cont .more-btn p {
    font-size: 1.4rem;
  }
}

@media(max-width:500px) {
  .sec03 .info {
    gap: 15px 0;
  }

  .sec03 .info .info-pagination {
    margin-bottom: 15px;
  }

  .sec03 .info .swiper-pagination-bullet {
    margin-right: 35px;
  }

  .sec03 .info .swiper-pagination-bullet span {
    font-size: 1.8rem;
  }

  .sec03 .info .swiper-pagination-bullet::after {
    bottom: 2px;
    right: -8px;
    width: 18px;
    height: 18px;
  }

  .sec03 .info .rt .cont .tit {
    font-size: 1.8rem;
  }

  .sec03 .info .rt .cont h3 {
    margin-bottom: 10px;
    font-size: 4.2rem;
  }

  .sec03 .info .rt .cont .txt {
    margin-bottom: 20px;
    font-size: 1.3rem;
  }

  .sec03 .info .rt .cont .more-btn p {
    font-size: 1.3rem;
  }
}

/* ---------- E: Section03 ---------- */

/* ---------- S: Section04 ---------- */
.sec04 {
  overflow: hidden;
  background-image: url('/child/img/main/sec04_bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sec04 .container {
  position: relative;
}

.sec04 .sec-tit {
  position: absolute;
  top: -10px;
  left: 15px;
}

.sec04 .sec-tit h3 {
  font-size: 3.2rem;
  font-weight: 700;
}

.sec04 .product {
  position: relative;
  display: flex;
  align-items: end;
  gap: 0 100px;
  width: 100%;
}

.sec04 .product .product-pagination {
  display: flex;
  flex-direction: column;
  align-items: end;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: auto;
}

.sec04 .product .product-pagination .swiper-pagination-bullet {
  position: relative;
  display: block;
  width: fit-content;
  height: auto;
  margin-bottom: 38px;
  font-size: 2.4rem;
  border-radius: 0;
  opacity: 1;
  background-color: transparent;
  color: #999;
  text-align: right;
}

.sec04 .product .product-pagination .swiper-pagination-bullet:last-of-type {
  margin-bottom: 0;
}

.sec04 .product .product-pagination .swiper-pagination-bullet::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: -10px;
  z-index: -1;
  width: 0;
  height: 12px;
  background-color: #a18978;
  transition: width .4s ease-out;
}

.sec04 .product .product-pagination .swiper-pagination-bullet-active {
  font-weight: 700;
  color: #262626;
}

.sec04 .product .product-pagination .swiper-pagination-bullet-active::after {
  width: calc(100% + 20px);
}

.sec04 .product .lt {
  max-width: 464px;
  width: 39%;
}

.sec04 .product .lt .cont {
  transform: translateX(-50px);
  opacity: 0;
  transition: all .4s ease-out;
}

.sec04 .product .lt .swiper-slide-active .cont {
  opacity: 1;
  transform: translateX(0);
}

.sec04 .product .lt .cont  {
  padding-bottom: 60px;
}

.sec04 .product .lt .cont .tit {
  margin-bottom: 36px;
  font-size: 4.8rem;
  font-weight: 500;
}

.sec04 .product .lt .cont .txt {
  min-height: 90px;
  margin-bottom: 44px;
  font-size: 2rem;
  line-height: 1.5;
}

.sec04 .product .lt .cont .more-btn a p  {
  font-size: 2rem;
  font-weight: 500;
}

.sec04 .product .rt {
  position: relative;
  max-width: 560px;
  width: 39%;
  aspect-ratio: 1 / 1;
  background-color: #fff;
  border-radius: 50%;
}

.sec04 .product .rt::after {
  content: "";
  display: block;
  position: absolute;
  top: -7%;
  left: -7.5%;
  max-width: 647px;
  width: 116%;
  aspect-ratio: 1 / 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/main/sec04_rollingTxt.png');
  animation: productRolling 13s linear infinite;
}

@keyframes productRolling {
  0% {
    transform: rotate(0) ;
  }
  100% {
    transform: rotate(365deg) ;
  }
}

.sec04 .product .rt .swiper-slide {
  width: 100%;
}

@media(max-width:1400px) {
  .sec04 .product {
    gap: 0 80px;
  }

  .sec04 .product .lt {
    width: 35%;
  }

  .sec04 .product .lt .cont {
    padding-bottom: 30px;
  }

  .sec04 .product .lt .cont .tit {
    margin-bottom: 30px;
  }

  .sec04 .product .lt .cont .txt br {
    display: none;
  }

  .sec04 .product .lt .cont .txt .brFix {
    display: block;
  }
}

@media(max-width:1200px) {
  .sec04 .sec-tit {
    position: unset;
    margin: -10px;
  }

  .sec04 .sec-tit h3 {
    font-size: 3.2rem;
  }

  .sec04 .product {
    gap: 0 70px;
  }

  .sec04 .product .product-pagination .swiper-pagination-bullet {
    margin-bottom: 35px;
    font-size: 2.2rem;
  }

  .sec04 .product .product-pagination .swiper-pagination-bullet::after {
    bottom: -2px;
    left: -8px;
    height: 10px;
  }

  .sec04 .product .product-pagination .swiper-pagination-bullet-active::after {
    width: calc(100% + 16px);
  }

  .sec04 .product .lt {
    width: 33%;
  }

  .sec04 .product .lt .cont  {
    padding-bottom: 25px;
  }

  .sec04 .product .lt .cont .tit {
    margin-bottom: 25px;
    font-size: 4.2rem;
  }

  .sec04 .product .lt .cont .txt {
    min-height: 85px;
    margin-bottom: 40px;
    font-size: 1.8rem;
  }

  .sec04 .product .lt .cont .more-btn a p  {
    font-size: 1.8rem;
  }

  .sec04 .product .rt {
    width: 39%;
  }

}

@media(max-width:1024px) {
  .sec04 .sec-tit {
    margin: -8px 0 70px;
  }

  .sec04 .sec-tit h3 {
    font-size: 2.8rem;
  }

  .sec04 .product {
    flex-direction: column-reverse;
    align-items: start;
    gap: 80px 0;
  }

  .sec04 .product .product-pagination {
    position: static;
    flex-direction: row;
    justify-content: center;
    gap: 0 20px;
    width: 100%;
    text-align: left;
    transform: translateY(0);
    margin-bottom: 35px;
  }

  .sec04 .product .product-pagination .swiper-pagination-bullet {
    width: fit-content;
    margin-bottom: 0;
    font-size: 2rem;
    text-align: center;
  }

  .sec04 .product .product-pagination .swiper-pagination-bullet::after {
    bottom: -2px;
    left: -6px;
    height: 9px;
  }

  .sec04 .product .product-pagination .swiper-pagination-bullet-active::after {
    width: calc(100% + 12px);
  }

  .sec04 .product .lt {
    max-width: 100%;
    width: 100%;
  }

  .sec04 .product .lt .cont  {
    max-width: 500px;
    padding-bottom: 0;
    margin: 0 auto;
    transform: translate(0, 50px);
  }

  .sec04 .product .lt .swiper-slide-active .cont {
    transform: translate(0);
  }

  .sec04 .product .lt .cont .tit {
    margin-bottom: 20px;
    font-size: 3.6rem;
    text-align: center;
  }

  .sec04 .product .lt .cont .txt {
    min-height: 60px;
    margin-bottom: 35px;
    font-size: 1.6rem;
    text-align: center;
  }

  .sec04 .product .lt .cont .more-btn a {
    justify-content: center;
  }

  .sec04 .product .lt .cont .more-btn a p  {
    font-size: 1.6rem;
  }

  .sec04 .product .rt {
    width: 60%;
    margin: 0 auto;
  }

}

@media(max-width:768px) {
  .sec04 .sec-tit {
    margin: -8px 0 60px;
  }

  .sec04 .sec-tit h3 {
    font-size: 2.4rem;
  }

  .sec04 .product {
    gap: 70px 0;
  }

  .sec04 .product .product-pagination {
    /* gap: 0 15px; */
    margin-bottom: 30px;
  }

  .sec04 .product .product-pagination .swiper-pagination-bullet {
    /* max-width: 94px; */
    font-size: 1.8rem;
  }

  .sec04 .product .product-pagination .swiper-pagination-bullet::after {
    bottom: -2px;
    left: -5px;
    height: 9px;
  }

  .sec04 .product .product-pagination .swiper-pagination-bullet-active::after {
    width: calc(100% + 10px);
  }

  .sec04 .product .lt .cont  {
    max-width: 500px;
  }

  .sec04 .product .lt .cont .tit {
    margin-bottom: 15px;
    font-size: 3.2rem;
  }

  .sec04 .product .lt .cont .txt {
    min-height: 50px;
    margin-bottom: 30px;
    font-size: 1.4rem;
  }

  .sec04 .product .lt .cont .more-btn a p  {
    font-size: 1.4rem;
  }

  .sec04 .product .rt {
    width: 60%;
  }

}

@media(max-width:600px) {
  .sec04 .product .product-pagination .swiper-pagination-bullet {
    max-width: 94px;
  }
}


@media(max-width:500px) {
  .sec04 .sec-tit {
    margin: -8px 0 50px;
  }

  .sec04 .sec-tit h3 {
    font-size: 2.2rem;
  }

  .sec04 .product {
    gap: 60px 0;
  }

  .sec04 .product .product-pagination {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
  }

  .sec04 .product .product-pagination .swiper-pagination-bullet {
    max-width: 50%;
    width: calc(50% - 5px);
    font-size: 1.6rem;
  }

  .sec04 .product .product-pagination .swiper-pagination-bullet::after {
    bottom: 1px;
    left: -4px;
    height: 4px;
  }

  .sec04 .product .product-pagination .swiper-pagination-bullet-active::after {
    width: calc(100% + 8px);
  }

  .sec04 .product .lt .cont .tit {
    margin-bottom: 15px;
    font-size: 2.8rem;
  }

  .sec04 .product .lt .cont .txt {
    min-height: 50px;
    margin-bottom: 25px;
    font-size: 1.3rem;
  }

  .sec04 .product .lt .cont .more-btn a p  {
    font-size: 1.3rem;
  }

  .sec04 .product .rt {
    width: 80%;
  }

  .sec04 .product .rt::after {
    top: -7%;
    left: -8.5%;
  }
}

/* ---------- E: Section04 ---------- */

/* ---------- S: Section05 ---------- */
.sec05 {
  width: 100%;
  overflow: hidden;
}

.sec05 .heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: -9px;
  margin-bottom: 75px;
}

.sec05 .sec-tit {
  max-width: 500px;
  width: 35%;
  padding-bottom: 11px;
}

.sec05 .sec-tit p {
  margin-bottom: 11px;
  font-size: 2.8rem;
}

.sec05 .sec-tit h3 {
  font-size: 4.8rem;
  font-weight: 500;
}

.sec05 .sec-tit h3 span {
  position: relative;
  display: inline-block;
}

.sec05 .sec-tit h3 span::after {
  content: "";
  display: block;
  position: absolute;
  left: -4px;
  bottom: 3px;
  z-index: -1;
  width: 0;
  height: 16px;
  background-color: #a18978;
  transition: all .4s linear;
  transition-delay: .4s;
}

.sec05 .heading.aos-animate .sec-tit h3 span::after {
  width: calc(100% + 8px);
}

.sec05 .heading .txt {
  max-width: 835px;
  width: 58%;
  font-size: 2rem;
  line-height: 1.5;
}

.sec05 .map {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 2.133 / 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/main/sec05_img.png');
}

.sec05 .map .pin {
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgb(247, 122, 0);
  animation: makerAni 1.4s infinite;
}

@keyframes makerAni {
  0% {
    box-shadow: 0 0 0 0px rgba(247, 122, 0, 1);
  }

  99% {
    box-shadow: 0 0 0 14px rgba(247, 122, 0, 0.1);
  }

  100% {
    box-shadow: 0 0 0 14px rgba(247, 122, 0, 0);
  }
}

.sec05 .map .pin01 {
  top: 36.4%;
  left: 12.986%;
}

.sec05 .map .pin02 {
  top: 38.3%;
  left: 35.51%;
}

.sec05 .map .pin03 {
  top: 55.2%;
  left: 30.45%;
}

.sec05 .map .pin04 {
  top: 57.12%;
  left: 37.04%;
}

.sec05 .map .pin05 {
  top: 85.89%;
  left: 48.03%;
}

.sec05 .map .pin06 {
  top: 44.333%;
  left: 48.38%;
}

.sec05 .map .pin07 {
  top: 55.7%;
  left: 83.975%;
}

.sec05 .map .pin08 {
  top: 42.881%;
  left: 84.78%;
}

.sec05 .map .pin09 {
  top: 28.9%;
  left: 79.5%;
}

@media(max-width:1400px) {
  .sec05 .map .pin {
    width: 8px;
    height: 8px;
  }

  @keyframes makerAni {
    0% {
      box-shadow: 0 0 0 0px rgba(247, 122, 0, 1);
    }

    99% {
      box-shadow: 0 0 0 9px rgba(247, 122, 0, 0.1);
    }

    100% {
      box-shadow: 0 0 0 9px rgba(247, 122, 0, 0);
    }
  }

  .sec05 .map .pin01 {
    top: 36.2%;
    left: 12.91%;
  }

  .sec05 .map .pin02 {
    top: 38.1%;
    left: 35.5%;
  }

  .sec05 .map .pin03 {
    top: 55%;
    left: 30.45%;
  }

  .sec05 .map .pin04 {
    top: 56.9%;
    left: 36.95%;
  }

  .sec05 .map .pin05 {
    top: 85.8%;
    left: 48%;
  }

  .sec05 .map .pin06 {
    top: 44.2%;
    left: 48.3%;
  }

  .sec05 .map .pin07 {
    top: 55.65%;
    left: 83.9%;
  }

  .sec05 .map .pin08 {
    top: 42.8%;
    left: 84.7%;
  }

  .sec05 .map .pin09 {
    top: 28.9%;
    left: 79.5%;
  }

}
@media(max-width:1200px) {
  .sec05 .heading {
    margin-top: -7px;
    margin-bottom: 65px;
  }

  .sec05 .sec-tit {
    width: 100%;
  }

  .sec05 .sec-tit p {
    font-size: 2.4rem;
  }

  .sec05 .sec-tit h3 {
    font-size: 4.2rem;
  }

  .sec05 .heading .txt {
    font-size: 1.8rem;
  }

  .sec05 .map .pin {
    width: 7px;
    height: 7px;
  }

  @keyframes makerAni {
    0% {
      box-shadow: 0 0 0 0px rgba(247, 122, 0, 1);
    }

    99% {
      box-shadow: 0 0 0 7px rgba(247, 122, 0, 0.1);
    }

    100% {
      box-shadow: 0 0 0 7px rgba(247, 122, 0, 0);
    }
  }
}

@media(max-width:1024px) {
  .sec05 .heading {
    flex-direction: column;
    align-items: start;
    gap: 25px 0;
    margin-bottom: 55px;
  }

  .sec05 .sec-tit {
    width: 100%;
    padding-bottom: 0;
  }

  .sec05 .sec-tit p {
    font-size: 2.2rem;
  }

  .sec05 .sec-tit h3 {
    font-size: 3.6rem;
  }

  .sec05 .sec-tit h3 span::after {
    left: -3px;
    bottom: 2px;
    height: 13px;
  }

  .sec05 .heading.aos-animate .sec-tit h3 span::after {
    width: calc(100% + 6px);
  }

  .sec05 .heading .txt {
    width: 100%;
    max-width: 681px;
    font-size: 1.6rem;
  }
}

@media(max-width:768px) {
  .sec05 .heading {
    gap: 20px 0;
    margin-top: -5px;
    margin-bottom: 45px;
  }

  .sec05 .sec-tit p {
    margin-bottom: 8px;
    font-size: 2rem;
  }

  .sec05 .sec-tit h3 {
    font-size: 3.2rem;
  }

  .sec05 .sec-tit h3 span::after {
    bottom: 2px;
    height: 11px;
  }

  .sec05 .heading .txt {
    max-width: 581px;
    font-size: 1.4rem;
  }

  .sec05 .map .pin {
    width: 5px;
    height: 5px;
  }

  @keyframes makerAni {
    0% {
      box-shadow: 0 0 0 0px rgba(247, 122, 0, 1);
    }

    99% {
      box-shadow: 0 0 0 6px rgba(247, 122, 0, 0.1);
    }

    100% {
      box-shadow: 0 0 0 6px rgba(247, 122, 0, 0);
    }
  }
}

@media(max-width:500px) {
  .sec05 .heading {
    gap: 15px 0;
    margin-top: -5px;
    margin-bottom: 40px;
  }

  .sec05 .sec-tit p {
    margin-bottom: 6px;
    font-size: 1.8rem;
  }

  .sec05 .sec-tit h3 {
    font-size: 2.8rem;
  }

  .sec05 .sec-tit h3 span::after {
    height: 9px;
  }

  .sec05 .heading .txt {
    font-size: 1.3rem;
  }

  .sec05 .map {
    width: 128vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
/* ---------- E: Section05 ---------- */

/* ---------- S: Section06 ---------- */
.sec06 {
  overflow: hidden;
  padding-top: 0;
}

.sec06 .sec-tit {
  margin-top: -12px;
}

.sec06 .sec-tit h3 {
  margin-bottom: 10px;
  font-size: 4.8rem;
  font-weight: 600;
}

.sec06 .sec-tit p {
  font-size: 2rem;
  line-height: 1.6;
}

.sec06 .inner {
  padding-top: 142px;
  width: 100%;
  overflow: hidden;
}

.sec06 .inner .img-box {
  display: flex;
  align-items: center;
  width: fit-content;
  animation: textRolling 60s linear infinite;
}

.sec06 .inner .img-box .img {
  position: relative;
  width: 386px;
  aspect-ratio: 6.892 / 1;
  margin-right: 100px;
  overflow: hidden;
}

.sec06 .inner .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@keyframes textRolling {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media(max-width:1200px) {
  .sec06 .sec-tit h3 {
    font-size: 4.2rem;
  }

  .sec06 .sec-tit p {
    font-size: 1.8rem;
  }

  .sec06 .inner {
    padding-top: 120px;
  }

  .sec06 .inner .img-box .img {
    width: 340px;
    margin-right: 90px;
  }
}

@media(max-width:1024px) {
  .sec06 .sec-tit {
    margin-top: -10px;
  }

  .sec06 .sec-tit h3 {
    margin-bottom: 8px;
    font-size: 3.6rem;
  }

  .sec06 .sec-tit p {
    font-size: 1.6rem;
  }

  .sec06 .inner {
    padding-top: 105px;
  }

  .sec06 .inner .img-box .img {
    width: 300px;
    margin-right: 80px;
  }
}

@media(max-width:768px) {
  .sec06 .sec-tit h3 {
    font-size: 3.2rem;
  }

  .sec06 .sec-tit p {
    font-size: 1.4rem;
  }

  .sec06 .inner {
    padding-top: 95px;
  }

  .sec06 .inner .img-box .img {
    width: 270px;
    margin-right: 70px;
  }
}

@media(max-width:500px) {
  .sec06 .sec-tit {
    margin-top: -8px;
  }

  .sec06 .sec-tit h3 {
    font-size: 2.8rem;
  }

  .sec06 .sec-tit p {
    font-size: 1.3rem;
  }

  .sec06 .inner {
    padding-top: 85px;
  }

  .sec06 .inner .img-box .img {
    width: 240px;
    margin-right: 60px;
  }
}
/* ---------- E: Section06 ---------- */

/* ---------- S: Section07 ---------- */
.sec07  {
  padding-top: 0;
}

.sec07 .sec-tit {
  margin-top: -10px;
  margin-bottom: 47px;
}

.sec07 .sec-tit h3 {
  font-size: 4.8rem;
  font-weight: 600;
}

.sec07 .inner {
  display: flex;
  align-items: start;
  gap: 0 24px;
}

.sec07 .inner li {
  display: flex;
  align-items: center;
  width: 50%;
  height: 400px;
  border-radius: 10px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.sec07 .inner li.brand {
  background-image: url('/child/img/main/sec07_img01.png');
}

.sec07 .inner li.cs {
  background-image: url('/child/img/main/sec07_img02.png');
}

.sec07 .inner li .box {
  width: 100%;
  margin-top: -9px;
  text-align: center;
}

.sec07 .inner li .tit {
  margin-bottom: 7px;
  font-size: 3.2rem;
  font-weight: 500;
  color: #fff;
}

.sec07 .inner li .txt {
  display: block;
  margin-bottom: 26px;
  font-size: 2rem;
  color: #fff;
}

.sec07 .inner li .more-btn {
  width: 180px;
  height: 50px;
  margin: 0 auto;
  border-radius: 25px;
  overflow: hidden;
}

.sec07 .inner li .more-btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 10px 0 19px;
  /* background-color: #fff; */
}

.sec07 .inner li .more-btn a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: #fff;
}

.sec07 .inner li .more-btn a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 25px;
  background-color: #a18978;
  transition: all .3s ease-out;
}

.sec07 .inner li .more-btn a p {
  position: relative;
  z-index: 2;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: 500;
  color: #a18978;
  transition: all .3s ease-out;
}

.sec07 .inner li .more-btn a i {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}

.sec07 .inner li .more-btn:hover a::after {
  right: -1px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
}

.sec07 .inner li .more-btn:hover a p {
  color: #fff;
}

.sec07 .inner li .more-btn:hover a ::after {
  left: 0;
}

@media(max-width:1200px) {
  .sec07 .sec-tit {
    margin-top: -10px;
    margin-bottom: 40px;
  }

  .sec07 .sec-tit h3 {
    font-size: 4.2rem;
  }

  .sec07 .inner {
    gap: 0 20px;
  }

  .sec07 .inner li {
    height: 350px;
  }

  .sec07 .inner li .box {
    margin-top: -5px;
  }

  .sec07 .inner li .tit {
    margin-bottom: 7px;
    font-size: 2.8rem;
  }

  .sec07 .inner li .txt {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }

  .sec07 .inner li .more-btn {
    width: 160px;
    height: 45px;
    border-radius: 23px;
  }

  .sec07 .inner li .more-btn a {
    padding: 0 10px 0 19px;
  }

  .sec07 .inner li .more-btn a p {
    font-size: 1.6rem;
  }
}

@media(max-width:1024px) {
  .sec07 .sec-tit {
    margin-top: -10px;
    margin-bottom: 35px;
  }

  .sec07 .sec-tit h3 {
    font-size: 3.6rem;
  }

  .sec07 .inner {
    gap: 0 18px;
  }

  .sec07 .inner li {
    height: 310px;
  }

  .sec07 .inner li .box {
    margin-top: -5px;
  }

  .sec07 .inner li .tit {
    margin-bottom: 5px;
    font-size: 2.4rem;
  }

  .sec07 .inner li .txt {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }

  .sec07 .inner li .more-btn {
    width: 140px;
    height: 40px;
    border-radius: 21px;
  }

  .sec07 .inner li .more-btn a {
    padding: 0 8px 0 15px;
  }

  .sec07 .inner li .more-btn a p {
    font-size: 1.4rem;
  }

  .sec07 .inner li .more-btn a i {
    width: 28px;
    height: 28px;
  }

  .sec07 .inner li .more-btn a::after {
    right: 8px;
    width: 28px;
    height: 28px;
  }
}

@media(max-width:768px) {
  .sec07 .sec-tit {
    margin-top: -10px;
    margin-bottom: 30px;
  }

  .sec07 .sec-tit h3 {
    font-size: 3.2rem;
  }

  .sec07 .inner {
    flex-direction: column;
    align-items: start;
    gap: 15px 0;
  }

  .sec07 .inner li {
    width: 100%;
    height: 280px;
  }

  .sec07 .inner li .box {
    margin-top: -3px;
  }

  .sec07 .inner li .tit {
    margin-bottom: 5px;
    font-size: 2.2rem;
  }

  .sec07 .inner li .txt {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }

  .sec07 .inner li .more-btn {
    width: 125px;
    height: 35px;
    border-radius: 18px;
  }

  .sec07 .inner li .more-btn a p {
    font-size: 1.3rem;
  }

  .sec07 .inner li .more-btn a i {
    width: 25px;
    height: 25px;
  }

  .sec07 .inner li .more-btn a::after {
    width: 25px;
    height: 25px;
  }
}

@media(max-width:500px) {
  .sec07 .sec-tit {
    margin-top: -10px;
    margin-bottom: 25px;
  }

  .sec07 .sec-tit h3 {
    font-size: 2.8rem;
  }

  .sec07 .inner {
    gap: 15px 0;
  }

  .sec07 .inner li {
    height: 250px;
  }

  .sec07 .inner li .tit {
    font-size: 2rem;
  }

  .sec07 .inner li .txt {
    margin-bottom: 12px;
    font-size: 1.3rem;
  }

  .sec07 .inner li .more-btn a p {
    font-size: 1.2rem;
  }
}
/* ---------- E: Section07 ---------- */

/* 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; }
}

/* 필터링 시 부드러운 전환을 원할 경우 */
.item-swiper .swiper-slide {
  transition: opacity 0.3s;
}
/* 숨겨진 슬라이더는 Swiper 계산에서 완전히 제외 */
.item-swiper .swiper-slide[style*="display: none"] {
  margin: 0 !important;
}
