@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.6/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200..900&display=swap');
* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    letter-spacing: -0.05em;
}
.pre {
    font-family: 'Pretendard', sans-serif;
}
.serif {
    font-family: 'Noto Serif KR', 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: 80px;
}
a {
    color: #222;
    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: 1440px;
    width: 100%;
    margin: 0 auto;
}
:root {
    --main-color: #2b3e65;
    --black-color: #222;
    --white-color: #fff;
}
.main_color {
    color: var(--main-color);
}
/* header */
.header {
    width: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 102;
    background-color: var(--white-color);
    transition: all 0.2s;
    padding: 0px 64px;
}
.header.headroom--not-top {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.hd_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.hd_con {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.hd_con p {
    font-size: 22px;
    font-weight: 400;
    color: #222;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: max-content;
}
.hd_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 40px;
    background-color: #2b3e65;
    color: #fff;
    border-radius: 99px;
    font-size: 18px;
    font-weight: 500;
    padding: 0px 30px;
    width: 144px;
    cursor: pointer;
    transition: all 0.2s;
}
.hd_btn:hover {
    background-color: #b8a48c;
}
.menu_close {
    position: absolute;
    right: 64px;
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 40px;
    background-color: #2b3e65;
    color: #fff;
    border-radius: 99px;
    font-size: 18px;
    font-weight: 500;
    padding: 0px 30px;
    width: 144px;
    cursor: pointer;
    transition: all 0.2s;
}
.menu_close:hover {
    background-color: #b8a48c;
}
.hd_menu {
    position: absolute;
    right: -800px;
    top: 0px;
    height: 100vh;
    background-color: #b8a48c;
    padding: 80px 64px 0px;
    transition: opacity 0.5s;
    opacity: 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
}
.hd_menu.active {
    right: 0px;
    opacity: 1;
}
.hd_menu_con {
    background-color: #fff;
    border-radius: 50px;
    padding: 0px 44px 78px;
    color: #222;
    width: 473px;
}
.hd_menu_con h2 {
    font-size: 24px;
    font-weight: 400;
    padding-top: 52px;
    padding-bottom: 21px;
    padding-left: 14px;
    border-bottom: 1px solid #707070;
}
.hd_menu_con h2:first-child {
    padding-top: 46px;
}
.hd_menu_list {
    margin-top: 26px;
    padding-left: 14px;
}
.hd_menu_list a {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 18px;
    display: block;
}
.hd_menu_list a:hover {
    color: #b8a48c;
    font-weight: 700;
}
.hd_menu_list li:last-child > a {
    margin: 0;
}
.hd_link_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
