@charset "utf-8";

/* #################################### Font #################################### */

/* Pretendard - KR */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css');

/* Noto serif -  KR */
@import url('https://cdn.rawgit.com/kattergil/NotoSerifKR-Web/76eb9ebf/stylesheet/NotoSerif-Web.css');

/* #################################### HTML Basic Set #################################### */

*,
body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: var(--font-KR-base);
    color: var(--base-color-black);
    scroll-behavior: smooth;
}

body {
    -ms-overflow-style: none;
}

::-webkit-scrollbar {
    display: none;
}

*,
:before,
:after {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html {
    overflow-y: scroll;
}

html,
body {
    margin: 0 auto;
    width: 100vw;
    height: auto;
    min-height: 100vh;
    color: var(--font-color-base);
    font-family: var(--font-KR-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-base);
    background: var(--background-color-base);
    /* color: var(--base-color-white); */
    /* border: 1px solid red; */
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: var(--font-KR-base);
    background: var(--background-color-base);
    /* color: var(--base-color-white); */
}

.point_text {
    font-family: 'Noto Serif KR', serif;
}

html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
    margin: 0;
    padding: 0;
    border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
a {
    display: block;
}

ul,
ol,
li,
dt,
dd,
dl {
    list-style: none;
}

a,
a:link,
a:visited,
a:hover,
a:active {
    /* color: var(--base-color-white); */
    text-decoration: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none;
}

select::-ms-expand {
    display: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* 화살표 모양의 이미지 삽입가능 */
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type='number'] {
    -moz-appearance: textfield;
}

textarea {
    resize: none;
}

/* #################################### Contents fixed #################################### */
.fixed-init {
    position: fixed;
    height: 100svh;
    overflow: hidden;
}

/* #################################### Text Word Align #################################### */
h1,
h2,
h3,
h4,
h5,
h6,
p,
input,
textarea {
    word-break: keep-all;
}

/* ####################################네비게이션 스타일 ######################################### */
#hd {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999;
    background-color: var(--base-color-white);
}

#hd_wrapper {
    height: 90px;
    display: flex;
    justify-content: space-between;
}

/* 번역 토글 버튼 */
.lang-dropdown {
    display: none;
}

.navigation-wrap {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

#logo {
    width: 10%;
    height: 90px;
    display: flex;
    align-items: center;
}
#logo > a {
    width: 100%;
}
#logo > a > img{
    width: 35%;
}

/* * 번역버튼 * */
.lang-selector {
    width: 10%;
}

.lang-current {
    width: 100%;
    cursor: pointer;
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 15px);
}

.lang-dropdown {
    background-color: #fff;
    color: var(--base-color-black);
}

.lang-btns {
    display: flex;
    flex-direction: column;
    background-color: var(--base-color-white);
}

.lang-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    background-color: var(--base-color-white);
    display: none;
    /* border-radius: 10px; */
}

/* ==========================
   번역 버튼 (언어 드롭다운)
   ========================== */

/* 번역 버튼 전체 박스 */
.lang-selector {
    width: 140px;
    position: relative;
    margin-left: 20px;
    z-index: 2001;
    display: flex;
    height: 90px;
    text-align: center;
}

/* 상단에 보이는 현재 언어 버튼 */
.lang-current {
    padding: 0 12px;
    /* border: 1px solid #e0e2e5; */
    background: #fff;
    cursor: pointer;
    font-size: var(--sub-font-size);
    line-height: 1;
}

/* 드롭다운 박스 */
.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border-top: none;
    background: #fff;
    display: none;
    flex-direction: column;
    z-index: 2002;
}

/* 각 언어 버튼 */
.lang-dropdown button {
    padding: 6px 10px;
    border: none;
    background: #f1f1f1;
    text-align: left;
    font-size: 13px;
    cursor: pointer;
    color: #000;
    padding: 20px 0;
    text-align: center;
    font-size: var(--sub-font-size);
}

.lang-dropdown button:hover {
    background: var(--signature-color);
    color: var(--base-color-white);
}

/* .ham_wrap{
    width: 100vw; height: 100vh; border: 1px solid #8c41aa;
    position: absolute; top: 0; z-index: 1000000;
}
.ham_con{
    background-color: aqua;
    width: 100%; height: 100%;
    padding: 100px;

}
.ham_close_btn{
    text-align: right;
    font-size: var(--title-font-size);
    font-weight: 800;
} */

