.img-box1{
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50px; left: 26%;
    animation-name: clickIcon;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    z-index: -1;
}
.img-box2{
    position: absolute;
    width: 70px;
    height: 70px;
    top: 60px; left: 80%;
    animation-name: clickIcon;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    z-index: -1;
}
#header.on .img-box1,
#header.on .img-box2{display: none;}
.img-box3{
    position: absolute;
    width: 70px;
    height: 70px;
    top: 53px; left: 15%;
    animation-name: clickIcon;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    
}
.img-box4{
    position: absolute;
    width: 70px;
    height: 70px;
    top: 1370px; left: 83%;
    animation-name: clickIcon;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    display: none;
}

@keyframes clickIcon{
    to{
        transform: translateY(0);
    }
    from{
        transform: translateY(20px);
    }
}
.click{
    animation: click 1s infinite;
}
@keyframes click{
    0%{
        color: #818181;
        font-size: 15px;
        font-weight: 300;
    }
    50%{
        color: #000;
        font-weight: 500;
        font-size: 16px;
    }
    100%{
        color: #DE2B3A;
        font-weight: 600;
        font-size: 17px;
    }
}

.sub-img-box2 img{
}

#header{
    border-bottom: 1px solid #ffffff5e;
    width: 100%;
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: black; */
    position: relative;
    z-index: 9999;
}
#mainLogo{z-index: 999;}
#header::before{
    content: '';
    width: 100%;
    height: 0;
    background: #fff;
    position: absolute;
    top: 86px; left: 0; right: 0;
    transition: .3s;
    
}
#header.on,
#header.active{
    background: #fff;
    border-bottom: 1px solid #939393;
}
#header.on .trigger >span,
#header.active .trigger > span{
    background: #000;
    z-index: 999;
}
#header.on #main-menu > ul > li > a,
#header.active #main-menu > ul > li > a{
    color: #000;
}
#header.on #main-menu > ul > li > a:hover,
#header.active #main-menu > ul > li > a:hover{
    color: #DE2B3A;
}
#header.on::before,
#header.on::after{
    height: 300px;
    transition: .3s;
    border-bottom: 1px solid #9393939e;
}
#header.on .nav-text::before{
    height: 300px;
    /* opacity: 1; */
    transition: .3s;
}
#header.on .nav-text{
    visibility: visible;
}
#header.on .menu-content{
    display: flex;
    opacity: 1;
    height: 280px;
}

#header::after{
    content: '';
    position: absolute;
    background: url(../images/sub-nav-img.png) no-repeat;
    width: 461px; height: 0;
    background-size: cover;
    top: 86px; right: 0;
    z-index: 999;
    transition: .3s;
}
.nav-text::before{
    content: '';
    position: absolute;
    width: 1px; height: 0;
    background: #939393;
    top: -20px; right: -45px;
    /* opacity: 0; */
    transition: .3s;
}
.nav-text{
    position: absolute;
    top: 105px; left: 233px;
    /* display: none; */
    visibility: hidden;
}
.nav-text div{
    font-size: 18px;
    font-weight: 600;
}
.nav-text .red{
    color: #DE2B3A;
    margin-bottom: 5px;
}
.nav-text .red + div{
    margin-bottom: 10px;
}
.nav-text p{
    color: #A7A7A7;
    font-size: 14px;
    font-weight: 500;
}
.main-logo{
    margin-left: 233px;
    height: inherit;
}
#mainLogo{padding: 15px 0; width: 100px; height: 53px;}

/* 메인 메뉴 */
 #main-menu{
    height: 85px; z-index: 999;
}
#main-menu > ul{
    display: flex;
    /* gap: 80px; */
    height: inherit;
    /* border: 1px solid blue; */
    justify-content: space-between;
}
#main-menu > ul > li{
    /* border: 1px solid #fff; */
    display: inline-block;
    width: 200px;
}
#main-menu > ul > li > a{
    color: #000;
    height: 100%;
    width: 100%;
    display: block;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    position: relative;
    line-height: 85px;
    transition: .3s;
    /* border: 1px solid red; */
}
#main-menu > ul > li > a:hover{
    color: #DE2B3A;
}
.menu-item a:hover{
    color: #DE2B3A;
    border-bottom: 1px solid #DE2B3A;
}
.menu-content{
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 20px;
    font-size: 15px;
    font-weight: 500;
    justify-content: start;
    align-items: center;
    padding-top: 20px;
    opacity: 0;
    transition: .3s;
    /* border: 1px solid black; */
}
.menu-item a{
    color: #818181;
}

