@charset "utf-8";
/* 기본설정 */
@import "default.css";

.header{
    width: 100%;
    height: 90px;
    background-color: rgba(0,0,0,0.68);
    position: fixed;
    z-index: 9999;
}
.header .logo{
    width: 150px;
    height: 90px;
position: absolute;top: 9%;
left: 9%;
}
.header .logo img{
    display: block;
width: 67%;
    object-fit: cover;
}
.header .gnb1{
position: absolute;top: 0;right: 12%;
width: 38%;
display: flex;
height: 90px;
align-items: center;
justify-content: space-between;
color: #fff;
}
.header .gnb_Title{
    height: 100%;
    width: 20%;
    text-align: center;
    line-height: 90px;
   
}
.header .gnb_Title.about{
    width: 15%;
}
.header .gnb_Title.reser_gnb{
    width: 11%;
}

.header .gnb_Title > a{
    color: #fff;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: inline-block;
    /* font-family: 'nanum'; */
    font-family: 'medium';
    font-weight: bold;
}
.header .gnb_Title ul{
     display: none; 
    height: auto;
}
.header .gnb_Title.reser_gnb ul{
    width: 150%;
    transform: translateX(-15px);
}
.header .gnb2 li{
    width: 100%;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: rgba(0,0,0,0.65);
    padding: 3% 0;
}

.header .gnb2 li::before{
    content:'';
    display: block;
    width: 78%;
    margin: 0 auto;
    height: 1px;
    background-color: #A1A1A1;
}
.header .gnb2 li:first-child::before{
    display: none;
}
.header .gnb2 li a{
    color: #A1A1A1;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: 100%;
    font-family: 'medium';
}
.header .gnb2 li a:hover{
    color: #FFBF94;
}
.header_wrap_m{
    display: none;
}

/* 헤더모바일 시작 */
.header_wrap_m{
background-color: rgba(0,0,0,0.68);
width: 100%;
height: 50px;

}
.header_m{
    width: 100%;
    height: 100%;
    position: relative;
}
.nav{
    position: absolute;
    right: 2%;
    top: 20%;
    cursor: pointer;
}
.gnb_m{
    width: 40%;
    background-color: rgba(0,0,0,0.9);
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10101;
    padding: 0 5%;
    overflow-y: auto;
    font-family: 'medium';
}
.gnb_m .close{
    cursor: pointer;
    position: absolute;
    right: 5%; top: 1%;
}
.gnb1_m{
    text-align: center;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
}
.gnb_Title_m{
    cursor: pointer;
    color: #fff;
    font-size: 22px;
    margin-bottom: 16%;
    transition:all 0.7s ease-in;
}
.gnb_Title_m > a {
    color: #fff;
}
.gnb_Title_m .gnb2_m li a{
    font-size: 13px;
    color: #e1e1e1;
    display: inline-block;
    margin-bottom: 10px;
}
.gnb_Title_m .gnb2_m li a:hover{
    color: #FFBF94;
}
.gnb_Title_m .gnb2_m li{
    border-bottom: 1px solid #707070;
}
.gnb_Title_m .gnb2_m li:last-child{
    border: none;
}
.gnb2_m {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out; /* 트랜지션 효과 적용 */
    display: block; /* 기본적으로 보이도록 설정 */
}

.gnb_Title_m.active .gnb2_m {
    max-height: 300px; /* 충분한 높이로 조절 (요구 사항에 맞게 조절) */
}

.gnb_m{
    display: none;
}

.show{
    display: block;
    
}
.hide{
    display: none;
}
@media(max-width:1200px){
    .header .gnb1{
        width: 60%;
    }
    .header .logo{
        left: 5%;
    }
}
@media(max-width:991px){

    .header_wrap{
        display: none;
    }
    .header_wrap_m{
        display: block;
    }
    .header_m .logo_m{
        display: inline-block;
        position: absolute;
        top: 19%;
    }
    .logo_m img{
        width: 50%;
    }
}
@media(max-width:500px){
    .gnb1_m{
        width: 80%;
    }
    .header_m .logo_m img{
        width: 60%;
    }
    .header_m .logo_m{
        top: 5%;
    }
}

@media(max-width:350px){
    .gnb_Title_m{
        font-size: 22px;
    }
}