/* 공통 */

/* 버튼 타입-1 */
.btn-type-1 {
    width: 160px;
    height: 44px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: "Pretendard-Bold";
    color: #fff;
    background: linear-gradient(106.02deg, #006CB3 2.5%, #00426C 100%);
}

/* 버튼 타입-2 */
.btn-type-2 {
    width: 560px;
    height: 68px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #005891;
    margin: 0 auto;
}


.btn-type-2 .text {
    font-size: 22px;
    font-family: "Pretendard-Bold";
    color: #fff;
}


.btn-type-4 {
    width: 240px;
    height: 44px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: "Pretendard-Bold";
    color: #fff;
    background: #005891;
}
.btn-type-4:hover{
    background: #00426C;
}
.btn-type-4.table-btn{
    width: auto;
    padding: 6px 20px;
    display: inline;
    font-size: 17px;
}


/* 공통 컨텐츠 영역 */
.common-cnt-area {
    box-sizing: border-box;
    padding-top: 120px;
}
.common-cnt-area .common-cnt-box {
    box-sizing: border-box;
    padding: 80px 120px 100px 120px;
    background: #fff;
    border-radius: 24px;
}
.common-cnt-area .common-cnt-box h1 {
    font-size: 36px;
    display: inline-block;
    box-sizing: border-box;
    padding-top: 24px;
    position: relative;
    color: #005891;
    font-family: "Pretendard-Bold";
    border-top: 1px solid ;
    margin-bottom: 68px;
}
.common-cnt-area .common-cnt-box h1::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #004A97, #00A89B);
    position: absolute;
    top: 0;
    left: 0;
}

/* 스와이퍼 이전,다음 버튼 타입-1 */
.swiper-button-prev.type-1,
.swiper-button-next.type-1 {
    transform: translateY(-50%) !important;
    width: 80px !important;
    height: 80px !important;
}
.swiper-button-prev.type-1 {
    left: -80px !important;
}
.swiper-button-next.type-1 {
    right: -80px !important;
}
.swiper-button-prev.type-1::before {
    background: url(../img/arrow_prev_5C696D.svg) no-repeat center center/cover !important;
}
.swiper-button-next.type-1::before {
    background: url(../img/arrow_next_5C696D.svg) no-repeat center center/cover !important;
}
.common-cnt-area .common-cnt-box h1.detail-h {
    margin-bottom: 40px;
}

@media (max-width:1320px) {
    /* 공통 컨텐츠 영역 */
    .common-cnt-area {
        padding-top: 80px;
    }
    .common-cnt-area .common-cnt-box {
        padding: 60px 36px;
    }
    .common-cnt-area .common-cnt-box h1 {
        font-size: 28px;
        margin-bottom: 60px;
    }

    /* 스와이퍼 이전,다음 버튼 타입-1 */
    .swiper-button-prev.type-1,
    .swiper-button-next.type-1 {
        width: 48px !important;
        height: 48px !important;
    }
    .swiper-button-prev.type-1 {
        left: -28px !important;
    }
    .swiper-button-next.type-1 {
        right: -28px !important;
    }
}

@media (max-width:767px) {
    .btn-type-4.table-btn{
        padding: 6px 12px;
        font-size: 15px;
    }

    /* 공통 컨텐츠 영역 */
    .common-cnt-area {
        padding-top: 60px;
    }
    .common-cnt-area .common-cnt-box {
        padding: 40px 20px;
    }
    .common-cnt-area .common-cnt-box h1 {
        font-size: 20px;
        padding-top: 16px;
        margin-bottom: 42px;
    }

    /* 스와이퍼 이전,다음 버튼 타입-1 */
    .swiper-button-prev.type-1,
    .swiper-button-next.type-1 {
        width: 40px !important;
        height: 40px !important;
    }
    .swiper-button-prev.type-1 {
        left: -20px !important;
    }
    .swiper-button-next.type-1 {
        right: -20px !important;
    }

    .common-cnt-area .common-cnt-box h1.detail-h {
        margin-bottom: 28px;
    }
}

@media (max-width:640px) {
    .btn-type-4.table-btn{
        padding: 4px 8px;
        font-size: 11px;
    }

}