:root {
  --color-primary: #FF3B8C;
  --color-primary-hover: #fd66a5;
  --color-second: #6a36c9;
  --color-second-hover: #7d4bd4;
}

.inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.inner-lg {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 20px;
}

.t-c {
  text-align: center !important;
}

/* gradient button — 메인·서브 공통 */
a.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  color: #f7f8fa;
}
a.btn-gradient img {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}
a.btn-gradient.reserve {
  background: linear-gradient(to right, var(--color-second), var(--color-primary), var(--color-second));
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.4s ease;
}
a.btn-gradient.reserve:hover {
  background-position: 0 0;
}
a.btn-gradient.rounded {
  border-radius: 50px;
  padding: 1.25rem 2.5rem;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
}

@media (min-width: 1201px) {
  .pc-none {
    display: none;
  }
}
@media (max-width: 1200px) {
  .pc-only {
    display: none;
  }
}

/* ========================
   HEADER
   ======================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: background 0.3s ease;
}

#header.scrolled {
  background: #111;
}

#header .header-bottom {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 80px;
  text-align: center;
}

#header .header-bottom::after {
  content: '';
  display: block;
  clear: both;
}

#header .logo {
  position: absolute;
  top: 50%;
  left: 80px;
  z-index: 1;
  margin: 0;
  font-size: 0;
  transform: translateY(-50%);
}

#header .logo a {
  display: block;
}

#header .logo a img {
  width: 106px;
}

#header .m-menu-btn {
  display: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

/* header util */
#header .header__util {
  position: absolute;
  top: 50%;
  right: 80px;
  z-index: 1;
  font-size: 0;
  transform: translateY(-50%);
}

#header .util_wrap {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  z-index: 9999;
  width: auto;
}

#header .util_wrap ul {
  display: flex;
  align-items: center;
  text-align: left;
}

#header .util_wrap ul li + li {
  position: relative;
  margin-left: 14px;
  padding-left: 14px;
}

#header .util_wrap ul li + li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 14px;
  margin-top: -7px;
  background-color: rgba(255, 255, 255, 0.3);
}

#header .util_wrap ul li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  padding: 12px 20px;
  background: var(--color-second);
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
  transition: background 0.3s ease;
}

#header .util_wrap ul li a:hover {
  background: var(--color-second-hover);
}

body.gnb-open {
  overflow: hidden;
}

/* ========================
   PC GNB (min-width: 1201px)
   ======================== */
@media (min-width: 1201px) {
  #header .m-menu-btn,
  #header .m-gnb-bg,
  #header .m-lang {
    display: none !important;
  }

  #header .gnb {
    position: relative;
    right: 0 !important;
    display: inline-block;
    width: auto;
    vertical-align: top;
    text-align: left;
    opacity: 1 !important;
    transition: none;
  }

  #header .gnb > ul {
    display: inline-flex;
    align-items: center;
    vertical-align: top;
    font-size: 0;
    line-height: 0;
    gap: 0;
  }

  #header .gnb > ul > li {
    position: relative;
    display: inline-block;
    vertical-align: top;
  }

  #header .gnb > ul > li > a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    padding: 0 40px;
    height: 100px;
    color: #fff;
    transition: color 0.3s ease;
  }

  #header .gnb > ul > li > a.current {
    color: var(--color-primary);
  }

  #header .gnb > ul > li:hover > a {
    color: var(--color-primary-hover);
  }

  #header .gnb .depth2 {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 0;
    margin-left: -100px;
    width: 200px;
    height: 0;
    background: #1a1a1a;
    text-align: center;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.3s ease;
  }

  #header .gnb .depth2 li {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
  }

  #header .gnb .depth2 li:first-child {
    border-top: none;
  }

  #header .gnb .depth2 a {
    display: block;
    padding: 12px 10px;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.85);
    word-break: keep-all;
    font-weight: 400;
    transition: color 0.3s ease, background 0.3s ease;
  }

  #header .gnb .depth2 a:hover {
    color: #fff;
    background: color-mix(in srgb, var(--color-primary) 15%, transparent);
  }

  #header .gnb > ul > li:hover .depth2 {
    display: block !important;
    z-index: 9999;
    height: auto;
    opacity: 1;
  }
}

/* ========================
   TABLET / MOBILE GNB (max-width: 1200px)
   ======================== */
