@charset "UTF-8";
/*=================================================
    컬러
=================================================*/
/*=================================================
    폰트
=================================================*/
/*=================================================
    미디어쿼리
=================================================*/
/*=================================================
            공통 레이아웃
=================================================*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  font-family: "Pretendard", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  min-width: 320px;
  line-height: 1.15;
  color: #111 !important;
  letter-spacing: -0.02em;
}

#page-content-wrapper {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.area {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1200px;
}
@media screen and (max-width: 1920px) {
  .area {
    max-width: 1300px;
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 991.98px) {
  .area {
    max-width: 1270px;
    padding-left: 35px;
    padding-right: 35px;
  }
}

/*=================================================
            공통 요소
=================================================*/
.relative {
  position: relative !important;
}

.bg-point {
  background-color: #00a896 !important;
}

.font-point {
  color: #00a896 !important;
}

.font-gmarket {
  font-family: "GmarketSans", "Pretendard", "맑은 고딕", sans-serif !important;
}

.flex {
  display: flex !important;
}

.none {
  display: none !important;
}

.block {
  display: block !important;
}

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

.flex {
  display: flex !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 1300px) {
  .block-1300 {
    display: block !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 (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;
  }
}

.cursor {
  cursor: pointer;
}

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

header {
  position: absolute;
  top: 0;
  width: 100%;
  padding-top: 49px;
  padding-left: 52px;
  font-size: 43px;
  letter-spacing: 0.08em;
  font-family: "BMYEONSUNG", "Pretendard";
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 991.98px) {
  header {
    padding: 20px 0;
    font-size: 20px;
    padding-left: 14px;
  }
}
header img {
  width: 168px;
  height: 49px;
}
@media screen and (max-width: 991.98px) {
  header img {
    width: auto;
    height: 22px;
  }
}

.modal {
  display: none; /* 초기 숨김 */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  background: rgba(0, 0, 0, 0.5);
}
.modal .modal-content {
  position: relative;
  background: #fff;
  margin: 10% auto;
  padding: 80px 20px 40px;
  max-width: 500px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.8;
  height: 80%;
  overflow-y: scroll;
}
.modal .close-btn {
  position: absolute;
  top: 0;
  right: 20px;
  font-size: 50px;
  cursor: pointer;
}