@charset "UTF-8";

body{background:var(--white);}
.body_wrap{max-width:var(--body_width);margin:0 auto;}

/* bar */
.bar{ height: 1.0rem; background-color: #F8F8F8;}

/*버튼*/
.bottom_btn {
    position: fixed;
    left: 50%;
    bottom: 0;
    width: 100%;
    padding: 1.0rem 1.6rem 2rem;
    max-width: var(--body_width);
    transform: translateX(-50%);
	z-index:1040;
}
.go_top2 {
    width: 4.4rem;
    height: 4.4rem;
    background: url(../img/go_top.png)no-repeat center;
    background-color: #fff;
    background-size: 1.6rem auto;
    z-index: 1000;
    border-radius: 50%;
    display: none;
    position: fixed;
	right: 50%;
    bottom: 2rem;
    transform: translateX(600px);
    border: 1px solid var(--border);
}
.go_top2.show{display: block;}



.zd_2{position:relative;z-index:2;}



/*PC헤더 스타일*/
.logo img{height: 100%; width: auto;}
.hd_pc{
    position: fixed;
    left: 0; 
    top: 0; 
    width: 100%;
    z-index:999;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    background: transparent;
}
.hd_pc.scrolled {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.06);
}
.hd_pc .container .de_head_cont{ 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    max-width: 1112px;
    padding:4.5rem 0rem;
    transition: padding 0.2s ease;
}
.hd_pc.scrolled .container .de_head_cont{
    padding:2.5rem 0rem;
}
.hd_pc .container .logo img{object-fit: contain; width: 11.0rem;}
.hd_pc .nav_ul{display:flex;font-size:1.7rem;font-weight:600;margin-right:2.0rem;}
.hd_pc .nav_ul .nav_li{position:relative;}
.hd_pc .nav_ul .nav_li > a{padding:0 2.0rem;display:flex;height:var(--hd_height);align-items: center;}
.hd_pc .nav_ul .nav_li:hover > a{color:var(--primary);}
.hd_pc .nav_ul .nav_li:hover .dropdown-menu{display:block;}

