/****************************** main */

main{
    width: 100%;
    height: 940px;
}

/* main슬라이드 */

.main_slide{
    width: 100%;
    height: 100%;
    position: relative;
}

.main_filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111111;
    -webkit-box-shadow: inset 0px 10px 25px -5px #111111; 
    box-shadow: inset 0px 10px 25px -5px #111111;
    opacity: 0.2;
    z-index: 1;
}

.main_slide .swiper-wrapper .swiper-slide{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    text-align: center;
}

.main_slide .swiper-wrapper .swiper-slide p{
    margin-bottom: 60px;
    z-index: 99;
}

.main_slide .swiper-wrapper .swiper-slide:nth-child(1){
    background-image: url(/img/idx/idx1_main1.jpg);
}
.main_slide .swiper-wrapper .swiper-slide:nth-child(2){
    background-image: url(/img/idx/idx1_main2.jpg);
}
.main_slide .swiper-wrapper .swiper-slide:nth-child(3){
    background-image: url(/img/idx/idx1_main3.jpg);
}

.main_txt{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.main_txt p{
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

/* main페이저 */

.main_page_wrap{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
}

.main_page{
    position: static !important;
    bottom: 0;
    left: 50%;
    transform: translateY(50%);
}

.main_page_btn{
    position: relative;
    width: 24px;
    height: 24px;
}

.main_page_btn > div{
    position: absolute;
}

.main_stop{
    width: 24px;
    height: 24px;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.main_stop span{
    display: block;
    width: 3px;
    height: 8px;
    background-color: #fff;
}

.main_stop span:nth-child(1){
    margin-right: 2px;
}

.main_play{
    width: 24px;
    height: 24px;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.main_play.main_active,
.main_stop.main_active{
    display: flex;
}

.main_play span{
    display: block;
    width: 0px;
    height: 0px;
    border-top: 5px solid transparent;
    border-left: 8px solid #fff;
    border-bottom: 5px solid transparent;
}

.main_page span{
    cursor: pointer;
    background-color: #cccccc !important;
    margin-right: 24px;
}
.main_page .swiper-pagination-bullet-active{
    background-color: #fff !important;
}

/* main페이저 */

/* 메인 슬라이드 */

/****************************** main */

/****************************** sec1 */

#sec1{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    transition: 0.4s;
}

#sec1 > div{
    position: relative;
    height: 940px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#sec1 > div:nth-child(1){
    background-image: url(/img/idx/idx_sec1_1.jpg);
}
#sec1 > div:nth-child(2){
    background-image: url(/img/idx/idx_sec1_2.jpg);
}
#sec1 > div:nth-child(3){
    background-image: url(/img/idx/idx_sec1_3.jpg);
}

.sec1_contents{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: #fff;
    transition: 0.4s;
}

.sec1_title{
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.4s;
}

.sec1_title p:nth-child(1){
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

.sec1_title p:nth-child(2){
    font-size: 20px;
    font-weight: 700;
}

.sec1_active{
    display: none;
    opacity: 0;
    flex-direction: column;
    align-items: center;
    transition: 0.4s;
}

.sec1_active p{
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 100px;
    transition: 0.4s;
}

.sec1_active a{
    width: 58px;
    height: 58px;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    transition: 0.4s;
}

.sec1_filter1{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    transition: 0.4s;
}

.sec1_filter2{
    width: 100%;
    height: 0%;
    background-color: rgba(18, 42, 136, 0.6);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    transition: 0.4s;
}

#sec1 > div:hover .sec1_filter2{
   height: 100%;
}

#sec1 > div:hover .sec1_title{
    margin-bottom: 30px;
}

#sec1 > div:hover .sec1_contents{
    top: 30%;
}

#sec1 > div:hover .sec1_active{
    display: flex;
    animation: sec1_fade 0.4s forwards;
    animation-delay: 0.4s;
}

.sec1_active a:hover{
    background-color: rgba(0, 0, 0, 1);
}

@keyframes sec1_fade{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

/****************************** sec1 */

/****************************** sec2 */

#sec2{
    display: flex;
    height: 800px;
    padding: 100px 220px;
}

.sec2_title{
    width: 50%;
    height: 100%;
    background-image: url(/img/idx/idx_sec2_back.jpg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    position: relative;
}

.sec2_title p{
    font-size: 40px;
    font-weight: 900;
    top: 50px;
    left: 250px;
    text-decoration: underline;
    text-underline-position: under;
}

.sec2_contents{
    width: 50%;
    height: 100%;
    font-size: 30px;
    font-weight: 700;
}

.sec2_wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-left: 100px;
}

