@charset "UTF-8";
/*=================================================
    컬러
=================================================*/
/*=================================================
    폰트
=================================================*/
/*=================================================
    미디어쿼리
=================================================*/
/*=================================================
            공통 요소
=================================================*/
input[type=checkbox] {
  position: relative;
  border: 1px solid #ddd;
  cursor: pointer;
}
input[type=checkbox]:checked:before {
  content: "";
  display: inline-block;
  height: 10px;
  width: 6px;
  border-bottom: 2px solid #ebca6d;
  border-right: 2px solid #ebca6d;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 5px;
}

#page-content-wrapper {
  overflow: hidden;
}

#page-content-wrapper > section {
  padding: 170px 0;
}
@media screen and (max-width: 991.98px) {
  #page-content-wrapper > section {
    padding: 80px 0;
  }
}

.area {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1320px;
}
@media screen and (max-width: 1920px) {
  .area {
    max-width: 1520px;
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 991.98px) {
  .area {
    max-width: 1458px;
    padding-left: 19px;
    padding-right: 19px;
  }
}

input[type=radio] {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
}
input[type=radio]:checked:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 60%;
  height: 60%;
  background-color: #ebca6d;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.flex {
  display: flex !important;
}

.none {
  display: none !important;
}

.block {
  display: block !important;
}

.inline-block {
  display: inline-block !important;
}

@media screen and (min-width: 350px) {
  .none-xs {
    display: none !important;
  }
}

@media screen and (min-width: 375px) {
  .none-xsm {
    display: none !important;
  }
}

@media screen and (min-width: 544px) {
  .none-sm {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .none-md {
    display: none !important;
  }
}

@media screen and (min-width: 992px) {
  .none-lg {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) {
  .none-xl {
    display: none !important;
  }
}

@media screen and (min-width: 1440px) {
  .none-xxl {
    display: none !important;
  }
}

@media screen and (min-width: 1300px) {
  .none-1300 {
    display: none !important;
  }
}

@media screen and (min-width: 350px) {
  .block-xs {
    display: block !important;
  }
}

@media screen and (min-width: 375px) {
  .block-xsm {
    display: block !important;
  }
}

@media screen and (min-width: 544px) {
  .block-sm {
    display: block !important;
  }
}

@media screen and (min-width: 768px) {
  .block-md {
    display: block !important;
  }
}

@media screen and (min-width: 992px) {
  .block-lg {
    display: block !important;
  }
}

@media screen and (min-width: 1200px) {
  .block-xl {
    display: block !important;
  }
}

@media screen and (min-width: 1440px) {
  .block-xxl {
    display: block !important;
  }
}

@media screen and (min-width: 1600px) {
  .block-xxxl {
    display: block !important;
  }
}

@media screen and (min-width: 1300px) {
  .block-1300 {
    display: block !important;
  }
}

@media screen and (min-width: 992px) {
  .grid-lg {
    display: grid !important;
  }
}

@media screen and (min-width: 992px) {
  .flex-lg {
    display: flex !important;
  }
}

@media screen and (min-width: 1200px) {
  .flex-xl {
    display: flex !important;
  }
}

@media screen and (min-width: 768px) {
  .inline-block-md {
    display: inline-block !important;
  }
}

@media screen and (min-width: 1200px) {
  .inline-block-xl {
    display: inline-block !important;
  }
}

@media screen and (max-width: 543.98px) {
  .sm-none {
    display: none;
  }
}

@media screen and (max-width: 767.98px) {
  .md-none {
    display: none;
  }
}

@media screen and (max-width: 991.98px) {
  .lg-none {
    display: none;
  }
}

@media screen and (max-width: 1199.98px) {
  .xl-none {
    display: none !important;
  }
}

@media screen and (max-width: 1439.98px) {
  .xxl-none {
    display: none !important;
  }
}

@media screen and (max-width: 1599.98px) {
  .xxxl-none {
    display: none !important;
  }
}

#popup {
  position: fixed;
  z-index: 9999999;
}
#popup .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
#popup .popup {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}
@media screen and (max-width: 991.98px) {
  #popup .popup {
    padding: 20px;
  }
}
#popup .popup iframe {
  width: 60vw;
  height: auto;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 991.98px) {
  #popup .popup iframe {
    width: 80vw;
  }
}
#popup .close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  cursor: pointer;
  font-size: 40px;
  filter: invert(100%);
}
@media screen and (max-width: 991.98px) {
  #popup .close-btn {
    top: -20px;
    right: 20px;
  }
}
@media screen and (max-width: 680px) {
  #popup .close-btn {
    top: -30px;
  }
}

#tiktokContainer {
  display: none;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  width: min-content;
}
#tiktokContainer blockquote {
  margin: 0 auto !important;
  width: 100% !important;
}
#tiktokContainer iframe {
  display: block;
  width: 100% !important;
  height: auto !important;
  min-height: 700px;
}
@media screen and (max-width: 991.98px) {
  #tiktokContainer iframe {
    min-height: 500px;
  }
}

.btn {
  display: flex;
  gap: 3px;
  padding: 13px 17px;
  border: 1px solid #9d968e;
  border-radius: 20px;
  align-items: center;
}
.btn p {
  color: #9d968e;
  font-size: 13px;
}
.btn img {
  width: 10px;
}

.more {
  padding: 14px 0;
  width: 100%;
  border: 1px solid #9d968e;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 15px;
}
.more p {
  color: #9d968e;
  font-size: 13px;
}
.more img {
  width: 10px;
}