/* 햄버거 아이콘 */
.ham-icon {
    cursor: pointer;
    display: none;
}

.ham-icon > img {
    color: var(--signature-color);
}

/* 햄버거 메뉴 */

  

/* 스크롤 유도 버튼 */
.scroll_btn {
    display: none;
    position: absolute;
    right: clamp(50px, 6.8750vw, 60px);
    bottom: clamp(130px, 17vw, 150px)
}
.btn-motion6 span {position: absolute; top: 0;left: 50%;width: 24px;height: 24px;margin-left: -12px;border-left: 1px solid #ffffff;border-bottom: 1px solid #ffffff; transform: rotate(-45deg); animation: btn-motion6 2s infinite;opacity: 0;box-sizing: border-box;}
.btn-motion6 span:nth-of-type(1) {animation-delay: 0s;}
.btn-motion6 span:nth-of-type(2) {top: 16px;animation-delay: .15s;}
.btn-motion6 span:nth-of-type(3) {top: 32px; animation-delay: .3s;}

@keyframes btn-motion6 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.ham_wrap {
    display: none;
    background: rgba(0, 0, 0, 1);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ham_wrap.show {
    opacity: 1;
}

.ham_con {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: auto;
}

.ham_left {
    width: 20%;
    height: 100%;
}

.ham_left > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    color: #fff;
}

.ham_right {
    width: 80%;
    margin-left: 60px;
}

.ham_title {
    display: flex;
    align-items: center;
    margin-bottom: clamp(24px, 2.6042vw, 80px);
}

.ham_title img {
    width: 90px;
}

.ham_line {
    width: 160px;
    margin: 0 40px;
    border-top: 1px solid var(--base-color-white);
}

.ham_title p {
    font-size: 18px;
}

.gnb_al_li_pop {
    display: flex;
    margin: clamp(40px, 8vw, 80px) clamp(20px, 6vw, 60px);
}

.gnb_al_li_pop > a {
    width: 30%;
    font-size: 22px;
    color: var(--signature-color-yellow) !important;
    font-weight: 500;
}

.gnb_al_li_pop ul {
    width: 70%;
    display: flex;
}

.gnb_al_li_pop ul li {
    width: 30%;
    padding: 0 30px;
}

.hover_logo {
    width: 33px;
    margin-right: 5px;
    opacity: 0;
    transition: 0.7s;
}

.gnb_al_li {
    margin-bottom: clamp(20px, 5vw, 30px);
}

.gnb_al_li > a {
    color: var(--signature-color);
    font-size: var(--sub-font-size-m);
    margin-bottom: 30px;
    font-weight: 600;
}

.gnb_al_li > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.gnb_al_li > ul > li {
}

.gnb_al_li > ul > li > a {
    color: #fff;
    font-size: var(--sub-font-size);
    padding: 10px 20px;
    border-bottom: 2px solid transparent;
    transition: 0.45s;
}

.gnb_al_li > ul > li > a:hover {
    border-bottom: 2px solid var(--signature-color);
}

.ham_close_btn {
    font-size: 25px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #ffffff;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.45s;
}

.ham_close_btn:hover {
    font-size: 25px;
    border: 1px solid var(--signature-color);
    background-color: var(--signature-color);
}

/* 2뎁스 */
.deps_2 > a {
    font-size: 20px;
}

.gnb_al_li_pop:hover .hover_logo {
    opacity: 1;
}

.ham_close_btn {
    position: absolute;
    right: 60px;
    top: 7%;
}

@media screen and (max-width: 1000px) {
    #gnb {
        display: none;
    }


    .ham-icon {
        display: block;
    }
#logo > a > img{
    width: 76%;
}
}

@media screen and (max-width: 800px) {
    .ham_left {
        display: none;
    }

    .gnb_al_li {
        margin-bottom: 20px;
    }

    .gnb_al_li > ul {
        gap: 0;
    }

    .gnb_al_li > a {
        margin-bottom: 10px;
    }

    .ham_title {
        flex-direction: column;
        align-items: flex-start;
    }

    .ham_title > img {
        margin-bottom: 10px;
    }

    .ham_line {
        display: none;
    }
    #logo > a > img{
    width: 88%;
}
}
@media screen and (max-width: 400px) {

    #logo > a > img{
    width: 130%;
}
}