/* 아이콘-버튼 */
.header-icons{
    display: flex;
    align-items: center;
    margin-right: 63px;
    gap: 15px;
}
.header-icons a{color: #fff;font-weight: 300;}
.Login-Sign_up{
    display: flex;
    gap: 33px;
    background: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    position: relative;
}
.Login-Sign_up::before{
    content: '|';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-200%, -50%);
}.Login-Sign_up > li + li a{
    color: #DE2B3A;
}

.Login-Sign_up li a{color: black; font-size: 16px;}

.sub-menu-gobtn li{
    display: flex;
}
.sub-menu-gobtn a{
    background: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    color: black;
    display: flex;
    align-items: center;
    gap: 8px;
    width: inherit;
    font-size: 16px;
}
#subMenu-gobtn img{object-fit: cover;}
#searchOpenBtn{cursor: pointer;}
#searchOpenBtn img{
    background: #fff;
    padding: 7px;
    border-radius: 50%;
    object-fit: cover;
}

/* 검색창 */
.search-bar{
    width: 100%;
    height: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: .3s;
    position: absolute;
    z-index: 999;
}
.search-bar.on{
    /* display: flex; */
    height: 193px;
}
.search-bar.on #searchInput,
.search-bar.on #searchBtn,
.search-bar.on #closeBtn{
    display: block;
}

#searchInput{
    font-family: 'Escoredream';
    width: 533px;
    height: 65px;
    border: 1px solid #878787;
    border-radius: 50px;
    padding-left: 25px;
    font-size: 24px;
    font-weight: 500;
    color: #919191;
    display: none;

}
#searchInput:focus{
    border-color: #CF202E;
    outline: none;
    color: #000;
}
.search-bar button{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    padding: 20px;
    outline: none;
    border: none;
    cursor: pointer;
    display: none;

}
#searchBtn{
    background: #DE2B3A;
}
#closeBtn{
    background: #000;
}

/* 서브메뉴 */
#subMenu{
    background: #fff;
    width: 1400px;
    max-height: 0;
    margin: auto;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    padding-top: 30px;
    visibility: hidden;
    transition: .3s;
    overflow: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.144);
}
#subMenu.on{
    visibility: visible;
    max-height: 1040px;
    transition: .3s;
    z-index: 999;
}

.subMenu-section1{
    display: flex;
    border-bottom: 1px solid #CECECE;
    width: 100%;
    align-items: center;
    padding-bottom: 20px;
    
}
.subMenu-title{
    display: flex;
    align-items: center;
    width: 100%;
    padding-left: 30px;
}
.subMenu-title img{
    margin-right: 7px;
    width: 16px;
    height: 16px;
}
.subMenu-title span{
    font-size: 15px;
    font-weight: 500;
}

/* 닫기버튼 */
#subMenu-closeBtn{
    margin-right: 30px;
    cursor: pointer;
}


.subMenu-section2{
    display: flex;
    border-bottom: 1px solid #CECECE;
    margin: 0 30px 0 30px;
    padding: 20px 0 25px 0;
}
.secrion-title{
    color: #DE2B3A;
    font-size: 20px;
    font-weight: 600;
    width: 288px;
    margin-right: 35px;
}
.subitem{
    margin-right: 20px;
    font-size: 16px;
    color: #000;
    font-weight: 300;
}
.subitem:hover{
    color: #DE2B3A;
    border-bottom: 1px solid #DE2B3A;
}

/* 트리거버튼 */
.trigger{
    /* border: 1px solid #fff; */
    width: 30px; height: 26px;
    position: relative;
    cursor: pointer;
    display: none;
}
.trigger span{
    position: absolute;
    width: 35px;
    height: 3px;
    background: #fff;
}
.trigger span:nth-child(1){top: 0;}
.trigger span:nth-child(2){top: 50%;}
.trigger span:nth-child(3){bottom: 0;}

.trigger.on span:nth-child(1){
    top: 50%;
    transform: rotate(45deg);
}
.trigger.on span:nth-child(2){
    display: none;
}
.trigger.on span:nth-child(3){
    top: 50%;
    transform: rotate(-45deg);
}

