@charset "utf-8";
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap'); */
/* NotoSans 쓸 경우 주석 풀고, body 적용 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-ExtraLight.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-SemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-ExtraBold.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
}
/*head.sub.php로 셋팅하는 값 = full-h, full-w*/
:root {
  --primary: #3829cc;
  --secondary: #666;
  --ca-color: #333;
--dark: #000;
  --full-h: calc(var(--vh, 1vh) * 100);
  --full-w: calc(var(--vw, 1vw) * 100);

  --header-h: 8rem;
  --lnb-h: 4.8rem;

  --screen-w: 1920;
  --fs-base: 62.5%;

  /* font size */
  --fs-h1-min: 4.4rem;
  --fs-h2-min: 3.2rem;
  --fs-h3-min: 2.8rem;
  --fs-h4-min: 2.4rem;
  --fs-h5-min: 1.8rem;
  --fs-h6-min: 1.6rem;
  --fs-large-min: 1.6rem;
  --fs-small-min: 1.3rem;

  --fs-h1-max: 12rem;
  --fs-h2-max: 6.4rem;
  --fs-h3-max: 4.8rem;
  --fs-h4-max: 4rem;
  --fs-h5-max: 2.4rem;
  --fs-h6-max: 2rem;
  --fs-large-max: 1.8rem;
  --fs-small-max: 1.4rem;

  /* section padding */
  --pad-section-min: 8rem;
  --pad-section-sm-min: 6.4rem;
  --pad-section-xs-min: 4.8rem;

  --pad-section-max: 20rem;
  --pad-section-sm-max: 12rem;
  --pad-section-xs-max: 8rem;

  --pad-section: clamp(
    var(--pad-section-min),
    calc(160 / var(--screen-w) * 100vw),
    var(--pad-section-max)
  );

  --pad-section-sm: clamp(
    var(--pad-section-sm-min),
    calc(120 / var(--screen-w) * 100vw),
    var(--pad-section-sm-max)
  );

  --pad-section-xs: clamp(
    var(--pad-section-xs-min),
    calc(80 / var(--screen-w) * 100vw),
    var(--pad-section-xs-max)
  );

  /* space */
  /* min은 모바일 floor (max 대비 약 60~88%), max는 1920 기준 px */
  --space-10: clamp(0.6rem, calc(10 / var(--screen-w) * 100vw), 1rem);
  --space-12: clamp(0.8rem, calc(12 / var(--screen-w) * 100vw), 1.2rem);
  --space-14: clamp(1rem, calc(14 / var(--screen-w) * 100vw), 1.4rem);
  --space-16: clamp(1.4rem, calc(16 / var(--screen-w) * 100vw), 1.6rem);
  --space-18: clamp(1.4rem, calc(18 / var(--screen-w) * 100vw), 1.8rem);
  --space-20: clamp(1.6rem, calc(20 / var(--screen-w) * 100vw), 2rem);
  --space-24: clamp(1.8rem, calc(24 / var(--screen-w) * 100vw), 2.4rem);
  --space-28: clamp(2rem, calc(28 / var(--screen-w) * 100vw), 2.8rem);
  --space-32: clamp(2.2rem, calc(32 / var(--screen-w) * 100vw), 3.2rem);
  --space-36: clamp(2.4rem, calc(36 / var(--screen-w) * 100vw), 3.6rem);
  --space-40: clamp(2.6rem, calc(40 / var(--screen-w) * 100vw), 4rem);
  --space-48: clamp(3rem, calc(48 / var(--screen-w) * 100vw), 4.8rem);
  --space-56: clamp(3.4rem, calc(56 / var(--screen-w) * 100vw), 5.6rem);
  --space-64: clamp(4rem, calc(64 / var(--screen-w) * 100vw), 6.4rem);
}

* {
    word-break: keep-all !important;
    box-sizing: border-box;
}

