/* container - header 높이만큼 상단 여백 */
.header+.container {
    padding-top: 120px;
}

/* header */
.header {
    position: absolute;
    width: 100%;
    letter-spacing: -0.05em;
    background: #224d35;
    z-index: 999;
    top:0;
}

.header:after {
    clear: both;
    display: block;
    width: 100%;
    content: "";
}

/*.header .header_wrap{position: absolute; width: 100%;}*/
.header .head_menu {
    max-width: 90rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.header .head_menu h1 a {
    display: inline-block;
    width: 100%;
    color: #fff;
    font-weight: 500;
}

.header .head_menu h1 img {
    vertical-align: middle;
}

.header .head_menu h1 span {
    position: relative;
    font-size: 1.5rem;
    padding-left: 15px;
    margin-left: 10px;
    font-weight: 700;
    color: #333;
}

.header .head_menu h1 span:before {
    content: '';
    background: #d4d4d4;
    width: 1px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header .head_menu .gnb {
    display: flex;
    justify-content: space-between;
    gap: 1.875rem;
}

.header .head_menu .gnb .depth01 {
    display: flex;
    align-items: center;
    height: 100%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    overflow: hidden;
    padding: 0;
}

.header .head_menu .gnb .depth01 li {
    vertical-align: top;
    text-align: center;
    position: relative;
    height: 100%;
}

.header .head_menu .gnb .depth01 li+li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.45);
}

.header .head_menu .gnb .depth01>li>a {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: .75rem 4rem;
    letter-spacing: 0.01em;
    transition: background 0.25s ease, color 0.25s ease;
}

.header .head_menu .gnb .depth01>li>a:hover,
.header .head_menu .gnb .depth01>li>a.active {
    background: rgba(255, 255, 255, 1);
    color: #224d35;
}

.header .head_menu .gnb .depth01 li a span {
    position: relative;
}

/*.header .head_menu .gnb .depth01 li a span:after{content:'';position:absolute;width: 0;height: 3px;background:#0b4391;left: 0;top: 50px;transition:all .3s ease; }*/
.header .head_menu .gnb .depth01 li .depth02 {
    background: #fff;
    width: 100%;
    z-index: 200;
    position: absolute;
    left: 50%;
    display: flex;
    visibility: hidden;
    opacity: 0;
    padding: 15px;
    /*box-shadow: 5px 5px 20px rgba(0,0,0,.1);*/
    transform: translate(-50%, 10px);
    border-bottom: 1px solid #e5e5e5;
    transition: opacity .3s, visibility .3s, transform .3s;
}

.header .head_menu .gnb .depth01 li .depth02.has {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0px);
}

.header .head_menu .gnb .depth01 li .depth02 ul {
    /* padding: 50px; */
    width: 1200px;
    padding-left: 200px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}

.header .head_menu .gnb .depth01 li .depth02 li {
    display: block;
    position: relative;
    margin-bottom: 3px;
    width: auto;
    padding: 5px 15px;
    text-align: left;
    line-height: 1.8;
}

.header .head_menu .gnb .depth01 li .depth02 li a {
    position: relative;
    font-size: .95rem;
    letter-spacing: 0.01rem;
    font-weight: 400;
    color: #555;
    display: inline-block;
    line-height: initial;
}

.header .head_menu .gnb .depth01 li .depth02 li a:hover {
    transition: all .3s ease;
    color: #326edc;
    font-weight: 600;
}

.header .head_menu .gnb .depth01 li .depth02 li a::before {
    transform: scaleX(0);
    transform-origin: bottom right;
}

.header .head_menu .gnb .depth01 li .depth02 li a:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.header .gnb_util {
    display: flex;
    align-items: center;
    gap: 1.875rem;
}

.header .gnb_util .btn_ham {
    background: transparent url('../images/layout/common/btn_ham.svg') center right no-repeat;
    padding: 12px;
    display: inline-block;
    width: 40px;
    height: 100%;
}

.header .btn_search {
    font-size: 2.5rem;
    color: #fff;
}

.header.fix .btn_search {
    color: #bbb;
}


.header .head_menu .gnb .depth01 li a span {
    position: relative;
}