@media (max-width: 1200px) {
  #header .header-bottom {
    width: 100%;
    height: 80px;
    padding: 0 20px;
  }

  #header .logo {
    left: 20px;
    height: 100%;
  }

  #header .logo a {
    display: flex;
    align-items: center;
    height: 100%;
  }

  #header .logo a img {
    width: 106px;
    max-width: 100%;
  }

  #header .header__util.pc_only {
    display: none;
  }

  #header .m-menu-btn {
    display: block;
    position: absolute;
    top: 23px;
    right: 20px;
    width: 42px;
    height: 34px;
    z-index: 100001;
  }

  #header .m-menu-btn span {
    display: block;
    height: 6px;
    background: #fff;
    left: 0;
    transition: 0.3s ease;
  }

  #header .m-menu-btn span:nth-child(1) {
    position: absolute;
    top: 50%;
    margin-top: -3px;
    width: 100%;
  }

  #header .m-menu-btn span:nth-child(2) {
    position: absolute;
    top: 0;
    width: 100%;
  }

  #header .m-menu-btn span:nth-child(3) {
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  #header .m-menu-btn.on {
    z-index: 100001;
  }

  #header .m-menu-btn.on span {
    background: #151515;
  }

  #header .m-menu-btn.on span:nth-child(1) {
    opacity: 0;
  }

  #header .m-menu-btn.on span:nth-child(2) {
    height: 2px;
    transform: translateY(16px) rotate(-45deg);
  }

  #header .m-menu-btn.on span:nth-child(3) {
    height: 2px;
    transform: translateY(-16px) rotate(45deg);
  }

  #header .gnb {
    float: none;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 99999;
    width: 100%;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    text-align: left;
  }

  body.gnb-open #header .gnb {
    opacity: 1;
    pointer-events: auto;
  }

  #header .m-gnb-bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
  }

  #header .m-gnb-bg[hidden] {
    display: none;
  }

  #header .m-lang {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 2;
    padding: 20px 0 0 33px;
    width: 80%;
    height: 80px;
    background: #fff;
    opacity: 1;
    font-size: 0;
  }

  #header .m-lang .header__util {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
  }

  #header .m-lang .util_wrap ul li + li::before {
    background-color: rgba(21, 21, 21, 0.15);
  }

  #header .m-lang .util_wrap ul li a {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #fff !important;
    padding: 12px 20px;
    background: var(--color-second);
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
    transition: background 0.3s ease;
  }

  #header .m-lang .util_wrap ul li a:hover {
    background: var(--color-second-hover);
  }

  #header .gnb > ul {
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    top: 80px;
    right: 0;
    z-index: 2;
    width: 80%;
    height: calc(100% - 80px);
    background: #fff;
    padding-bottom: 120px;
  }

  #header .gnb ul a {
    display: block;
    padding-left: 36px;
    width: 100%;
    line-height: 1;
  }

  #header .gnb > ul > li {
    width: 100%;
  }

  #header .gnb > ul > li > a {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #ececec;
    font-size: 23px;
    color: #151515;
    background-color: #fff;
  }

  #header .gnb > ul > li:has(.depth2) > a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 30px;
    width: 10px;
    height: 10px;
    margin-top: -9px;
    border-right: 2px solid #151515;
    border-bottom: 2px solid #151515;
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  /* #header .gnb > ul > li:first-child > a {
    border-top: none;
  } */

  #header .gnb > ul > li:last-child > a {
    border-bottom: 1px solid #ececec;
  }

  #header .gnb > ul > li > .depth2 {
    display: block;
    width: 100%;
    background: #f8f8f8;
  }

  #header .gnb > ul > li > .depth2[hidden] {
    display: none;
  }

  #header .gnb > ul > li > .depth2 > li {
    width: 100%;
    background: #f8f8f8;
  }

  #header .gnb > ul > li > .depth2 > li a {
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid #ececec;
    font-size: 17px;
    color: #444;
  }

  #header .gnb > ul > li.on > a {
    color: var(--color-primary);
  }

  #header .gnb > ul > li.on:has(.depth2) > a::after {
    transform: rotate(-135deg);
    margin-top: -2px;
    border-color: var(--color-primary);
  }
}

/* ========================
   MOBILE (max-width: 767px)
   ======================== */