.hidden_title{
    display: none;
    font-size: 40px;
    font-weight: 900;
    text-decoration: underline;
    text-underline-position: under;
}

.sec2_wrap p{
    margin-bottom: 100px;
}

.sec2_more{
    display: flex;
    align-items: center;
}

.sec2_more a:nth-child(1){
    margin-right: 28px;
    font-size: 20px;
    font-weight: 700;
    color: #122a88;
}

.sec2_more a:nth-child(2){
    display: flex;
    justify-content: center;
    align-items: center;
    width: 58px;
    height: 58px;
    border-radius: 100%;
    background-color: #f6f6f6;
}

.sec2_more:hover a:nth-child(1){
    animation: sec2_move 0.6s infinite;
}

@keyframes sec2_move{
    0%{
        margin-right: 28px;
    }
    50%{
        margin-right: 36px;
    }
    100%{
        margin-right: 28px;
    }
}

/****************************** sec2 */

/****************************** sec3 */

#sec3{
    padding: 100px 80px 100px;
    background-color: #f6f6f6;
    display: flex;
    justify-content: space-between;
}

#sec3 > div{
    width: 50%;
}

.sec3_tab{
    width: 100%;
    margin-bottom: 30px;
}

.sec3_tab button:nth-child(1){
    margin-right: 10px;
}

.sec3_tab button{
    width: 195px;
    height: 60px;
    border-radius: 30px;
    background-color: #efefef;
    font-size: 26px;
    font-weight: 500;
    color: #aaaaaa;
    cursor: pointer;
    transition: 0.4s;
}

.sec3_tab button:hover{
    border: 1px solid #111111;
    background-color: #fff;
    color: #111111;
}

.sec3_tab button.sec3_active{
    border: 3px solid #111111;
    background-color: #fff;
    color: #111111;
}

.sec3_map #map1{
    height: 584px;
}

.idx_map{
    display: none;
}

.idx_map.sec3_active{
    display: block;
}

.sec3_map img{
    width: 100%;
}