/* 모바일 메인 메뉴 */
#trigger-main-menu{
    width: 100%;
    max-height: 100vh;
    background: #fff;
    display: none;
    position: absolute;
}
.trigger-menu-container{
    border-bottom: 1px solid #A8A8A8;
}
#trigger-main-menu > ul{
    height: inherit;
    display: flex;
    flex-direction: column;
}
.trigger-menu-title{
    border-bottom: 1px solid #A8A8A8;
}
.trigger-main-menu-title{
    display: block;
    padding: 20px;
    font-size: 20px;
    font-weight: 500;
    position: relative;
}
.trigger-main-menu-title::before{
    content: '';
    position: absolute;
    background: url(/images/trigger-menu-btn.png) no-repeat;
    width: 19px; height: 19px;
    right: 20px; top: 50%;
    transform: translateY(-50%);
}
.trigger-menu-title.on .trigger-main-menu-title::before{
    background: url(/images/trigger-menu-btn-active.png) no-repeat;
    width: 19px; height: 19px;
}
.trigger-Login-Sign_up{
    margin: 20px auto;
    display: flex;
    gap: 33px;
    background: #fff;
    position: relative;
}
.trigger-Login-Sign_up::before{
    content: '|';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-200%, -50%);
}
.trigger-Login-Sign_up > li + li a{
    color: #DE2B3A;
}

.trigger-Login-Sign_up li a{color: black; font-size: 16px;}

