







/*quick_btn*/


.quick_btn{

    position: fixed;
    bottom: 32%;
    right: 45px;
    z-index: 100;
    animation: topdown 2s infinite ease-in-out;
    /* transition: color 0.3s; 폰트 색상 변화에 대한 트랜지션 설정 */
    cursor: pointer;

}

@keyframes topdown {
    0% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(-10%);
    }
    10% {
        transform: translateY(0%);
    }
}

.quick_btn p{
    
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif; 
    font-size:28px;
    text-align: center;
    font-weight: 700;
    line-height: 0.8em;
}


.quick_btn p span{
    font-size: 15px;
}



.quick_btn_mo{

    position: fixed;
    bottom: 40px;
    left: 10px;
    z-index: 100; 
    width: 100%;

}

.quick_btn_mo ul {
    width: 95%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}


.quick_btn_mo ul li {
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    width: 45%;
    height: 50px;
    padding: 17px;
    text-align: center;
    background-color: #fff;
    border-radius: 100px;
    font-size: 17px;
    font-weight: 700;
    border: 1px #eee solid;
}


.quick_btn_mo ul li:nth-child(1){

    background-color: #fae100;
    border: 0px;
}


.quick_btn_mo_side{

    position: fixed;
    bottom: 130px;
    left: 85%;
    z-index: 200; 
    width: 100%;

}

.quick_btn_mo_side ul {
    
    width: 95%;

}

.quick_btn_mo_side ul li {
    
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: #885f36;
    border-radius: 100px;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;

    margin-bottom: 10px;
    
    
}


.quick_btn_mo_side ul li:nth-child(2){

    background-color: #161616;

}

.quick_btn_mo_side ul li svg{

    color: #fff;
    font-size: 22px;

}
 


@media (min-width: 200px) and (max-width:720px) { 


.quick_btn{

    display: none;

}


}





/*quick_info


.quick_info{

    position: fixed;
    bottom: 13%;
    right: 45px;
    z-index: 100;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    align-items: flex-end;
    gap: 1rem;

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;


}

.quick_info_tel{

    background-color: #885f36;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;

}

.quick_info_tel p{
    margin: 0;
}


.quick_info_top{
    
    background-color: #fff;
    color: #000;
    border-radius: 100px;
    width:52px;
    height:52px;
    font-weight: 500;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    
}

.quick_info_top p {

    font-size: 1rem;
    margin: 0;

}


.quick_info_top svg{

    font-size: 2.5rem;
}


*/



/*section_1 배너 안 교차 애니매이션 */


.cross_container {
    position: relative;
    width: 100%;  /* Adjust the width as needed */
    height: 240px; /* Adjust the height as needed */
    padding-bottom: 3.5%;
}