/* #################################### Common Style #################################### */

/* -------------------- section ------------------ */
.section {
    width: 100%;
}

.br {
    display: block;
}

/* -------------------- max width ------------------ */
.max_width {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--all-sec-padding);
}

/* -------------------- section_margin ------------------ */

.section_margin {
    margin: var(--all-sec-margin);
}

.section_padding_mo {
    padding: var(--all-sec-padding_mo);
}

/* -------------------- text effect ------------------ */

.ko_font {
    font-family: var(--font-KR-base);
}

.color_white {
    color: var(--base-color-white);
}

.color_point {
    color: var(--signature-color);
}

.color_black {
    color: var(--base-color-black);
}

.br {
    display: block;
}

.mobile-nav {
    display: none;
}

/* 전체메뉴 기본 숨김 */
#gnb_all,
#gnb_all_bg {
    display: none;
}

/* 열렸을 때 */
#gnb_all.open,
#gnb_all_bg.open {
    display: block;
}

/* PC에서도 전체메뉴 동일 동작 */
#gnb_all {
    position: fixed;
    inset: 0;
    background: #000;
    color: #fff;
    padding: 40px 30px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 9999;
    overflow-y: auto;
}

#gnb_all.open {
    transform: translateX(0);
}

#gnb_all_bg {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 9998;
}

#gnb_all_bg.open {
    opacity: 1;
    pointer-events: auto;
}

/* ############################### 미디어쿼리 - 800px ################################### */
@media screen and (max-width: 800px) {
    #gnb {
        display: none;
    }

    .scroll_btn {
    display: block;
}

    /* 풀스크린 모바일 메뉴 */
    #gnb.gnb-full {
        position: fixed;
        inset: 0;
        background: #000;
        color: #fff;
        z-index: 9999;
        padding: 40px 24px;
        display: none;
        /* js에서 show()로 보이게 */
        overflow-y: auto;
    }

    /* X 버튼 */
    .gnb-full-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: 0;
        color: #fff;
        font-size: 26px;
    }

    /* 상단 로고 + 슬로건 */
    .gnb-full-top {
        margin-top: 10px;
        margin-bottom: 40px;
    }

    .gnb-full-logo img {
        max-width: 140px;
    }

    /* 메뉴 텍스트 스타일 */
    .gnb-full-menu > .gnb_1dli {
        margin-bottom: 28px;
    }

    .gnb-full-menu > .gnb_1dli > .gnb_1da {
        display: block;
        font-size: 17px;
        font-weight: 700;
        color: #f4ab62;
        /* 노란색 */
        margin-bottom: 8px;
    }

    .gnb-full-menu .gnb_2dli {
        margin-bottom: 8px;
    }

    .gnb-full-menu .gnb_2dli .gnb_2da {
        font-size: 15px;
        color: #fff;
    }

    /* 메뉴 버튼 이미지 */
    #gnb_open img {
        width: 28px;
        height: auto;
        display: block;
    }

    /* 햄버거 메뉴 */

    .ham_close_btn {
        top: clamp(15px, 8.7vw, 80px);
        right: clamp(15px, 8.7vw, 80px);
    }

    .ham_title {
        position: absolute;
        top: clamp(15px, 8.7vw, 80px);
        left: clamp(15px, 8.7vw, 80px);
    }

    .ham_gnb_wrap {
    position: absolute;
    top: clamp(170px, 28vw, 240px);
    left: clamp(15px, 8.7vw, 80px);
    right: clamp(15px, 8.7vw, 80px);
    bottom: clamp(15px, 8.7vw, 80px);
    overflow: auto;
    }

    .ham_right {
        width: 100%;
        margin-left: 0;
        padding: 30px 15px;
    }

    .gnb_al_li > ul {
        flex-direction: column;
    }

    .gnb_al_li > a {
        margin-bottom: 30px;
        font-size: 18px;
    }

    .gnb_al_li > ul > li {
        margin-bottom: 15px;
    }

    .gnb_al_li > ul > li > a {
        padding: 0;
    }
}
