@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=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,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;
}

body {
    font-family: "Pretendard", "Noto Emoji", "Segoe UI Emoji", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;

}

.en {
    font-family: "Open Sans", sans-serif !important;
}


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;
}

html,
body {
    overscroll-behavior-y: none;
}

@media (min-width:1024px) {

    html,
    body {
        overscroll-behavior-y: initial;
    }
}

/*head.sub.php로 셋팅하는 값 = full-h, full-w*/
:root {
    --primary: #011661;
    --seconday: #231F20;
    --ca-color: #333;
    --blue: #011661;
    --full-h: calc(var(--vh, 1vh) * 100);
    --full-w: calc(var(--vw, 1vw) * 100);
    --header-h: 60px;
    --lnb-h: 48px;
    --nav-w: 8.8vw;
}

.overlay {
    position: relative;
}

.overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

#header.active {
    background-color: #fff !important;
    color: #000 !important;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

#header #logo {
    background-image: url("../img/w_logo.png");
}

#header.active #logo {
    background-image: url("../img/logo.png");
}

#header .nav_link:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--blue);
    transition: all 0.5s ease;
}

#header .nav_link:hover:after {
    width: 50%;
}

/* 아이콘 있는 경우 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.5s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;

}

.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 {
    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);
}





.sit_icon {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
}

.editor-content img {
    display: initial;
}

#sev_himg * {
    font-family: "Pretendard", "Noto Emoji", "Segoe UI Emoji", sans-serif !important;
}

.sev_admin {
    display: none;
}



/* 구글 번역 부분 커스텀 css - 번역기능 있을 경우만 사용 */

body {
    position: static !important;
    top: 0px !important;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    display: none !important;
}

body>.skiptranslate,
.goog-logo-link,
.gskiptranslate,
.goog-te-gadget span,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
div#goog-gt- {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0px;
    width: 100px;

}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

#google_translate_element select {
    background: transparent;
    color: #000;
    border: none;
    font-weight: bold;
    border-radius: 0px;
    padding: 8px 12px
}

.notranslate {
    translate: no !important;
}



.about-img.active .about-img__cover {
    width: 101%;
    opacity: 1;
    animation: about-img-reveal 2s ease forwards;
    z-index: 20;
    animation-fill-mode: forwards;
}

@keyframes about-img-reveal {
    0% {
        width: 101%;
        opacity: 1;
    }

    99% {
        width: 0%;
        opacity: 1;
    }

    100% {
        width: 0%;
        opacity: 0;
    }
}

.dot {
    z-index: 10;
}

.dot:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background-color: #011661;
    border-radius: 50%;
    opacity: 0.1;
}

.sub li {
    overflow: hidden;
}

.sub li a {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease-in-out;
}


.nav_link.group:hover .sub li a {
    opacity: 1;
    transform: translateY(0);
}

.sub-group ul {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease-in-out;
}

.nav_link.group:hover .sub-group ul {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slide-up1 {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }

    30% {
        transform: translateY(40px);
        opacity: 1;
    }
}

@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(.5, 0, .5, 1) both;
    animation-delay: calc(100ms * var(--char-index));

}


#item_intro .item_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    object-fit: cover;
}


#main .main-text .char {
    display: inline-block;
}

.btn-three {
    color: #000;
    transition: all 0.5s;
    position: relative;
}

.btn-three::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(1, 22, 97, 0.1);
    transition: all 0.3s;
}

.btn-three:hover::before {
    opacity: 0;
    transform: scale(0.5, 0.5);
}

.btn-three::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
    border: 1px solid rgba(1, 22, 97, 0.6);
    transform: scale(1.2, 1.2);
}

.btn-three:hover::after {
    opacity: 1;
    transform: scale(1, 1);
}

.btn-three:hover {
    color: var(--primary);
}


.hero {
    position: relative;
    height: var(--full-h);
    overflow: hidden;
}




.mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); */
}

/* History list - 줄바꿈 시 두 번째 줄이 첫 번째 줄 텍스트 시작 부분과 정렬 */
.history-list li {
    text-indent: -1.25rem;
    padding-left: 1.25rem;
}

@media (min-width: 1024px) {
    .history-list li {
        text-indent: -1.5rem;
        padding-left: 1.5rem;
    }
}