.sec3_map > div a{
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sec3_map > div a p{
    font-size: 34px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-position: under;
}

.sec3_map > div a:nth-child(1){
    margin-right: 20px;
}

.sec3_map > div a img{
    width: 30px;
    margin-left: 16px;
    opacity: 0;
    transition: 0.4s;
    transform: rotate(0deg);
}

.sec3_map > div a:hover img{
    animation: phone 0.4s forwards;
}

@keyframes phone{
    0%{
        opacity: 0;
        transform: rotate(0deg);
    }
    25%{
        opacity: 1;
        transform: rotate(20deg);
    }
    50%{
        opacity: 1;
        transform: rotate(0deg);
    }
    75%{
        opacity: 1;
        transform: rotate(20deg);
    }
    100%{
        opacity: 1;
        transform: rotate(0deg);
    }
}

.sec3_recruit{
    display: flex;
    flex-direction: column;
    justify-content: right;
    padding-left: 100px;
}

.sec3_recruit_title{
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
}

.sec3_recruit_title p{
    font-size: 26px;
    font-weight: 700;
}

.sec3_recruit_title > a{
    width: 28px;
    height: 28px;
    position: relative;
    display: block;
}

.sec3_recruit_title > a span{
    position: absolute;
    width: 28px;
    height: 3px;
    background-color: #122a88;
    border-radius: 6px;
    transition: 0.4s;
}

.sec3_recruit_title > a span:nth-child(1){
    top: 50%;
    transform: translateY(-50%);
}

.sec3_recruit_title > a span:nth-child(2){
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
}

.sec3_recruit_title > a span:nth-child(3){
    bottom: 40%;
    transform: translateY(-50%);
}


/* 화살표 */

.sec3_recruit_title > a:hover span:nth-child(1) {
    width: 18px;
    height: 3px;
    top: 71%;
    left: 31%;
    transform: translateY(-50%) rotate(-45deg);
}

.sec3_recruit_title > a:hover span:nth-child(2){
    width: 20px;
    height: 3px;
    top: 51%;
    left: 6%;
    transform: translateY(-50%) rotate(0deg);
}

.sec3_recruit_title > a:hover span:nth-child(3) {
    width: 18px;
    height: 3px;
    bottom: 61%;
    left: 31%;
    transform: translateY(-50%) rotate(45deg);
}

.sec3_list{
    padding: 20px 30px;
    width: 100%;
    background-color: white;
    display: flex;
    transition: 0.2s;
}

.sec3_list:not(:last-child){
    margin-bottom: 20px;
}

.sec3_list:hover {
    -webkit-box-shadow: 8px 8px 15px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 8px 8px 15px 4px rgba(0, 0, 0, 0.2);
}

.sec3_list > p{
    width: 80px;
    height: 30px;
    background-color: #122a88;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-right: 20px;
}

.list_title p:nth-child(1){
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.list_title p:nth-child(2){
    font-size: 17px;
    font-weight: 500;
    color: #aaaaaa;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.list_title{
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.idx_deadline{
    width: 16%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.idx_deadline p{
    font-size: 26px;
    font-weight: 500;
    color: #122a88;
}

/****************************** sec3 */



@media screen and (max-width: 1820px) {
    .sec2_title{
        background-position: 120% 0%;
    }
    .sec2_title p{
        left: 200px;
    }
}

@media screen and (max-width: 1660px) {
    
    .sec2_title{
        background-position: 160% 0%;
    }
    .sec2_title p{
        left: 160px;
    }
}



@media screen and (max-width: 1440px) {

    /* main */

    main {
        height: 840px;
    }

    /* sec1 */

    .sec1_title p:nth-child(1) {
        font-size: 32px;
    }

    .sec1_title p:nth-child(2) {
        font-size: 18px;
    }

    .sec1_active p {
        font-size: 16px;
        word-break: keep-all;
    }

    .sec1_active p .responsive_br {
        display: none;
    }

    #sec1 > div{
        height: 840px;
    }

    /* sec2 */

    #sec2 {
        padding: 100px 100px;
    }

    .sec2_title {
        background-position: 240% 0%;
    }

    .sec2_title p {
        left: 120px;
    }

    .sec2_contents .sec2_wrap p .responsive_br {
        display: none;
    }

    /* sec3 */

    .sec3_tab button {
        width: 150px;
        height: 54px;
        font-size: 20px;
    }

    .sec3_recruit_title {
        margin-bottom: 50px;
    }

    .sec3_recruit_title p {
        font-size: 22px;
    }

    .sec3_list>div p:nth-child(1) {
        font-size: 18px;
    }

    .sec3_list>div p:nth-child(2) {
        font-size: 16px;
    }

    .sec3_map > div a p{
        font-size: 22px;
    }

}

@media screen and (max-width: 1360px) {
    .sec2_title p{
        left: 60px;
    }
}



@media screen and (max-width: 1260px) {

    /* main */

    main {
        height: 740px;
    }

    .main_slide .swiper-wrapper .swiper-slide {
        font-size: 45px;
    }

    .main_slide .swiper-wrapper .swiper-slide p{
        margin-bottom: 40px;
    }

    .main_page_wrap{
        margin-top: 160px;
    }

    /* sec1 */

    .sec1_title p:nth-child(1) {
        font-size: 28px;
    }

    .sec1_title p:nth-child(2) {
        font-size: 18px;
    }

    .sec1_active p {
        font-size: 16px;
        word-break: keep-all;
    }

    #sec1 > div{
        height: 740px;
    }

    /* sec2 */

    /* .sec2_title {
        background-position: 600% 0%;
    }

    .sec2_title p {
        font-size: 32px;
        left: 60px;
    }

    .sec1_active p{
        margin-bottom: 60px;
    }

    .sec2_contents{
        font-size: 26px;
    } */

            /* sec2 */
        
            #sec2{
                height: auto;
                padding: 100px;
            }
    
            .sec2_title{
                width: 50%;
                height: 380px;
                margin-right: 30px;
                background-image: url(/img/idx/idx_sec2_back_m.jpg);
                background-size: cover;
                background-position: left bottom;
            }
    
            .sec2_title p {
                display: none;
            }
    
            .sec2_contents{
                width: 50%;
                height: 380px;
                font-size: 22px;
                display: flex;
                flex-direction: column;
            }
    
            .sec2_wrap{
                justify-content: flex-end;
                padding-left: 0;
            }
    
            .hidden_title{
                display: block;
                font-size: 30px;
            }
    
            .sec2_wrap p{
                margin-bottom: 30px;
            }
    
            .sec2_more{
                justify-content: flex-end;
            }

    /* sec3 */

    .sec3_list>div p:nth-child(1) {
        word-break: keep-all;
        font-size: 16px;
    }

    .sec3_list>div p:nth-child(2) {
        word-break: keep-all;
        font-size: 14px;
    }

    .sec3_list > p{
        word-break: keep-all;
        font-size: 14px;
    }
}