@media (max-width: 767px) {
  #header .header-bottom {
    height: 55px;
    padding: 0 20px;
  }

  #header .logo {
    height: 40px;
  }

  #header .logo a img {
    height: 100%;
    width: auto;
    max-width: 65px;
  }

  #header .m-menu-btn {
    top: 15px;
    right: 20px;
    width: 28px;
    height: 23px;
  }

  #header.scrolled .m-menu-btn.on {
    top: 15px;
  }

  #header .m-menu-btn span {
    height: 3px;
  }

  #header .m-menu-btn span:nth-child(1) {
    top: 10px;
    margin-top: auto;
  }

  #header .m-menu-btn.on span:nth-child(2) {
    height: 2px;
    transform: translateY(10.5px) rotate(-45deg);
  }

  #header .m-menu-btn.on span:nth-child(3) {
    height: 2px;
    transform: translateY(-10.5px) rotate(45deg);
  }

  #header .gnb > ul {
    top: 55px;
    height: calc(100% - 55px);
    padding-bottom: 120px;
  }

  #header .gnb ul a {
    padding-left: 20px;
  }

  #header .gnb > ul > li:has(.depth2) > a::after {
    right: 20px;
    width: 8px;
    height: 8px;
    margin-top: -8px;
  }

  #header .m-lang {
    padding: 10px 0 0 20px;
    height: 55px;
  }

  #header .m-lang .util_wrap ul li a {
    font-size: 14px;
    padding: 10px 16px;
  }

  #header .gnb > ul > li > a {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 15px;
  }

  #header .gnb > ul > li > .depth2 > li a {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 13px;
  }
}

/* ========================
   RESPONSIVE - INNER
   ======================== */
@media (max-width: 1400px) {
  .inner,
  .inner-lg {
    max-width: 100%;
    padding: 0 20px;
  }

  #header .header-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }

  #header .logo {
    left: 20px;
  }

  #header .header__util {
    right: 20px;
  }
}

@media (min-width: 1201px) and (max-width: 1400px) {
  #header .gnb > ul > li > a {
    padding: 0 30px;
    font-size: 16px;
  }
}

#wrap {
  position: relative;
}

.footer-wrap {
  width: 95%;
  background: #121212;
  margin: 0 auto;
  border-radius: 20px 20px 0 0;
  padding: 40px 0;
}
.footer-wrap .container {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-wrap .gnb-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  border-bottom: 1px solid rgba(247, 248, 250, 0.2509803922);
}
.footer-wrap .gnb-wrap ul {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-right: 40px;
}
.footer-wrap .gnb-wrap ul li a {
  font-size: 16px;
  font-weight: 500;  
}

.footer-wrap .gnb-wrap ul li a:hover {
  color: var(--color-primary-hover);
}
.footer-wrap .info-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
}
.footer-wrap .info-wrap .left-wrap p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.footer-wrap .info-wrap .right-wrap p, .footer-wrap .info-wrap .right-wrap a {
  font-size: 16px;
}
.footer-wrap .info-wrap .right-wrap .policy-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
  gap: 16px;
}
.footer-wrap .info-wrap .right-wrap .policy-wrap i {
  display: inline-block;
  width: 1px;
  background: #fff;
}
.policy-wrap a.privacy-policy {
  color: var(--color-primary);
}
.policy-wrap a:hover,
.policy-wrap a.privacy-policy:hover {
  color: var(--color-primary-hover);
}

@media (max-width: 1400px) {
  .footer-wrap {
    padding: 40px 60px;
  }
  .footer-wrap .gnb-wrap {
    padding: 20px 0;
  }
  .footer-wrap .gnb-wrap ul {
    gap: 40px;
  }
  .footer-wrap .info-wrap {
    padding: 20px 0;
  }
  .footer-wrap .info-wrap .left-wrap p {
    font-size: 18px;
  }
}

