@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200..900&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.6/dist/web/static/pretendard.css');
* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    letter-spacing: -0.05em;
}
.serif {
    font-family: 'Noto Serif KR', serif;
}
.pre {
    font-family: 'Pretendard', sans-serif;
}
body {
    position: relative;
    overflow-x: hidden;
    font-family: 'Pretendard', sans-serif;
    margin: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    word-break: keep-all;
    padding-top: 100px;
}
a {
    color: #202020;
    text-decoration: none;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0px;
}
li {
    list-style: none;
}
img {
    vertical-align: middle;
    max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
strong {
    margin: 0;
}
small {
    font-style: normal;
}
.center {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
.point_color {
    color: #b0cf00;
}
.sub_color {
    color: #0350a0;
}
/* header */
.header {
    width: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 102;
    background-color: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border-bottom: 1px solid #dedede;
}
.hd_wrap {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}
.hd_menu {
    display: flex;
    align-items: center;
}
.hd_menu > li > a {
    font-size: 18px;
    font-weight: 500;
    color: #202020;
    position: relative;
    transition: all 0.2s;
    padding: 0px 20px;
    line-height: 100px;
    display: inline-block;
}
.hd_menu > li > a::after {
    content: '';
    display: block;
    position: absolute;
    width: 0%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    height: 4px;
    background-color: #b0cf00;
    transition: all 0.2s;
}
.hd_menu a:hover {
    color: #b0cf00;
}
.hd_menu a:hover:after {
    width: 100%;
}

.sub_menu_wrap {
    position: fixed;
    top: -333px;
    left: 0px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    transition: all 0.5s;
    padding: 171px 240px 71px;
    background-color: #fff;
    opacity: 0;
    z-index: 101;
}
.sub_menu_wrap.active {
    opacity: 1;
    top: 0;
}
.hd_menu > li {
    position: relative;
    padding-left: 10px;
}
.depth2 {
        position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    transition: all 0.5s;
    padding-top: 24px;
      /* 효과를 위해 추가/수정된 부분 */
    opacity: 0; /* 초기 투명 상태 */
    top: 60px; /* 초기 위치를 살짝 아래로 */
    pointer-events: none; /* 비활성화 상태에서는 클릭 방지 */
}
.depth2 > li {
    text-align: center;
}
.depth2 a {
    line-height: 38px;
    color: #202020;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    transition: all 0.2s;
    padding-bottom: 15px;
}
.depth2.active {
    top: 100px;
    opacity: 1;
  pointer-events: auto; /* 클릭 가능하게 만듦 */
}