@media screen and (max-width: 1024px) {

        /* main */

        main {
            height: 500px;
        }

        .main_slide .swiper-wrapper .swiper-slide {
            font-size: 30px;
        }
    
        .main_slide .swiper-wrapper .swiper-slide p{
            margin-bottom: 40px;
        }

        .main_slide .swiper-wrapper .swiper-slide:nth-child(1){
            background-image: url(/img/idx/idx1_main1_m.jpg);
        }
        .main_slide .swiper-wrapper .swiper-slide:nth-child(2){
            background-image: url(/img/idx/idx1_main2_m.jpg);
        }
        .main_slide .swiper-wrapper .swiper-slide:nth-child(3){
            background-image: url(/img/idx/idx1_main3_m.jpg);
        }

        .main_page_wrap{
            margin-top: 140px;
        }

        /* sec1 */

        #sec1 {
            display: grid;
            grid-template-columns: none;
            grid-template-rows: repeat(3, 1fr);
        }

        #sec1 > div {
            height: 360px;
        }

        #sec1 > div .sec1_title{
            margin-bottom: 20px !important;
        }

        #sec1 > div .sec1_active{
            display: flex;
            animation: none !important;
            opacity: 1;
        }

        .sec1_active p {
            margin-bottom: 40px;
        }
        
        .sec1_filter2{
            display: none;
        }

        .sec1_contents {
            position: absolute;
            top: 50% !important;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .sec1_title p:nth-child(1) {
            font-size: 30px;
        }

        .sec1_title p:nth-child(2) {
            font-size: 18px;
        }

        .sec1_active p{
            font-size: 16px;
        }

        .sec1_active a {
            width: 54px;
            height: 54px;
            background-color: rgba(0, 0, 0, 1);
        }

        /* sec2 */
        
        #sec2{
            height: auto;
            padding: 100px;
        }

        .sec2_title{
            width: 50%;
            height: 380px;
            margin-right: 30px;
            background-image: url(/img/idx/idx_sec2_back_m.jpg);
            background-size: cover;
            background-position: left bottom;
        }

        .sec2_title p {
            display: none;
        }

        .sec2_contents{
            width: 50%;
            height: 380px;
            font-size: 22px;
            display: flex;
            flex-direction: column;
        }

        .sec2_wrap{
            justify-content: flex-end;
            padding-left: 0;
        }

        .hidden_title{
            display: block;
            font-size: 30px;
        }

        .sec2_wrap p{
            margin-bottom: 30px;
        }

        .sec2_more{
            justify-content: flex-end;
        }

        /* sec3 */

        #sec3{
            flex-direction: column;
        }
        
        #sec3 > div{
            width: 100%;
        }

        .sec3_info{
            margin-bottom: 80px;
        }

        .sec3_tab button {
            width: 170px;
            height: 50px;
            font-size: 20px;
        }

        .sec3_recruit{
            padding-left: 0;
        }

        .sec3_recruit_title {
            margin-bottom: 20px;
        }

        .sec3_recruit_title p{
            font-size: 24px;
        }

        .sec3_list > div p:nth-child(1) {
            font-size: 18px;
        }

        .sec3_list > div p:nth-child(2) {
            font-size: 16px;
        }

        .sec3_list > p{
            font-size: 14px;
        }

}


@media screen and (max-width: 768px) {

    /* main */

    main{
        height: 420px;
    }

    .main_slide .swiper-wrapper .swiper-slide {
        font-size: 26px;
        word-break: keep-all;
    }

    .main_slide .swiper-wrapper .swiper-slide p{
        margin-bottom: 20px;
    }

    .main_page_wrap{
        margin-top: 120px;
    }

    /* sec1 */

    .sec1_active a{
        width: 50px;
        height: 50px;
    }

    /* sec2 */

    #sec2{
        padding: 80px 54px;
    }

    .sec2_contents{
        font-size: 16px;
        height: 340px;
        word-break: keep-all;
    }

    .sec2_more a:nth-child(2){
        width: 50px;
        height: 50px;
    }

    .sec2_title{
        width: 50%;
        height: 340px;
        margin-right: 20px;
    }

    .sec2_wrap{
        justify-content: flex-end;
        padding-left: 0;
    }

    .hidden_title{
        display: block;
        font-size: 20px;
    }

    .sec2_more a:nth-child(1){
        font-size: 18px;
    }

    /* sec3 */
    
    #sec3{
        padding: 100px 54px 100px;
    }

    .sec3_recruit_title p{
        font-size: 24px;
    }

    .sec3_list > div p:nth-child(1) {
        font-size: 16px;
    }

    .sec3_list > div p:nth-child(2) {
        font-size: 14px;
    }

    .sec3_list > p{
        font-size: 14px;
    }

    .sec3_tab button {
        width: 140px;
        height: 44px;
        font-size: 18px;
    }

    .sec3_info{
        margin-bottom: 40px;
    }

}

