.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
}

.inner {
  max-width: 1400px;
  padding: 0 15px;
  margin: 0 auto;
}
.inner.mw-1000 {
  max-width: 1000px;
  padding: 0 15px;
  margin: 0 auto;
}
.inner.mw-600 {
  max-width: 600px;
  padding: 0 15px;
  margin: 0 auto;
}
.ellipsis-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4em;
  max-height: 1.4em;
}
.ellipsis-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4em;
  max-height: calc(1.4em * 2);
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
/* 스와이퍼 버튼 초기화 */
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}
.intro-section .text--block {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0 15px;
  width: 100%;
  transform: translate(-50%, -50%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.main-tit {
  font-size: 34px;
  font-weight: var(--font-eb) !important;
  line-height: 1.2;
}

.main-subtit {
  font-size: 18px;
  font-weight: var(--font-b) !important;
  color: var(--fc-subtit);
  line-height: 1.2;
}
/* sparkle */
.sparkle-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  opacity: 0;
  will-change: transform, opacity;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

/* timeblock layout */
.time--block {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 15px 20px;
  margin-top: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.time--block .flex-box {
  gap: 5px;
}
.time--block .flex-box span {
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
}
.clock-subtx {
  color: var(--white);
  opacity: 0.8;
  font-size: 15px;
}

.bold_18 {
  font-weight: var(--font-b) !important;
  font-size: 18px !important;
}
.mb-70 {
  margin-bottom: 35px;
}
/* common */

.z-index1 {
  z-index: 1 !important;
}

.z-index2 {
  z-index: 2 !important;
}

.z-index3 {
  z-index: 3 !important;
}

.defalt_link {
  text-decoration: dashed !important;
  color: var(--primary-blue);
}
.flex-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.txt-c {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* button css */
.btn {
  display: inline-block;
  position: relative;
  padding: 13px 30px;
  font-size: 15px;
  color: var(--white);
  border: none;
  border-radius: 50px;
  background: var(--primary-color2);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
}
.btn-w {
  display: inline-block;
  position: relative;
  padding: 13px 30px;
  font-size: 15px;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.ms-3 .btn-w {
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-w::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-color2) 0%, #726176 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50px;
  z-index: -1;
  color: var(--white);
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-color2) 0%, #726176 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 50px;
  color: var(--white);
}

.btn span,
.btn {
  position: relative;
  z-index: 1;
  font-weight: 500;
}

/* hover */
.btn-w:hover {
  border: 1px solid transparent;
  color: var(--white);
}
.btn:hover::before,
.btn-w:hover::before {
  opacity: 1;
}

/* pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 15px;
  font-size: 16px;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #888888;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pagination .page-numbers.current {
  color: var(--primary-color4);
}
.pagination .page-numbers:hover {
  color: var(--primary-color4);
}
.only-pc {
  display: none;
}
.ms-3 .section-tit,
.rp-1 .section-tit {
  color: var(--white);
}
.greeting-section .section-tit {
  color: var(--white);
  max-width: 240px;
}
.section-tit {
  display: inline-block;
  color: var(--primary-color4);
  font-family: var(--font-secondary);
  font-weight: 500;
}

.greeting-section.gs-1 .text--block .section-tit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section-tit > span {
  font-weight: 600;
}
.greeting-section .section-tit > span {
  color: var(--white);
}
.greeting-section.gs-1 .section-tit > span {
  color: var(--primary-color4);
}
.sparkle-top .section-tit .img--block {
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.section-tit .img--block {
  position: absolute;
  right: -20px;
  top: -3px;
  width: 20px;
  height: 20px;
}
.section-subtit {
  font-size: 16px;
  margin: 0 0 10px 0;
  color: var(--primary-color4);
}
.rp-1 .section-subtit {
  font-size: 16px;
  color: #d8d8d8;
}
.pc-v {
  display: none;
}
.only-m {
  display: block;
}
.hidden {
  display: none;
}
.mw-90p {
  max-width: 90%;
}
.no-results {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--font-secondary);
}
.size-guide .j_img {
  margin-bottom: 20px;
}
.rememberstone-page .section-tit {
  max-width: 70vw;
}
/* margin */
.mb-50 {
  margin-bottom: 25px;
}
.gslide-media {
  position: relative;
  width: 100% !important;
}
.glightbox-clean .gslide-title {
  text-align: center;
  font-family: var(--font-primary) !important;
  margin-bottom: 0 !important;
  padding: 10px 0 !important;
  color: #fff !important;
}
.gslide-image {
  /* border-radius: 12px; */
  overflow: hidden;
  background: transparent;
}
.glightbox-clean .gdesc-inner {
  /* border-bottom-left-radius: 12px; */
  /* border-bottom-right-radius: 12px; */
  overflow: hidden;
  background: transparent;
  padding: 0 !important;
}
.glightbox-clean .gslide-description {
  background: transparent !important;
  max-width: 100% !important;
}
.glightbox-container .gslide {
  max-width: 80%;
  height: auto;
}
.glightbox-mobile .glightbox-container .gslide-title {
  padding: 10px 0;
  
}
.glightbox-mobile .glightbox-container .gslide-description {
  position: relative !important;
  padding: 0 !important;
  /* min-width: 200px; */
}
.glightbox-container .ginner-container {
  height: auto !important;
}
.glightbox-container .gslide-inner-content {
  border-radius: 12px;
  overflow: hidden;
}
.desc-bottom .gslide-image img,
.desc-top .gslide-image img {
  width: 100% !important;
  max-width: 100%;
  border-radius: 12px;
}
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
@media screen and (min-width: 992px) {
  .section-tit .img--block {
    position: absolute;
    right: -25px;
    top: -3px;
    width: 20px;
    height: 20px;
  }
  .section-tit > span.only-m {
    font-weight: 200;
  }
  .only-pc {
    display: block;
  }
  .ms-1 .only-pc {
    display: inline-block;
  }
  .only-m {
    display: none;
  }
  .pc-v {
    display: block;
  }
  .mobile-v {
    display: none;
  }
  .pagination {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .mb-70 {
    margin-bottom: 70px;
  }
  .mb-50 {
    margin-bottom: 25px;
  }
  .gslide-media {
    width: 100%;
  }
  .gslide-image {
    /* border-top-left-radius: 12px; */
    /* border-top-right-radius: 12px; */
    /* border-bottom-left-radius: 0px; */
    /* border-bottom-right-radius: 0px; */
    overflow: hidden;
    background: transparent;
  }
  .rememberstone-page .section-tit {
    max-width: 100%;
  }
  .greeting-section .section-tit {
    max-width: 100%;
  }
  .glightbox-container .gslide {
    max-width: 60%;
  }
  .text--block.sparkle-top.txt-c.mb-50 {
    margin-top: 20px;
  }
  .time--block .flex-box span {
    font-size: 16px;
  }
}