html{
        font-size: var(--fs-base);
            text-rendering: optimizelegibility;
}
body {
    font-family: "Pretendard", "Noto Emoji", "Segoe UI Emoji", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.25;
      font-size: clamp(1.4rem, 0.2588996764vw + 1.3029126214rem, 1.6rem);
  
}

/* 초기화 */
body.lock {
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    overflow: hidden;
}

html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
    margin: 0;
    padding: 0;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1em;
    font-family: inherit !important;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ul,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
    list-style: none;
}

legend {
    position: absolute;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    text-indent: -9999em;
    overflow: hidden;
}

label,
input,
button,
select,
img {
    vertical-align: middle;
    font-size: 1em;
}

input,
button {
    margin: 0;
    padding: 0;
    font-family: inherit !important;
}

input[type="submit"] {
    cursor: pointer;
}

button {
    cursor: pointer;
}

textarea,
select {
    font-family: inherit !important;
}

select {
    margin: 0;
}

p {
    margin: 0;
    padding: 0;
    word-break: break-all;
}

pre {
    overflow-x: scroll;
    font-size: 1.1em;
}

a {
    color: inherit;
    text-decoration: none;
}


.en {
    font-family: "Montserrat", sans-serif;
}
/* =========================
   Typography
========================= */

.heading-1 {
  font-size: clamp(4.4rem, 4.918vw + 2.556rem, 12rem);
}

.heading-2 {
  font-size: clamp(3.2rem, 2.071vw + 2.423rem, 6.4rem);
}

.heading-3 {
  font-size: clamp(2.8rem, 1.294vw + 2.315rem, 4.8rem);
}

.heading-4 {
  font-size: clamp(2.4rem, 1.035vw + 2.012rem, 4rem);
}

.heading-5 {
  font-size: clamp(1.8rem, 0.388vw + 1.654rem, 2.4rem);
}

.heading-6 {
  font-size: clamp(1.6rem, 0.259vw + 1.503rem, 2rem);
}

.large {
  font-size: clamp(1.4rem, 0.259vw + 1.303rem, 1.8rem);
}
.base{
    font-size: clamp(1.3rem, 0.194vw + 1.227rem, 1.6rem);
}
.small {
  font-size: clamp(1.2rem, 0.065vw + 1.276rem, 1.4rem);
}

.space-section    { padding-block: var(--pad-section); }
.space-section-sm { padding-block: var(--pad-section-sm); }
.space-section-xs { padding-block: var(--pad-section-xs); }

/* container 커스텀 */
.container {
    max-width: 100% !important;
     margin: 0 auto;
    padding: 0 max(2.9167vw, 3.2rem) ;
}

@media screen and (max-width: 767px) {
    .container {
        padding: 0 min(5.1282vw, 3.6rem);
    }
}


/* 서브 비주얼 */
#visual.sub-visual .visual-img-inner {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center;
    transform: scale(1.1);
    transform-origin: center center;
    transition: transform 5s linear;
    will-change: transform;
}

#visual.sub-visual.active .visual-img-inner {
    transform: scale(1) rotate(0.002deg);
}

/* 인터렉션 디폴트  */
.scroll-reveal {
    clip-path: inset(0% 100% 100% 0%);
    -webkit-clip-path: inset(0% 100% 100% 0%);
    will-change: clip-path;
}

.scroll-reveal img,
.scroll-reveal video {
    color: transparent;
    object-fit: cover;
    width: 100%;
    height: 100%;
}


@keyframes slide-up2 {
    0% {
        transform: translateX(40px);
        opacity: 0;
    }

    30% {
        transform: translateX(40px);
        opacity: 1;
    }
}

#banner-title .char {
    display: inline-block;
    animation: slide-up2 1.2s cubic-bezier(0.5, 0, 0.5, 1) both;
    animation-delay: calc(100ms * var(--char-index));
}





/* 아이콘 있는 경우 header.active * {color: #000 !important;} 해주시면 됩니다. */

/* 애니메이션 관련 */

