body{
    overflow-x: hidden;
}

.main-visual{
    position:relative;
    width:calc(100% - 10rem);
    height: calc(100vh - 15rem);
    margin:0 auto;
    overflow:hidden;
}

.main-visual .swiper{
    width: 100%;
    height: 100%;
}

.main-visual .bg{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    animation: subbg 15s forwards;
    position: absolute;
    left: 0;
    top: 0;
}

.main-visual .swiper-slide.sl1 .bg{
    background-image: url(../img/main-visual_1.jpg);
}

.main-visual .swiper-slide.sl2 .bg{
    background-image: url(../img/main-visual_2.jpg);
}

.main-visual .swiper-slide.sl3 .bg{
    background-image: url(../img/main-visual_3.jpg);
}

.main-visual .visual_txt {
    height: calc(100% - 18rem);
    width: 100%;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
}

.main-visual .visual_txt p:nth-child(1) {
    font-size: 5.5rem;
    font-weight: 200;
    line-height: 1.2;
    color: #fff;
    font-family: "Nanum Myeongjo", serif !important;
    margin-bottom: 2rem;
}

.main-visual .visual_txt p:nth-child(2) {
    font-size: 2.2rem;
    color: #fff;
}

.main-visual .visual_txt p:nth-child(1), 
.main-visual .visual_txt p:nth-child(2) {
    opacity: 0;
}

.main-visual .swiper-slide-active p:nth-child(1) {
    animation: slideup 1.5s .1s forwards;
}

.main-visual .swiper-slide-active p:nth-child(2) {
    animation: fadein 1.5s .6s forwards;
}

.main-visual .visual-slide-pagination{
    position: absolute;
    z-index: 3;
    bottom: 0;
    width: 100%;
    border-top: 1px solid rgba(199, 184, 166, 0.4);
    height: 100px;
}


.main-visual .visual-slide-pagination .pagination-box {
    height: 100%;
    display: flex;
}

