/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ header ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#header {
    position: fixed; left: 0; top: 0;;
    width: 100%; height: 90px;
    background-color: #fff;
    z-index: 999;
}
#header .header_inner {
    position: relative;
    width: 92%; max-width: 1440px;
    margin: 0 auto;
}
#header .header_inner h1 {
    position: absolute; left: 0; top: 20px;
    height: 50px;
}
#header .header_inner h1 img {
    width: 100%; height: 50px;
}
#header .gnb {
    position: absolute; left: 14%; top: 0;
}
#header .gnb ul {
    display: flex;
}
#header .gnb ul li {
    padding-right: 30px;
}
#header .gnb ul li a {
    display: block;
    color: #1f1f1f; font-size: 1.375em; font-weight: bold; font-family: "Montserrat", sans-serif;
    line-height: 90px; text-align: center;
    transition-duration: 0.5s;
}
#header .gnb ul li.select a {
    color: #BC9478;
}
#header .gnb ul li a span {
    color: #C8C6BD; font-weight: normal; font-size: 0.9em;
    transition-duration: 0.5s;
}
#header .gnb ul li a:hover {
    color: #BC9478;
}
#header .gnb>ul li a:focus {
    color: #BC9478;
}

#header .util {
    position: absolute; right: 0; top: 0;
}
#header .util ul {
    display: flex;
}
#header .util ul li {
    margin-right: 30px;
}
#header .util ul li:last-child {
    margin-right: 0;
}
#header .util ul li a {
    display: block;
    color: #1f1f1f; font-size: 1.375em; font-weight: bold; font-family: "Montserrat", sans-serif;
    line-height: 90px; text-align: center;
    transition-duration: 0.5s;
}
#header .util ul li.account {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
#header .util ul li a span {
    margin-right: 10px;
    color: #ddd; font-weight: normal; font-size: 0.9em;
}
#header .util ul li button {
    background: none; border: none;
    height: 90px;
}

.sub_gnb_wrap {
    position: fixed; left: 0; top: 90px; /* position: absolute; */
    display: flex; flex-direction: column; justify-content: center; display: none;
    width: 100%; height: 200px;
    background-color: #fff; border-top: 1px solid #ddd;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.3);
    z-index: 999;
}
.sub_gnb_wrap .sub_gnb_menu {
    position: absolute; left: 23%; top: 0;
    display: none;
    width: 100%; max-width: 1240px;
    margin: 0 auto;
    padding: 30px 0;
    box-sizing: border-box;
}
/* .sub_gnb_wrap .sub_gnb_menu:first-child {display: flex;} */
.sub_gnb_wrap .sub_gnb_menu .sub_gnb {
    display: flex; justify-content: flex-start;
    width: 50%;
}
.sub_gnb_wrap .sub_gnb_menu .sub_gnb li {
    margin-right: 40px;
    transition-duration: 0.5s;
}
.sub_gnb_wrap .sub_gnb_menu .sub_gnb li a {
    color: #666; font-size: 1.2em; font-weight: 500;
    line-height: 2em;
    transition-duration: 0.5s;
}
.sub_gnb_wrap .sub_gnb_menu .sub_gnb li:hover a {
    color: #BC9478;
    border-bottom: 1px solid #BC9478;
}
.sub_gnb_wrap .sub_gnb_menu .sub_gnb li:focus a {
    color: #BC9478;
    border-bottom: 1px solid #BC9478;
}
.sub_gnb_wrap .sub_gnb_menu .util_menu  {
    width: 50%;
    padding: 25px 30px;
    background-color: #F5F3EC; border-radius: 20px;
    box-sizing: border-box;
    
}
.sub_gnb_wrap .sub_gnb_menu .util_menu>ul>li {
    display: flex;
    margin-bottom: 20px;
}
.sub_gnb_wrap .sub_gnb_menu .util_menu>ul>li p {
    width: 120px;
    color: #666; font-size: 1em;
}
.sub_gnb_wrap .sub_gnb_menu .util_menu>ul>li p span {
    color: #1f1f1f;
}
.sub_gnb_wrap .sub_gnb_menu .util_menu>ul>li:last-child {
    margin-bottom: 0;
}
.sub_gnb_wrap .sub_gnb_menu .util_menu>ul>li>ul {
    display: flex;
}
.sub_gnb_wrap .sub_gnb_menu .util_menu>ul>li>ul>li {
    margin-right: 20px;
}
.sub_gnb_wrap .sub_gnb_menu .util_menu>ul>li>ul>li a {
    color: #666;
}