.header .head_menu .gnb .depth01 li a span:after {
    content: none;
}

.header .nav {
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.header .nav_menu {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    justify-content: space-between;
    padding: 10px 0;
}

.header .nav ul {
    display: flex;
    font-size: 0.813rem;
    justify-content: space-between;
}

.header .nav .left a {
    color: #DADADA;
}

.header .nav .left a strong {
    color: #f1f1f1;
}

.header .nav .left li {
    padding: 0 8px;
    position: relative;
}

.header .nav .left li:first-child {
    padding-left: 0;
}

.header .nav .left li+li:before {
    content: '';
    width: 1px;
    height: 6px;
    background: #555;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header .nav .left .mnav_open {
    display: none;
}

.header .nav .left .mnav_close {
    display: none;
}

.header .nav .right a {
    color: #fff;
    display: block;
}

.header .nav .right li {
    padding: 0 10px;
}

.header .nav .right li:last-child {
    padding-right: 0;
}

.header .nav .right .facebook,
.header .nav .right .instagram {
    padding: 0 5px;
}

.header .nav .right .facebook a {
    width: 20px;
    height: 20px;
    background: url("../images/layout/common/ico_facebook.svg") center no-repeat;
}

.header .nav .right .instagram a {
    width: 20px;
    height: 20px;
    background: url("../images/layout/common/ico_instagram.svg") center no-repeat;
}

.header.fix {
    position: fixed;
    background: rgba(255,255,255,.8);
    border-bottom: 1px solid #eaeaea;
}

.header.fix .nav {
    opacity: 0;
    height: 0;
}

.header.fix .nav_menu {
    opacity: 0;
    height: 0;
}

.header.fix .head_menu h1 a {
    color: #2b4d36;
}

.header.fix .head_menu .gnb .depth01>li>a {
    color: #2b4d36;
}

.header.fix .head_menu .gnb .depth01>li>a:hover,
.header.fix .head_menu .gnb .depth01>li>a.active {
    color: #fff;
    background: #2b4d36;
}

.header.fix .head_menu .gnb .depth01 {
    border: 1.5px solid #2b4d36;
}

.header.fix .head_menu .gnb .depth01 li+li::before {
    background: #2b4d36;
}

.header.fix .gnb_util .btn_search {
    background: transparent url('../images/layout/common/btn_search_b.svg') center center no-repeat;
}

.header.fix .gnb_util .btn_ham {
    background: transparent url('../images/layout/common/btn_ham_b.svg') center right no-repeat;
}

.gnb_util a {
    color: #fff;
    font-size: 1.5rem;
}

.header.fix .gnb_util a {
    color: #2b4d36;
}

.gnb_util a.instagram {
    font-size: 3rem
}

.header.fix .search_area {
    top: 90px;
}

/*.header.fix~.snb_wrap{padding-top: 140px;}*/
/*.header.fix.contents{padding-top: 65px;}*/
.header.fix .head_menu .gnb .depth01 li .depth02 {
    top: 65px;
}

.search_area {
    position: absolute;
    left: 0;
    top: 5.625rem;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    width: 100%;
    text-align: center;
    padding: 3.5rem 0;
    /* box-shadow: 0 5px 30px rgba(0,0,0,.1);*/
    border-bottom: 1px solid #e5e5e5;
    transition: opacity .3s, visibility .3s, transform .3s;
}

.search_area.open {
    opacity: 1;
    visibility: visible;
}

.search_area .search_box {
    width: 30rem;
    margin: 0 auto;
    position: relative;
}

.search_area .search_box .search_input {
    position: relative;
    width: 100%;
}

.search_area .search_box input {
    border: 0;
    background: #f2f2f2;
    border-radius: 50px;
    color: #333;
    height: 4rem;
    width: 100%;
    font-size: 1.15rem;
    padding: 0 2rem;
}

.search_area .search_box input:focus {
    outline: none;
}

.search_area .search_box button {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%)
}

.search_area .search_box button i {
    font-size: 2.5rem;
    color: #777;
}

.search_box {
    display: flex;
    align-items: center;
}

.search_close {
    display: block;
    position: absolute;
    right: -40px;
    margin-left: 15px;
    width: 25px;
    height: 25px;
    background: url("/resources/images/layout/common/close.svg") center no-repeat;
    background-size: contain;
}

