@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;
}

* {
    word-break: keep-all !important;
    box-sizing: border-box;
}
html{
    font-size: 100%;
}

body {
    font-family: "Pretendard", "Noto Emoji", "Segoe UI Emoji", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #E6E6E6;
}

/* 초기화 */
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;
}


/* 버튼 */
.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(--seconday);
    color: #fff;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

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

.btn-secondary:active {
    background: var(--seconday);
    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(--seconday);
    outline: 1px solid var(--seconday);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

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

.btn-secondary-outline:active {
    background: #fff;
    color: var(--seconday);
    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 */
.btn-ani {

  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: 0.3s ease-in-out;

  box-shadow: none !important;
  border-radius: 9999px;
  background-color: transparent;
}

.btn-ani:focus,
.btn-ani:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.btn-ani span {
  position: relative;
  z-index: 1;
  color: var(--btn-text);
  transition: 0.25s ease-in;
  transition-delay: 0.1s;
}

.btn-ani::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 500%;
  background: var(--btn-text);
  border-radius: 100%;
  transform: translate(30%, 10%) translateZ(0);
  transition: 0.36s cubic-bezier(0.4, 0.0, 1, 1);
  z-index: 0;
  pointer-events: none;
}

.btn-ani:hover::before {
  transform: translate(-45%, -34%) translateZ(0);
}

.btn-ani:hover {
  color: transparent;
  background: none;

}

.btn-ani:hover span {
  color: var(--btn-bg);
}

.ctt_admin{
    display: none;
}

/* About — visual CTA (sec5) */
.visual-text .visual-title {
    font-size: clamp(2rem, 1.25rem + 3.75vw, 4.5rem);
}

.visual-text .visual-logo {
    width: clamp(9rem, 28vw, 14rem);
    max-width: 100%;
}

.visual-text .visual-desc {
    font-size: clamp(1rem, 0.875rem + 0.625vw, 1.375rem);
}

@media (min-width: 1024px) {
    .visual-text .visual-title {
        font-size: clamp(2.75rem, 1.5rem + 4.5vw, 5.5rem);
    }

    .visual-text .visual-logo {
        width: clamp(11rem, 22vw, 16rem);
    }

    .visual-text .visual-desc {
        font-size: clamp(1.125rem, 0.9rem + 0.9vw, 1.625rem);
    }
}



#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;
}

/* icons */
.arrow-down {
    width: 1em;
    height: 1em;
    background-color: var(--arrow-color);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 511.787 511.787'%3E%3Cpath fill='%23000' d='M508.667,125.707c-4.16-4.16-10.88-4.16-15.04,0L255.76,363.573L18,125.707c-4.267-4.053-10.987-3.947-15.04,0.213 c-3.947,4.16-3.947,10.667,0,14.827L248.293,386.08c4.16,4.16,10.88,4.16,15.04,0l245.333-245.333 C512.827,136.693,512.827,129.867,508.667,125.707z'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image:  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 511.787 511.787'%3E%3Cpath fill='%23000' d='M508.667,125.707c-4.16-4.16-10.88-4.16-15.04,0L255.76,363.573L18,125.707c-4.267-4.053-10.987-3.947-15.04,0.213 c-3.947,4.16-3.947,10.667,0,14.827L248.293,386.08c4.16,4.16,10.88,4.16,15.04,0l245.333-245.333 C512.827,136.693,512.827,129.867,508.667,125.707z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.arrow-up {

    background-color: var(--arrow-color);
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill='%23000000' version='1.1' id='Layer_1' viewBox='0 0 511.735 511.735' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M508.788,371.087L263.455,125.753c-4.16-4.16-10.88-4.16-15.04,0L2.975,371.087c-4.053,4.267-3.947,10.987,0.213,15.04 c4.16,3.947,10.667,3.947,14.827,0l237.867-237.76l237.76,237.76c4.267,4.053,10.987,3.947,15.04-0.213 C512.734,381.753,512.734,375.247,508.788,371.087z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill='%23000000' version='1.1' id='Layer_1' viewBox='0 0 511.735 511.735' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M508.788,371.087L263.455,125.753c-4.16-4.16-10.88-4.16-15.04,0L2.975,371.087c-4.053,4.267-3.947,10.987,0.213,15.04 c4.16,3.947,10.667,3.947,14.827,0l237.867-237.76l237.76,237.76c4.267,4.053,10.987,3.947,15.04-0.213 C512.734,381.753,512.734,375.247,508.788,371.087z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

