@charset "utf-8";

/**********************************************

    전체 wrap

***********************************************/
#wrap {width: 100%; position: relative; height: 100dvh; display: grid; grid-template-columns: 1fr 0.5fr;}

@media screen and (max-width: 1240px) {
    #wrap {grid-template-columns: 1fr 0.7fr;}
}
@media screen and (max-width: 1080px) {
    #wrap {height: 100%; grid-template-columns: 1fr; grid-template-rows: 2fr 2fr;}
}




/**********************************************

    로고 및 슬로건

***********************************************/
.brand_section {height: 100%; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; padding: 35px 65px 50px 65px;}

.bs_bt {padding-left: 40px;}

.slogan_box {color: #fff; margin-bottom: 175px;}
.slogan_box h2 {font-family: 'GmarketSans'; font-size: 16px;}
.slogan_box h1 {font-family: 'GmarketSans'; font-size: 37px; word-break: keep-all; margin: 15px 0; line-height: 1;}
.slogan_box p {font-family: 'SCDream'; font-size: 16px; font-weight: 300;}

.bs_bt #footer {color: #b3ab97; font-family: 'SCDream'; font-size: 14px; font-weight: 300;}
.bs_bt #footer ul {display: flex;}
.bs_bt #footer ul li::after {content: '\007C'; margin: 0 15px}
.bs_bt #footer ul li:last-of-type::after {content: none;}
.bs_bt #footer p {margin-top: 15px;}

.brand_section .login-box {width: 100%; display: flex; align-items: center; justify-content: flex-end; margin-bottom: 30px; gap: 15px;}
.brand_section .login-box button {display: flex; align-items: center; justify-content: flex-end; gap: 5px; color: #fff;}
.brand_section .login-box button img {filter: invert(1);}
.brand_section .login-box button img {transition: all ease .3s;}
.brand_section .login-box button:hover {color: #999;}
.brand_section .login-box button:hover img {filter: invert(0.2);}

#footer_mb {padding: 30px 65px; color: #b3ab97; font-family: 'SCDream'; font-size: 14px; font-weight: 300; background: rgba(0, 0, 0, 0.5); display: none;}
#footer_mb ul {display: grid;  grid-template-columns: repeat(2, 1fr);}
#footer_mb ul li {text-align: center; border: 1px solid #b3ab9733;}
#footer_mb ul li:hover {background: #b3ab9733;}
#footer_mb ul li a {display: block; padding: 10px 0;}
#footer_mb p {margin-top: 15px;}
#footer_mb {display: none;}

@media screen and (max-width: 1240px) {
    .bs_bt #footer ul li::after {margin: 0 5px}
}
@media screen and (max-width: 1080px) {
    .brand_section {padding: 50px 65px;}
    .logo_box {margin-top: 30px;}
    .bs_bt {padding-left: 0;}
    .slogan_box {margin-bottom: 100px;}
    .slogan_box h1 {font-size: 32px;}
    .slogan_box p {font-weight: 300;}

    .bs_bt #footer {display: none;}

    #footer_mb {display: block;}
}
@media screen and (max-width: 768px) {
    .logo_box {width: 120px;}
    .slogan_box {margin-bottom: 60px;}
    .slogan_box h1 {font-size: 27px;}
}
@media screen and (max-width: 480px) {
    .brand_section {padding: 30px;}

    .slogan_box h2 {font-size: 14px;}
    .slogan_box h1 {font-size: 22px; letter-spacing: -1.8px;}
    .slogan_box p {font-size: 14px;}

    #footer_mb {padding: 30px;}
    #footer_mb ul li a {font-size: 13px;}
    #footer_mb p {font-size: 13px;}
}




/**********************************************

    메뉴

***********************************************/
#nav {height: 100%;}
.dep-list-01 {height: 100%; display: grid; grid-template-rows: repeat(5, 1fr);}
.dep-list-01 > li {border-bottom: 1px solid hsl(150, 1%, 63%); border-left: 1px solid #9FA1A0; display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; padding: 0 60px; transition: all ease .6s}
.dep-list-01 > li.single_dep01 {display: flex;}
.dep-list-01 > li:last-of-type {border-bottom: none;}
.dep-list-01 li a {font-family: 'SCDream'; display: block; color: #fff; }
.dep-list-01 a.dep-01 {font-size: 32px; font-weight: 600; font-family: 'SF_HambakSnow'; letter-spacing: -1.5px;}
.dep-list-01 a.dep-01 span {display: block; font-size: 15px; font-weight: 400; color: #cdcdcd; font-family: 'SCDream'; transition: all ease .3s; word-break: keep-all;}
.dep-list-01 a.dep-01 img {display: inline-block; transition: all ease .6s;}

.dep-list-02 {transition: all ease .6s; opacity: 0.7; flex-direction: column; flex-wrap: wrap; display: none; margin-left: 20px; gap: 12px;}
.dep-list-02 li a {transition: all ease .3s; font-size: 14px; font-weight: 300; color: #cdcdcd; display: flex; align-items: center; gap: 8px;}
.dep-list-02 li a:hover {color: #F0E1BC;}
.dep-list-02.grid {grid-template-columns: repeat(2, 1fr);}
.dep-list-02 li a img {display: inline-block; width: 15px; transition: all ease .3s;}

.dep-list-01 > li:hover {background: rgba(0, 0, 0, 0.699);}
.dep-list-01 > li:hover > a.dep-01 {color: #F0E1BC;}
.dep-list-01 > li:hover > a.dep-01 span {color: #F0E1BC;}
.dep-list-01 > li:hover a.dep-01 img {filter: brightness(0.9) saturate(10) sepia(100%)}
.dep-list-01 > li:hover .dep-list-02 {display: flex;  opacity: 1;}
.dep-list-01 > li:hover .dep-list-02.grid {display: grid;  opacity: 1;}
.dep-list-02 li a:hover img {filter: brightness(0.9) saturate(10) sepia(100%)}

@media screen and (max-width: 1400px) {
    .dep-list-01 > li {padding: 0 20px 0 30px;}
}
@media screen and (max-width: 1240px) {
    .dep-list-02 {gap: 10px;}
}
@media screen and (max-width: 1080px) {
    .dep-list-01 > li {border-left: 0; padding: 0 30px 0 65px; min-height: 140px;}
    .dep-list-01 > li:first-of-type {border-top: 1px solid #9FA1A0;}
    .dep-list-01 a.dep-01 {font-size: 25px;}
}
@media screen and (max-width: 480px) {
    .dep-list-01 > li {padding: 0 30px; min-height: 120px; grid-template-columns: 0.7fr 1fr;}
    .dep-list-01 a.dep-01 {font-size: 20px;}
    .dep-list-01 a.dep-01 span {font-size: 13px;}
    .dep-list-01 a.dep-01 img {display: none;}
    .dep-list-02 {width: 100%; gap: 5px;}
    .dep-list-02 li a {font-size: 13px; padding: 0;}
    .dep-list-02 li a img {width: 12px;}
}
@media screen and (max-width: 360px) {
    .dep-list-01 > li {grid-template-columns: 0.6fr 1fr;}
}




/**********************************************

    바탕 슬라이드

***********************************************/
.mainBg_slide {width: 100%; height: 100%; position: absolute !important; top: 0; left: 0; z-index: -1 !important;}
.mainBg_slide .swiper-wrapper {height: 100%;}
.mainBg_slide .swiper-slide {width: 100%; height: 100%; overflow: hidden;}
.mainBg_slide .swiper-slide .bg {width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); max-width: 100%; transition: transform 5s ease;}
.mainBg_slide .swiper-slide .bg.active {transition: transform 5s ease; transform: scale(1);}

.mainBg_slide .swiper-slide:first-child .bg {animation: zoom-in 5.5s ease;}

@keyframes zoom-in {
    0%   {transform: scale(1.1);}
    100% {transform: scale(1);}
}









@media screen and (max-width: 1560px) {

}
@media screen and (max-width: 1400px) {

}
@media screen and (max-width: 1240px) {

}
@media screen and (max-width: 1080px) {

}
@media screen and (max-width: 768px) {

}
@media screen and (max-width: 480px) {

}