html.fixed {
    overflow: hidden;
}

html.fixed body {
    overflow: hidden;
}


/* gnb open */
.header_wrap.open {
    box-shadow: 0px 5px 30px rgba(61, 61, 61, 0.1);
}

.header_wrap.open::after {
    content: "";
    position: absolute;
    left: 0;
    top: 84px;
    width: 100%;
    border-top: 1px solid #EBEBEB;
}

.header .head_menu .gnb .depth01 li a:hover~.depth02 {
    color: #1a8dde;
    transition: all 0.2s ease;
}

/*레이아웃*/
.container {
    max-width: 90rem;
    margin: 0 auto;
}

.line-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.line-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.line-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.lg_block {
    display: block;
}

.page_tit {
    font-size: 2.25rem;
}

.content_layout {
    padding-top: 2rem;
}

/*.contents{width: calc(100% - 240px); }*/
.contents {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 0;
}

.header+.contents {
    padding-top: 140px;
}

.cont_sm {
    max-width: 800px;
    margin: 0 auto;
}

.tit_lg {
    font-size: 2.125rem;
    margin: 1rem 0 2rem;
}

.section_tit {
    font-size: 1.125rem;
    color: #393e43;
    padding: 2.5rem 0 .5rem;
}

.tit_lg+.section_tit {
    padding-top: 0;
}

/*snb*/
.snb_wrap {
    background: #fafbfc;
    border-bottom: 1px solid #e5e5e5;
    padding: 120px 0 10px;
    overflow: auto hidden;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
}

.snb_wrap::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera*/
}

/*.snb{ width: 300px;}*/
.snb {
    margin: 0 auto;
    max-width: 1280px;
    /*display: flex; flex-wrap: wrap; background: #f7f7fc;  padding: 1.5rem; border-radius: 4px;*/
}

/*.snb ul{max-width: 1200px; margin: 0 auto; }*/
/*.snb ul li{padding: 0 10px;}*/
.snb .nav ul {
    display: flex;
    justify-content: center;
}

.snb .nav li {
    color: #999;
    position: relative;
    font-size: .9rem;
}

.snb .nav li+li {
    padding-left: 20px;
}

.snb .nav li+li:before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background: #999;
    border-radius: 50%;
}

.snb_tit {
    font-size: 2rem;
    text-align: left;
    font-weight: 800;
    position: relative;
    color: #1a2330;
}

/*.snb_tit:after{    content: "";display: inline-block;width: 1.2rem;height: 1.2rem;margin-left: .5rem;border-radius: 50%;background-color: #326edc;vertical-align: text-top;}*/
.snb>ul {
    display: flex;
}

/*.snb > ul li{   width: calc(100% / 6 - 20px);}*/
.snb>ul li a {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 3px 6px;
    color: #8d9298;
    transition: all .3s;
    font-size: .9rem;
}

/*.snb > ul li+li{margin-left: 5px;}*/
.snb>ul li a:hover {
    color: #326edc;
    font-weight: 700;
}

.snb>ul li {
    margin: 5px;
}

.snb>ul li:first-child {
    margin-left: 0;
}

.snb>ul li.active a {
    color: #326edc;
    font-weight: 700;
    border-radius: 5px;
}


/*footer*/
.footer {
    background: #2b4d36;
    margin-top: 50px;
    color: #fff;
    font-size: 0.875rem;
    padding: 2.5rem 0;
}

.footer .container{
    display: flex;
}

.footer .ft-left{
    width: 50%;
}

.footer .ft-right{
    width: 50%;
}

.footer .ft-left h1{
    font-weight: 500;
}

.footer .ft-left .ft-text p{
    padding-top: 1rem;
    font-weight: 200;
}

.footer .ft-left .insta{
    font-size: 2rem;
    padding-top: .5rem;
}

.footer .ft-left .ft-text a{
    color: #fff;
    text-decoration: underline;
}

.footer .ft-left .insta a{
    color:#fff;
    font-size: 2.5rem;
}

.footer .ft-right dt{
    font-size: 1.2rem;
}
.footer .ft-right dd{
    font-weight: 200;
}