.trigger-menu-content{
    display: none;
    flex-direction: column;
    justify-content: space-around;
    /* gap: 20px; */
}
.trigger-menu-title.on{
    background: #CF202E;
    height: inherit;
    padding-bottom: 20px;
    
}
.trigger-menu-title.on .trigger-main-menu-title{
    color: #fff;
    font-weight: 600;
}
.trigger-menu-title.on .trigger-menu-content{
    display: flex;
    background: #fff;
    margin-left: 20px;
    height: inherit;
    width: 90%;
}
.trigger-menu-item{
    height: 45px;
    display: flex;
    align-items: center;
}
.trigger-menu-content li:not(:last-child){border-bottom: 1px solid #A8A8A8;}
.trigger-menu-item a{
    color: #818181;
    font-size: 16px;
    font-weight: 500;
    padding: 20px;
    /* border: 1px solid ; */
}


/* 푸터 */
#footer{
    width: 100%;
    color: #fff;
    background: #222222;
    position: relative;
    padding: 1px 0;
    
}
#footer::before{
    content: '';
    position: absolute;
    width: 90%;
    height: 1px;
    background: #6D6D6D;
    opacity: .8;
    top: 40%;
    left: 5%;
    transform: translateY(-50%);
}
.footer-inner{
    width: 1300px;
    margin: auto;
    /* overflow: hidden; */
}
.footer-top{
    margin-bottom: 70px;
    position: relative;
    
}
.footer-nav{
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.footer-nav-items{
    display: flex;
    /* justify-content: space-between; */
    gap: 5px;

}
.footer-nav-info{
    display: flex;
    gap: 20px;
}
.footer-nav-info .footer-point a{
    color: #EBC717;
    border-bottom: 1px solid #EBC717;
}
.footer-hover-point:hover{
    border-bottom: 1px solid #fff;
}
.footer-nav-info li a,
.footer-nav-items li a{
    color: #fff;
    font-size: 15px;
    font-weight: 300;
}

.footer-nav-item{
    position: relative;
    transition: .3s;
}
.footer-nav-item::before{
    content: '';
    position: absolute;
    width: 14px;
    height: 8px;
    background: url(../images/footer-btn.png);
    top: 4px;
    right: 15px;
}
.footer-nav-item.on::before{
    background: url(../images/footer-btn-on.png);
}
.footer-nav-item.on > a{
    background: #fff;
    color: #000;
    border-radius: 0 0 10px 10px;
    font-weight: 400;
}
.footer-nav-item > a{
    background: #000;
    padding: 15px 75px;
    border-radius: 10px;
    transition: .3s;
}
.footer-contents{
    visibility: hidden;
    background: #000;
    width: 100%;
    max-height: 0;
    position: absolute;
    border-radius: 10px 10px 0 0;
    bottom: 220%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    padding-top: 15px;
    padding-bottom: 15px;
    transition: .3s;
    overflow: hidden;
    z-index: 9999;
}
.footer-nav-item.on .footer-contents{
    visibility: visible;
    max-height: 480px;
    transition: .8s;
    z-index: 9999;
}

.footer-content a{
    padding: 0 15px;
    /* margin: 0 50px; */
    font-size: 14px;
    font-weight: 300;
    transition: .3s;
}
.footer-content a:hover{
    color: #DE2B3A;
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.footer-info{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.footer-info p{
    color: #8A8A8A;
    font-size: 15px;
    font-weight: 300;
}
.footer-info p:nth-child(2){
    color: #fff;
}
.footer-gray{
    color: #6D6D6D;
}
.footer-red{
    color: #CF202E;
}

.sns{
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

/* 서브페이지 */
.br{display: none;}
#introduction{
    width: 100%;
}
.introduction-title{
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}
.introduction-title h2{
    position: absolute;
    z-index: 999;
    color: #fff;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    font-weight: 500;
    z-index: 0;
}
.introduction-title-img-box{
    width: 100%;
    height: 100%;
    position: relative;
}
.introduction-title-img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.introduction-title-img-box::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    top: 0; left: 0; right: 0;
    opacity: .3;
}

.introduction-inner{
    width: 1300px;
    margin: auto;
}
.introduction-tab-buttons{
    background: #E6E6E6;
    display: inline-block;
    border-radius: 10px;
    margin-bottom: 60px;
}

.info-tab-btn{
    color: #A8A8A8;
    font-size: 36px;
    font-weight: 500;
    padding: 10px 30px;
    cursor: pointer;
    border-radius: 10px;
    background: #E6E6E6;
    border: none;
    position: relative;
}
.info-tab-btn.on{
    color: #fff;
    background: #CF202E;
    font-weight: 600;
}
.info-tab-btn.on::before{
    visibility: visible;
}
.info-tab-btn::before{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CF202E;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    visibility: hidden;
}

.introduction-items{
    display: none;
    margin-bottom: 80px;
}
.introduction-items.on{
    display: block;
}

.greetings-img{
    margin-bottom: 110px;
}
.greetings{
    display: flex;
    margin-bottom: 190px;
    align-items: flex-end;
}
.greetings-content{
    display: flex;
    flex-direction: column;
    gap: 55px;
    flex: 1;
}
.greetings-content h3{
    font-size: 30px;
    font-weight: 600;
    color: #000;
    font-family: 'Nanum Myeongjo', serif;
}
.greetings-content p{
    font-size: 24px;
    font-weight: 300;
    color: #575757;
}

.greetings-director-img{
    width: 371px;
    height: 497px;
    /* border: 1px solid red; */
    position: relative;
}
.greetings-director-img::before{
    content: '한국디자인진흥원장';
    position: absolute;
    font-size: 18px;
    font-weight: 300;
    color: #3A3A3A;
    top: 100%;
}
.greetings-director-img::after{
    content: '윤 상 흠';
    position: absolute;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    top: 108%;
    left: 0;
}
.greetings-director-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 오시는 길 */
.directions-map-wrap{
    width: 100%;
    background: #DE2B3A;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    gap: 40px;
    margin-bottom: 100px;

}
.directions-map{
    background: #fff;
    margin: 2px;
    width: 905px;
    height: 540px;
}
.directions-map-contents{
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 30px;
}
.directions-map-contents h2{
    font-size: 36px;
    font-weight: 600;
    position: relative;
    /* overflow: hidden; */
}
.directions-map-contents h2::before{
    content: 'DESIGN Drive';
    position: absolute;
    color: #fff;
    opacity: .1;
    white-space: nowrap;
    font-size: 60px;
    font-weight: 600;
    top: -45px;
    left: -30px;
}
.directions-map-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.directions-map-content p{
    font-size: 14px;
    font-weight: 500;
}
.map-item{
    display: flex;
    gap: 5px;
    align-items: center;
}
.map-item img{
    background: #EB6C76;
    border-radius: 50%;
    padding: 5px 7px;
    object-fit: cover;
}
.map-item p{
    font-size: 15px;
    font-weight: 600;
}

.mapDirections-wrap{
    align-self: center;
    margin-top: 100px;
    z-index: 999;
}
#mapDirections{
    background: #fff;
    border-radius: 5px; 
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 999;
    color: #DE2B3A;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    padding: 15px 100px;
}
#mapDirections::before{
    content: '';
    position: absolute;
    width: 231px;
    height: 150px;
    background: url(../images/Directions-bg.png) no-repeat;
    right: -55px;
    top: -65px;
    z-index: 0;
}