.hd_pc .nav_ul2{display: none;min-width: 20rem;font-size:1.5rem;}
.hd_pc .nav_li:hover .nav_ul2{display: block; position: absolute; background: var(--bg); top: 100%; left: 50%; transform: translateX(-50%); border: 1px solid var(--border); z-index: 9999;}
.hd_pc .nav_ul2 a{display: block; padding: 1.4rem 2rem; white-space: nowrap;border-bottom:1px solid var(--border);background:#fff;}
.hd_pc .nav_ul2 a:hover{color:var(--primary);background:#F7F8F9;}
.hd_pc .nav_ul2 li:last-child a{border-bottom:0;}
.hd_pc .nav_ul2 a span{display:none;}
.hd_pc .nav_a img{display: none;}

/* 헤더 */
.hd_m {
	display:flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
	max-width: var(--body_width);
    background: transparent;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
	padding:2.5rem 2.0rem;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
    z-index: 1000;
}
.hd_m.scrolled {
	padding:1.6rem 2.0rem;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.06);
}
.hd_m img{width:8.8rem;display:flex;}
.hd_m .log_txt{font-size:1.4rem;padding-left:0.5rem;}
.hd_m .log_txt span {padding: 0 0.5rem;}
.hd_m button{border:0; background: transparent;}
.hd_m button img, .hd_m a img{height:3.0rem;}


.hd_m .page_tit{}
.hd_m .hd_btn, .modal-header .hd_btn {display: flex;align-items: center;}

.hd_m button.top_alim, .hd_m button.top_chat{position:relative;}
.hd_m button.top_alim span, .hd_m button.top_chat span {
    color: #fff;
    background: var(--primary);
    display: inline-block;
    position: absolute;
    right: 0.0rem;
    top: 0.0rem;
    border-radius: 0.8rem;
	width:0.4rem;
	height:0.4rem;
}


/* 모바일 메뉴 */
.hd_menu_btn {font-size: 2rem;}
.m_menu_wr {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    max-width: var(--body_width);
    z-index: 99999;
    transition: all 0.5s ease-in-out;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
    transform: translateX(-50%);
}

/* x버튼 */
.close_btn_wr{display: none; opacity: 0;}
.m_nav .close_btn_wr{display: flex; justify-content: flex-end; opacity: 0;}
.menu_on .m_nav .close_btn_wr{opacity: 1;}
.close_btn{font-size: 2rem; border:0; height: auto; }
.close_btn img{width:3.0rem;}

/* 메뉴 열렸을때 외부 */
.menu_on .m_menu_wr{visibility: visible; opacity: 1; }
.m_nav{position: relative; width: 100%; height: 100%; z-index: 99999;  background: #fff; transition: all 0.4s ease-in-out; max-width: 0; transform: translateX(100%); visibility: hidden; opacity: 0; }
.menu_on .m_nav {
    transform: translateX(0%);
    visibility: visible;
    opacity: 1;
    max-width: 30.0rem;
    width: 80%;
}

.menu_bg{position: fixed;  left: 50%; top: 0; background: rgba(0,0,0,0.6); transition: all 0.4s ease-in-out; width: 100%; height: 100%; z-index: 99998; visibility: hidden; opacity: 0; transform: translateX(-50%); max-width:var(--body_width);}
.menu_on .menu_bg{visibility: visible; opacity: 1;}

/* 메뉴 열렸을때 내부 */
.m_nav .nav_wr{height: auto;}
.m_nav .nav_ul{display: block;}
.m_nav .nav_li{height: 100%; position: relative;}
.m_nav .nav_a{display: flex; align-items: center; justify-content: space-between; width: 100%; height: 100%; padding: 1.2rem 1.6rem;}
.m_nav .nav_a i{display: inline-block;}
.m_nav .nav_a img{width:2.0rem;}

.m_nav .nav_ul2{display: none;background: var(--light);}
.m_nav .nav_ul2 a{display: block; padding: 1.2rem 1.6rem; white-space: nowrap;}



/*검색*/
.sch_ip {display: flex;border:1px solid var(--border);background: #fff;padding: 0 1.5rem 0 1.5rem;border-radius: 0.8rem;}
.sch_ip .form-control{height:4.8rem;padding: 0.5rem 0;}
.sch_ip .form-control:focus {background-color: transparent;}
.sch_ip button{width:2.0rem;height:2.0rem;border:0;background: transparent;}

/*회색 검색*/
.sch_gray.sch_ip{background: #F5F6F8;border:0;}


.ul_list{}
.ol_list{padding-left: 2rem;}
.ol_list li{margin-bottom:0.5rem;line-height: 140%;}


/*노데이터*/
.no_data{display:flex;align-items: center;justify-content: center;    flex-direction: column;}



.item_opt_counter {
    position: relative;
    width: 8.7rem;
    height: 2.8rem;
    line-height: 2.8rem;
    border-radius: 3.6rem;
    border: 1px solid #E3E3E3;
    flex-shrink: 0;
    display: flex;
    align-items: center;
	z-index:2;
}
.item_opt_counter_btn {
    width: 26%;
    height: 3rem;
    vertical-align: top;
    padding: 0;
}

.item_opt_counter_btn.disabled, .item_opt_counter_btn:disabled{opacity: 0.3;
    background: transparent;
	border:transparent;
}
.item_opt_counter .quantity{
    width: 48%;
    height: 100%;
    vertical-align: top;
    color: #333333;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 4.4rem;
    text-align: center;
    border: unset;
}
.item_opt_counter .quantity:focus{outline: 0;}


.item_opt_counter.time_counter {
    width: 15.0rem;
    height: 4.7rem;
    line-height: 4.7rem;
    border-radius: 3.6rem;
    border: 1px solid #E3E3E3;
}
.item_opt_counter.time_counter .quantity {color: #000;font-size: 1.8rem;}



.item_opt_counter.disabled .quantity{color:#999;}
.item_opt_counter.disabled .item_opt_counter_btn{opacity: 0.3;}




/*하단메뉴*/
.bt_menu {
    width: calc(100% + 2px);
    max-width: var(--body_width);
    background: #fff;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: block;
}
.bt_menu ul{display: flex;justify-content: space-between;align-items: center;text-align:center;padding:0 1.6rem; height:6.0rem;border-top:1px solid var(--border);}
.bt_menu ul li{width:20%;max-width:6.0rem;}
.bt_menu ul li a {
    display: inline-block;
	color:var(--gray2);
	font-weight:600;
	font-size:1.2rem;
}
.bt_menu ul li .ico {
    width: 3.5rem;
    display: block;
    margin: 0 auto;
}
.bt_menu ul li .img_on{display:none;}
.bt_menu ul li.on a{color:var(--primary);}
.bt_menu ul li.on .img_on{display:block;}
.bt_menu ul li.on .img_off{display:none;}











/*에디터스타일*/
.edit_style{}
.edit_style .h1, .edit_style h1{font-weight:700;font-size:3.5rem;margin-bottom:0.5rem;}
.edit_style .h2, .edit_style h2{font-weight:700;font-size:2.5rem;margin-bottom:0.5rem;}
.edit_style .h3, .edit_style h3{font-weight:700;font-size:1.8rem;margin-bottom:0.5rem;}
.edit_style .h4, .edit_style h4{font-weight:700;font-size:1.5rem;margin-bottom:0.5rem;}
.edit_style img {
    max-width: 100%;
    width: auto !important;
    margin: 0 auto;
    display: inline-block;
}
.edit_style p{white-space: pre-line;line-height: 160%;}
.edit_style ol, .edit_style ul{padding-left: 1.4rem;line-height: 160%;}



/*푸터*/ /* 25.08.06 수정 */
.ft{
    padding:4.0rem 0 7.0rem;
    background-color: var(--gray-800);
	color:var(--gray-200);
    font-weight: 400;
}
.ft .ft_customer .btn{padding-left:1.2rem;padding-right:1.2rem;height:4.2rem;font-size: 1.4rem;font-weight:400;}
.ft .fnb a{
    display: inline-block;
    font-weight: 400;
	color:var(--gray-200);
	padding:0 0.5rem;
	border-right:1px solid var(--border);
}
.ft .fnb a:last-child{border-right:0;}
.ft span.line{margin:0 2.0rem;}


.ft_left_top{
    font-size: 14px;
    line-height: 140%;
}
.ft_left_bt{
    font-size: 14px;
    line-height: 140%;
}
.ft_right_top{
    font-size: 14px;
}
.ft_right_ct{
    font-size: 20px;
}






/* 초기 상태에서는 화살표 아래 아이콘을 보여줌 */
.collapse_ex .btn[aria-expanded="false"] img{transform: rotate(0deg);}

 /* 펼쳐진 상태에서는 화살표 위 아이콘을 보여줌 */
.collapse_ex .btn[aria-expanded="true"] img{transform: rotate(180deg);}


/*반응형 max 1400 xl*/
@media (max-width: 1400px) {    

}

/*반응형 max 1200 xl*/
@media (max-width: 1199.98px) {
    .go_top2 {
        right: 1.6rem;
        transform: translateX(0);
    }

} 


/*반응형 max 992px lg*/
@media (max-width: 991.98px) {


} 


/*반응형 max 767px md*/
@media (max-width: 767.98px) {
	.m_menu_wr{width: 100%; left: 50%; transform: translate(-50%); max-width:var(--body_width);}
	.menu_bg{width: 100%; left: 50%;}
	.menu_on .m_nav{max-width: 80%;}

}

/*반응형 max var(--body_width) sm*/
@media (max-width: 575.98px) { 
	.go_top2 {
		right: 1.6rem;
		transform: translateX(0);
	}
    
} 

/*반응형 max 375px*/
@media (max-width:375px) {



}


/* 25.08.05 수정 */
/* 공통 색상 추가 */
:root {
    --modal-accent: #007AFF;
}
.text-modal-accent {
  color: #007AFF !important;
}

/* 모든 pc 페이지의 버튼 크기 */
.btn_140 button{
    width: 14.0rem;
}

/* modal-sm 수정 */
.modal-sm .modal-content {
    padding: 3.0rem;
    display: flex;
    gap: 3.0rem;
    text-align: center;
}
.modal-sm .modal-body {
    padding:0;
}
.modal-sm .modal-footer {
    padding:0;
}

/* modal-md 수정 */
.modal .modal-md .modal-header{
    padding: 3.0rem 3.0rem 1.5rem;
}
.modal .modal-md .modal-body{
    padding: 1.5rem 3.0rem 3.0rem;
}
.modal .modal-md .modal-footer{
    padding: 0 3.0rem 3.0rem;
}

/* modal-default 수정 */
.modal-default{
    max-width: 104.0rem;
}
.modal-default *{
    word-break: keep-all;
}
.modal-default .modal-content {
    border-radius: 0;
}
.modal-default .modal-header {
    padding: 2.0rem 3.0rem;
    background-color: var(--secondary);
    color: #fff;
    border-radius: 0;
    gap:2.0rem;
}
.modal-default .modal-header .modal-title {
    font-size: 2.4rem;
    line-height: 140%;
}
.modal-default .modal-header img {
    filter: invert(96%) sepia(100%) saturate(0%) hue-rotate(354deg) brightness(105%) contrast(107%);
}
.modal-default .modal-body {
    padding: 3.0rem 4.0rem;
    max-height: 55.0rem;
}
.modal-default .modal-body hr{
    display: block;
    margin: 3.0rem 0;
    height:1px;
    background-color: var(--gray-100);
}
.modal-default .modal-footer {
    padding: 2.0rem 2.0rem;
    text-align: center;
    border-top: 1px solid var(--gray-100)
}
.modal-default .modal-footer button {
    padding: 0.5rem 3.4rem;
}

/* modal-default 수정 - custom col */
.custom_gap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.custom_col {
    flex: 0 0 calc((100% - 40px) / 3); 
     /* (100% - 2*gap) ÷ 3 */
}

/* index 수정 */
.wrap{
    position: relative;
}
.wrap .back_img{
    position: absolute;
    top:0;
    left:0;
    z-index: -10;
    background-position: top;
    background-size:cover;
    background-repeat: no-repeat;
    background-color: #A4D8FF;
    width: 100%;
    height: 450px;
}
.wrap .container .de_content {
    margin-top: 14.0rem;
}
/* stepbox */
.stepbox{
    background-color: #fff;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
/* step 순서 */
.step{
    width: 12.0rem;
}
.step p{
    word-break: keep-all;
    text-align: center;
}
.step_num{
    background-color: var(--gray-100);
    border-radius: 50%;
    width:4.0rem;
    height:4.0rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step_num img{
    width: 2.0rem;
    height: 2.0rem;
}
.step_line{
    display: block;
    height:1px;
    width: 4.0rem;
    background-color: var(--gray-100);
    border: none;
}
.step_line.hide{
    background-color: transparent;
}

/* 신청서 다운로드 내용 수정 */
.list_title{
    padding: 1.5rem 2.0rem 1.2rem;
    background-color: var(--gray-50);
    border-bottom:1px solid var(--gray-100);
    border-top: 2px solid var(--gray-700);
}
.check_list{
    border-bottom: 1px solid var(--gray-100);
}
.list_btn button{
    width: max-content;
    min-width: 14.0rem;
}
/* 리스트 수정 */
.check_list .checks .ic_box{
    margin: 0.4rem 0;
}
/* 다음단계 버튼 */
.idx_pg .next_btn button{
    /* padding-right:40px;
    padding-left:40px; */
}

/* index 모달 수정 */
.txt_info_arrow{
    filter: invert(30%) sepia(87%) saturate(1692%) hue-rotate(340deg) brightness(100%) contrast(106%);
}

/* change.php 수정 */

/* change.php 입력폼 수정 */
.papers_form{
    padding: 2.0rem 2.0rem 0;
}
.papers_form *{
    word-break: keep-all;
}
.custom-select, .custom-select2{
    font-size: 1.6rem;
}
.ip_wr .ip_tit .cont_num{
    font-size: 1.4rem;
}

/* change.php 서류첨부 수정 */
.de_upload_box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:10px;
    width: 100%;
    padding:  5.0rem 2.0rem;
    border: 1px dashed var(--gray-200);
    border-radius: 0.6rem;
    text-align: center;
    cursor: pointer;
}
.de_upload_box img{
    width: 2.4rem;
    height: 2.4rem;
}
.de_upload_box p{
    white-space: pre-line;
    font-size: 1.6rem;
    line-height: 140%;
}

.papers_upload {
    max-width: 50%;
    position: relative;
}
.note_wide {
    position: relative;
    left: 0;
    right: 0;
    width: 200%;
    white-space: normal;
}

.papers_file_box{
    overflow-y: auto;
    overflow-x: hidden;
    height: 21.8rem;
}
.papers_file_box .papers_container{
    display: flex;
    flex-direction: column;
    gap:5px;
}
.papers_file{
    border: 1px solid var(--gray-200);
    border-radius: 0.6rem;
    padding: 0.5rem 0rem;
}
.papers_file .ic_file{
    padding: 0.5rem 2.0rem;
}
.papers_file .ic_file img{
    min-width: 3.0rem;
    width: 3.0rem;
    height: 3.0rem;
    filter: invert(32%) sepia(11%) saturate(405%) hue-rotate(202deg) brightness(96%) contrast(91%);
}
.papers_file .file_tx_box{
    gap:2px;
    flex: 1 1 auto;
    min-width: 0;
}
.papers_file .file_tx_box .file_tit{
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 140%;
    color: var(--gray-500);
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.papers_file .file_tx_box .file_txt{
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 140%;
    color: var(--gray-300);
}
.papers_file .pp_file_del img{
    min-width: 1.6rem;
    width: 1.6rem;
    height: 1.6rem;
}

.no_data_img{
    width: 4.5rem;
}

/* change.php 중요사항 수정 */
.important_info{}
.important_info h5, .consent h5{
    font-size: 1.6rem;
}
.important_info_txt, .consent p{
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 140%;
}
.important_info_txt p span, .consent p span{
    font-weight: 700;
}

/* change.php 정보동의 */
.consent{
    border-radius: 0.6rem;
    background-color: var(--gray-50);
}
.consent p{
    color: var(--gray-700);
}
.consent hr{
    display: block;
    margin:0;
    width: 100%;
    height: 1px;
    border:0;
    background-color: var(--gray-200);
}

/* register.php 수정 */
.register_cont{
    text-align: center;
}
.register_cont .step_num{
    width: 6.0rem;
    height: 6.0rem;
}
.register_cont .step_num img{
    width: 3.0rem;
    height: 3.0rem;
}
.register_cont h4{
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 140%;
    color: var(--gray-700);
}
.register_cont p{
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 140%;
    color: var(--gray-500);
}





/*반응형 max 992px lg 모바일 시작 */
@media (max-width: 991.98px) {

    /* 25.08.06 수정 */

    /* custom 입력폼 반응형 크기 수정 */
    .ip_tit h5{
        font-size: 1.4rem;
    }
    .form-control{
        font-size: 1.4rem;
    }
    .custom-select, .custom-select2{
        font-size: 1.4rem;
    }
    .form-text{
        font-size: 1.2rem;
    }
    .ip_wr .ip_tit .cont_num{
        font-size: 1.2rem;
    }

    /* index 모달 수정 */
    .modal-default{
        max-width: 100%;
        padding: 0px;
        height: 100% !important;
    }
    .modal-default .modal-header .modal-title{
        font-size: 2.1rem;
    }
    .modal-default .modal-content{
        height: 100%;
    }
    .modal-default .modal-body{
        height: 100%;
        max-height: none;
        padding: 2.0rem 1.5rem;
    }
    .modal-default .modal-footer button{
        width: 100%;
    }
    .txt_info p{
        font-size: 1.5rem;
    }
    
    /* 모바일 상단 배경 이미지 수정 */
    .wrap .back_img{height: 470px;}

    /* 모바일 콘테이너 크기 수정 */
    .wrap .container .de_content{
        /* padding-right: 2.0rem;
        padding-left: 2.0rem; */
        margin-top: 16rem;
    }
    /* index 수정 */
	.tit_h2 {
        font-size: 2.6rem;
    }
    .tit_h3{
        font-size: 2.0rem;
    }
    .md_text{
        font-size: 1.5rem;
    }
    .stepbox{
        flex-direction: column;
        padding: 2.0rem;
    }
    .step_numbox{
        width: 100%;
    }
    .step{
        width: auto;
        min-width: 10.0rem;
    }
    .step:nth-child(2){
        width: 100%;
    }
    .step p{
        font-size: 1.2rem;
    }
    .step_num{
        min-width: 4.0rem;
        min-height: 4.0rem;
    }
    .step_line{
        width: 100%;
    }
    .check_list {
        padding: 1.5rem 1.0rem;
        flex-direction: column;
        gap:1.5rem;
    }
    .check_list div{
        padding:0;
        width: 100%;
    }
    .list_btn button{
        width: 100%;
    }
    .px_40:has(.list_title){
        padding:0;
    }
    .next_btn{
        margin-top:-2.0rem;
    }


    /* footer 수정 */
    .ft .container .fo_content{
        flex-direction: column;
        gap:10px;
        padding-right:2.0rem;
        padding-left:2.0rem;
    }
    .ft_left_top{
        font-size: 12px;
    }
    .ft_left_bt{
        font-size: 12px;
    }
    .ft_right_top{
        font-size: 12px;
    }
    .ft_right_ct{
        font-size: 16px;
    }

    /* change.php 모바일 수정 */
    .papers_form .mt-5{
        margin-top:2.0rem !important;
    }

    /* change.php 입력폼 수정 */
    .papers_form{
        padding: 1.5rem 1.0rem 0;
    }
    .papers_form .mail_num{
        flex-direction: column;
    }

    /* change.php 서류 첨부 수정 */
    .papers_flex{
        flex-direction: column;
    }
    .papers_upload{
        max-width: 100%;
    }
    .note_wide{
        width: 100%;
    }
    .papers_file_box{
        height: 100%;
        overflow:inherit;
    }

    /* change.php 중요사항 수정 */
    .de_upload_box p, .consent p{
        font-size: 1.2rem;
    }
    
    .important_info h5, .consent h5, .consent .checks_wr .chk_p p{
        font-size: 1.4rem;
    }
    .important_info_txt, .consent p{
        font-size: 1.2rem;
    }

    /* change.php 버튼 수정 */
    .change_btn{
        padding-left:1.0rem;
        padding-right:1.0rem;
        /*margin-top:-2.0rem;*/
    }
    .change_btn button{
        width: 100%;
    }

    /* register.php 수정 */
    .register_cont h4{
        font-size: 2.0rem;
    }
    .register_cont p{
        font-size: 1.6rem;
    }

} 

/*반응형 max 767px md*/
@media (max-width: 767.98px) {
    /* index 모달 반응형 수정 */
    .custom_col{
        flex: 0 0 calc((100% - 20px) / 2);
    }
    .modal-default .modal-header .modal-title{
        font-size: 1.8rem;
    }
    .modal-default .modal-body h5{
        font-size: 1.8rem;
    }

    /* 모바일 상단 영역 수정 */
    .wrap .container .de_content{
        /* padding-right: 2.0rem;
        padding-left: 2.0rem; */
        margin-top: 19rem;
    }
    
}

/*반응형 max 576px sm*/
@media (max-width: 575.98px) {
    
	.step{
        min-width: 30%;
    }

    /* index 모달 반응형 수정 */
    .custom_col{
        flex: 0 0 calc((100% - 0px) / 1);
    }
    .modal-default .modal-header .modal-title{
        font-size: 1.6rem;
    }
    .txt_info p{
        font-size: 1.4rem;
    }
    .modal-default .modal-body h5{
        font-size: 1.6rem;
    }

    /* footer 반응형 수정 */
    .ft_info .mb_com{
        flex-direction: column;
        gap:5px;
    }

    /* 모바일 상단 영역 수정 */
    .wrap .container .de_content{
        /* padding-right: 2.0rem;
        padding-left: 2.0rem; */
        margin-top: 21.8rem;
    }
}

/*반응형 max 450px*/
@media (max-width: 410px) {
    .list_btn{
        flex-direction: column;
        gap:5px;
    }
} 

/*반응형 max 375px*/
@media (max-width: 375px) {
} 