.footer .ft-right dd+dt{
    padding-top: 1.5rem;
}

.footer .ft-right  ul{
    padding-top: 2rem;
    display: flex;
    gap: 1rem;
}

.footer .ft-right  ul a{
    position: relative;
    color: #fff;
    text-decoration: underline;
}

.footer .ft-right  ul a:before{
    content: '';
    width: 1px;
    height: 10px;
    background: #fff;
    opacity: .7;
    display: inline-block;
    transform: translateX(-.5rem);
}

.footer .ft-right  ul li:first-child a:before{
    display: none;
}

/*to top*/
#scroll {
    position: fixed;
    right: 30px;
    bottom: 30px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background-color: #224d35;
    display: none;
    z-index: 1;
    border-radius: 50px;
}

#scroll i {
    position: relative;
    display: block;
    color: #fff;
    text-align: center;
    font-style: normal;
    font-size: .8rem;
    padding-top: 30px;
    height:100%;
}

#scroll i:before {
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    position: absolute;
    top: 45%;
    left: 50%;
    margin-left: -8px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transition: all 0.3s
}

#scroll:hover i:before {
    top: 18px;
}

/*popup*/
.popup_area {
    position: fixed;
    background: rgba(0, 0, 0, .8);
    z-index: 9999;
    width: 100vw;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity .3s ease;
    display: none;
}