.search_wrap {
    position: absolute; left: 0; top: 90px;
    display: flex; flex-direction: column; justify-content: center; display: none; 
    width: 100%; height: 200px;
    background-color: #fff; border-top: 1px solid #ddd;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.3);
    z-index: 999;
}
.search_wrap .search_box {
    display: flex; justify-content: center; align-items: center;
    width: 100%; max-width: 1240px;
    margin: 0 auto;
    box-sizing: border-box;
}
.search_wrap .search_box input {
    padding: 10px 0 10px;
    width: 40%;
    border: none; border-bottom: 1px solid #C8C6BD;
    font-family: "Montserrat", sans-serif; font-size: 1.2em; 
}
/* WebKit, Blink, Edge */
.search_wrap .search_box input::-webkit-input-placeholder {
    color:#ddd;
}
/* Mozilla Firefox 4 to 18 */
.search_wrap .search_box input::-moz-placeholder {
    color:#ddd;
    opacity:  1;
}
/* Mozilla Firefox 19+ */
.search_wrap .search_box input::-moz-placeholder {
    color:#ddd;
    opacity:  1;
}
/* Internet Explorer 10-11 */
.search_wrap .search_box input:-ms-input-placeholder {
    color:#ddd
}
/* Microsoft Edge */
.search_wrap .search_box input::-ms-input-placeholder {
    color:#ddd
} 
/* Most modern browsers support this now. */
.search_wrap .search_box input::placeholder {
    color:#ddd;
}
.search_wrap .search_box button {
    width: 2.5%;
    background: none;
    border: none;
}
.search_wrap .search_box button img {
    width: 100%;
}










/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ footer ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#footer {
    position: relative;
    width: 100%;
    padding: 50px 0;
    background-color: #DBD3C7;
}
#footer .f_top {
    display: flex; justify-content: space-between; align-items: center;
    width: 92%; max-width: 1440px;
    margin: 0 auto; padding-bottom: 40px;
    border-bottom: 1px solid #fff;
}
#footer .f_top .left {
    width: 60%;
}
#footer .f_top .left>ul {
    display: flex; justify-content: flex-start; flex-wrap: wrap;
}
#footer .f_top .left>ul li {
    position: relative;
    padding: 0 3%;
    border-right: 1px solid #fff;
}
#footer .f_top .left>ul li:first-child {
    padding-left: 0;
}
#footer .f_top .left>ul li:last-child {
    padding-right: 0;
    border: none;
}
#footer .f_top .left>ul.terms {
    margin-bottom: 80px;
}
/* #footer .f_top .left>ul.terms li::after {
    position: absolute; right: -20px; top: 1px;
    content:''; display: block; clear: both;
    width: 1px; height: 12px;
    background-color: #fff;
} */
#footer .f_top .left>ul.terms li:first-child {
    padding-left: 0;
}
#footer .f_top .left>ul.info {
    width: 55%;
}
#footer .f_top .left>ul.info li {
    color: #666;
}
#footer .f_top .left>ul.info li:first-child {
    margin-bottom: 2%;
    border:none;
}
#footer .f_top .left>ul.info li:nth-child(2) {
    padding-left: 0;
}
#footer .f_top .left>ul.info li span {
    color: #666;
    margin-left: 15px;
}
#footer .f_top .left>ul li a {
    color: #666;
}
#footer .f_top .right {
    width: 20%;
    display: flex; flex-direction: column; align-items: flex-end;
}
#footer .f_top .right .sns {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 50px;
}
#footer .f_top .right .sns li {
    width: 20%;
}
#footer .f_top .right .sns li img {
    width: 100%;
}
#footer .f_top .right .family_box {
    display: flex;
}
#footer .f_top .right .family_box #family {
    width: 200px; height: 45px;
    padding: 0 5%;
    font-family: "Pretendard Variable", Pretendard, "Noto Sans KR", sans-serif; font-size: 0.9em;
    background: none; border: 1px solid #fff; border-radius: 10px 0 0 10px;
    box-sizing: border-box;
    -webkit-appearance:none; /* for chrome */
    -moz-appearance:none; /*for firefox*/
    appearance:none;
}
#footer .f_top .right .family_box #family::-ms-expand {
    display: none;
}
#footer .f_top .right .family_box .btn_outward {
    width: 45px; height: 45px;
    padding: 5%;
    background-color: #fff; border: none; border-radius: 0 10px 10px 0;
    box-sizing: border-box;
}
#footer .f_top .right .family_box .btn_outward img {
    width: 100%;
}
#footer .f_bottom {
    display: flex; align-items: center; justify-content: space-between;
    width: 92%; max-width: 1440px;
    margin: 50px auto 0;
}
#footer .f_bottom p {
    color: #666; font-family: "Montserrat", sans-serif; font-size: 1.1em; font-weight: 500;
}