/* 본문 영역 */
.wrap {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (max-width: 800px) {
  .wrap {
    width: 100%;
    margin: 0;
  }
  /* 2025.11.12 */
  .ellipse_btn {
    flex-wrap: wrap;
  }
  .ellipse_btn li {
    width: 18%;
    margin-bottom: 12px;
  }
}

.ellipse_btn {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 20px;
  /* 2025.11.12 */
}

.main_container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

.main_container>div {
  width: 100%;
}

.swiper-slide {
  position: relative;
}

.swiper-slide .banner-title {
  width: 250px;
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
}

.swiper-slide .banner-title p:first-child {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.swiper-slide .banner-title p:last-child {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
}

.sec1_type1 .content {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}

.sec1_type1 .img_container {
  width: 100%;
  height: 68vh;
  margin: 0 auto;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  position: relative;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  transition: 0.4s ease-in-out;
}

.sec1_type1 .img_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}

.sec1_type1 .img_container .zoomimage {
  animation: zoomOutSingle 20s infinite ease-in-out;
}

@keyframes zoomOutSingle {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.sec1_type1 .text_container {
  width: 100%;
  padding: 32px 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  box-sizing: border-box;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.4) 30%,
      rgba(0, 0, 0, 0.2) 60%,
      rgba(0, 0, 0, 0) 100%);
}

.sec1_type1 .text_container .tit_txt {
  margin-bottom: 4px;
  font-size: 1.5rem;
  font-weight: 600;
}

.sec1_type1 .text_container .sub_txt {
  font-size: 1rem;
  font-weight: 400;
  line-height: 22px;
}

.sec1_type1 .banner_btn {
  width: 35%;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  border-radius: 16px;
  color: #333 !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  font-weight: 600;
  font-size: .85rem;
}

@media screen and (max-width: 800px) {
  .sec1_type1 {
    width: 100%;
  }

  .sec1_type1 .img_container {
    height: 55vh;
  }
}

.btn-shiny {
  border: none;
  background: rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

/* 20251015  shop버튼 효과 변경 */
.btn-shiny:before {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  left: -150%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(200, 200, 200, 0) 0%,
      rgba(255, 255, 255, 0.8) 30%,
      rgba(200, 200, 200, 0.3) 50%,
      rgba(255, 255, 255, 0.8) 80%,
      rgba(200, 200, 200, 0) 100%);
  transform: skewX(-20deg);
  z-index: 0;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  0% {
    left: -150%;
  }

  100% {
    left: 150%;
  }
}