.main-visual .visual-slide-pagination .pagination-box p {
    width: calc(100% / 3);
    height: 100%;
    color: rgba(255, 255, 255, 0.5);
    background: none;
    font-size: 2.4rem;
    border-radius: 0;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.main-visual .visual-slide-pagination .pagination-box p.swiper-pagination-bullet-active {
    color: #fff;
}

@keyframes slideup {
    0% {
        transform: translateY(2rem);
    }
    100% {
        transform: none;
        opacity: 1;
    }
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes subbg {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: none;
    }
}

@media screen and (max-width:1800px){
}

@media screen and (max-width:1400px){
}

@media screen and (max-width:992px){
    .main-visual{
        width:100%;
        height:60rem;
    }

    .main-visual .bg{
        background-position: left 25% center;
    }

    .main-visual .bg::before{
        content:'';
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
        background-color:#000;
        z-index: -1;
        opacity:0.3;
    }

    .main-visual .visual_txt{
        height:100%;
        justify-content: center;
    }

    .main-visual .visual_txt p{
        text-align:center;
    }

    .main-visual .visual_txt p:nth-child(1){
        font-size:min(8vw,5.8rem);
    }

    .main-visual .visual_txt p:nth-child(2){
        font-size:min(4vw,2.8rem);
    }
    .main-visual .visual-slide-pagination{
        border-top:none;
        height:auto;
        bottom:3rem;
    }
    .main-visual .visual-slide-pagination .pagination-box{
        justify-content: center;
        gap:1.5rem;
    }
    .main-visual .visual-slide-pagination .pagination-box p {
        width: 1.4rem;
        height: 1.4rem;
        display: inline-block;
        border-radius: 50%;
        background: #fff;
        opacity: 0.5;
        margin:0;
    }
    .main-visual .visual-slide-pagination .pagination-box p.swiper-pagination-bullet-active{
        opacity: 1;
        background: #fff;
    }
}

@media screen and (max-width:768px){
}

@media screen and (max-width:480px){
}

/**************************************/
/**************** 공통 컴포넌트 css ****************/

/** circle-list **/

.circle-list{
    display:flex;
    flex-wrap: wrap;
    gap:2rem;
    justify-content: center;
    align-items: center;
}

.circle-list .circle{
    border-radius: 100%;
    border:1px solid #e6e6e6;
    display:flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.circle-list .circle p.txt{
    font-size:2rem;
    color:#666;
}

.circle-list .circle-m{
    width:19rem;
    height:19rem;
}

.circle-list .circle-l{
    width:26rem;
    height:26rem;
}

@media screen and (max-width:992px){
    .circle-list{
        display:grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
    .circle-list .circle{
        font-size: min(3rem, 5vw);
    }
    .circle-list .circle-m {
        width: min(45vw, 30rem);
        height: min(45vw, 30rem);
    }

    .circle-list .circle-l {
        width: min(45vw, 35rem);
        height: min(45vw, 35rem);
    }
}

/** list-type1 **/

.list-type1 .list{
    display:flex;
    flex-direction:column;
}

.list-type1 .list > .img,
.list-type1 .list > .img img{
    width:100%;
}

.list-type1 .list > div:first-child,
.list-type1 .list > div:first-child img{
    border-top-left-radius:2rem;
    border-top-right-radius:2rem;
}

.list-type1 .list{
    border-radius:2rem;
} 

.list-type1 .list > div:last-child{
    border-bottom-left-radius:2rem;
    border-bottom-right-radius:2rem;
}

.list-type1 .list + .list{
    margin-top:5.5rem;
}

.list-type1 .list{
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.25);
}

/** list-type2 **/

.list-type2 li{
    display:flex;
}

.list-type2 li + li{
    margin-top:1rem;
}

.list-type2 li .num{
    width:10rem;
    height:9rem;
    display:flex;
    align-items:center;
    justify-content:center;
    background-color:#29306f;
    color:#fff;
    font-size:2rem;
    font-weight: 600;
}

.list-type2 li .txt_wrap{
    flex:1;
    width:calc(100% - 10rem);
    padding-left:2rem;
    background-color:#fff;
    display:flex;
    align-items:center;
    font-size:2rem;
}

.list-type2 li .txt_wrap .txt{
    color:#666;
}

@media screen and (max-width:992px){
    .list-type2 li {
        background-color:#fff;
        padding:4rem 3rem;
        border-radius:2rem;
        align-items:center;
    }
    .list-type2 li + li{
        margin-top:2rem;
    }

    .list-type2 li .num{
        width:5rem;
        height:5rem;
        border-radius:100%;
    }

    .list-type2 li .txt_wrap{
        background:none;
    }
}

/** list-type3 **/

.list-type3 > .list{
    display:grid;
    grid-template-columns: 1fr 1fr;
    align-items:center;
}

.list-type3 .list > div,
.list-type3 .list > div .img,
.list-type3 .list > div .img img{
    height:100%;
}
.list-type3 .list > div .img img{
    width:100%;
}

.list-type3 .sub-tit-box{
    display:flex;
    justify-content:space-between;
    align-items: center;
    position:relative;
    margin-bottom:6rem;
}

.list-type3 .sub-tit-box::before{
    content:'';
    position:absolute;
    bottom:-3rem;
    left:0;
    width:100%;
    height:1px;
    background-color:#e1e1e1;
}

.list-type3 .sub-tit-box .sub-tit{
    font-size:2.6rem;
    font-weight: 600;
}

.list-type3 .sub-tit-box .check-box{
    font-size:1.4rem;
    background-color:#f5f5f5;
    padding-inline:3rem;
    height:2.8rem;
    display: flex;
    align-items: center;
    border-radius:20px;
    color:#999;
    font-weight: 600;
}

.list-type3 div:has(.txt_wrap){
    border:1px solid #e6e6e6;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    padding-inline:6rem;
    padding-block:3rem;
}

.list-type3 .txt_wrap{
    width:100%;
}


@media screen and (max-width:992px){
    .list-type3 > .list{
        display:flex;
    }
    .list-type3 > .list + .list{
        margin-top:4rem;
    }
    .list-type3 .list:nth-child(odd){
        flex-direction: column;
    }

    .list-type3 .list:nth-child(even){
        flex-direction: column-reverse;
    }

    .list-type3 div:has(.txt_wrap){
        padding-inline:6%;
    }
}

/** list-type4 **/

.list-type4{
    display:flex;
    align-items: center;
    justify-content: center;
    gap:1rem;
}

.list-type4 .list{
    font-size:2rem;
    background-color:#fff;
    padding-inline:3rem;
    padding-block:0.8rem;
    border-radius:4rem;
}

.list-type4 .list span{
    color:#28306f !important;
    font-weight: 600;
}

@media screen and (max-width:992px){
    .list-type4 .list{
        font-size:min(3vw, 20px);
        padding-inline:2rem;
    }
    .list-type3 .sub-tit-box .sub-tit{
        font-size:min(6vw , 26px);
    }
}

@media screen and (max-width:480px){
    .list-type4 .list{
        padding-inline:1rem;
    }
}
/** grid-list **/

.grid-list{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:1rem;
}

.grid-list .list{
    font-size:2.1rem;
    color:#999;
}

@media screen and (max-width:992px){
    .grid-list{
        grid-template-columns: repeat(1, 1fr);
        gap:1rem;
    }
    .grid-list .list{
        font-size:min(3.8vw, 22px);
    }
}


/** time-list **/

.time-list .list{
    display:flex;
    align-items:start;
    font-size:2rem;
    gap:2.5rem;
}


.time-list .list + .list{
    margin-top:1rem;
}

.time-list .list .day{
    min-width:7rem;
    display:flex;
    justify-content:space-between;
    color:#333;
    font-weight:500;
    position:relative;
    top:0.3rem;
}

.time-list .list .day span,
.time-list .list .time span,
.counsel-box .tel-list .list span,
.time-list .list .day,
.time-list .list .time,
.counsel-box .tel-list .list{
    line-height: 1;
}

.time-list .list .time span{
    color:#999;
}

.time-list .list .time span.check-box{
    color:#fff;
    display:inline-block;
    padding-inline:3rem;
    padding-block:0.25rem;
    background-color:#28306f;
    font-weight:600;
    border-radius:2rem;
    margin-left:1rem;
    font-size:1.7rem;
}

@media screen and (max-width:480px){
    .time-list .list .time span.check-box{
        padding-inline:1rem;
    }
}

/** tel-list **/

.tel-list .list span{
    font-size:4.2rem;
    line-height:1;
    font-weight:700;
}

.tel-list .list + .list{
    margin-top:2rem;
}

/**************** sec1 ****************/

.sec1 > div{
    background-color:#f5f5f5;
}

.sec1-cont{
    display:flex;
    align-items:center;
    gap:7.5rem;
    height:450px;
    position:relative;
}

.sec1-right{
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-content: space-between;
    z-index: 2;
}

.sec1-right .txt{
    font-size:2.8rem;
    font-weight: 500;
    font-family: "Nanum Myeongjo", serif !important;
}

.sec1-right .txt *{
    font-family: "Nanum Myeongjo", serif !important;
}

.sec1-right .info .name{
    font-size:4.2rem;
    font-family: "Nanum Myeongjo", serif !important;
    font-weight: 600;
    margin-bottom: 2rem;
}

.sec1-right .info .position{
    font-size:2rem;
    font-weight: 600;
    font-family: "Nanum Myeongjo", serif !important;
    color:#222;
    display:inline-block;
    margin-left:1rem;
}

.sec1-right .info .career-box{
    display:grid;
    grid-template-columns: 1fr 1.5fr;
    gap:1rem;
    margin-top:4rem;
}

.sec1-right .info .career-box .career-list{
    font-size:2rem;
    font-weight: 500;
    color:#999;
}

.sec1 .deco{
    position:absolute;
    bottom:0;
    right:1.5%;
}

@media screen and (max-width:1800px){
}

@media screen and (max-width:1400px){
}

@media screen and (max-width:992px){
    .sec1-cont{
        flex-direction: column;
        height:auto;
        gap:5rem;
    }
    .sec1-right .txt,
    .sec1-right .info .name{
        text-align: center;
    }

    .sec1-right .img{
        margin-inline:auto;
        margin-block:4.5rem;
    }

    .sec1-right .img img{
        border-radius: 5rem;
        max-width:42rem;
    }

    .sec1-right .info .career-box{
        grid-template-columns: 1fr;
    }

    .sec1-right .info .career-box .career-list{
        font-size:min(4vw , 28px);
        gap: 2rem;
    }

    .sec1 .deco{
        right:0;
        max-width:63vw;
    }
    .sec1-right .txt{
        line-height:1.5
    }
}

@media screen and (max-width:768px){
}

@media screen and (max-width:480px){
}


/**************************************/
/**************** sec2 ****************/

.sec2 .swiper-slide {
    height: 830px;
    width: 600px;
    display: flex;
    align-items: center;
}

.sec2 .sec2-cont-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/sec2-line.png);
    max-width: 640px;
    margin: 5rem auto 8rem;
    background-repeat: no-repeat;
    padding-left: 0rem;
}