.bus-wrap{
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.bus{
    display: flex;
    flex: 1;
    gap: 30px;
    padding-top: 40px;
    padding-left: 10px;
    border-top: 1px solid #a8a8a886;
    line-height: 35px;
    border-bottom: 1px solid #a8a8a886;
}
.bus img{
    width: 33px;
    height: 37px;
}
.bus h3{
    font-size: 24px;
    font-weight: 600;
}

.bus-contents{
    display: flex;
    flex-direction: column;
    flex: 4;
    border-bottom: 1px solid #a8a8a886;
}
.bus-content{
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #a8a8a886;
}
.bus-content-title{
    display: inline-block;
    width: 185px;
    text-align: center;
    background: #DE2B3A;
    border-radius: 5px;
    margin-bottom: 20px;
}
.bus-content-title h4{
    font-size: 20px;
    font-weight: 600;
    padding: 10px 0;
    color: #fff;
}

.bus-content-items{}
.bus-content-item{
    display: flex;
    gap: 30px;
}
.bus-content-item-text{
    width: 310px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;  
}
.bus-content-item-text h5{
    font-size: 16px;
    font-weight: 600;
}
.bus-content-item-text p{
    font-size: 15px;
    font-weight: 300;
    color: #575757;
}
.bus-content-item-text-wrap{
    width: 510px;
}
.passenger-car-wrap{
    display: flex;
    gap: 30px;
}
.passenger-car{
    padding-top: 40px;
    padding-left: 10px;
    display: flex;
    flex: 1;
    gap: 30px;
}
.passenger-car img{
    width: 43px;
    height: 37px;
}
.passenger-car h3{
    font-size: 24px;
    font-weight: 600;
}

.passenger-car-contents{
    flex: 4;
}
.Parking-info-content{
    padding-top: 0 !important;
}
.Parking-info-content-title{
    display: inline-block;
    width: 185px;
    text-align: center;
    background: #DE2B3A;
    border-radius: 5px;
    margin-bottom: 20px;
}
.Parking-info-content-title h4{
    font-size: 20px;
    font-weight: 600;
    padding: 10px 0;
    color: #fff;
}
.passenger-car-content{
    padding: 30px 0;
}
.passenger-car-content-title{}
.passenger-car-content-title h4{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.passenger-car-content-item{}
.passenger-car-content-item p{
    font-size: 15px;
    font-weight: 300;
    color: #575757;
}

.Parking-info-title{
    display: flex;
    background: #DCDCDC;
    justify-content: space-around;
}
.Parking-info-title h5{
    padding: 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.Parking-info-text{
    display: flex;
    font-size: 16px;
    font-weight: 300;
    color: #575757;
    justify-content: space-around;
    padding: 10px 0;
    border-bottom: 1px solid #a8a8a886;
}
.Parking-info-sub-text{
    text-align: right;
    padding-top: 20px;
}

/* 회원서비스 */
#member-service{
    width: 100%;
}
.member-service-banner{
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}
.member-service-banner h2{
    position: absolute;
    z-index: 999;
    color: #fff;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    font-weight: 500;
    z-index: 0;
}
.member-service-banner-img-box{
    width: 100%;
    height: 350px;
    position: relative;
}
.member-service-banner-img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.member-service-banner-img-box::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    top: 0; left: 0; right: 0;
    opacity: .3;
}

.member-service-inner{
    width: 1300px;
    margin: auto;
}
.member-service-header{
    display: flex;
    justify-content: left;
    gap: 70px;
    margin-bottom: 60px;
}
.member-service-title{
    display: none;
}
.member-service-title.on{
    display: inline-block;
    width: auto;
    font-size: 64px;
    font-weight: 600;
}

.member-service-tab-buttons{
    display: flex;
    background: #F2F2F2;
    width: 560px;
    height: 60px;
    justify-content: space-between;
    border-radius: 30px;
    align-items: center;
    

}
.member-service-tab-btn{
    font-size: 20px;
    font-weight: 600;
    border: none;
    padding: 15px 35px;
    background: none;
    cursor: pointer;
}
.member-service-tab-btn.on{
    border-radius: 30px;
    background: #DE2B3A;
    color: #fff;
}

.member-service-wrap{
    width: 1300px;
    margin: auto;
    background: #F2F2F2;
    border-radius: 15px;
    box-shadow: 0 0 5px #0000004b;
    height: 750px;
    margin-bottom: 150px;
}
.member-service-content{
    display: none;
}
.member-service-content.on{
    display: block;
}
.login-content-top{
    text-align: center;
    padding-top: 60px;
    margin-bottom: 100px;
}
.login-content-icon{
    display: inline-block;
    border-radius: 50%;
    padding: 25px 30px;
    background: #DE2B3A;
    margin-bottom: 25px;
}
.login-content-tetx{}
.login-content-tetx h4{
    font-size: 30px;
    font-weight: 600;
    color: #DE2B3A;
}
.login-content-bottom{
    display: flex;
    justify-content: space-between;
    position: relative;
}
.login-content-bottom::before{
    content: '';
    position: absolute;
    width: 1px;
    height: 240px;
    background: #A8A8A8;
    left: 50%;
}
.login-content-inputs{
    margin-left: 100px;
}
.login-content-input{}
.login-content-input input{
    width: 470px;
    height: 50px;
    border-radius: 30px;
    border: .5px solid #B7B7B7;
    padding-left: 20px;
    font-size: 14px;
    font-weight: 300;
    color: #575757;
    font-family: 'Escoredream';
    
}
.login-content-input:nth-child(1){
    margin-bottom: 30px;
}
.login-content-input:nth-child(2){
    margin-bottom: 20px;
}
.id-tetx{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.pw-tetx{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.login-sub-contents{
    justify-self: right;
    position: relative;
}
.login-sub-contents::before{
    content: '';
    position: absolute;
    width: 1px;
    height: 10px;
    background: #828282;
    top: 32%; left: 32%;
}
.login-sub-content{
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 300;
    color: #575757;
    cursor: pointer;
}
.login-content-btns{
    display: flex;
    flex-direction: column;
}
.login-content-btn{
    width: 400px;
    margin-right: 165px;
    height: 50px;
    border-radius: 30px;
    border: none;
    margin-top: 30px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
} 
.login-btn{
    background: #000;
    color: #fff;
}
.naver-btn{
    display: flex;
    background: #5FC53A;
    color: #fff;
    align-items: center;
    gap: 80px;
}
.naver-btn img{
    width: 18px;
    height: 17px;
    margin-left: 20px;
}
.kakao-btn{
    background: #FAE64D;
    color: #3F1B1B;
    display: flex;
    align-items: center;
    gap: 80px;
}
.kakao-btn img{
    width: 17px;
    height: 16px;
    margin-left: 20px;
}

/* 아이디/비밀번호 찾기 */
.find-id-pw{position: relative;}
.find-id-pw-wrap{
    display: none;
}
.member-service-content.on .find-id-pw-wrap{
    display: flex;
    padding-top: 100px;
    justify-content: space-between;
    text-align: center;
}
.find-id{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin-left: 37px;
}
.find-id::after{
    content: '';
    position: absolute;
    width: 1px;
    height: 433px;
    background: #A8A8A8;
    right: -80px;
    top: 10%;
}
.find-id-icon{
    background: #DE2B3A;
    border-radius: 50%;
    display: inline-block;
    width: 51.5px;
    height: 39px;
    padding: 30px 25px;
    align-self: center;
    margin-bottom: 45px;
}
.find-id-icon img{
    
}
.find-id-title{
    margin-bottom: 60px;
    position: relative;
}
.find-id-title::before{
    content: '';
    position: absolute;
    width: 400px;
    height: 1px;
    background: #575757;
    top: 200%;
    left: 80px;
}
.find-id-title h4{
    font-size: 28px;
    font-weight: 600;
    color: #DE2B3A;
}
.find-id-text{
    margin-bottom: 40px;
    line-height: 25px;
}
.find-id-text h5{
    font-size: 16px;
    font-weight: 600;
}
.find-id-btn{
    margin-bottom: 40px;
}
.find-id-btn button{
    width: 400px;
    height: 50px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.find-id-pw-btns{
    display: none;
}
.find-id-sub-text{
   
}
.find-id-sub-text p{
    margin-bottom: 10px;
    font-weight: 300;
    font-size: 14px;
    color: #8A8A8A;
}
.find-pw{
    margin-right: 98px;
}
.find-pw-icon{
    width: 30px;
    height: 17px;
    background: #DE2B3A;
    padding: 40px 35px;
    border-radius: 50%;
    display: inline-block;
    align-self: center;
    margin-bottom: 45px;
}
.find-pw-icon img{}
.find-pw-title{
    margin-bottom: 60px;
    position: relative;
}
.find-pw-title::before{
    content: '';
    position: absolute;
    width: 400px;
    height: 1px;
    background: #575757;
    top: 200%;
    left: 10px;
}
.find-pw-title h4{
    font-size: 28px;
    font-weight: 600;
    color: #DE2B3A;
}
.find-pw-inputs{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}
.find-pw-inputs input{
    width: 400;
    height: 50px;
    border-radius: 30px;
    border: .5px solid #B7B7B7;
    padding-left: 22px;
    font-size: 14px;
    font-weight: 300;
    color: #575757;
    font-family: 'Escoredream';
}
.find-pw-btn{
    width: 100%;
    margin-bottom: 20px;
}
.find-pw-btn button{
    width: 100%;
    height: 50px;
    border-radius: 30px;
    background: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.find-pw-sub-text{}
.find-pw-sub-text p{
    margin-bottom: 10px;
    font-weight: 300;
    font-size: 14px;
    color: #8A8A8A;
}

/* 회원가입 */
.membership-header{
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    align-items: center;
    margin-bottom: 55px;
    position: relative;
}
.membership-header::before{
    content: '';
    position: absolute;
    width: 1120px;
    height: 1px;
    background: #A8A8A8;
    left: 7%;
    top: 120%;
}
.membership-title{
    margin-left: 90px;
}
.membership-title h4{
    font-size: 36px;
    font-weight: 600;
    color: #DE2B3A;
}
.membership-icons{
    display: flex;
    margin-right: 90px;
    justify-content: center;
    gap: 12px;
}
.membership-icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.membership-icon.on .membership-icon-img{
    border: none;
    background: #DE2B3A;
}
.membership-icon.on .membership-icon-img img{
    filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(182deg) brightness(103%) contrast(101%);
}
.membership-icon-img{
    width: 19px;
    height: 19px;
    padding: 15px;
    border: 1px solid #A8A8A8;
    border-radius: 50%;
    text-align: center;
}
.membership-icon img{}
.membership-icon p{}

.membership-bottom{
    text-align: center;
}
.membership-bottom-icon{
    margin-bottom: 10px;
}
.membership-bottom-icon img{}
.membership-bottom-title{
    margin-bottom: 10px;
}
.membership-bottom-title h5{
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
}
.membership-bottom-btn{
    margin-bottom: 25px;
}
.membership-bottom-btn button{
    width: 400px;
    height: 50px;
    background: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
}
.membership-bottom-sub-title{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}
.membership-bottom-sub-title p{
    font-size: 14px;
    font-weight: 300;
    color: #8A8A8A;
}
.membership-bottom-info{
    display: inline-block;
    text-align: left;
    border-radius: 20px;
    padding: 30px;
    background: #fff;
    width: 630px;
    line-height: 22px;
    margin-bottom: 25px;
}
.membership-bottom-info p{
    font-size: 14px;
    font-weight: 500;
    color: #6D6D6D;
}
.membership-bottom-btns{
    display: flex;
    justify-content: center;
    gap: 15px;
}
.membership-bottom-btns button{
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    width: 343px;
    height: 50px;
    gap: 50px;
    border: none;
}

/* 사업부소식 */
#business-news{
    width: 100%;
}
.business-news-title{
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}
.business-news-title h2{
    position: absolute;
    z-index: 999;
    color: #fff;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    font-weight: 500;
    z-index: 0;
}
.business-news-title-img-box{
    width: 100%;
    height: 100%;
    position: relative;
}
.business-news-title-img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.business-news-title-img-box::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    top: 0; left: 0; right: 0;
    opacity: .3;
}

tbody > tr > td:nth-child(4){
    background: url(../images/Business-news-download-icon.png) no-repeat;
    width: 22px;
    height: 29px;
    background-position: center;
}
.business-wrap{
    width: 1300px;
    margin: auto;
    display: flex;
    gap: 60px;
    justify-content: center;
}
.business-index{}
.business-index-title{
    margin-top: 18px;
}
.business-index-title h3{
    font-size: 24px;
    font-weight: 600;
    margin-right: 220px;
    padding-bottom: 30px;
    border-bottom: 2px solid black;
    width: 100%;
}

.business-index-sub-title h4{
    font-size: 17px;
    font-weight: 300;
    color: #3A3A3A;
    padding: 15px 10px;
    border-bottom: 1px solid #A8A8A8;
    cursor: pointer;
    position: relative;
}
.business-index-sub-title h4:hover{
    color: #CF202E;
}
.business-index-sub-title h4:nth-child(2){
    color: #CF202E;
    font-weight: 500;
}
#my-table{
    margin-bottom: 30px;
}
.my-table-wrap{
    margin-top: 0px;
}
.my-table-header{
    display: flex;
    border-bottom: 2px solid black;
    padding-bottom: 20px;
    align-items: center;
}
.my-table-total{
    flex: 1;
}
.my-table-total h5{
    font-size: 16px;
    font-weight: 300;
    color: #575757;
}
.my-table-total h5 span{
    font-weight: 600;
    color: #000;
}
.my-table-accordion{
    position: relative;
    cursor: pointer;
}
.hidden{
    border: 1px solid #575757;
    position: absolute;
    width: 96%;
    display: flex;
    flex-direction: column;
    background: #fff;
    visibility: hidden;
}
.hidden.on{visibility: visible;}
.hidden li{
    padding: 10px 0 10px 10px;
    cursor: pointer;
}
.hidden li:hover{
    color: #fff;
    background: #DE2B3A;
}
.my-table-accordion-content{
    display: flex;
    align-items: center;
    gap: 60px;
    border: 1px solid #A8A8A8;
    margin-right: 5px;
    padding: 5.5px 0 5.5px 10px;
}

.my-table-accordion-content img{
    width: 8px;
    height: 7px;
    object-fit: cover;
    padding: 15px 10px 15px 0;
}
.my-table-search{
    display: flex;
}
.my-table-search-input{
    padding: 15px 0 15px 10px;
    border: 1px solid #A8A8A8;
}
#my-table-search-btn{
    width: 60px;
    height: 50px;
    border: none;
    background: #DE2B3A;
    cursor: pointer;
}
.my-table-search-btn img{
    width: 17px;
    height: 17px;
    object-fit: cover;
}

#my-table{
    width: 100%;
    table-layout: fixed; /* 테이블 너비 고정 */
}
colgroup col{
    
}
colgroup .col1{
    width: 10%;
}
colgroup .col2{
    width: 60%;
    
}
colgroup .col3{
    width: 10%;
}
colgroup .col4{
    width: 10%;
}
colgroup .col5{
    width: 10%;
}