@media (max-width: 1040px) {
  .footer-wrap {
    width: 100%;
    padding: 20px;
  }
  .footer-wrap .gnb-wrap {
    padding-top: 0;
  }
  .footer-wrap .gnb-wrap ul {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .footer-wrap .gnb-wrap {
    justify-content: center;
  }
  .footer-wrap .gnb-wrap ul {
    display: none;
  }
  .footer-wrap .gnb-wrap img {
    width: 100px;
  }
  .footer-wrap .info-wrap {
    flex-direction: column;
  }
  .footer-wrap .info-wrap .left-wrap p {
    font-size: 14px;
    text-align: center;
  }
  .footer-wrap .info-wrap .right-wrap {
    margin-top: 20px;
  }
  .footer-wrap .info-wrap .right-wrap .policy-wrap {
    justify-content: center;
  }
  .footer-wrap .info-wrap .right-wrap p,
  .footer-wrap .info-wrap .right-wrap a {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .footer-wrap .gnb-wrap img {
    width: 80px;
  }
}

/* ========================
   TOP BUTTON
   ======================== */
.btn-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  border: none;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}

.btn-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.btn-top:hover {
  background: var(--color-primary-hover);
}

/* ========================
   FONT STYLE
   ======================== */
/* .fw_100 {font-weight: 100 !important;}
.fw_200 {font-weight: 200 !important;}
.fw_300 {font-weight: 300 !important;}
.fw_350 {font-weight: 350 !important;}
.fw_400 {font-weight: 400 !important;}
.fw_500 {font-weight: 500 !important;}
.fw_600 {font-weight: 600 !important;}
.fw_700 {font-weight: 700 !important;}
.fw_800 {font-weight: 800 !important;}
.fw_900 {font-weight: 900 !important;}

.fs_105 {font-size: 6.5625rem !important;}
.fs_100 {font-size: 6.25rem !important;}
.fs_90 {font-size: 5.625rem !important;}
.fs_80 {font-size: 5rem !important;}
.fs_75 {font-size: 4.6875rem !important;}
.fs_70 {font-size: 4.375rem !important;}
.fs_66 {font-size: 4.125rem !important;}
.fs_65 {font-size: 4.0625rem !important;}
.fs_60 {font-size: 3.75rem !important;}
.fs_55 {font-size: 3.4375rem !important;}
.fs_53 {font-size: 3.3125rem !important;}
.fs_50 {font-size: 3.125rem !important;}
.fs_48 {font-size: 3rem !important;}
.fs_45 {font-size:2.813rem !important;}
.fs_43 {font-size: 2.6875rem !important;}
.fs_40 {font-size: 2.5rem !important;}
.fs_38 {font-size: 2.375rem !important;}
.fs_36 {font-size: 2.25rem !important;}
.fs_35 {font-size: 2.1875rem !important;}
.fs_34 {font-size: 2.125rem !important;}
.fs_33 {font-size: 2.0625rem !important;}
.fs_32 {font-size: 2rem !important;}
.fs_30 {font-size: 1.875rem !important;}
.fs_28 {font-size: 1.75rem !important;}
.fs_26 {font-size: 1.625rem !important;}
.fs_25 {font-size: 1.5625rem !important;}
.fs_24 {font-size: 1.5rem !important;}
.fs_23 {font-size: 1.4375rem !important;}
.fs_22 {font-size: 1.375rem !important;}
.fs_20 {font-size: 1.25rem !important;}
.fs_19 {font-size: 1.1875rem !important;}
.fs_18 {font-size: 1.125rem !important;}
.fs_17 {font-size: 1.0625rem !important;}
.fs_16 {font-size: 1rem !important;}
.fs_15 {font-size: 0.9375rem !important;}
.fs_14 {font-size: 0.875rem !important;}
.fs_13 {font-size: 0.8125rem !important;}
.fs_0 {font-size: 0 !important;}

@media (max-width: 580px) {
	.fs_105 {font-size: 28px !important;}
	.fs_100 {font-size: 28px !important;}
	.fs_90 {font-size: 28px !important;}
	.fs_80 {font-size: 28px !important;}
	.fs_75 {font-size: 28px !important;}
	.fs_70 {font-size: 28px !important;}
	.fs_66 {font-size: 28px !important;}
	.fs_65 {font-size: 28px !important;}
	.fs_60 {font-size: 28px !important;}
	.fs_55 {font-size: 28px !important;}
	.fs_53 {font-size: 28px !important;}
	.fs_50 {font-size: 28px !important;}
	.fs_48 {font-size: 26px !important;}
	.fs_45 {font-size: 26px !important;}
	.fs_43 {font-size: 26px !important;}
	.fs_40 {font-size: 24px !important;}
	.fs_38 {font-size: 24px !important;}
	.fs_36 {font-size: 22px !important;}
	.fs_35 {font-size: 22px !important;}
	.fs_33 {font-size: 22px !important;}
	.fs_32 {font-size: 22px !important;}
	.fs_30 {font-size: 20px !important;}
	.fs_28 {font-size: 19px !important;}
	.fs_26 {font-size: 18px !important;}
	.fs_25 {font-size: 18px !important;}
	.fs_24 {font-size: 18px !important;}
	.fs_23 {font-size: 18px !important;}
	.fs_22 {font-size: 18px !important;}
	.fs_20 {font-size: 17px !important;}
	.fs_19 {font-size: 17px !important;}
	.fs_18 {font-size: 16px !important;}
	.fs_17 {font-size: 15px !important;}
	.fs_16 {font-size: 14px !important;}
	.fs_15 {font-size: 13px !important;}
	.fs_14 {font-size: 12px !important;}
	.fs_13 {font-size: 11px !important;}
}

.lh_2 {line-height: 2;}
.lh_1_9 {line-height: 1.9;}
.lh_1_8 {line-height: 1.8;}
.lh_1_7 {line-height: 1.7;}
.lh_1_6 {line-height: 1.6;}
.lh_1_5 {line-height: 1.5;}
.lh_1_4 {line-height: 1.4;}
.lh_1_3 {line-height: 1.3;}
.lh_1_2 {line-height: 1.2;}
.lh_1_1 {line-height: 1.1;}
.lh_1 {line-height: 1;} */