.sec2 .sec2-cont-pagination > div {
    width: 25%;
    height: 100%;
    background: none;
    font-size: 1.9rem;
    border-radius: 0;
    opacity: 1;
    display: inline-block;
    position: relative;
    text-align: center;
    margin: 65px 0 0 !important;
    color: #999999;
    transition: all 0.5s;
    line-height: 1;
}

.sec2 .sec2-cont-pagination > div:nth-child(2){
    left:2px;
}

.sec2 .sec2-cont-pagination > div:nth-child(3){
    left:4px;
}

.sec2 .sec2-cont-pagination > div:nth-child(4){
    left:6px;
}

.sec2 .sec2-cont-pagination>div span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #e1e1e1;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.sec2 .sec2-cont-pagination>div.swiper-pagination-bullet-active p {
    color: #7a6a8d;
    font-weight: 800;
}

.sec2 .swiper-slide .img {
    background-size: cover;
    min-width: 640px;
    width: 100%;
    height: 425px;
    border-radius: 200px;
    margin: 0 auto;
    background-repeat: no-repeat;
    filter: grayscale(100%) brightness(100%);
    transition: height 0.5s;
    background-color: #f2f2f2;
}

.sec2 .swiper-slide-active .img {
    width: 600px;
    height: 830px;
    position: relative;
    overflow: hidden;
    border-radius: 500px;
    filter: none;
}