thead > tr > th{
    padding: 15px 0;
    border-bottom: 1px solid #A8A8A8;
}
tbody > tr > td{
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #A8A8A8;
    line-height: 30px;
}
tbody > tr > td:nth-child(1){
    width: 10%;
    font-size: 15px;
    font-weight: 300;
    color: #575757;
}
tbody > tr > td:nth-child(2){
    text-align: left;
    white-space: nowrap; /* 줄바꿈 방지 */
    overflow: hidden; /* 넘치는 부분 숨기기 */
    text-overflow: ellipsis; /* 말줄임표 표시 */
    font-size: 16px;
    font-weight: 300;
}
tbody > tr > td:nth-child(2):hover a{
    border-bottom: 1px solid black;
}
tbody > tr > td:nth-child(3){
    width: 10%;
    font-size: 15px;
    font-weight: 300;
    color: #575757;
}
tbody > tr > td:nth-child(4){
    width: 10%;
    cursor: pointer;
}
tbody > tr > td:nth-child(5){
    width: 10%;
    font-size: 15px;
    font-weight: 300;
    color: #575757;
}

.pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 60px;
}
#numbers{
    display: flex;
    font-size: 16px;
    font-weight: 300;
}
#numbers > li{
    display: flex;
    align-items: center;
}
#numbers > li > a{
    margin: 0 10px;
}
#numbers > li > a.active{
    background: #3A3A3A;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    padding: 12px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    text-indent: -2px;
}
.business-news-left-btn,
.business-news-left-btn-max,
.business-news-right-btn,
.business-news-right-btn-max{
    cursor: pointer;
}