@media screen and (max-width: 540px) {

    /* main */

    main{
        height: 320px;
    }

    .main_slide .swiper-wrapper .swiper-slide {
        font-size: 20px;
        word-break: keep-all;
    }

    .main_slide .swiper-wrapper .swiper-slide p{
        margin-bottom: 20px;
    }

    .main_page_wrap{
        margin-top: 100px;
    }
    
    /* sec1 */

    .sec1_active p{
        font-size: 14px;
    }

    .sec1_active a{
        width: 46px;
        height: 46px;
    }

    #sec1 > div .sec1_title{
        margin-bottom: 10px !important;
    }

    #sec1 > div{
        height: 300px;
    }

    .sec1_title p:nth-child(1){
        font-size: 20px;
    }

    .sec1_title p:nth-child(2){
        font-size: 16px;
    }

    /* sec2 */
        
    #sec2{
        padding: 80px 30px;
    }

    .sec2_title{
        background-image: url(/img/idx/idx_sec2_back_m.jpg);
        background-size: cover;
        margin-right: 10px;
    }

    .sec2_contents{
        font-size: 14px;
    }

    .sec2_more{
        width: 100%;
    }

    .sec2_more a:nth-child(1){
        font-size: 16px;
        margin-right: 10px;
    }

    .sec2_more a:nth-child(2){
        width: 40px;
        height: 40px;
    }

    .hidden_title{
        font-size: 18px !important;
    }

    /* sec3 */

    #sec3{
        padding: 80px 30px 80px;
    }

    .sec3_recruit_title p{
        font-size: 20px;
    }

    .sec3_map > div a p{
        font-size: 18px;
    }

    /* .sec3_map > div a:nth-child(1){
        margin-bottom: 10px;
    } */

    .sec3_recruit_title > a{
        width: 20px;
        height: 20px;
    }

    .sec3_recruit_title > a span{
        width: 20px;
    }

    .sec3_recruit_title > a:hover span:nth-child(2){
        width: 20px !important;
        height: 2px !important;
    }

    .sec3_recruit_title > a:hover span:nth-child(1),
    .sec3_recruit_title > a:hover span:nth-child(3){
        width: 16px;
        height: 2px;
    }

    .sec3_recruit_title > a:hover span:nth-child(1){
        top: 74%;
        left: 38%;
    }

    .sec3_recruit_title > a:hover span:nth-child(3){
        bottom: 64%;
        left: 38%;
    }

    .sec3_list{
        padding: 20px 10px;
    }

    .sec3_list > p{
        width: 50px;
        height: 24px;
        font-size: 10px;
        margin-right: 10px;
    }

    .sec3_map{
        height: 300px;
    }

    .sec3_map #map1{
        height: 300px;
    }

    .sec3_info{
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 414px) {

    /* main */

    main{
        height: 280px;
    }

    .main_slide .swiper-wrapper .swiper-slide {
        font-size: 18px;
        word-break: keep-all;
    }

    .main_slide .swiper-wrapper .swiper-slide p{
        margin-bottom: 10px;
    }

    .main_page_wrap{
        margin-top: 100px;
    }

    /* sec1 */

    .sec1_title p:nth-child(1){
        font-size: 18px;
    }

    .sec1_active p{
        font-size: 12px;
        font-weight: 300;
        margin-bottom: 30px;
    }

    .sec1_active a{
        width: 30px;
        height: 30px;
    }

    .sec1_active a img{
        width: 40%;
    }

    #sec1 > div{
        height: 240px;
    }

    /* sec2 */

    #sec2{
        padding: 80px 24px;
    }

    .sec2_wrap p{
        font-size: 14px;
        word-break: break-all;
    }

    .sec2_more a:nth-child(1){
        font-size: 14px;
        margin-right: 2px;
    }

    .sec2_more a:nth-child(2){
        width: 30px;
        height: 30px;
    }

    .sec2_more a:nth-child(2) img{
        width: 40%;
    }

    /* sec3 */
    
    #sec3 {
        padding: 80px 24px 80px;
    }

    .sec3_tab .sec3_active{
        border: 2px solid #111111;
    }

    .sec3_tab button{
        width: 120px;
        height: 44px;
        font-size: 16px;
    }

    .sec3_map{
        height: 240px;
    }

    .sec3_map #map1{
        height: 240px;
    }

    .sec3_list > div p:nth-child(1){
        font-size: 14px;
    }

    .sec3_map > div a p{
        font-size: 16px;
    }

}

@media screen and (min-width: 5000px){

    #sec2{
        padding: 100px 32%;
    }

}