/* 버튼 */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #fff;
    color: var(--primary);
    outline: 1px solid var(--primary);
    box-shadow: 0 2px 8px rgba(96, 165, 250, 0.15);
}

.btn-primary:active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 1px 4px rgba(96, 165, 250, 0.1);
}

.btn-secondary {
    background-color: var(--secondary);
    color: #fff;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #fff;
    color: var(--secondary);
    outline: 1px solid var(--secondary);
    box-shadow: 0 2px 8px rgba(156, 163, 175, 0.15);
}

.btn-secondary:active {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 1px 4px rgba(156, 163, 175, 0.1);
}

.btn-primary-outline {
    background-color: transparent;
    color: var(--primary);
    outline: 1px solid var(--primary);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(96, 165, 250, 0.15);
    outline: none;
}

.btn-primary-outline:active {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 1px 4px rgba(96, 165, 250, 0.1);
}

.btn-secondary-outline {
    background-color: transparent;
    color: var(--secondary);
    outline: 1px solid var(--secondary);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(156, 163, 175, 0.15);
    outline: none;
}

.btn-secondary-outline:active {
    background: #fff;
    color: var(--secondary);
    box-shadow: 0 1px 4px rgba(156, 163, 175, 0.1);
}

.button:disabled,
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-primary-outline:disabled,
.btn-secondary-outline:disabled,
.btn-animation:disabled {
    background: #e5e7eb !important;
    /* Tailwind gray-200 */
    color: #b0b0b0 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    opacity: 0.6;
    pointer-events: none;
    filter: grayscale(0.2);
}

.btn-collision {
    --btn-width: 120px;
    --btn-height: 42px;
    --btn-circle-size: 20px;
    --btn-circle-expand: 1.5;
    --btn-transition-duration: 0.5s;
    --btn-animation-duration: 0.8s;
    border-radius: 9999px;
    position: relative;
    color: var(--btn-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: var(--btn-height);
    max-width: var(--btn-width);
    border: 1px solid var(--btn-circle);
    transition: all var(--btn-transition-duration) ease-in-out;
    z-index: 1;

}


.btn-collision span {
    position: relative;
    z-index: 1;
}

.btn-collision:before,
.btn-collision:after {
    content: '';
    position: absolute;
    top: 50%;
    width: var(--btn-circle-size);
    height: var(--btn-circle-size);
    background-color: var(--btn-circle);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.btn-collision:before {
    left: calc(var(--btn-circle-size) * -1);
}

.btn-collision:after {
    right: calc(var(--btn-circle-size) * -1);
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
        width: 20px;
        height: 20px;
    }

    50% {
        left: 50%;
        width: 20px;
        height: 20px;
        transform: translate(-50%, -50%);
    }

    100% {
        left: 50%;
        width: calc(var(--btn-width) * 1.5);
        height: calc(var(--btn-width) * 1.5);
        transform: translate(-50%, -50%);
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
        width: 20px;
        height: 20px;
    }

    50% {
        right: 50%;
        width: 20px;
        height: 20px;
        transform: translate(50%, -50%);
    }

    100% {
        right: 50%;
        width: calc(var(--btn-width) * 1.5);
        height: calc(var(--btn-width) * 1.5);
        transform: translate(50%, -50%);
    }
}

.btn-collision:hover {
    color: var(--btn-color);
}

.btn-collision:hover:before {
    animation: criss-cross-left var(--btn-animation-duration) both;
    animation-direction: alternate;
}

.btn-collision:hover:after {
    animation: criss-cross-right var(--btn-animation-duration) both;
    animation-direction: alternate;
}

.button-reveal {
    --btn-width: 120px;
    --btn-height: 42px;
    --btn-color: #fff;
    --text-color: #000;
    --btn-gradient-angle: 30deg;
    --btn-gradient-size: 500px;
    --btn-transition-duration: 0.5s;
    border-radius: 9999px;
    width: var(--btn-width);
    height: var(--btn-height);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    border: 1px solid var(--btn-color);
    background-image: -webkit-linear-gradient(var(--btn-gradient-angle), var(--btn-color) 50%, transparent 50%);
    background-image: linear-gradient(var(--btn-gradient-angle), var(--btn-color) 50%, transparent 50%);
    background-size: var(--btn-gradient-size);
    background-repeat: no-repeat;
    background-position: 0%;
    transition: background var(--btn-transition-duration) ease-in-out;
}

.button-reveal:hover {
    background-position: 100%;
    color: var(--btn-color);
}

@media (max-width: 991px) {
    .btn-collision {
        --btn-width: 180px !important;
        --btn-height: 32px !important;
        font-size: 14px !important;
    }

    .button-reveal {
        --btn-width: auto !important;
        --btn-height: 32px !important;
        font-size: 14px !important;
    }
}
/* custom */


[data-aos="blur"] {
    opacity: 0;
    filter: blur(16px);
    transform: translateY(18px);
    transition-property: opacity, filter, transform;
}

[data-aos="blur"].aos-animate {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.ctt_admin{
    display: none;
}



#captcha #captcha_key {
    width: auto !important;
    min-width: 90px !important;
    height: 32px !important;
    border-radius: 12px !important;
}

#captcha {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 4px !important;
    flex-wrap: wrap !important;
}

