/* 공통적용 */
/* html {scroll-behavior:smooth;} */
body {overflow-x: hidden;}
body.scroll-lock {overflow-y: hidden;}
img {max-width: 100%;}
.inner {width: 90%; max-width: 1440px; margin: 0 auto; }


/* padding */
.p_tb {padding: 150px 0;}
.p_t {padding-top: 150px;}
.p_b {padding-bottom: 150px;}





/* footer */
#footer {padding: 60px 0; background: #222;}
#footer .inner {display: flex; flex-direction: column; gap: 20px;}
#footer .info {display: flex; gap: 5px 20px;  flex-wrap: wrap;}
#footer .info .list {display: flex; gap: 5px 20px;  flex-wrap: wrap;}
#footer .info li {display: flex; gap: 7px; color: #ddd; font-size: 0.9375rem;}
#footer .info li.w100 {width: 100%;}
#footer .info li span {color: #aaa}
#footer .copy {color: #aaa; opacity: .5; font-size: 0.8125rem;}


/* header */
#header {width: 100%; height: 90px; display: flex; align-items: center; background: rgba(255,255,255,0); position: fixed; z-index: 997;}
#header .inner {display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 40px;}
#header .logo {font-size: 0;}
#header .logo img {height: 29px;}
#header .nav_wrap {height: 100%;}
#header .menu {display: flex; gap: 60px; align-items: center; color: #000; height: 100%;}
#header .menu > li {height: 100%; position: relative;}
#header .menu > li > a {
    height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
    position: relative; font-family: "Playfair Display", sans-serif; font-weight: 700;
}
#header .menu > li > a::after {
    display: block; content: ""; width: 0%; height: 3px; background: var(--mainBrown);
    position: absolute; bottom: 28px; left: 0; transition: all .3s;
}
#header .menu > li:hover > a::after {width: 100%;}
#header .hamberg {display: none;}
#header.active {background: rgba(255,255,255, .9); }


@media screen and (max-width:1024px) {

    /* header */
    #header {height: 60px;}
    #header .inner {gap: 20px;}
    #header .lang {margin-left: auto;}
    #header .logo img {height: 24px;}
    
    #header .hamberg {width: 24px; height: 24px; font-size: 0; display: flex; align-items: center; cursor: pointer; position: relative; z-index: 2;}
    #header .hamberg span {width: 100%; height: 2px; background: #000; display: block; position: relative; transition: all .3s;}
    #header .hamberg span::before,
    #header .hamberg span::after {display: block; content: ""; width: 100%; height: 2px; background: #000; position: absolute; transition: all .3s;}
    #header .hamberg span::before {top: -8px;}
    #header .hamberg span::after {top: 8px;}
    #header .hamberg span.on {background: rgba(255,255,255,0);}
    #header .hamberg span.on::before {top: 0; transform: rotate(-45deg);}
    #header .hamberg span.on::after {top: 0; transform: rotate(45deg);}
    
    #header .nav_wrap {
        position: fixed; top: 0; left: -500px; background: rgba(0,0,0,.95); width: 500px; height: 100vh;
        transition: all .3s; z-index: 1;
    }
    #header .nav_wrap.on {left: 0;}
    #header .menu {gap: 10px; justify-content: center; flex-direction: column; color: #fff;}
    #header .menu > li {height: auto; width: 100%;}
    #header .menu > li::after {display: none;}
    #header .menu > li > a {height: auto; height: 50px; font-size: 1.125rem; padding: 0 20px;}
    #header .menu > li > a::after {display: none;}
    #header .submenu {position: unset; transform: unset; width: 100%; border: 0; background: #222; padding: 20px;}
    #header .submenu > div {gap: 15px;}
    #header .submenu > div > a {font-size: 0.9125rem;}

}

@media screen and (max-width:899px) {

    /* padding */
    .p_tb {padding: 90px 0;}
    .p_t {padding-top: 90px;}
    .p_b {padding-bottom: 90px;}


    /* swiper */
    .swiper_prev,
    .swiper_next {width: 40px;}



}

@media screen and (max-width:599px) {


    /* hedaer */    
    #header .inner {gap: 10px;}
    #header .nav_wrap {width: 80%;}


}