.sec2 .swiper-slide.sl1 .img {
    background-image: url(../img/main-img_2-off.jpg);
}

.sec2 .sl1.swiper-slide-active .img {
    background-image: url(../img/main-img_2.jpg);
}

.sec2 .swiper-slide.sl2 .img {
    background-image: url(../img/main-img_3-off.jpg);
}

.sec2 .sl2.swiper-slide-active .img {
    background-image: url(../img/main-img_3.jpg);
}

.sec2 .swiper-slide.sl3 .img {
    background-image: url(../img/main-img_4-off.jpg);
}

.sec2 .sl3.swiper-slide-active .img {
    background-image: url(../img/main-img_4.jpg);
}

.sec2 .swiper-slide.sl4 .img {
    background-image: url(../img/main-img_5-off.jpg);
}

.sec2 .sl4.swiper-slide-active .img {
    background-image: url(../img/main-img_5.jpg);
}

.sec2 .swiper-pagination-bullet-active span{
    background-color:#29306f !important;
    display:flex !important;
    align-items:center;
    justify-content:center;
}

.sec2 .swiper-pagination-bullet-active span::before{
    content:'';
    position:absolute;
    width:200%;
    height:200%;
    z-index: -1;
    background-color:rgba(212,214,226,0.5);
    border-radius:100%;
}
.sec2 .swiper-pagination-bullet-active p{
    color:#29306f !important;
}

