/* ========================================================
폰트 적용
======================================================== */
@font-face {
    font-family: "Pretendard-Regular";
    src: url("https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff")
        format("woff");
    font-weight: 400;
    font-style: normal;
}

/* ========================================================
초기화
======================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    overflow-y: scroll; /*내용이 부모요소의 면적보다 길 때*/
}

html,
body {
    font-family: "Pretendard", sans-serif;
    color: #111;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0;
    word-break: keep-all; /*단어 띄어쓰기 및 줄바꿈 속성*/
}

body {
    position: relative; /*미리 body를 relative로 만들어두*/
    min-width: 1186px;
    width: 100%;
}

.header-wrap {
    width: 100%;
    max-width: 1920px; /* 최대 너비 지정 */
    margin: 0 auto; /* 가운데 정렬 */
}

.wrap {
    width: 100%;
    max-width: 1920px; /* 최대 너비 지정 */
    margin: 0 auto; /* 가운데 정렬 */
}

div {
    padding: 0px;
    vertical-align: top;
}

/*모든 태그에 리스트 아이콘 없애기*/
ul,
ol,
dl,
li {
    list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
    font-weight: 400;
}

img {
    max-width: 100%;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: #111;
}

/* ========================================================
dHead (네비게이션 포함)
======================================================== */
#dHead {
    position: fixed;
    top: 0;
    width: 100vw;
    max-width: 1920px;
    height: 90px;
    display: none;
    z-index: 10;
}

#dHead.active {
    position: fixed;
    top: 0; /* sticky를 쓰려면 top이 있어야 함 */
    z-index: 10;
    width: 100%;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
    transition: height 0.5s ease;
}

#dHead.active-snb {
    height: 160px;
    transition: height 0.5s ease;
}

.header-inner {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 10px 20px 0 20px;
    z-index: 10;
}

.header-inner:hover {
    cursor: pointer;
}

.header-inner.light {
    color: #111111;
}

.header-inner .logo {
    position: absolute;
    top: 20px;
    left: 25px;
    z-index: 10;
}

.header-inner .white-logo {
    /* 스크롤 할 때 하얀색->파란색으로 변경되도록 함 */
    display: none;
}

.header-inner .gnb-wrap {
    display: flex;
    position: relative;
    /* flex: auto; */
}
.header-inner .gnb-list {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    clear: left;
}

.header-inner .gnb-list-cell {
    display: inline-block;
    justify-content: center;
    text-align: center;
    padding: 20px;
    list-style-type: none;
    font-size: 20px;
    width: 150px;
}

.header-inner .snb-list-wrap {
    display: none;
}

.header-inner .snb-list-cell {
    text-align: center;
    font-size: 17px;
    margin: 5px;
}

.header-inner .snb-list-cell a:hover {
    color: #06c;
}

/* ==================================================
footer
================================================== */
#dFoot {
    position: relative;
    background-color: #4c647f;
    z-index: 155;
    width: 100%;
    height: 500px;
}

.footer-top {
    position: absolute;
    left: 0;
    width: 100%;
    display: block;
    font-size: 0;
    border-bottom: 1px solid #8f9eaf;
}

footer .inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 113px;
    position: relative;
    max-width: 1272px;
    margin: 0 auto;
}

footer .emblem {
    position: absolute;
    top: 45px;
    left: 50px;
    height: 40px;
}

footer .family-menu {
    position: absolute;
    top: 40px;
    right: 100px;
}

footer .footer-info {
    position: absolute;
    top: 150px;
    left: 50px;
}

footer .footer-sns {
    margin-top: 30px;
}

footer .sns-logo {
    display: flex;
    gap: 20px;
}

footer .footer-copy {
    margin-top: 40px;
    font-size: 14px;
}

footer .footer-site-menu {
    position: absolute;
    top: 150px;
    right: 5px;
}

footer .menu-item {
    list-style-type: disc;
    margin-bottom: 20px;
}

footer .menu-title {
    display: inline-block;
    width: 100px;
    margin-right: 20px;
}

footer .menu-drop {
    display: inline-block;
}

footer .menu-drop li {
    display: inline-block;
    margin-right: 10px;
}