.popup_area.show {
    height: 100%;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup_list {
    width: 710px;
    transform: translateY(-70px);
    overflow: hidden;
}

.popup_list .popup {
    max-width: 340px !important;
}

.popup_list .popup img {
    width: 100%;
}

.popup_list .popup_slide {
    justify-content: center;
}

.popup_btn {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

.popup_btn a {
    color: #fff;
    display: inline-block;
    padding-left: 20px;
}

.popup_btn .close {
    background: url("../images/layout/common/close.svg") left center no-repeat;
}

.popup_btn .today_close {
    background: url("../images/layout/common/popup_close_02.svg") left center no-repeat;
}

.popup_list .indicator {
    display: flex;
    align-items: center;
    justify-content: end;
    padding-bottom: 20px;
}

.popup_list .indicator>div {
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    border: 1px solid #fff;
}

.popup_list .indicator .swiper-button-disabled {
    opacity: .5;
}

/*.popup_list .indicator .popup_prev{ background: url("../images/layout/main/prev_01.svg") center no-repeat; }*/
/*.popup_list .indicator .popup_next{ background: url("../images/layout/main/next_01.svg") center no-repeat; margin-left: 5px;}*/

/*alert*/
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    text-align: left;
    font-size: .9rem;
}

.alert.error {
    color: #721c24;
    background-color: #fae9eb;
    border-color: #f5c6cb;
}

@media all and (max-width:90rem) {
    .container {
        padding: 0 15px;
    }
}

@media all and (max-width:1200px) {

    /*layout*/
    /*html{font-size: 14px;}*/


    .util {
        right: 15px;
    }

    /*header*/
    .header .head_menu {
        padding: 0 15px;
        max-width: 100%;
    }

    .header .head_menu .gnb .depth01 li .depth02 li a {
        font-size: 1rem;
    }

    .header .head_menu .gnb .m_tit {
        width: 25%;
    }

    .header .head_menu h1 {
        left: 15px;
    }

    .header .head_menu h1 span {
        font-size: 1.3rem;
    }

    .header .nav_menu {
        padding: 10px;
        max-width: 100%;
    }

    .header .gnb_util .btn_ham {
        right: 20px;
    }

    .header.fix .btn_search {
        font-size: 2rem;
    }

}

@media (max-width: 1200px) {

    /*header*/
    .header .head_menu {
        flex-wrap: wrap;
        height: auto;
        padding: .625rem .9375rem;
    }

    .header .head_menu h1 {
        width: 60%;
        order: 1;
        font-size: 1.3rem;
    }

    .header .gnb_util {
        width: 40%;
        height: auto;
        justify-content: flex-end;
        order: 2;
        gap: 1rem;
    }

    .gnb_util a {
        font-size: 1.3rem;
    }

    .gnb_util a.instagram {
        font-size: 1.5rem;
    }

    .header .head_menu .gnb {
        width: 100%;
        gap: 15px;
        align-items: center;
        order: 3;
        padding-top: .5rem;
    }

    .header .head_menu .gnb .depth01 {
        display: flex;
        flex: 1;
    }

    .header .head_menu .gnb .depth01>li {
        flex: 1;
    }

    .header .head_menu .gnb .depth01>li>a {
        padding: 8px 0;
        font-size: 0.9rem;
    }

    .header+.container {
        padding-top: 140px;
    }


    .search_area {
        top: 120px;
    }


}

@media all and (max-width:991px) {
    .header .nav .left {
        position: relative;
        width: 100%;
    }

    .header .nav .left ul {
        display: none;
        position: absolute;
        left: 0;
        top: 0;
        background: #000;
        flex-wrap: wrap;
        width: 220px;
        z-index: 40;
        padding: 25px 15px 15px;
        border-radius: 10px;
    }

    .header .nav .left ul.open {
        display: flex;
    }

    .header .nav .left li {
        width: 50%;
        padding: 0;
    }

    .header .nav a {
        font-size: .83rem;
        line-height: 1.7;
    }

    .header .nav .left li+li:before {
        display: none;
    }

    .header .nav .left .mnav_open {
        display: inline-block;
        padding-right: 30px;
        position: relative;
    }

    .header .nav .left .mnav_open:after {
        content: '';
        position: absolute;
        right: 0;
        top: 1px;
        display: inline-block;
        width: 18px;
        height: 18px;
        border: 1px solid #808080;
        border-radius: 50px;
        background: url("../images/layout/common/nav_open.svg") center no-repeat;
    }

    .header .nav .left .mnav_close {
        display: block;
        z-index: 50;
        right: 5px;
        top: 5px;
        position: absolute;
        width: 20px;
        height: 20px;
        background: url("../images/layout/common/close.svg") center no-repeat;
    }
}

@media all and (max-width:768px) {

    /*layout*/
    .contents {
        padding: 1rem 15px;
    }

    .page_tit {
        margin-bottom: 40px;
    }

    .lg_block {
        display: inline;
    }

    .tit_lg {
        font-size: 1.75rem;
        margin: .5rem 0 1rem;
    }

    /*header*/
    .header .head_menu h1 img {
        width: 70%;
    }

    .header .top_util ul li a {
        padding: 0 10px;
    }

    .search_area {
        padding: 4rem 0 4.5rem;
    }

    .search_area .search_box {
        width: 80%;
    }

    .search_close {
        right: 0;
        top: -45px;
        width: 20px;
        height: 20px;
    }

    /*popup*/
    .popup_list {
        width: 100%;
        padding: 0 15px;
    }

    .popup_list .popup_slide {
        justify-content: flex-start;
    }

    .popup_list .popup {
        max-width: 100% !important;
        text-align: center;
    }

    .popup_list .popup img {
        max-width: 340px;
    }

    /*footer*/
    .footer .container{flex-wrap: wrap}
    .footer .ft-left,.footer  .ft-right{width: 100%}
}


@media all and (max-width:565px) {

    .header .head_menu h1 img.logotree {
        width: 28px;
        height: auto;
    }

    /*.header .top_util ul li{width:49%;}*/
    .header .top_util ul li:first-child {
        border-left: none;
    }

    .header .gnb_util .btn_search {
        background-size: 22px;
    }

    .snb .depth {
        width: calc(100% - 50px)
    }

    .snb .depth {
        display: none;
    }

    .snb .depth:last-child {
        display: block;
        margin-left: 0;
    }

    .snb .depth:last-child a:before {
        display: none;
    }

    .snb ul>.depth>a {
        line-height: 50px;
    }

    .snb ul li.home {
        width: 50px;
        height: 50px
    }



}

@media all and (max-width:380px) {
    .header .top_util {
        margin: 0 auto;
        text-align: center;
    }

    .header .gnb_util .wrap {
        padding: 0;
    }

    .header .gnb_util .search_area .wrap .search {
        width: 90%;
    }

    .header .gnb_util .search_area input {
        width: 83%;
    }

    .header .gnb_util .search_area .sear_btn {
        display: none;
    }


}