.anchor {
  display: block;
  position: relative;
  top: -160px;
  visibility: hidden;
}

.no-data {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: var(--color-mute);
}

.helper-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 10px;
  color: var(--color-mute);
}

.helper-list {
  margin-top: 10px;
}

.helper-list li {
  line-height: 1.4;
  margin-bottom: 4px;
  position: relative;
  padding-left: 15px;
}

.helper-list li:last-child {
  margin-bottom: 0;
}

.helper-list li::before {
  content: '-';
  position: absolute;
  left: 0;
}

.helper-list li ul {
  margin: 6px 0;
}

.page-wrap {
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-title {
  margin-bottom: 80px;
}

.page-title span {
  color: var(--color-primary);
}

.page-title .separator {
  display: block;
  width: 2px;
  height: 30px;
  background-color: #ddd;
  margin: 0 15px;
}

.title-between {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.content-title {
  margin-bottom: 30px;
}

.content-title span {
  color: var(--color-primary);
}

.content-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.text-filter {
  display: flex;
  align-items: center;
  gap: 15px;
}

.text-filter li {
  cursor: pointer;
}

.text-filter a,
.text-filter li {
  color: var(--color-mute);
  font-size: var(--font-16);
  font-weight: 600;
  line-height: 1;
}

.text-filter a.active,
.text-filter li.active {
  color: var(--color-primary);
  font-weight: 700;
}

.text-filter a::before,
.text-filter li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--color-mute);
  margin-right: 7px;
}

.text-filter a.active::before,
.text-filter li.active::before {
  background-color: var(--color-primary);
}

/* label */

.label-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.detail-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  overflow: hidden;
  background-color: #f1f1f1;
  padding: 0 8px;
  height: 25px;
}

.detail-label.naver {
  background-color: #00c300;
  width: 25px;
  height: 25px;
}

.detail-label p {
  font-size: var(--font-13);
  line-height: 1;
  color: #888;
}

/* label end */


/* card 기본 속성 */
.card .thumbs {
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.card .thumbs::before {
  content: '';
  display: block;
  padding-top: 66.66%;
}

.card .thumbs .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


/* product-card */
:root {
  --card-flex-gap: 30px;
}

.product-wrap {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--card-flex-gap);
  row-gap: calc(var(--card-flex-gap) + 20px);
}