.fade-image, .fade-text {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

.fade-image {
    z-index: 1;
    animation: fadeInImage 4s infinite alternate;
    position: relative;
    margin: 0 auto;

}

.fade-text {

    position: absolute;
    top: 50%;

    width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    letter-spacing: 0.3rem;
    color: white;
    animation: fadeInText 4s infinite alternate;

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;

}

@keyframes fadeInImage {
    0% { opacity: 1; }
    20% { opacity: 1; }
    40% { opacity: 1; }
    60% { opacity: 0; }
    80% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes fadeInText {
    0% { opacity: 0; }
    20% { opacity: 0; }
    40% { opacity: 0; }
    60% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 1; }
}



/*section_1*/

.section_1{

    background-image:url(https://nobly.kr/skin/view/images/main/sec_1-bg.png);
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100vh;
}

.main_text{

    color: #fff;
    text-align: center;

}

.sec1_txt_1{

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;    
    font-size: 45px;
    line-height: 45px;
    margin: 0 auto;
    padding-bottom: 3.5%;
    letter-spacing: 0.3rem;

}

.sec1_txt_2{
    font-family: "Nanum Myeongjo", serif;
    font-size: 70px;
    margin: 0 auto;
    padding: 100px 0 0 0;
}

.sec1_txt_3{
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 25px;
    margin: 0 auto;
    padding: 30px 0 80px 0;
    letter-spacing: 0.1rem;
    font-weight: 300;
}


.sec_1{

    width: 95%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;

}


.mo_br{display: none;}




/*section_video*/

.section_video{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    height: 100vh;
}


.bg-video {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}


.bg-video__content {
    height: 100%;
    width: 100%;
    object-fit: cover;
}



.bg-text {
    position: absolute;
    top: 68rem;
    text-align: center;
    font-family: "Nanum Myeongjo", serif;
    margin: 0 auto;
}


.bg-text .text_ {
    font-size: 35px;
    color: #fff;
    padding-top: 10px;
    letter-spacing: 0.3rem;
}

.bg-text .logo_ {
    width: 90%;
}




/*sectionn_2*/


.section_2{

    background-image:url(https://nobly.kr/skin/view/images/main/sec_2-bg.png);
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;


    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    height: auto;

}


.sec_2{

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 95%;
    padding: 170px 0;
}

.sec_2_con_1{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    width: 95%;
    padding: 0 0 50px 0;
}

.sec_2_con_1 li:nth-child(2){

    padding: 0 30px;

}

.sec_2_con_1 li .item_wrap div{

    max-width: 100%;
    
}

.sec_2_con_1 li .item_wrap div:nth-child(1){
    font-family: "Nanum Myeongjo", serif;
    font-size: 30px;
    color: #fff;
    font-weight: 100;
    padding-top: 50px;
    animation: fadeIn 2s infinite ease-in-out;
}


.sec_2_con_1 li .item_wrap div:nth-child(2){
    font-family: "Nanum Myeongjo", serif;
    font-size: 60px;
    color: #e0be93;
    font-weight: 500;
    padding-top: 20px;
}

.sec_2_con_1 li .item_wrap{
    max-width: 100%;
}

.sec_2_con_2{

    max-width: 95%;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    text-align: center;
}


.sec_2_con_2 li:nth-child(1){
    font-family: "Nanum Myeongjo", serif;
    font-size: 40px;
    color: #fff;
    font-weight: 500;
    
}


.section_2 .sec_2_con_1 li img{
    max-width:60%;
}

.sec_2_con_3 li{

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;

}


.sec_2_con_2 li:nth-child(2){
    font-family: "Nanum Myeongjo", serif;
    font-size: 50px;
    color: #e0be93;
    font-weight: 500;
    padding-top: 20px;
}


.sec_2_con_3{

    width: 95%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sec_2_con_3 li{
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 23px;
    color: #fff;
    font-weight: 500;
}

.sec_2_con_3 li p{

    margin: 0;

}

.sec_2_con_3 li:nth-child(1){
    width: 165px;
    height: 165px;
    border: 1px #fff solid;
    border-radius: 100px;
    margin-right: -20px;
}
.sec_2_con_3 li:nth-child(2){
    width: 165px;
    height: 165px;
    border: 1px #fff solid;
    border-radius: 100px;
}
.sec_2_con_3 li:nth-child(4){
    width: 165px;
    height: 165px;
    border: 1px #e0be93 solid;
    border-radius: 100px;
    color: #e0be93;
    
}






/*sectionn_2_sp*/


.section_2_sp{

    background-image:url(https://nobly.kr/skin/view/images/main/sec_2_sp-bg.png);
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;

    height: 100vh;

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;


}


.simple_test_area{

    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 28px rgba(180, 180, 180, 0.22), 0 10px 10px rgba(180, 180, 180, 0.22);

    width: 40%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 7rem 0;
    margin-left: 10%;

}


.sec_2_sp{

    width: 90%;
    margin: 0 auto;

}


.simple_test_area_line_1{
    
    text-align: center;
    color: #000;
    font-size: 4rem;
    font-weight: 600;

}


.simple_test_area_line_1 p span{

    color: #885f36;

}


.simple_test_area_line_2{

    text-align: center;
    color: #808080;
    font-size: 2rem;
    font-weight: 600;

}

.simple_test_area_line_3{

    width: 80%;
    background-color: #f4f5f7;
    border-radius: 15px;
    margin: 1.5rem;

}

.simple_test_area_line_4{

    width: 100%;
    text-align: center;
    padding-top: 1.5rem;

}


.simple_test_area_line_4 button{

    width: 50%;
    background-color: #885f36;
    padding: 1.5rem;
    color: #fff;
    border: 0;
    font-weight: 700;
    font-size: 2rem;


}


.simple_test_box{

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 3rem 0;
    gap: 1.5rem;
    font-size: 2rem;
    font-weight: 600;

}

.simple_test_box select{

    font-size: 1.8rem;
    border: 1px #eee solid;

}


.simple_test_box .align_hori{

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;

}


.simple_test_box .align_hori p{


    margin: 0;

}


@media (min-width: 200px) and (max-width:1456px) { 

    
    .section_2_sp{

        background-image:url(https://nobly.kr/skin/view/images/main/sec_2_sp-bg_mobile.png);
        background-position: bottom;
        height: auto;

    }


    .simple_test_area {

        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: none; 
        width: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        gap: 2rem;
        padding: 8rem 0;
        margin-left:0%;
        padding: 8rem 0;

    }

    .simple_test_area_line_4 button{

        width: 80%;
        background-color: #885f36;
        padding: 3rem;
        color: #fff;
        border: 0;
        font-weight: 700;
        font-size: 3.5rem;

    }


    .simple_test_box {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        padding: 6rem 0;
        gap: 2rem;
        font-size: 3rem;
        font-weight: 600;
    }


    .sec_2_sp {
        padding: 8rem 1px 68rem 0;
    }


    .simple_test_area_line_1 {

        font-size: 6rem;
        line-height:7.5rem;

    }


    .simple_test_area_line_2 {

        font-size: 3rem;
        line-height: 4rem;
        font-weight: 500;

    }


    .simple_test_box select {

        font-size: 3rem;

    }

    .simple_test_area_line_4{

        padding-top: 2rem;

    }


}



/*section_3*/

.section_3{

    background-image:url(https://nobly.kr/skin/view/images/main/sec_3-bg.png);
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;

}


.sec_3{

    display: flex;
    align-items: center;
    width: 90%;

}

.sec_3_con_1{

    padding: 100px 0 0 0;
    width: 50%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    margin-bottom: 0px;

}



.sec_3_con_1 li{

    display: flex;
    justify-content: center;

}

.sec_3_con_1 li img{max-width: 80%;margin-right: -20vh;}
.sec_3_con_2{

    width: 50%;

}


.sec_3_con_2 li .sec_3_con_2_stit{

    font-family: "Nanum Myeongjo", serif;
    font-size: 20px;
    color: #e0be93;
    font-weight: 700;
    line-height: 130%;
    padding-bottom: 30px;
    letter-spacing: 0.1px;

}


.sec_3_con_2 li p:nth-child(2){

    font-family:-apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 50px;
    color: #fff;
    font-weight: 400;
    line-height: 130%;
    padding-bottom: 10px;
    letter-spacing: 1px;

}


.sec_3_con_2 li p:nth-child(2) span{


    color: #e0be93;

}


.sec_3_con_2 li p:nth-child(3){

    font-family:-apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 2rem;
    color: #fff;
    line-height: 140%;
    padding-bottom: 40px;
    letter-spacing: 0.5px;
    font-weight: 300;
    
}


.button_area{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
}


.sec_3_con_2 li .button_3{

    width: 200px;
    height: 60px;
    border: 1px #fff solid;
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    background-color: transparent;
    cursor: pointer;
    text-align: center;

}

.button_3 p{

    padding: 20px 0 ;
    line-height: 17px;

}


.sec_3_con_2 li .button_3:hover {

    border: #e0be93 1px solid;
    color:#e0be93 ;
}

.sec_3_con_2 li .button_3:active {

    background-color: #e0be93; /* 클릭 상태 배경색 */
    transform: scale(0.98); /* 클릭 시 약간 축소 효과 */
   /* box-shadow: 0 5px #666;  클릭 시 그림자 효과 */
   color:#000 ;
   font-weight: 500;

}


.sec_3_con_2 li .button_3:focus{

    border: #e0be93 2px solid;
    color:#e0be93 ;
    font-weight: 700;

}




/*section_3_1*/


.section_3_1{
    background-image:url(https://nobly.kr/skin/view/images/main/sec_3_1-bg.png);
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
}


.section_3_1 .sec_3_1 {

    padding: 150px 0;

}



.sec_3_1_con_1{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    
}




.sec_3_1_con_1 button{
    width: 200px;
    height: 60px;
    border: 1px #000 solid;
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    background-color: transparent;
}


.sec_3_1_con_1 li:nth-child(1){
    font-family:-apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 50px;
    font-weight: 700;
    padding-bottom: 20px;
    color: #090909;
}


.sec_3_1_con_1 li:nth-child(2){
    font-family:-apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 30px;
    padding-bottom: 50px;
}


.sec_3_1_con_1 li:nth-child(3){

    padding-bottom: 110px;
}


.sec_3_1_con_2{
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
    gap: 22px;
    overflow-x:auto;
}



/*section_4*/


.section_4{

    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: auto;
    width: 100%;
    align-content: center;
    align-items: center;
    padding: 12rem 0 8rem 0;

}


.section_4 h1{

    font-family:-apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 45px;
    font-weight: 600;
    color: #000;

}



.section_4 .mt-4{

    display: flex;
    width: 90%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

}

.section_4 .mt-4 .col-sm-6 b{


    font-family:-apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 20px;


}

.section_4 .mt-4 .col-sm-6 iframe{

    border-radius: 1rem;

}



.section_4 .mt-4 .col-sm-6 p{

    font-family:-apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding-top: 10px;
    cursor: pointer;
    color: #8f8f8f;


}



.section_4 .mt-4 .col-sm-6 p:hover {

   color: #000;

}




.section_4 .sec_4_con_1{

    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 30px;

}


.section_4 .sec_4_con_1 p{

    font-family:-apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size:20px;
    
}


.sec_4_con_1 .button_4{

    width: 200px;
    height: 60px;
    border: 1px #c1c1c1 solid;
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    color: #000;
    font-weight: 500;
    background-color: transparent;
    cursor: pointer;
    text-align: center;
    margin: 3rem 0;

}

.section_4 .sec_4_con_1 .button_4 p{

    padding: 20px 0 ;
    line-height: 17px;
    font-size: 17px;

}


.sec_4_con_1 .button_4:hover {

    border: #000 1px solid;

}



/*section_4_span*/

.section_4_span{

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    background-color: #f9f9f9;
    height: auto;
    width: 100%;

}

.sec_4_span_con_1{

    width: 80%;
    padding: 12rem 0 8rem 0;

}


.sec_4_span_con_1 p{

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 45px;
    color: #000;
    font-weight: 600;
    padding-bottom: 10px;
    text-align: center;

}


.sec_4_span_con_1 p span{


    color: #885f36;

}


.sec_4_span_con_1 .sec_4_span_check_text{

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 2rem;
    color: #808080;
    padding-bottom: 3rem;
    font-weight: 400;

}


.sec_4_span_con_1 .button_area{

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;

}


.sec_4_span_con_1 .button_4{

    width: 200px;
    height: 60px;
    border: 1px #c1c1c1 solid;
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    color: #000;
    font-weight: 500;
    background-color: transparent;
    cursor: pointer;
    text-align: center;

}

.section_4_span .sec_4_span_con_1 .button_4 p{

    padding: 20px 0 ;
    line-height: 17px;
    font-size: 17px;

}


.sec_4_span_con_1 .button_4:hover {

    border: #000 1px solid;

}






/*section_5*/

.section_5{
    background-image:url(https://nobly.kr/skin/view/images/main/sec_5-bg.png);
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
}

.sec_5{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    padding: 200px 0;
    width: 95%;
}

.sec_5_con_1{
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 55px;
    color: #fff;
    font-weight: 500;
    line-height: 1.3em;
    padding-bottom: 20px;
}

.sec_5_con_1 span{
    color: #e0be93;
}

.sec_5_con_2{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

.sec_5_con_2 ul {
    padding: 30px;
}

.sec_5_con_2 ul li:nth-child(2){
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 25px;
    color: #e0be93;
    font-weight: 700;
    padding: 30px 0 15px 0;
}


.sec_5_con_2 ul li:nth-child(3){
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 20px;
    color: #fff;
    font-weight: 300;
    line-height: 1.2;
}


.sec_5_con_3 ul {
    display: flex;
    padding:30px 0 0 0 ;
}

.sec_5_con_3 ul li{
    width: 150px;
    height: 150px;
    background-color: #fff;
    border-radius: 45px;
    margin: 0 20px;

    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.sec_5_con_3 ul li img{

    max-width: 90px;
}

.sec_5_con_3 ul .award_thum{

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 2rem;

}

.sec_5_con_3 ul .award_thum p{

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 300;

}




/*section_6*/


.section_6{

    height:100vh;

}



.sec_6{
    display: flex;
}

.sec_6 div{
    width: 50%;
}


.sec_6 div ul li:nth-child(1){
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 50px;
    color: #fff;
}


.sec_6 div ul li:nth-child(2){
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 2rem;
    color: #fff;
    font-weight: 200;
    padding: 40px 0;
    line-height: 1.3;
    letter-spacing: 0.1px;
}


.sec_6 div ul li:nth-child(3) span{
    font-size: 80px;
    color: #fff;
    font-weight: 200;
}


.sec_6 div ul{

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    text-align: center;
}


.sec_6_con_1{

    background-image:url(https://nobly.kr/skin/view/images/main/sec_6_con_1.png);
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    transition: transform 0.2s ease; /* 확대/축소 시 부드러운 전환을 위한 CSS transition */

}

.sec_6_con_2{

    background-image:url(https://nobly.kr/skin/view/images/main/sec_6_con_2.png);
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    transition: transform 0.2s ease; /* 확대/축소 시 부드러운 전환을 위한 CSS transition */

}


.opacity_color:hover {

    filter: brightness(70%); /* 마우스를 올렸을 때 이미지를 어둡게 처리 (70% 어둡게) */
}


.opacity_color:hover {

    filter: brightness(70%); /* 마우스를 올렸을 때 이미지를 어둡게 처리 (70% 어둡게) */

}  




.button_6{

    width: 200px;
    height: 60px;
    border: 1px #fff solid;
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    background-color: transparent;
    cursor: pointer;

}

.button_6 p{

    padding: 20px 0 ;
    line-height: 17px;

}



.button_6:hover {

    border: #e0be93 1px solid;
    color:#e0be93 ;
}



.button_6:active {

    background-color: #e0be93; /* 클릭 상태 배경색 */
    transform: scale(0.98); /* 클릭 시 약간 축소 효과 */
   /* box-shadow: 0 5px #666;  클릭 시 그림자 효과 */
   color:#000 ;
   font-weight: 500;

}


.button_6:focus{

    border: #e0be93 2px solid;
    color:#e0be93 ;
    font-weight: 700;

}




/*section_7*/

.section_7{
    background-image:url(https://nobly.kr/skin/view/images/main/sec_7-bg.png);
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    height:auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}

.sec_7{

    max-width: 95%;

}

.sec_7_con_1{

    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 200px 0;

}

.sec_7_con_1 ul li{
    
    font-family:"Nanum Myeongjo", serif;
    font-size: 50px;
    color: #fff;
    line-height: 1.3em;

}

.sec_7_con_1 ul li img{

    max-width: 30%;

}

.sec_7_con_1 ul li:nth-child(3){

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 2rem;
    line-height: 1.5em;
    padding-top: 30px;
    font-weight: 300;
    letter-spacing: 1px;

}

.sec_7_con_1 ul li span{
color: #e0be93;
}


/*section_8*/

.section_8{
    background-image:url(https://nobly.kr/skin/view/images/main/sec_8-bg.png);
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;

    display: flex;
    flex-wrap: wrap;
    align-content: center;
    flex-direction: row;
    justify-content: center;

    height:100vh;

}


.sec_8{

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    /* padding-top: 200px; */
    width: 95%;

}

.sec_8_con_1{

    width: 40%;

}

.sec_8_con_1 ul{

    margin-left: 30%;

}


.sec_8_con_2{

    width: 60%;


}


.sec_8_con_1 ul li p:nth-child(1){

    font-family: "Nanum Myeongjo", serif;
    font-size: 25px;
    color: #e0be93;
    font-weight: 100;
    line-height: 1.2em;
    padding-bottom: 15px;

}

.sec_8_con_1 ul li p:nth-child(2){

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 55px;
    color: #fff;
    line-height: 1.3em;
    letter-spacing: 2px;

}


.sec_8_con_2 ul li img{

    max-width: 80%;
    padding-top: 40px;;

}



.sec_8_con_2 ul li {

    display: flex;
    flex-direction: row;
    justify-content: center;

}


    


/*section_9*/

.section_9{

    background-image:url(https://nobly.kr/skin/view/images/main/sec_9-bg.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;

}

.sec_9{
    display: flex;
    align-items: center;
    width: 100%;
}


.sec_9_con_1{

      width: 60%;
    padding-left: 30vh;

}


.sec_9_con_1 ul{

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;

}


.sec_9_con_1 ul li:nth-child(2){

    font-family: "Nanum Myeongjo", serif;
    font-size: 50px;
    color: #1a1a1a;

}


.sec_9_con_1 ul li:nth-child(4){

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 2rem;
    line-height: 1.5em;
    color: #1a1a1a;
    text-align: center;
    font-weight: 300;

}

.sec_9_con_1 ul li:nth-child(2){

    font-weight: bold;
    padding-top: 30px;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;


}


.sec_9_con_1 ul li:nth-child(2) span{

    color:#a5845e ;


}

.sec_9_con_1 ul li:nth-child(2) img{

    padding: 0px 20px ;
}



.sec_9_con_2{

    padding: 15vh 0 0 0;
    width: 50%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    margin-bottom: 0px;
}

.sec_9_con_2 img{padding-right: 35vh;}


.button_9{

    width: 200px;
    height: 60px;
    border: 1px #000 solid;
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 17px;
    color: #1a1a1a;
    font-weight: 500;
    background-color: transparent;
    cursor: pointer;
    margin-top: 4rem;
    text-align: center;

}


.button_9 p{

    padding: 20px 0 ;
    line-height: 17px;

}



/*section_10*/

.section_10{

    background-color: #090909;
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    color: #fff;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height:auto;

}

.sec_10{

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    width: 95%;
    align-items: center;
    padding: 10rem 0 ;

}



.sec_10_con_1{

    width: 40%;

}




.sec_10_con_1 ul{

    margin-left: 30%;

}

.sec_10_con_1 ul li{

    padding-bottom: 15px;

}

.sec_10_con_1 ul li:nth-child(1){

    font-family: "Nanum Myeongjo", serif;
    font-size: 25px;
    color: #e0be93;
    font-weight: 100;

}


.sec_10_con_1 ul li:nth-child(2){

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 55px;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.1em;
    font-weight: 500;


}


.sec_10_con_1 ul li:nth-child(2) span{

    color: #e0be93;
}


.sec_10_con_1 ul li:nth-child(3){

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 55px;
    color: #fff;

}

.sec_10_con_1 ul li:nth-child(4){

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 2rem;
    color: #fff;
    font-weight: 200;

 }

.sec_10_con_2{

    width: 60%;
    display: flex;
    justify-content: center;

}

 .sec_10_con_2 ul{

    width: 55%;

 }


.sec_10_con_2 ul li .input_align{ 
    display: flex;
    padding: 20px 0;
    align-items: flex-end;
    justify-content: space-between;
    
}



.sec_10_con_2 ul li .input_align_center input {

    width: 20px;
    height: 20px;

}

.sec_10_con_2 ul li .input_align_center label{

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0.4px;
    font-weight: 500;
    margin-bottom: 0;

}

.sec_10_con_2 ul li .input_align div:nth-child(1){ 

}

.sec_10_con_2 ul li .input_align .half_input{

    width: 48%;

}


.sec_10_con_2 input{

    height: 55px;
    border-radius: 0.5rem;
    border: 0px;

}


.sec_10_con_2 input[type="text"] {
    padding: 0 15px;
    color: #222;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    width: 100%;
}


.sec_10_con_2 select{

    height: 55px;
    border-radius: 0.5rem;
    border: 0px;
    width: 100%;
    
    padding: 0 15px;
    color: #222;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;


}

.sec_10_con_2 p{

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 20px;
    color: #fff;
    padding-bottom: 10px;
    font-weight: 500;

}



.sec_10_con_2 ul li:nth-child(4) input{

    width: 30%;


}

.sec_10_con_2 ul li:nth-child(4) button{

    width: 30%;
    height: 55px;
    border-radius: 0.5rem;
    border: 1px #fff solid;
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    background-color: #e0be9300;

}




.sec_10_con_2 ul li .marriage{


    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;


}



.sec_10_con_2 ul li .marriage input[type="button"]{

    width: 48%;
    height: 55px;
    border: 1px #fff solid;
    background-color: #090909;
    color: #fff;
    transition: background-color 0.3s ease; /* 부드러운 색상 전환 */
    font-size:1.5rem ;
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;

}


.sec_10_con_2 ul li .marriage input[type="button"]:hover {

    border: #e0be93 1px solid;
    color:#e0be93 ;
}


.sec_10_con_2 ul li .marriage input[type="button"]:active {

    background-color: #000000; /* 클릭 상태 배경색 */
    transform: scale(0.98); /* 클릭 시 약간 축소 효과 */
   /* box-shadow: 0 5px #666;  클릭 시 그림자 효과 */
}


.sec_10_con_2 ul li .marriage input[type="button"]:focus{

    border: #e0be93 2px solid;
    color:#e0be93 ;
    font-weight: 700;

}






.sec_10_con_2 ul li:nth-child(5) .marriage input[type=radio]{
    display: none;
}


.sec_10_con_2 ul li:nth-child(5) input{


}

    .sec_10_con_2 ul li:nth-child(5) input[type=radio]+label{

        display: inline-block;
        width: 100%;
        height:55px ;
        padding: 18px 0px;
        border: 1px solid #fff;
        text-align: center;
        border-radius: 0.5rem;
        font-weight: 500;
        background-color: #090909;
        color: #fff;

    }



    .sec_10_con_2 ul li:nth-child(5) input[type=radio]:checked+label{

        background-color: #e0be93;
        color: #000;
        font-weight: 700;
        border: 0px;

    }


    .sec_10_con_2 ul li:nth-child(5) #pml{

    }


    .sec_10_con_2 ul li:nth-child(6) .input_align_center label{
        margin-left: 5px;
    }


    .sec_10_con_2 ul li:last-child button{

        width: 100%;
        height: 70px;
        border-radius: 0.5rem;
        border: 0px;
        font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
        font-size: 2rem;
        color: #000;
        font-weight: 700;
        background-color: #e0be93;

    }



    .sec_10_con_2 ul li .input_align .tel_input{

        width: 70%;

    }


    
    .sec_10_con_2 ul li .check_{

        display: flex;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 25px 0 10px 0;
        align-items: flex-end;
        gap: 8px;

    }



    .sec_10_con_2 ul li .input_align .tel_input div{

        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;

    }



@media (min-width: 1100px) and (max-width: 1600px) {


    .sec_10_con_1 ul li:nth-child(2){

        font-size: 42px;

    }

    .sec_10_con_1 ul li:nth-child(3) {

        font-size: 42px;

    }   


}




/*section_11*/


.section_11{

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    height: 100vh;
    background-color: #fff;

}

.section_11 .sec_11{

    height: 100vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    width: 100%;

}


.section_11 .sec_11 .sec_11_con_1{
     width: 50%;
     display: flex;
     flex-direction: row;
     justify-content: flex-start;
     flex-wrap: wrap;
     align-items: center;
}


.section_11 .sec_11 .sec_11_con_1 ul{

    margin-left: 27%;

}

.section_11 .sec_11 .sec_11_con_2{
     width: 50%;
}


.section_11 .sec_11 .sec_11_con_2 ul{

    margin-bottom: 0;
}



.section_11 .sec_11 .sec_11_con_1 li:nth-child(1){

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 55px;
    color: #885f36;
    font-weight: 600;

}


.section_11 .sec_11 .sec_11_con_1 li:nth-child(1) span{

    color: #090909;

}



.section_11 .sec_11 .sec_11_con_1 li:nth-child(2) p{

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 30px;
    color: #090909;
    font-weight: 700;
    padding: 50px 0 0 0;

}


.section_11 .sec_11 .sec_11_con_1 li:nth-child(3) p{

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 25px;
    color: #090909;
    font-weight: 500;

}



.section_11 .sec_11 .sec_11_con_1 li:nth-child(4) p{

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 30px;
    color: #090909;
    font-weight: 600;
    padding: 50px 0 0 0;

}


.section_11 .sec_11 .sec_11_con_1 li:nth-child(4) div{
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 20px;
    color: #090909;
    font-weight: 500;
}

.section_11 .sec_11 .sec_11_con_1 li:nth-child(4) div svg{
    color: #885f36;
    font-size:35px;
}


.section_11 .sec_11 .sec_11_con_1 li:nth-child(5) p{

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 30px;
    color: #090909;
    font-weight: 600;
    padding: 50px 0 0 0;

}


.section_11 .sec_11 .sec_11_con_1 li:nth-child(5) div:nth-child(2) span{
    color: #885f36;
}



.section_11 .sec_11 .sec_11_con_1 li:nth-child(5) div:nth-child(3) span{
    color: #f77535;
}




.section_11 .sec_11 .sec_11_con_1 li:nth-child(5) div:nth-child(2) svg{
    color: #885f36;
    font-size: 35px;

}



.section_11 .sec_11 .sec_11_con_1 li:nth-child(5) div:nth-child(3) svg{
    color: #f77535;
    font-size: 35px;

}




.section_11 .sec_11 .sec_11_con_1 li:nth-child(5) div{

    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 20px;
    color: #090909;
    font-weight: 500;
    padding-bottom: 10px;

}




.section_11 .sec_11 .sec_11_con_2 li:nth-child(1){

    background-image:url(https://nobly.kr/skin/view/images/main/sec_11_con_2_map_1.png);
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    height: 50vh;

}


.section_11 .sec_11 .sec_11_con_2 li:nth-child(2){

    height: 50vh;

}






@media (min-width: 340px) and (max-width:1500px){

    .section_11{

        height: auto;

    }

    .section_11 .sec_11{

        height: auto;
        width: 90%;
        gap: 55px;
        padding-top:60px

    }


    .section_11 .sec_11 .sec_11_con_1{

        width: 100%;
        justify-content: center;
        text-align: center;

    }


    .section_11 .sec_11 .sec_11_con_2{

        width: 100%;

    }

    .section_11 .sec_11 .sec_11_con_1 ul{

        margin-left: 0%;

    }


    .section_11 .sec_11 .sec_11_con_1 li:nth-child(1){

        font-size: 6rem;
        text-align: center;

    }


    
    .section_11 .sec_11 .sec_11_con_1 li:nth-child(2) p{

        font-size:4rem;
        padding: 25px 0 15px 0;

    }


    .section_11 .sec_11 .sec_11_con_1 li:nth-child(3) p{

        font-size: 3rem;

    }



    .section_11 .sec_11 .sec_11_con_1 li:nth-child(4) p{

        font-size: 4rem;
        padding: 45px 0 5px 0;

    }


    .section_11 .sec_11 .sec_11_con_1 li:nth-child(4) div{

        font-size: 3rem;

    }

    .section_11 .sec_11 .sec_11_con_1 li:nth-child(4) div svg{

        font-size: 4rem;

    }


    .section_11 .sec_11 .sec_11_con_1 li:nth-child(5) p{

        font-size: 4rem;
        padding: 25px 0 5px 0;

    }


    .section_11 .sec_11 .sec_11_con_1 li:nth-child(5) div{

        font-size:3rem;

    }

    .section_11 .sec_11 .sec_11_con_1 li:nth-child(5) div svg{

        font-size: 4rem;

    }

    .section_11 .sec_11 .sec_11_con_2 li:nth-child(1){

        display: none;

    }

    .section_11 .sec_11 .sec_11_con_2 li:nth-child(2){

        height: 50rem;

    }

}







.section_99{

    background-image:url(https://nobly.kr/skin/view/images/main/99_bg.png);
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    transition: transform 0.2s ease; /* 확대/축소 시 부드러운 전환을 위한 CSS transition */
    

}


.sec_99{ width: 90%; display: flex; margin: 0 auto;  height: 100vh; flex-direction: row;
    flex-wrap: wrap;
    align-items: center;}


.sec_99_left{width: 50%; display: flex;  flex-direction: row;flex-wrap: wrap;justify-content: flex-end;padding-right: 5rem;}


.sec_99_left .thum_wrap{padding:50px 0}


.sec_99_left .thum_wrap:hover {

    transition: 0.9s; cursor: pointer;     transform: translateY(-5%);

}


.sec_99_left .thum_wrap:not(:hover) {
    transition: all 0.9s;
}


.sec_99_right{width: 50%; display: flex; flex-direction: row;flex-wrap: wrap;justify-content: flex-start; padding-left: 5rem;}



.sec_99_right .thum_wrap:hover {

   transition: all 0.9s; cursor: pointer;     transform: translateY(-5%);

}


.sec_99_right .thum_wrap:not(:hover) {
    transition: all 0.9s;
}


.thum_wrap{width: 45rem;  border-radius: 0px 100px 0px 0px;}

.sec_99_left .thum_wrap .sec_99_thum{        
    background-image:url(https://nobly.kr/skin/view/images/main/sec_6_left.png);
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
}

.sec_99_right .thum_wrap .sec_99_thum{
    background-image:url(https://nobly.kr/skin/view/images/main/sec_6_right.png);
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
}


.sec_99_thum{width:100%;  height: 40rem; border-radius: 0px 100px 0px 0px;}

.sec_99_cont{width:100%; color: #1b1b1b;  height: 24rem; background-color: #fff; }

.sec_99_tit{
    font-family:-apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 30px; font-weight:500; color: #2a2a2a; width:85%; margin: 0 auto; padding: 20px 0 5px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px #eee solid;
}

.sec_99_tit p{ margin-bottom: 0;}

.sec_99_subs{font-size: 15px; color: #818181; width:85%;margin: 0 auto; margin-top: 1.5rem; font-weight: 300; line-height: 2.5rem;}

.sec_99_subs p {
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;

}


@media (min-width: 340px) and (max-width:900px){

    .section_99{ height: auto;}
    

    .sec_99{height: auto;padding: 15rem 0; width: 80%;}

    .sec_99_left{width: 100%; padding-right: 0rem;justify-content: center;}

    .sec_99_right{width: 100%; padding-left: 0rem;justify-content: center;}

    .thum_wrap{width: 100%;}


    .sec_99_left .thum_wrap .sec_99_thum { height: 60rem;}

    .sec_99_right .thum_wrap .sec_99_thum { height: 60rem;}

    .sec_99_tit{ font-size: 40px;}

    .sec_99_left .thum_wrap{padding: 0 0 10rem 0;}
    
    .sec_99_cont{ height: 30rem;}

    .sec_99_subs{font-size: 25px; line-height: 3.5rem;}


    
}


