* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Pretendard", sans-serif;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style-type: none;
  word-break: keep-all;
}

html,
body {
  height: auto;
  font-family: "Pretendard", sans-serif;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* ::-webkit-scrollbar {
    display: none;
} */

.GmarketSans {
  font-family: "GmarketSans", sans-serif;
}

:root {
  --main-color: #0f9ad8;
}

.fregister_agree {
  border: none;
}

.fregister_agree input[type="checkbox"] + label span {
  position: initial !important;
}

.fregister_agree label {
  display: flex;
  align-items: center;
  gap: 10px;
}

button {
  border: 1px solid var(--main-color);
  background: none;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  cursor: pointer;
}

/* header 소스 */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

header.fixed {
  --frost: 10px;
  --bg-alpha: 0.2;
  --border-alpha: 0.35;
  --depth: 30;
  --refraction: 80%;
  --dispersion: 40%;
  --light-angle: 135deg;
  --light-intensity: 0.8;
  background: linear-gradient(
      var(--light-angle),
      rgba(0, 0, 0, calc(0.1 * var(--light-intensity))) 0%,
      rgba(0, 0, 0, 0) 35%
    ),
    rgba(0, 0, 0, var(--bg-alpha));
  backdrop-filter: blur(var(--frost)) saturate(1.1);
  -webkit-backdrop-filter: blur(var(--frost)) saturate(1.1);
}

.header {
  max-width: 1835px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

.header-logo img {
  mix-blend-mode: luminosity;
}

.header-menu {
  display: flex;
  gap: 93px;
}

.header-menu a {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.member-menu span {
  color: #fff;
}

#wrap {
  position: relative;
}

main {
  background: #fff;
}

/* footer */
footer {
  position: relative;
  background-color: #1f1f1f;
  color: #fff;
  padding: 100px 0;
}

.ft-bg {
  max-width: 1920px;
  margin: 0 auto;
}

.ft-bg img {
  width: 100%;
  height: 100%;
}

.ft-wrap {
  display: flex;
  flex-direction: column;
  max-width: 1820px;
  margin: 0 auto;
  width: 100%;
}

.ft-logo {
  width: auto;
  display: block;
  margin-bottom: 30px;
}

.ft-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.ft-links a {
  color: #fff;
  display: flex;
  text-decoration: none;
  gap: 5px;
  align-items: center;
}

.ft-links a:hover {
  text-decoration: underline;
}

.ft-links .sep {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.25);
  display: inline-block;
}

.ft-divider {
  border: 0;
  width: 360px;
  height: 1px;
  background: #fff;
  margin: 16px 0;
}

.ft-info {
  font-size: 12px;
  color: #fff;
  word-break: keep-all;
}

.ft-copy {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-top: 45px;
}

@media (max-width: 768px) {
  .footer-section {
    padding: 24px 16px 36px;
  }

  .ft-logo img {
    height: 60px;
    margin-bottom: 12px;
  }

  .ft-links {
    gap: 12px;
    font-size: 13px;
  }

  .ft-info {
    font-size: 12px;
    line-height: 1.7;
  }

  .ft-copy {
    font-size: 11px;
  }

  .ft-divider {
    width: 100%;
  }
}

.display-pc {
}

.display-m {
  display: none;
}

.displayf-pc {
}

.displayf-m {
  display: none !important;
}

.menu-pc {
}

.menu-m {
  display: none !important;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  height: 100vh;
  background: #f8f8f8;
  z-index: 99;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.3s ease;
  will-change: transform, opacity;
}

.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.menu-close {
  background: none;
  border: none;
  cursor: pointer;
}

.menu-close img {
  width: auto !important;
  vertical-align: middle;
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  padding: 20px 25px;
}

.mobile-menu-list a {
  display: block;
  color: #1f1f1f;
  text-decoration: none;
  font-size: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(31, 31, 31, 0.2);
  font-weight: 500;
}

.mobile-menu-list .member-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.mobile-menu-list .member-list a {
  font-size: 16px;
  font-weight: 400;
  border-bottom: none;
}

.mobile-menu-footer {
  padding: 20px 25px;
  font-size: 14px;
  margin-top: auto;
}

.mobile-menu-footer p {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
}

.mobile-menu-footer h3 {
  margin-bottom: 20px;
  font-size: 18px;
}

.mobile-menu-footer small {
  font-size: 12px;
  color: #1f1f1f;
  opacity: 0.8;
}

.policy-dialog {
  width: min(900px, 92vw);
  height: min(80vh, 720px);
  margin: auto;
  border: none;
  border-radius: 16px;
  overflow: hidden;
}

.policy-dialog::backdrop {
  background: rgba(0, 0, 0, 0.55);
}

.policy-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #252525;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.policy-head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.policy-close {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.policy-body {
  height: calc(100% - 50px);
  overflow: auto;
  background: #111;
  color: #e9e9e9;
  padding: 18px;
  line-height: 1.7;
  font-size: 14px;
  word-break: keep-all;
}

.policy-body h1 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 18px;
}

.policy-body .lead {
  margin: 0 0 18px;
}

.policy-body h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 26px 0 10px;
}

.policy-body .desc {
  margin: 6px 0 10px;
  list-style-type: unset;
}

.policy-body .numbered {
  list-style: decimal;
  margin: 0 0 6px 20px;
  padding: 0;
}

.policy-body .numbered > li {
  margin: 6px 0;
  list-style-type: unset;
}

.policy-body .numbered > li > strong {
  display: block;
  margin-bottom: 4px;
}

.policy-body .bulleted {
  list-style: disc;
  margin: 6px 0 6px 20px;
  padding: 0;
}

.policy-body .bulleted li {
  margin: 2px 0;
  list-style-type: unset;
}

.policy-body .date {
  margin-top: 6px;
  font-weight: 600;
}

.kakao_btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

.kakao_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  transition: all 0.25s ease;
}

.kakao_btn img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

@media (max-width: 480px) {
  .policy-body {
    padding: 22px 16px 28px;
    font-size: 14px;
  }

  .policy-body h1 {
    font-size: 20px;
  }

  .policy-body h2 {
    font-size: 16px;
  }
}

@media (max-width: 1835px) {
  .header {
    padding: 25px 20px;
  }

  footer {
    padding: 100px 20px;
  }
}

@media (max-width: 1024px) {
  .menu-pc {
    display: none;
  }

  .menu-m {
    display: flex !important;
  }

  footer {
    padding: 60px 20px;
  }
}

@media (max-width: 768px) {
  .display-pc {
    display: none;
  }

  .display-m {
    display: block;
  }

  .displayf-pc {
    display: none !important;
  }

  .displayf-m {
    display: flex !important;
  }

  .header {
    padding: 15px 20px;
  }

  .header-menu {
    gap: 10px;
  }

  .header-menu a {
    font-size: 10px;
  }

  .header-logo img,
  .main_logo {
    width: 100px;
  }

  .ft-copy {
    font-size: 14px;
  }

  .kakao_btn {
    right: 10px;
    bottom: 10px;
  }

  .kakao_btn img {
    width: 45px;
    height: 45px;
  }

  #daum_juso_pageod_zip {
    position: absolute !important;
    z-index: 99;
    max-height: 500px;
  }

  #_lguplus_popup__div > div {
    max-width: 100% !important;
    margin: 0 !important;
    transform: translate(-50%, -50%);
  }
}
