@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;
}
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;
    color: #333;
    cursor: default;
    min-width: 1905px;
}
.pre {
    font-family: 'Pretendard', sans-serif;
}
a {
    color: #333;
    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 {
    --mint: #81c5ce;
    --white: #fff;
    --sub-gray: #f0f0f0;
    --gray: #d9d9d9;
    --black: #000;
    --dark: #333;
    --text: #3b9da8;
}
.main_container {
    overflow: hidden;
}
/* font-system */
.main01 {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -1px;
}
.main02 {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -1px;
}
.main02b {
    font-size: 30px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -1px;
}
.sub700 {
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -1px;
}
.sub400 {
    font-size: 24px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: -1px;
}
.point {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
}
.mint {
    color: var(--mint);
}
.text {
    color: var(--text);
}

/* header */
.header {
    width: 100%;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    z-index: 102;
    transition: all 0.2s;
    background-color: #fff;
}
.header.headroom--not-top {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.hd_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 150px;
    height: 88px;
}
.hd_menu {
    display: flex;
    align-items: center;
    gap: 20px;
}
.hd_menu > li > a {
    color: var(--dark);
    position: relative;
    transition: all 0.2s;
    line-height: 43px;
    padding: 0px 10px;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}
.hd_menu a:hover {
    color: var(--text) !important;
}
.hd_menu > li > a::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 4px;
    background-color: var(--text);
    height: 1px;
    width: 0%;
    transition: all 0.2s;
}
.hd_menu > li > a:hover::after {
    width: 90%;
}