.product-wrap .thumbs-slider {
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.product-card {
  cursor: pointer;
  width: calc(25% - (var(--card-flex-gap) * 3 / 4));
  max-width: 340px;
}

.product-card .detail {
  margin-top: 15px;
}

.product-card .detail .product-title {
  font-weight: 600;
  margin-top: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.product-card .detail .product-date {
  font-size: var(--font-13);
  font-weight: 600;
  line-height: 1;
  margin-top: 5px;
}

.product-card .detail .product-date span {
  color: var(--color-primary);
  font-weight: 800;
}

.product-state {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 15px;
  row-gap: 6px;
  margin-top: 20px;
}

.product-state p {
  font-size: var(--font-13);
  color: var(--color-mute);
  line-height: 1;
  flex: 1;
}

.product-state p span.number {
  color: var(--color-primary);
  font-weight: 800;
}

.product-state>div {
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.product-state .lodge p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product-state .lodge::before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  background-image: url('/img/icon/icon_lodge.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.product-state .recruit::before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  background-image: url('/img/icon/icon_recruit.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* product-card end */

/* dot style */
.thumbs-dots {
  position: absolute;
  bottom: 10px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.thumbs-dots li {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  padding: 0;
  cursor: pointer;
}

.thumbs-dots li button {
  display: block;
  width: inherit;
  height: inherit;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.thumbs-dots li button:before {
  font-size: 30px;
  line-height: 8px;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  content: '•';
  opacity: .6;
  text-align: center;
  color: #fff;
}

.thumbs-dots li.slick-active button:before {
  color: #fff;
  opacity: 1;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

/* dot style end */



/* Desktop ( 1024px ~)*/
@media all and (min-width:1024px) {
  .product-state .lodge {
    max-width: calc(100% - 120px);
  }

}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width:1024px) and (max-width:1440px) {}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width:768px) and (max-width:1023px) {

  /* product-card */
  :root {
    --card-flex-gap: 20px;
  }

  .product-card {
    max-width: unset;
  }

  .product-card {
    width: calc(100% / 3 - (var(--card-flex-gap) * 2 / 3));
  }

  .product-state {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-state>div {
    width: 100%;

    /* product-card end */
  }
}

/* Moble ( ~ 767px)*/
@media all and (max-width:767px) {
  .page-wrap {
    margin-top: 30px;
  }

  .page-title {
    margin-bottom: 40px;
  }

  .content-title {
    margin-bottom: 20px;
  }

  /* label */
  .label-wrap {
    gap: 5px;
  }

  .detail-label {
    padding: 0 6px;
    height: 20px;
  }

  .detail-label.naver {
    width: 20px;
    height: 20px;
  }

  /* label end */

  .card .thumbs {
    border-radius: 10px;
  }

  /* product-card */
  :root {
    --card-flex-gap: 10px;
  }

  .product-wrap {
    flex-wrap: wrap;
    row-gap: 30px;
  }

  .product-wrap .thumbs-slider {
    border-radius: 10px;
  }

  .product-card {
    width: calc(100% / 2 - (var(--card-flex-gap) / 2));
    max-width: unset;
  }

  .product-card .detail {
    margin-top: 10px;
  }

  .product-card .detail .product-title {
    margin-top: 10px;
  }

  .product-state {
    row-gap: 3px;
    margin-top: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .product-state>div {
    width: 100%;

    /* product-card end */

  }
}


  /*tab*/
  .tab .tab-nav {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 20px;
  }

  .tab .tab-nav>div {
    line-height: 1;
    font-size: var(--font-16);
    font-weight: 600;
    padding: 0 10px 8px;
    margin-right: 20px;
    margin-bottom: 20px;
    text-align: center;
    cursor: pointer;
    color: #ccc;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .tab .tab-nav>div.active {
    border-bottom: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: 700;
  }

  .tab .tab-nav>div:hover {
    color: var(--color-primary);
    font-weight: 700;
  }

  .tab.full .tab-nav>div {
    flex: 1 0 auto;
  }

  .tab.tab-underline .tab-nav>div {
    position: relative;
    border-bottom: 1px solid #e5e5e5;
    color: var(--color-mute);
    font-weight: 500;
    margin: 0;
    padding: 12px 30px;
    z-index: 1;
  }

  .tab.tab-underline .tab-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #e5e5e5;
  }

  .tab.tab-underline .tab-nav>div:hover {
    color: var(--color-primary);
    font-weight: 700;
  }

  .tab.tab-underline .tab-nav>div:after {
    content: '';
    position: absolute;
    display: inline-block;
    bottom: -1px;
    left: 0;
    width: 100%;
    border-bottom: 2px solid var(--color-primary);
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: scale(0, 1);
  }

  .tab.tab-underline .tab-nav>div.active {
    font-weight: 700;
    color: var(--color-primary);
  }

  .tab.tab-underline .tab-nav>div.active:after {
    opacity: 1;
    transform: scale(1);
  }


  /* Desktop ( 1024px ~)*/
  @media all and (min-width:1024px) {
    .tab.tab-scroll .tab-nav {
      flex-wrap: wrap;
      overflow-x: auto;
    }
  }

  /* Laptop ( 1024px ~ 1440px)*/
  @media all and (min-width:1024px) and (max-width:1440px) {}

  /* Tablet ( 768px ~ 1023px)*/
  @media all and (min-width:768px) and (max-width:1023px) {}

  /* Moble ( ~ 767px)*/
  @media all and (max-width:767px) {
    .tab .tab-nav>div {
      margin-right: 25px;
    }
  }

  /*tab*/

  /* form */
  .checkbox-acc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    row-gap: 6px;
    margin-bottom: 20px;
  }

  .checkbox-acc a {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: underline;
    margin-left: 5px;
  }

  /* Moble ( ~ 767px)*/
  @media all and (max-width:767px) {
    .checkbox-acc a {
      margin-left: 23px;
    }
  }

  /* form *