@charset "utf-8";
/* 더잠실체font */
@font-face {
    font-family: 'AppleSDGothicNeo';
    src: url('../css/font/AppleSDGothicNeo100.ttf') format('truetype');
    font-style: normal;
    font-weight: 100;
}
@font-face {
    font-family: 'AppleSDGothicNeo';
    src: url('../css/font/AppleSDGothicNeo200.ttf') format('truetype');
    font-style: normal;
    font-weight: 200;
}
@font-face {
    font-family: 'AppleSDGothicNeo';
    src: url('../css/font/AppleSDGothicNeo300.ttf') format('truetype');
    font-style: normal;
    font-weight: 300;
}
@font-face {
    font-family: 'AppleSDGothicNeo';
    src: url('../css/font/AppleSDGothicNeo400.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
}
@font-face {
    font-family: 'AppleSDGothicNeo';
    src: url('../css/font/AppleSDGothicNeo500.ttf') format('truetype');
    font-style: normal;
    font-weight: 500;
}
@font-face {
    font-family: 'AppleSDGothicNeo';
    src: url('../css/font/AppleSDGothicNeo600.ttf') format('truetype');
    font-style: normal;
    font-weight: 600;
}
@font-face {
    font-family: 'AppleSDGothicNeo';
    src: url('../css/font/AppleSDGothicNeo700.ttf') format('truetype');
    font-style: normal;
    font-weight: 700;
}
@font-face {
    font-family: 'AppleSDGothicNeo';
    src: url('../css/font/AppleSDGothicNeo800.ttf') format('truetype');
    font-style: normal;
    font-weight: 800;
}
@font-face {
    font-family: 'AppleSDGothicNeo';
    src: url('../css/font/AppleSDGothicNeo900.ttf') format('truetype');
    font-style: normal;
    font-weight: 900;
}


/* good times-font */
@font-face {
    font-family: 'GoodTimes';
    src: url('../css/font/good\ times\ rg.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic&family=Noto+Sans+KR:wght@100..900&display=swap');


/* 초기화부분시작 */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: keep-all;
    font-family: 'AppleSDGothicNeo';
}
ol,ul,li{
    list-style: none;
}
a{
    text-decoration: none;
    color: #000;
}
/* 초기화부분 끝*/

/* 해더 */
.header{
    width: 100%;
    height: 85px;
    position: fixed;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center; 
}
.header::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0px;
    background: #4761F5;
}
.header_logo{
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_logo img:nth-child(2){
    display: none;
}
.header_area{
    width: 1500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    transition: 0.3s;
}
.header_list{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.header_list_item{
    height: 100%;
    position: relative;
}
.header_list_item_a{
    color: #ffffff;
    padding: 0 35px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 500;
    letter-spacing:1px;
}
.header_list.active .header_list_item .header_list_item_a{
    padding: 0 55px;
}
.header_sublist_item{
    width: 100%;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9;
    visibility: hidden;
    opacity: 0;
}
.header_list.active .header_list_item .header_sublist_item{
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}
.header_sublist_item a{
    color: #ffffff;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 15px;
    position: relative;
}
.header_sublist_item a::after{
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    top: 84%;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
}
.header_sublist_item a:hover::after {
    width: 34%;
}
.header_sublist_item a.two_letters:hover::after {
    width: 20%;
}
.sub_header_bar{
    width: fit-content;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: flex-end;
    transition: 0.3s;
    margin-left: 91px;
    position: relative;
    z-index: 999;
}
.sub_header_bar span:nth-child(1){
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background-color: #ffffff;
    transition: 0.3s;
}
.sub_header_bar span:nth-child(2){
    width: 22px;
    height: 2px;
    border-radius: 10px;
    background-color: #ffffff;
    transition: 0.3s;
    visibility: visible;
    opacity: 1;

}
.sub_header_bar span:nth-child(3){
    width: 16px;
    height: 2px;
    border-radius: 10px;
    background-color: #ffffff;
    transition: 0.3s;
}
.sub_header_bar:hover span{
    width: 28px;
}
.sub_header_bar.active span{
    width: 28px;
}
.sub_header_bar.active span:nth-child(2){
    visibility: hidden;
    opacity: 0;
}
.sub_header_bar.active span:nth-child(1){
    transform: rotate(45deg) ;
    top: 50%;
    position: absolute;

}
.sub_header_bar.active span:nth-child(3){
    transform: rotate(-45deg) ;
    top: 50%;
    position: absolute;
}
.header_bk{
    width: 100%;
    height: 230px;
    background-color: #4761F5;
    position: absolute;
    top: 100%;
    visibility: hidden;
    opacity: 0;
}
.header_bk.active{
    visibility: visible;
    opacity: 1;
}
.header_area.active{
    border-bottom: 1px solid #f1f1f165;
}
.sub_headerbox{
    position: fixed;
    z-index: 99;
    width: 100vw;
    height: 100vh;
    background-color: #4A506B;
    top: 0;
    padding-top: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}
.sub_headerbox.active{
    visibility: visible;
    opacity: 1;
}
.sub_headerbk{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -9;
}
.sub_headerbk img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sub_headerbox_area{
    width: 100%;
    height: 100%;
    width: 1500px;
}
.sub_headerbox_area h1{
    font-size: 65px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 130px;
}
.sub_headerboxs{
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.sub_headerbox_lists{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.sub_headerbox_list{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 100px;
}
.sub_headerbox_title{
    font-size: 45px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    transition: 0.3s;
}
.sub_headerbox_list:hover .sub_headerbox_title{
    color: #ffffff;
}
.sub_headerbox_detail{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}
.sub_headerbox_list:hover .sub_headerbox_detail{
    visibility: visible;
    opacity: 1;

}
.sub_headerbox_detail a{
    position: relative;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
}
.sub_headerbox_detail a::after{
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
}
.sub_headerbox_detail a:hover::after {
    width: 100%;
}
.sub_header_infor h2{
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
}
.sub_header_infor h3{
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin: 40px 0 25px;
}
.sub_header_infor p{
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 8px;
}

.header.active{
    background: #ffffff;
}
.header.active::after{
    height: 1px;
    background: #dbdbdb;
}
.header.active.active2 .header_area .header_list .header_list_item .header_list_item_a{
    color: #ffffff;
    font-weight: 600;
}
.header.active .header_area .header_list .header_list_item .header_list_item_a{
    color: #1D1F2A;
    font-weight: 600;
}
.header.active .header_area .sub_header_bar span{
    background-color: #1D1F2A !important;
}
.header.active.active2 .header_area .sub_header_bar span{
    background-color: #ffffff !important;
}
.header.active .header_area .sub_header_bar.active span{
    background-color: #ffffff !important;
}
.header.active.active2 .header_area.active{
    border-bottom: 0px;
}
.header.active .header_bk{
    background-color: #ffffff;
    border-top: 1px solid #f6f6f6;
    border-bottom: 1px solid #dbdbdb;
}
.header.active .header_area .header_list .header_list_item .header_sublist_item a{
    color: #1D1F2A;
    font-weight: 500;
    transition: 0.3s;
}
.header.active .header_area .header_list .header_list_item .header_sublist_item a:hover{
    color: #4761F5;
}
.header.active .header_area .header_list .header_list_item .header_sublist_item a::after{
    background-color: #4761F5;
    height: 2px;
}
.header.active.active2::after{
    height: 0px;
}
.header.active .header_area .header_logo img:nth-child(1){
    display: none;
}
.header.active.active2 .header_area .header_logo img:nth-child(1){
    display: inline-block;
}
.header.active.active2 .header_area .header_logo img:nth-child(2){
    display: none;
}
.header.active .header_area .header_logo img:nth-child(2){
    display: inline-block;
}



/* 푸터 */
footer{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.footer_top{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4A506B;
}
.footer_toptxt{
    width: 1500px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer_toptxt div{
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.2;
}
.footer_toptxt a{
    font-size: 14px;
    font-weight: 200;
    color: #ffffff;
    transition: 0.3s;
}
.footer_toptxt a:hover{
    color: #dbdbdb;
}
.footer_bottom{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}
.footer_bottom_area{
    width: 1500px;
    padding: 40px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.footer_inforitems{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer_inforitem{
    display: flex;
    align-items: center;
    gap:5px;
}
.footer_inforitem a:hover h2,
.footer_inforitem a:hover p{
    color: #777777;
}
.footer_inforbox{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 80px;
}
.footer_inforitem h1{
    color: #232323;
    font-size: 13px;
    font-weight: 600;
    margin-right: 8px;
}
.footer_infortxt{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.notice_maintext p,
.notice_detailtitlesubitem p,
.notice_detailtitlesubitem a,
.movement_detail a, .movement_detail p{
    font-family: "Nanum Gothic", sans-serif;
}
.footer_infortxt h2{
    color: #000000;
    font-size: 12px;
    font-weight: 600;
    transition: 0.3s;
}
.footer_infortxt p{
    color: #888888;
    font-size: 12px;
    font-weight: 500;
    transition: 0.3s;
}
.footer_inforline{
    background-color: #cccccc;
    width: 0.5px;
    height: 12px;
}
.familysite_area{
    position: relative;
}
.familysite{
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 180px;
    cursor: pointer;
    border: 1px solid #1D1F2A;
}
.familysite p{
    font-size: 14px;
}
.familysite_items{
    position: absolute;
    bottom: 100%;
    left: 0;
    display: none;
    flex-direction: column;
    width: 100%;
    border: 1px solid #1D1F2A;
    border-bottom: 0;
    background-color: #ffffff;
    overflow: hidden;
}
.familysite_item{
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 180px;
    cursor: pointer;
    font-size: 14px;
    background-color: #ffffff;
    
}
.familysite_item:hover{
    background-color: #4862F5;
    color: #ffffff;
}
.familysite_list{
    display: none;
}
.familysite_area.active .familysite_items{
    display: flex;
}
.familysite_img{
    transition: 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.familysite_area.active .familysite .familysite_img{
    transform: rotate(-90deg);
}

/* 개인정보처리방침 */
.privacy_area{
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.privacy_area.active{
    display: flex;
}
.privacy_txtboxs{
    width: 1000px;
    height: 360px;
    padding: 30px;
    background-color: #fff;
}
.privacy_txtbox{
    padding: 20px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #ddd;
}
.privacy_txtbox p{
    font-size: 14px;
}
.privacy_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    width: 1000px;
}
.privacy_header h1{
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}
.privacy_close{
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}
.privacy_close span{
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    top: 50%;
    position: absolute;
}
.privacy_close span:nth-child(1) {
    transform: rotate(45deg);
}
.privacy_close span:nth-child(2) {
    transform: rotate(-45deg);
}


/* 모바일 */
@media (max-width:1500px){
    .header_area{
        width: 100%;
        padding: 0 50px;
    }
    .sub_headerbox_area{
        width: 100%;
        padding: 0 50px;
    }
    .footer_toptxt{
        width: 100%;
        padding: 0 50px;
    }
    .footer_bottom_area{
        width: 100%;
        padding: 40px 50px;
    }
}
@media (max-width:1100px){
    .sub_header_infor h2{
        display: none;
    }
    .sub_headerboxs{
        gap: 40px;
        flex-direction: column;
        align-items: center;
    }
    .sub_headerbox_list{
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }
    .sub_headerbox{
        padding-top: 120px;
    }
    .sub_headerbox_area h1{
        display: none;
    }
    .sub_headerbox_detail{
        width: 100%;
    }
    .sub_headerbox_title{
        font-size: 36px;
    }
    .sub_headerbox_lists{
        width: 100%;
    }
    .sub_headerboxs{
        width: 100%;
    }
    .sub_headerbox_area{
        padding: 0;
    }
    .footer_inforbox {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        flex-direction: column;
    }
    .privacy_area{
        width: 100%;
        padding: 0 50px;
    }
    .privacy_header{
        width: 100%;
        align-items: flex-end;
    }
    .privacy_txtboxs{
        width: 100%;
    }
}
@media (max-width:1000px){
    .header_list{
        display: none;
    }
    .footer_bottom_area{
        flex-direction: column;
        gap: 20px;
        padding: 20px 50px;
    }
}

@media (max-width:700px){
    .header_area{
        padding: 0 20px;
    }
    .footer_toptxt{
        padding: 0 20px;
    }
    .footer_bottom_area{
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .privacy_area{
        padding: 0 20px;
    }
}
@media (max-width:650px){
    .footer_inforitem{
        flex-wrap: wrap;
    }
    .footer_inforline{
        display: none;
    }
}
@media (max-width:500px){
    .sub_headerbox_title{
        font-size: 27px;
    }
    .sub_headerbox_detail a{
        font-size: 16px;
    }
    .sub_header_infor{
        padding: 20px;
    }
    .sub_header_infor h3 {
        font-size: 16px;
        font-weight: 300;
        margin: 12px 0;
    }
    .sub_header_infor p{
        font-size: 13px;
    }
    .footer_toptxt a{
        font-size: 12px;
    }
    .footer_toptxt{
        gap: 0;
        justify-content: space-between;
    }
    .footer_toptxt {
        gap: 16px;
        justify-content:space-evenly;
    }
    .footer_infortxt{
        align-items: baseline;
    }
    .privacy_header h1{
        font-size: 18px;
    }
    .privacy_header{
        margin-bottom: 30px;
    }
    .privacy_txtboxs{
        padding: 14px;
    }
    .privacy_txtbox{
        padding: 10px;
    }
    .privacy_txtbox p{
        font-size: 13px;
    }
    .footer_logo img{
        width: 100px;
    }
    .header_logo img{
        width: 100px;
    }
    .header{
        height: 60px;
    }
}
@media (max-width:300px){
    .footer_toptxt div{
        display: none;
    }
    .footer_toptxt{
        justify-content: space-between;
    }
}