@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.6/dist/web/static/pretendard.css');

* {
    color: #fff;
    box-sizing: border-box;
    scroll-behavior: smooth;
    letter-spacing: -0.05em;
}
.title {
    font-family: 'Jeju Myeongjo', serif;
}
.en_font {
    font-family: 'Roboto', sans-serif;
}
body {
    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;
}
body.fixed {
    overflow: hidden;
    left: 0px;
    bottom: 0px;
    width: 100%;
    position: fixed;
}
a {
    color: #fff;
    text-decoration: none;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0px;
}
li {
    list-style: none;
}
img {
    vertical-align: middle;
    max-width: 100%;
}
.m_con {
    display: none;
}
.blind {
    text-indent: -9999px;
    line-height: 0px;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
strong {
    margin: 0;
    cursor: default;
}
.center {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}
.main {
    color: #2f3032;
}
/* header */
.headroom {
    will-change: transform;
    transition: all 300ms linear;
    background-color: #2f3032;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 101;
}
.headroom > nav {
    width: 100%;
    height: 80px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 240px;
    padding-right: 86px;
}
header.slideDown {
    transform: translateY(0%);
}
header.slideUp {
    transform: translateY(-0px);
    /* 헤더 숨길만큼의 높이 */
}
.headroom > nav > ul {
    display: flex;
    justify-content: space-between;
}
.headroom > nav > ul > li > a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 80px;
    display: inline-block;
    padding: 0px 29px;
    letter-spacing: 0px;
    position: relative;
}
.headroom > nav > ul > li > a::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    width: 0px;
    height: 1px;
    background-color: #ede68a;
    transition: all 0.5s;
}
.headroom > nav > ul > li > a:hover:after {
    width: 43px;
}
.headroom > nav > ul > li > a:hover {
    color: #ede68a;
}