#captcha #captcha_info {
    width: 100% !important;
    font-size: 12px !important;
    color: #666 !important;
}

#captcha #captcha_mp3,
#captcha #captcha_reload {
    margin: 0;
    padding: 0;
    width: 32px !important;
    height: 32px !important;
    border: 0;
    background: transparent;
    vertical-align: middle;
    overflow: hidden;
    cursor: pointer;
    background: url(../img/captcha2.png) no-repeat;
    text-indent: -999px;
    border-radius: 3px;
}

#captcha #captcha_mp3 {
    background: url(../img/icons/captcha.png) no-repeat !important;
}

#captcha #captcha_reload {
    background: url(../img/icons/captcha.png) no-repeat 0 -32px !important;
}

.chk_box input[type="checkbox"]+label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chk_box input[type="checkbox"]+label span {

    width: 18px;
    height: 18px;
    display: block;
    background: #fff;
    border: 1px solid #d0d4df;
    border-radius: 3px
}

.chk_box input[type="checkbox"]:checked+label {
    color: #000
}

.chk_box input[type="checkbox"]:checked+label span {
    background: url(../img/icons/checked.png) no-repeat center;
    border-radius: 3px;
    border: none;
}


.scroll-line {
  position: fixed;
  left: 50%;
  bottom: var(--space-24);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  flex-direction: column;
  z-index: 2;
  justify-content: center;
  transition: opacity 0.3s;
  opacity: .8;
}
 .scroll-line.scroll {
  opacity: 0;
}
 .scroll-line p {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
 .scroll-line .line {
  position: relative;
  width: 0.12rem;
  height: 8rem;
  background-color: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  z-index: 2;
}
.scroll-line .line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0.12rem;
  height: 3rem;
  background-color: #fff;
  animation: scrolldown 2s infinite;
}
@keyframes scrolldown {
  0% {
    top: -20%;
  }
  100% {
    top: 120%;
  }
}

/* =========================
   Contact (오시는 길)
========================= */
.contact-info-card {
  transition: background-color .3s ease, transform .3s ease;
}
.contact-info-card:hover {
  background-color: #eef0f6;
  transform: translateY(-4px);
}
.contact-info-icon {
  width: var(--space-56);
  height: var(--space-56);
}

/* GSAP 보더 라인 (0% → 100% 펼침) */
.gsap-border-host { position: relative; }
.gsap-border-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  transform-origin: left center;
  pointer-events: none;
}

html, body {
    overscroll-behavior-y: none;
}
@media (min-width: 1024px) {
    html, body {
        overscroll-behavior-y: initial ;
    }
}