.sec2 .swiper-slide .img::before {
    opacity: 0;
    display: inline-block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.sec2 .swiper-slide-active .img::before {
    opacity: 1;
}

.sec2 .pc.sec2-cont .swiper-slide-active .img .txt_wrap {
    display: flex;
}

.sec2 .img .txt_wrap {
    z-index: 2;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.sec2 .pc.sec2-cont .txt_wrap{
    display:none;
}

.sec2 .txt_wrap {
    text-align: center;
}

.sec2 .txt_wrap p.chk{
    font-size:2.4rem;
    font-family: 'Nanum Myeongjo', serif !important;
}

.sec2 .txt_wrap p.tit {
    font-family: 'Nanum Myeongjo', serif !important;
    font-size: 4rem;
    color: #fff;
}

.sec2 .txt_wrap p.txt:nth-child(3),
.sec2 .txt_wrap p.txt:last-child {
    font-size: 1.8rem;
    margin: 2rem 0 0;
    line-height: 1.5;
}

.sec2 .txt_wrap p {
    color: #fff;
}

.sec2 .mobile.sec2-cont{
    margin-top:5.5rem;
}

.sec2 .mobile.sec2-cont .txt_wrap{
    background-color:#29306f;
    padding:4rem 3rem;
}

.sec2 .mobile.sec2-cont .txt_wrap p.txt:nth-child(2),
.sec2 .mobile.sec2-cont .txt_wrap p.txt:nth-child(3),
.sec2 .mobile.sec2-cont .txt_wrap p.txt:last-child {
    font-size: min(2.6rem, 5vw);
    margin: 2rem 0 0;
    line-height: 1.5;
}

@media screen and (max-width:1800px){
}

@media screen and (max-width:1400px){
}

@media screen and (max-width:992px){
}

@media screen and (max-width:768px){
}

@media screen and (max-width:480px){
    .sec2 .txt_wrap p.tit{
        font-size:6vw;
    }
    .sec2 .mobile.sec2-cont .txt_wrap p.txt:nth-child(2),
    .sec2 .mobile.sec2-cont .txt_wrap p.txt:nth-child(3),
    .sec2 .mobile.sec2-cont .txt_wrap p.txt:last-child {
        font-size: 3vw;
    }
}

/**************************************/
/**************** sec3 ****************/

.sec3 .tit-box:not(:has(+ .txt)),
.sec5 .tit-box:not(:has(+ .txt)),
.sec9 .tit-box:not(:has(+ .txt)){
    margin-bottom:6rem;
}

@media screen and (max-width:1800px){
}

@media screen and (max-width:1400px){
}

@media screen and (max-width:992px){
}

@media screen and (max-width:768px){
}

@media screen and (max-width:480px){
}

/**************************************/
/**************** sec4 ****************/


.sec4 .inner{
    background-color:#f5f5f5;
    position:relative;
    container-type: inline-size;
    container-name: sec4;
    @container sec4 (width < 1400px) {
        .sec4-swiper-button-prev{
            left:1rem !important;
        }
        
        .sec4-swiper-button-next{
            right:1rem !important;
        }
    }
}

.sec4 .list-type2{
    margin-top:4rem;    
}

.sec4-swiper{
    overflow-x:hidden;
}

.sec4-swiper-button-prev{
    left:7rem !important;
}

.sec4-swiper-button-next{
    right:7rem !important;
}

.sec4-swiper-button-prev,
.sec4-swiper-button-next{
    width:6rem !important;
    height:6rem !important;
}

.sec4-swiper-button-prev::after,
.sec4-swiper-button-next::after{
    display:none;
}

.sec4-swiper-button-prev{
    transform:rotate(180deg);
}

.sec4-cont-pagination{
    justify-content: center;
    align-items: center;
}


@media screen and (max-width:1800px){
    .sec4-swiper-button-prev{
        left:1rem !important;
    }
    
    .sec4-swiper-button-next{
        right:1rem !important;
    }
}

@media screen and (max-width:1470px){
    .sec4 .inner3 {
        padding-inline: 6%;
    }
}

@media screen and (max-width:1400px){
    .sec4-swiper-button-prev,
    .sec4-swiper-button-next{
        width:5rem !important;
        height:5rem !important;
    }
}

@media screen and (max-width:992px){
    .sec4-cont-pagination{
        display:flex !important;
        position:relative;
        bottom:-3rem !important;
    }
    .sec4-cont-pagination .swiper-pagination-bullet-active{
        background-color:#29306f !important;
    }
	.swiper-button-next,.swiper-button-prev {
        top: 57%;
	}
}
@media screen and (max-width:768px){
	.swiper-button-next,.swiper-button-prev{
	top: 97%;
	}

}

@media screen and (max-width:480px){
}

/**************************************/
/**************** sec5****************/



@media screen and (max-width:1800px){
}

@media screen and (max-width:1400px){
}

@media screen and (max-width:992px){
}

@media screen and (max-width:768px){
}

@media screen and (max-width:480px){
}

/**************************************/
/**************** sec6 ****************/

.sec6-cont{
    margin-top:6rem;
}

.sec6-cont .list-type3 .list:first-child .grid-list{
    grid-template-columns: 1fr 1fr;
}

.sec6-cont .list-type3 .list:nth-child(2) .grid-list{
    grid-template-columns: 1fr 2fr;
}


@media screen and (max-width:1800px){
}

@media screen and (max-width:1400px){
}

@media screen and (max-width:992px){

    .sec6 {
        padding-bottom: 9rem !important;
    }
    .sec6-cont{
        padding-inline:6%;
    }

    .sec6-cont .list-type3 .list:first-child .grid-list,
    .sec6-cont .list-type3 .list:nth-child(2) .grid-list{
        grid-template-columns: 1fr;
    }
    
}

@media screen and (max-width:768px){
}

@media screen and (max-width:480px){
}

/**************************************/
/**************** sec7 ****************/

.sec7{
    margin-top:1px;
}

.sec7 .inner{
    background:url(../img/main-img_8.jpg) no-repeat center center / cover;
    position:relative;
}

.sec7 .inner *{
    color:#fff !important;
}

.sec7 .sec-top,
.sec7 .sec-bottom {
    position:relative;
}

.sec7 .sec-top{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.sec7 .sec-top > .txt:last-child{
    margin-top:7.5rem;
    font-size:2rem;
    text-align:center;
}

.sec7 .btn-box{
    background-color:#28306f;
    padding-inline:7.5rem;
    padding-block:1.75rem;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:4rem;
    font-size:2.4rem;
    font-weight: 600;
    margin-block:6rem;
}

.sec7 .circle-list .circle{
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    position:relative;
    border:none;
    /* background-color:#374866;
    opacity:0.75; */
}

.sec7 .circle-list .circle::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:#374866;
    opacity:0.75;
    border-radius:100%;
}

.sec7 .circle-list .circle:nth-child(1){
    left:8rem;
}
.sec7 .circle-list .circle:nth-child(2){
    left:4rem;
}
.sec7 .circle-list .circle:nth-child(4){
    right:4rem;
}
.sec7 .circle-list .circle:nth-child(5){
    right:8rem;
}

.sec7 .circle-list .circle .num{
    font-size:min(3vw,15px);
    position:absolute;
    top:7rem;
    color:#d6d6d6 !important;
}

.sec7 .circle-list .circle .txt{
    position:relative;
}

.sec7 .sec-bottom{
    display:grid;
    grid-template-columns: 1fr 1fr;
    position:relative;
}

.sec7 .sec-bottom > div{
    padding-top:9.5rem;
}

.sec7 .sec-bottom::after{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:1px;
    height:70%;
    background-color:#7f83a9;
}

.sec7 .sec-bottom > div{
    height:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    background-color:#28306f;
}

.sec7 .sec-bottom .sub-tit{
    font-size:2.8rem;
}

.sec7 .sec-bottom .left .txt{
    font-size:2rem;
    text-align:center;
    margin-top:4.5rem;
}

.sec7 .sec-bottom .right .list-type4{
    margin-top:4.5rem;
}

@media screen and (max-width:992px){

    .sec7 .sec-top,
    .sec7 .sec-bottom > div{
        padding-inline:6%;
    }
    .sec7 .circle-list .circle:nth-child(1),
    .sec7 .circle-list .circle:nth-child(2){
        left:0rem;
    }
    .sec7 .circle-list .circle:nth-child(4),
    .sec7 .circle-list .circle:nth-child(5){
        right:0rem;
    }   
    .sec7 .sec-top > .txt:last-child{
        font-size:min(4vw, 20px);
    }
    .sec7 .sec-bottom{
        display:grid;
        grid-template-columns: 1fr;
        position:relative;
    }
    
    .sec7 .sec-bottom::after{
        display:none;
    }

    .sec7 .sec-bottom .left .txt{
        font-size:min(4vw,26px);
    }

    .sec7 .sec-bottom > div{
        padding-block:7rem !important;
    }
    
    .sec7 .sec-bottom .left{
        position:relative;
    }
    .sec7 .sec-bottom .left::after{
        content:'';
        position:absolute;
        bottom:0;
        left:50%;
        transform:translateX(-50%);
        width:70%;
        height:1px;
        background-color:#7f83a9;
    }
}

/**************************************/
/**************** sec8 ****************/

.sec8 .tit-box:not(:has(+ .txt)){
    margin-bottom:8rem;
}

.sec8 > div{
    overflow: hidden;
}

.sec8-cont {
    overflow:hidden;
    position: relative;
}

.sec8-main-swiper {
    margin-bottom: 10px;
}

.sec8-thumb-swiper .swiper-slide {
    cursor: pointer;
}
.sec8-main-swiper{
    position: relative;
}
.sec8-main-swiper *{
    max-height: 75rem;
}

.sec8-main-swiper .swiper-slide .img{
    height:100%;
}
.sec8-main-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Navigation buttons */
.sec8-next,
.sec8-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4rem !important;
    height: 4rem !important;
    border:1px solid #fff;
    border-radius: 100%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.3s ease;
    margin-top:0 !important;
}

.sec8-next {
    right: 10px;
}

.sec8-prev {
    left: 10px;
}

.sec8-next:after,
.sec8-prev:after {
    font-family: 'swiper-icons';
    font-size: 2.4rem !important;
    color:#fff;
}

.sec8-next:after {
    content: 'next';
}

.sec8-prev:after {
    content: 'prev';
}

@media screen and (max-width:992px){
    .sec8 .tit-box:not(:has(+ .txt)) {
        margin-bottom: 5rem;
    }
}

/**************************************/
/**************** sec9 ****************/

.sec9{
    background-color:#f5f5f5;
}

.sec9-cont{
    display:flex;
    align-items:center;
    justify-content: space-between;
}

.sec9-cont > div{
    width:50%;
}

.sec9-cont .left > div{
    display:flex;
    align-items:start;
    gap:7rem;
}

.sec9-cont .left > div + div{
    margin-top:6rem;
}

.sec9-cont .left > div .sub-tit{
    font-size:2.8rem;
    font-family: "Nanum Myeongjo", serif !important;
    font-weight:600;
}

.sec9-cont .right .map-box img{
    /* border-radius: 4rem; */
    /* border:2px solid #e1e1e1; */
    /* box-shadow: 0 1rem 1rem 0 rgba(0, 0, 0, 0.05); */
}

.sec9-cont .right .txt{
    margin-top:2rem;
    text-align:center;
    font-size:2rem;
    color:#666;
}

.sec9-cont .right .map-box{
    width:688px;
    max-width:100%;
    margin-inline:auto;
    height: 312px;
    overflow: hidden;
}

.sec9-cont .right .map-box > .map-area{
    width: 100%;
    border: 1px solid #e1e1e1;
    height: 312px;
    border-radius: 4rem;
    overflow: hidden;
}

.sec9-cont .right .map-box > .map-area .wrap_map{
    width: 100%;
    height: 100%;
}

.sec9-cont .right .map-box > .map-area .wrap_btn_zoom{
    display:none;
}

.sec9-cont .right .map-box .cont{
    display:none;
}
@media screen and (max-width:992px){
    .sec9-cont{
        flex-direction: column;
        align-items:center;
        gap:7rem;
    }
    .sec9-cont > div{
        width:100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .sec9-cont .left > div{
        gap:3rem;
        min-width:80%;
    }

    .sec9-cont .left > div .sub-tit{
        font-size:min(4vw, 26px);
        min-width: fit-content;
    }

    .sec9-cont .right .map-box{
        height: 400px;
    }

    .sec9-cont .right .map-box > .map{
        height: 400px;
    }
	
}

@media screen and (max-width:480px){
    .sec9-cont .left > div{
        min-width:100%;
    }
    
    .sec9-cont .right .map-box{
        height: 300px;
    }

    .sec9-cont .right .map-box > .map{
        height: 300px;
    }
}
