@charset "utf-8";


/* 여성센터 컬러 */
:root {
    --main1: #CCA49F;
    --main2: #5F5151;
    --ivory: #EFECE7;
    --black: #353535;
}



/* 공통 header */
header{
    width: 100%;
    height: 8.4rem;
    min-height: 64px;
    background: #fff;
    box-shadow: 0 1px 13px rgba(0, 0, 0, 0.09);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transition: background-color .3s ease-in-out, transform .6s cubic-bezier(0.215, 0.610, 0.355, 1);
    animation: header_down 1.2s;
}
@keyframes header_down{
    0%{transform: translateY(-100%);}
    100%{transform: translateY(0);}
}
header .wrap{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .l_box{
    display: flex;
    align-items: center;
    height: 100%;
}
header .l_box h1{
    height: 3rem;
    margin-right: 2rem;
}
header .l_box h1 a{
    height: 100%;
    display: block;
}
header .l_box h1 a img{
    height: 100%;
    object-fit: contain;
    transition: opacity .3s;
}
header .l_box h1:hover a img{
    opacity: .75;
}
header .l_box .switch_center{
    display: flex;
    background: #EBEBEB;
    border-radius: 20px;
    transition: background-color .3s;
}
header .l_box .switch_center a{
    font-weight: 500;
    font-size: 14.5px;
    letter-spacing: 0.01em;
    text-align: center;
    padding: .8rem 1.8rem;
    color: #7D7D7D;
    border-radius: 20px;
    transition: color .3s;
}
header .l_box .switch_center a:last-of-type{
    margin-left: -8px;
}
header .l_box .switch_center a.active{
    font-weight: 600;
    background: var(--main1);
    color: #fff;
    z-index: 2;
}
header .r_box{
    height: 100%;
    display: flex;
    align-items: center;
}
header .r_box>ul{
    height: 100%;
    padding-top: 31px;
    align-self: flex-start;
    display: flex;
    gap: 4.6rem;
    margin-right: 6rem;
    text-wrap: nowrap;
} 
header .r_box>ul>li{
    width: 7.2rem;
    height: 100%;
    position: relative;
}
header .r_box>ul>li:hover>a{
    color: var(--main1);
}
header .r_box>ul>li::after{
    content: '';
    width: 0;
    height: 2.5px;
    background: var(--main1);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: .3s;
}
header .r_box>ul>li:hover::after{
    width: 4.8rem;
}
header .r_box>ul>li>a{
    height: 100%;
    font-weight: 600;
    font-size: clamp(15px, 1.8rem, 1.8rem);
    letter-spacing: -0.01em;
    color: var(--black);
    text-align: center;
    display: block;
    transition: .4s;
}
header .r_box>ul>li>ul{
    padding: 12px 0;
    position: absolute;
    left: 50%;
    top: 53px;
    transform: translateX(-50%);
    background: #F7F7F7;
    width: 200%;
    border-radius: 0 0 .8rem .8rem;
    display: none;
    box-shadow: 0 0 3px rgba(0, 0, 0, .12);
}
header .r_box>ul>li>ul>li{
    width: 100%;
    position: relative;
}
header .r_box>ul>li>ul>li>a{
    width: 100%;
    font-weight: 400;
    font-size: clamp(14px, 1.6rem, 16px);
    letter-spacing: -0.01em;
    color: #7D7D7D;
    text-align: center;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color .2s;
}
header .r_box>ul>li>ul>li>a:hover{
    font-weight: 500;
    color: var(--black);
}
header .r_box>ul>li>ul>li>a img{
    width: 1.3rem;
    object-fit: contain;
    margin-left: .6rem;
}
header .r_box>ul>li>ul>li>ul{
    min-width: 90%;
    height: auto;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(100%);
    background: var(--main1);
    border-radius: 0 .8rem .8rem .8rem;
    padding: 10px 14px;
    transition: .3s ease-in-out;
    opacity: 0;
}
header .r_box>ul>li>ul>li:hover>ul{
    opacity: 1;
}
header .r_box>ul>li>ul>li>ul li{
    width: 100%;
}
header .r_box>ul>li>ul>li>ul li a{
    font-weight: 300;
    font-size: clamp(14px, 1.6rem, 1.6rem);
    letter-spacing: -0.02em;
    padding: 4px 0;
    width: 100%;
    display: block;
    color: #fff;
    transition: opacity .2s;
    opacity: .65;
}
header .r_box>ul>li>ul>li>ul li a:hover{
    opacity: 1;
    font-weight: 400;
}
header .r_box .login{
    height: 2.4rem;
    margin-right: 3rem;
}
header .r_box .login a{
    height: 100%;
}
header .r_box .login a img{
    height: 100%;
    object-fit: contain;
    transition: .3s;
}
header .r_box .login a:hover img{
    opacity: .75;
}
header .r_box button.call_all_menu{
    height: 2.2rem;
}
header .r_box button.call_all_menu img{
    height: 100%;
    object-fit: contain;
    transition: .3s;
}
header .r_box button.call_all_menu:hover img{
    opacity: .75;
}


/* 헤더 투명 ver */
header.ver2{
    background: none;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
header.ver2 .l_box h1 a img{
    filter: brightness(10);
}
header.ver2 .l_box .switch_center{
    background: #ebebeb2a;
}
header.ver2 .l_box .switch_center a{
    color: #fff;
}
header.ver2 .l_box .switch_center a.active{
    background: var(--black);
}
header.ver2 .r_box>ul>li:hover>a{
    color: #ddd;
}
header.ver2 .r_box>ul>li>a{
    color: #fff;
}
header.ver2 .r_box .login a img{
    filter: brightness(10);
}
header.ver2 .r_box button.call_all_menu img{
    filter: brightness(10);
}






/* all_menu */
.all_menu{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    background: #3f3a34;
    padding: 0;
    opacity: 0;
    transition: .3s ease-out;
    transform: translateY(-100%);
}
.all_menu.on{
    transform: translateY(0);
    opacity: 1;
}
.all_menu .wrap{
    margin-top: -2.5%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.all_menu .t_box{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: .5px solid rgba(255, 255, 255, .25);
    padding: 0 2.4% 1.2rem;
}
.all_menu .t_box h2{
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-size: 7.2rem;
    line-height: 1.4;
    color: #fff;
}
.all_menu .t_box .top_bar{
    margin-top: 2.6rem;
    margin-left: 2.4rem;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.all_menu .t_box .top_bar .switch_center{
    display: flex;
    border-radius: 20px;
    border: .25px solid rgba(255, 255, 255, .55);
    justify-self: flex-start;
    margin-right: auto;
}
.all_menu .t_box .top_bar .switch_center a{
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.01em;
    text-align: center;
    padding: .8rem 1.8rem;
    color: #ccc;
    border-radius: 20px;
}
.all_menu .t_box .top_bar .switch_center a:last-of-type{
    margin-left: -8px;
}
.all_menu .t_box .top_bar .switch_center a.active{
    font-weight: 600;
    background: rgba(255, 255, 255, .75);
    color: var(--black);
    z-index: 2;
}
.all_menu .t_box .top_bar .login{
    height: 3.4rem;
    margin-right: 3.2rem;
}
.all_menu .t_box .top_bar .login a{
    height: 100%;
}
.all_menu .t_box .top_bar .login a img{
    filter: brightness(2.2);
    height: 100%;
    object-fit: contain;
    transition: .4s;
}
.all_menu .t_box .top_bar .login:hover a img{
    filter: brightness(3);
}
.all_menu .t_box .top_bar .close_all_menu{
    height: 4.4rem;
    aspect-ratio: 1 / 1;
    border: .5px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.all_menu .t_box .top_bar .close_all_menu img{
    height: 40%;
    object-fit: contain;
    transition: .4s;
    opacity: .8;
}
.all_menu .t_box .top_bar .close_all_menu:hover img{
    transform: rotate(180deg);
}


.all_menu .main_menu{
    margin-top: 4rem;
    width: 95%;
    display: flex;
    justify-content: space-between;
    gap: 2.4rem;
    letter-spacing: -0.02em;
}
.all_menu .main_menu>li{
    flex: 1;
}
.all_menu .main_menu li a{
    color: #bbb;
    transition: color .3s;
}
.all_menu .main_menu>li>a{
    position: relative;
    margin-bottom: 3.6rem;
    font-weight: 500;
    font-size: 2.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.all_menu .main_menu>li>a::before{
    content: '';
    width: 0;
    height: 16px;
    background: #c0ab8d44;
    position: absolute;
    left: -6px;
    bottom: -.2rem;
    transition: .4s;
    z-index: -1;
    border-radius: 1px;
}
.all_menu .main_menu>li:hover>a::before{
    width: 10.4rem;
}
.all_menu .main_menu>li:hover>a{
    color: #fff;
}
.all_menu .main_menu>li>a .img{
    width: 2.2rem;
    height: 1.4rem;
    background: url(/img/common/icon_down.svg) no-repeat;
    background-size: contain;
    display: none;
    filter: brightness(.7);
}
.all_menu .main_menu>li.on>a .img{
    background: url(/img/common/icon_up_menu.svg) no-repeat;
    background-size: contain;
}
.all_menu .main_menu>li>ul>li{
    margin-top: 1.6rem;
    width: 100%;
}
.all_menu .main_menu>li>ul>li:first-child{
    margin-top: 0;
}
.all_menu .main_menu>li>ul>li>a{
    width: 100%;
    font-weight: 300;
    font-size: 2rem;
}
.all_menu .main_menu>li>ul>li:hover>a{
    font-weight: 400;
    color: #fff;
}
.all_menu .main_menu>li>ul>li>ul{
    margin: 1.2rem 0 .3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    padding-left: .6em;
}
.all_menu .main_menu>li>ul>li>ul>li{
    width: 100%;
}
.all_menu .main_menu>li>ul>li>ul>li>a{
    width: 100%;
    font-weight: 200;
    font-size: 1.8rem;
}
.all_menu .main_menu>li>ul>li>ul>li>a:hover{
    font-weight: 300;
    color: #fff;
}



/* 서브 인트로 */
.intro nav ul li.now a {
    color: #e0beba;
}



@media (max-width: 1440px) {
    header .r_box>ul{
        display: none;
    }
}
@media (max-width: 1024px) {
    .all_menu .wrap{
        margin-top: 4rem;
        justify-content: flex-start;
    }
    .all_menu .t_box{
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 8rem;
        padding: 0 0 1.4rem;
    }
    .all_menu .t_box h2{
        padding-left: 1%;
    }
    .all_menu .t_box .top_bar{
        margin: 0;
        width: 100%;
    }
    .all_menu .main_menu{
        width: 96%;
    }
}

@media (max-width: 768px) {
    .all_menu .t_box{
        border-bottom: 0;
    }
    .all_menu .t_box h2{
        padding-left: 0;
    }
    .all_menu .main_menu{
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
    }
    .all_menu .main_menu>li>a{
        padding: 2rem 2%;
        border-bottom: .5px solid rgba(255, 255, 255, .25);
        margin-bottom: 0;
        font-size: 20px;
    }
    .all_menu .main_menu>li>a .img{
        display: block;
    }
    .all_menu .main_menu>li>a::before{
        display: none;
    }
    .all_menu .main_menu>li>ul{
        display: none;
        padding: 2.4rem 2%;
    }
    .all_menu .main_menu>li>ul>li>a{
        font-size: 17px;
    }
    .all_menu .main_menu>li>ul>li>ul>li>a{
        font-size: 17px;
    }
    header .l_box .switch_center{
        display: none;
    }
    header .r_box .login{
        display: none;
    }
    header .r_box button.call_all_menu{
        height: 20px;
    }
}
@media (max-width: 480px) {
    .all_menu .t_box .top_bar .switch_center a{
        font-size: 12px;
        letter-spacing: -0.01em;
        padding: 1rem 1.8rem;
    }
    .all_menu .t_box .top_bar .login{
        height: 3.4rem;
        margin-right: 2.4rem;
    }
    .all_menu .t_box .top_bar .close_all_menu{
        height: 4.8rem;
    }
    .all_menu .main_menu>li>a{
        font-size: 17px;
    }
    .all_menu .main_menu>li>ul>li>a{
        font-size: 17px;
    }
    .all_menu .main_menu>li>ul>li>ul>li>a{
        font-size: 16px;
    }
}