@charset "utf-8";

/* CSS Document */
[id^="sect_0"] {
    /*padding: calc(var(--sec_pd) / 1.25) 0;*/
    transition: all var(--q_trans);
}

.half {
    width: 48% !important;
}

.sect_tit {
    line-height: 1.125;
}


/*섹션1_유일무이*/
#sect_01 {
    padding: calc(var(--sec_pd) / 2) 0 var(--sec_pd);
}

    #sect_01 .sect_01_cont.container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(100px, auto);
    }

        #sect_01 .sect_01_cont.container .item {
            position: relative;
            background-color: var(--light_point);
            border-radius: var(--br_r);
            box-shadow: 0px 4px 5px 1px rgba(0,0,0,0.050);
            padding: 2.5rem 1.75rem;
            line-height: 1.25;
        }

            #sect_01 .sect_01_cont.container .item img {
                width: 80px;
                aspect-ratio: 1 / 1 !important;
                margin: auto 0;
            }

            #sect_01 .sect_01_cont.container .item:before {
                position: absolute;
                content: '';
                display: block;
                width: 5px;
                height: 100%;
                max-height: 60px;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                background-color: var(--navy);
            }

            #sect_01 .sect_01_cont.container .item:last-child {
                grid-column: 2 / span 2;
                grid-row: 4 / 5;
            }
/*섹션2*/
#sect_02 {
    padding: calc(var(--sec_pd) / 2) 0 0;
    background-image: url("../images/banner_bg.png");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}


    #sect_02 .sect_02_cont {
        width: 100%;
        max-width: 600px;
    }

    #sect_02 .sect_tit {
        margin-top: calc(var(--sec_pd) / 1.5);
    }

    #sect_02 .txt_bg1, .txt_bg2 {
        position: relative;
        display: inline-block;
    }

        #sect_02 .txt_bg1:before {
            content: '';
            position: absolute;
            z-index: -1;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: block;
            background-image: url('../images/banner_text_bg_01.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            pointer-events: none;
            width: 120%;
            height: 140%;
        }

    #sect_02 .txt_bg2:before {
        content: '';
        position: absolute;
        z-index: -1;
        top: 65%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: block;
        background-image: url('../images/banner_text_bg_02.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        pointer-events: none;
        width: 110%;
        height: 140%;
    }

    #sect_02 .banner_pig {
        margin-bottom: calc(var(--sec_pd) / 3);
        max-width: 600px;
        width: 100%;
    }


/*섹션3*/
#sect_03 {
    padding: var(--sec_pd) 0;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-image: url("../images/house_bg.png");
}
  #sect_03 .sect_tit {
            padding-top: var(--sec_pd) ;
        }
    #sect_03 .sect_03_cont {
        width: 100%;
        max-width: 704px;
    }

   
/*섹션4*/
#sect_04 {
    padding: calc(var(--sec_pd) / 2) 0 var(--sec_pd) ;
}
#sect_04 .sect_04_cont{
    position: relative;
	overflow: hidden;
}
#sect_04 .sect_04_cont:after{
    position: absolute;
	right: 0;
	top: 0;
	display: block;
	content: '';
	width: 100px;
	height: 100%;
	background-image: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1) 80%);
	z-index: 9
}


/* 기본 구조 */
#slideTrack {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 60px;
    padding: 0;
	/*transition: transform 0.4s ease-in-out;*/
}
/* 슬라이드 항목 */
#slideTrack li {
    flex: 0 0 calc((100% - 120px) / 3); /* gap: 60px x 2 (3개 → 2개 gap) */
    
}
/* 반응형: 모바일에서는 1개씩 */
@media (max-width: 768px) {
	/*섹션4*/
	#sect_04 {
		padding: calc(var(--sec_pd) / 2) 1rem var(--sec_pd) ;
	}
	#sect_04 .wrap{
		padding: 0!important;
	}
	#slideTrack {
    gap: 0;
  }
    #slideTrack li {
        flex: 0 0 100%;
    }
}
/*.slide_item{ 
	width: 100%
}
.slide_item img{
	width: 428px;
	aspect-ratio: 16 / 9!important
}*/
.slide_item_text{
	padding-left: 1.25rem;
	border-left: 5px solid var(--point);
}
#slidePrevBtn, #slideNextBtn{
	cursor:pointer;
}
#slidePrevBtn:hover, #slideNextBtn:hover{
	filter: invert(49%) sepia(99%) saturate(1507%) hue-rotate(157deg) brightness(89%) contrast(101%);
}

/* ==================== 해상도 1280px 이상 ==================== */
@media screen and (min-width: 1280px) and (max-width: 1480px) {

    /*섹션1*/
    #sect_01 {
        padding-top: var(--sec_pd);
    }

    .sect5_slide_control {
        max-width: 57.5%;
    }
}

/* ==================== 모바일 레이아웃 ==================== */
@media(max-width: 1280px) {
    .sect_tit .fs_32 {
        margin: 0.5rem 0 1.5rem;
    }
    /*섹션1*/
    #sect_01 {
        padding-top: var(--sec_pd);
    }

        #sect_01 .sect_01_cont.container {
            grid-template-columns: 1fr !important; /* 한 줄 */
        }

            #sect_01 .sect_01_cont.container .item {
                padding: 2.5rem;
                gap: 2.5rem !important
            }

                #sect_01 .sect_01_cont.container .item img {
                    width: 50px;
                }

                #sect_01 .sect_01_cont.container .item:before {
                    max-height: 45px;
                    width: 3px;
                }

                #sect_01 .sect_01_cont.container .item:last-child {
                    grid-column: auto !important; /* 2칸 span 제거 */

                    grid-row: auto !important;
                }


    /*섹션2*/
    #sect_02 {
        padding: var(--sec_pd) 0;
        background-image: url("../images/banner_bg_m.png");
        background-position: bottom center;
        background-repeat: no-repeat;
        background-size: contain;
    }

        #sect_02 > .wrap.d_flex {
            flex-direction: column
        }


        #sect_02 .sect_02_cont {
            width: 100%;
            max-width: 400px;
        }

        #sect_02 .sect_tit {
            margin-top: unset;
        }

        #sect_02 .banner_pig {
            margin-bottom: calc(var(--sec_pd) / 5);
            max-width: 600px;
            width: 100%;
        }
	
	 #sect_03 {
        padding: 0 1rem var(--sec_pd) ;
       
    }

	#sect_03 .wrap{
		flex-direction: column
	}
	#sect_03 .sect_tit{
		text-align: center!important
	}
	
	.sect_tit_pack{align-items: flex-end}
	.sect_04_slide_control{gap:40px}
    .half {
        width: 100% !important;
    }
}

@media(max-width: 900px) {






}

@media(max-width: 600px) {

   
}

@media screen and (max-width: 400px) and (orientation: portrait) {
    
}

/* ========================================================================== */
/***** 가로모드 *****/
@media screen and (orientation: landscape) and (max-width: 900px) {
}
