@charset "utf-8";


/* =========================================================
   Reset CSS //
========================================================= */
*,
*::before,
*::after{
    box-sizing:border-box;
    padding: 0;
    margin: 0;
}
html {
  scrollbar-gutter: stable;
}
 
body{
    height:100%;
    font-family:Pretendard, sans-serif;
    font-weight:400;
    line-height:1.6;
    color: #1C1B1F;
}

h1,h2,h3,h4,h5,h6{
    margin:0;
}
a {
	text-decoration: none;
	color: inherit;
}
button {
	font-family: inherit;
}
.beforetext {
	color: var(--du-text-tertiary);	
	font-size: 15px;
}
.listlink .beforetext .prelist {
	font-size: 15px;
}

/* ###### Variables CSS ###### */
:root {

    /* =========================================================
       brand
    ========================================================= */

    --du-primary:#1688EB;
    --du-primary-dark:#0C4DA2;
    --du-primary-deep:#243D8E;


    /* =========================================================
       text
    ========================================================= */

    --du-text-primary: #1C1B1F;
    --du-text-secondary:#1f2937;
    --du-text-tertiary:#374151;

    --du-text-disabled:#6b7280;
    --du-text-sub:#4B5563;


    /* =========================================================
       background
    ========================================================= */

    --du-bg-subtle:#F3F4F6;
    --du-bg-muted:#E5E7EB;
    --du-bg-dark:#374151;

    --du-bg-info:#EBF4FF;
    --du-bg-success:#DCFCE7;
    --du-bg-danger:#FEE2E2;
    --du-bg-warning:#FEF9C3;


    /* =========================================================
       border
    ========================================================= */

    --du-border-primary:#6B7280;
    --du-border-secondary:#9CA3AF;
    --du-border-tertiary:#D1D5DB;
    --du-border-disabled:#6B7280;
    --du-focus-ring:#BE123C;


    /* =========================================================
       status
    ========================================================= */

    --du-success:#16A34A;
    --du-info:#2563EB;
    --du-danger:#bf2424;
    --du-warning:#CA8A04;


    /* =========================================================
       radius
    ========================================================= */

    --du-radius-sm:4px;
    --du-radius-md:8px;
    --du-radius-lg:12px;


    /* =========================================================
       spacing
    ========================================================= */

    --du-gap-4:4px;
    --du-gap-8:8px;
    --du-gap-12:12px;
    --du-gap-16:16px;
    --du-gap-24:24px;
    --du-gap-32:32px;


    /* =========================================================
       size
    ========================================================= */

    --du-input-h-sm:36px;
    --du-input-h-md:40px;
    --du-input-h-lg:48px;

    --du-btn-h-sm:36px;
    --du-btn-h-md:40px;
    --du-btn-h-lg:48px;


    /* =========================================================
       font
    ========================================================= */

    --du-fz-12:12px;
    --du-fz-13:13px;
    --du-fz-14:14px;
    --du-fz-16:16px;
    --du-fz-18:18px;
    --du-fz-24:24px;
    --du-fz-32:32px;
}


/* =========================================================
   공용 애니메이션 CSS	
========================================================= */
/* 공통 */
.ani-scroll{
    opacity: 0;
    transition:
        opacity .8s ease,
        transform .8s ease;
    will-change: transform, opacity;
    pointer-events: none;
}

/* 방향 */
.ani-up{
    transform: translateY(40px);
}

.ani-down{
    transform: translateY(-40px);
}

.ani-left{
    transform: translateX(-40px);
}

.ani-right{
    transform: translateX(40px);
}

.ani-scale{
    transform: scale(.95);
}

/* 활성화 */
.ani-scroll.ani-on{
    opacity: 1;
    transform: none;
    pointer-events: auto;
}
.delay-1{ transition-delay:.1s; }
.delay-2{ transition-delay:.2s; }
.delay-3{ transition-delay:.3s; }
.delay-4{ transition-delay:.4s; }
.delay-5{ transition-delay:.5s; }
.delay-6{ transition-delay:.6s; }


/* =========================================================
   Main: 메인 CSS 기존 CSS를 수정하는 방식으로 스타일링 되어있음.
========================================================= */
/* ####### Common CSS ####### */
.du-inner {
	width: 1440px;
	max-width: calc(100% - 32px);
	margin: 0 auto;
}
#contents {
	width: 1440px;
	max-width: calc(100% - 32px);
}


/* ######## Header CSS ####### */
.dept02_top_wrap  {
	box-shadow: none;
	background: #fff;
	height: 80px;
	right: 0;
} 
.headermenurow:hover .tabcontent_wrap {
	top: 80px;
}
.headermenurow .tabcontent_wrap > div {
	flex: 1;
}
.content_body {
	padding-top: 88px;
}
.dept02_top_wrap.header-border{
    border-bottom:1px solid #ddd;
    background: red;
}
.dept02_top_wrap .du-inner {
	display: flex;
	justify-content: space-between;	
}
.du-inner .dept02_top_wrap {
	width: auto;
}
.dept02_top_wrap h1.logo {
	width: 250px; 
	display: flex;
	align-items: center;
	gap: 8px; 
}
.dept02_top_wrap h1.logo img {
	
}
.dept02_top_wrap h1.logo > p {
	color: var(--du-primary-dark);
	font-size: 18px; 
	font-weight: 600;
}
.row.headermenurow > ul > li > a {
	color: var(--du-text-primary);
}
/* 헤더 드롭다운 */
.headermenurow .tabcontent_wrap {
/*  	top: 80px;
 	opacity: 1; */
	background: #F5F9FE;
	width: 1480px;
    max-width: calc(100% - 32px);
    left: 50%;
    transform: translateX(-50%);
 	border-radius: 32px;
 	box-shadow: 0 4px 10px #576E8F24;
 	padding: 20px 0; 
}
.headermenurow .tabcontent_wrap > div {
    border-right: 1px solid #caddf3;
}
.menu {
	padding: 0 16px;
}
.menu > li:first-child {
	color: #275da0;
	background: #fff;
	border-radius: 999px; 
	padding: 8px;
	font-size: 20px;
	font-weight: 600;  
}
.menu > li a {
	color: #275da0;
	font-weight: 600;
}
.menu > li a:hover {
	font-weight: 800; 
	color: #0e4384;
} 

/*  */
.du-inner .menu_right {
	border: 1px solid var(--du-border-secondary); 
	align-self: center;
	justify-content: flex-end;
	gap: 4px; 
	height: auto;
	width: fit-content;
    padding: 2px 10px 2px 10px;
	border-radius: 999px; 
}
/* .du-inner .menu_right:has(.logout_ico) {
	padding: 4px 14px 4px 14px;
} */
.menu_right .menu_btn {
	width: auto;
	height: auto;
	transition-duration: 0s;
}
.menu_right .menu_btn:hover:not(.menu_btn.on) {
    transform: rotate(0);
}
.my_ico {
	background: url(../images/renewal_img/account_circle_blue.png) no-repeat center center; 
    background-size: contain;
    width: 30px;
    height: 30px; 
}
.login_ico {
	background: url(../images/renewal_img/login_blue.png) no-repeat center center; 
    background-size: contain;
    width: 18px;
	height: 18px;
}
.logout_ico {
	background: url(../images/renewal_img/logout_gray.png) no-repeat center center; 
    background-size: contain;
    width: 18px;
	height: 18px;
}
.sitemap_ico {
	background: url(../images/renewal_img/apps_gray.png) no-repeat center center; 
    background-size: contain; 
    width: 24px;
	height: 24px;
}
.menu_right #loginBtn {
	padding-right: 12px;
	position: relative;
}
.menu_right #loginBtn > ul {
	flex-direction: row;
	gap: 16px; 
}
.menu_right #loginBtn .logout a {
	color: #7D828D;
}
.menu_right #loginBtn li:has(.my_ico):hover .my_ico {
	background: url(../images/renewal_img/account_circle_blue_dark.png) no-repeat center center; 
    background-size: contain;
} 
.menu_right #loginBtn li:has(.logout_ico):hover .logout_ico {
	background: url(../images/renewal_img/logout_blue_dark.png) no-repeat center center; 
    background-size: contain;
} 
.menu_right #loginBtn li:has(.login_ico):hover .login_ico {
	background: url(../images/renewal_img/login_blue_dark.png) no-repeat center center; 
    background-size: contain;
} 
.menu_right #loginBtn::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%); 
	width: 1px;
	height: 16px;  
	background: var(--du-border-secondary);
}
.common_top_tools #loginBtn li a {
	color: var(--du-primary); 
	font-weight: 500; 
}
.common_top_tools #loginBtn li:hover a {
	color: var(--du-primary-dark); 
	font-weight: 500; 
}
.menu_right .sitemap {
	font-size: 16px;
	color: #7D828D;
}
.menu_right .sitemap:hover {
	color: var(--du-primary-dark); 	
}
.menu_right .sitemap:hover .sitemap_ico {
	background: url(../images/renewal_img/apps_blue_dark.png) no-repeat center center; 
    background-size: contain; 
}
.menu_right .sitemap,
.menu_right #loginBtn a {
	display: flex;
	align-items: center;	
	gap:2px;
}
.menu_right .sitemap.on .sitemap_ico {
	background: url(../images/renewal_img/close_gray.png) no-repeat center center; 
    background-size: contain; 
    width: 40px;
    height: 40px;  
}
.menu_right .sitemap.on:hover .sitemap_ico {
	background: url(../images/renewal_img/close_dark.png) no-repeat center center; 
    background-size: contain; 
}
.row.headermenurow {
	padding: 0 40px; 
}

/* ######## Index CSS ####### */
/* body:has(.renewal) {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
} */
body:has(.content_body),
body:has(.subcontent_body){
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
body:has(.renewal) .content_body{
	flex: 1;
}
.subcontent_body {
	flex: 1;
}

/*main_grid*/
.main_grid {
	padding-top: 6px;
	padding-bottom: 32px;
	display: grid;
	grid-gap: 30px;
	grid-template-columns: repeat(5, 1fr) 336px;
	grid-template-areas: 
      "visual visual visual visual visual apply"
      "visual visual visual visual visual notice"
      "quick quick quick quick quick notice";
	/* grid-template-rows: minmax(150px, auto) minmax(150px, auto) minmax(120px, auto); */
}
.main_grid .visual {
	grid-area: visual;
	grid-row-end: span 2; 
	background: url(../images/renewal_img/visual_bg.png) no-repeat center center; 
	background-size: cover;  
	padding: 54px;
	border-radius: 32px 32px 64px 32px; 
 	min-height:478px;
 	display: flex;
 	align-items:flex-end;
 }
.main_grid .notice { 
   grid-area: notice; 
   grid-row-start: 2;
 }
.main_grid .quick_wrap { 
	grid-area: quick;
	grid-column: 1 / 6;
	display: flex;
	gap: 30px;
}
.main_grid .quick_wrap li {
	width: calc(100% / 5 - 18px); 
}
.main_grid .visu_txt_wrap {
	text-shadow: 0 2px 5px rgba(0,0,0,.25);
}
.main_grid .visu_txt {
	font-size: 38px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 18px;
}
.main_grid .visu_txt span {
	display: block;
}
.main_grid .visu_txt_wrap p {
	color: #fff;
}
.main_grid .apply { 
	grid-area: apply;
	background: var(--du-primary) url(../images/renewal_img/nambu_logo_bg.png) no-repeat top 16px right -40px; 
	background-size: 60%;   
	border-radius: 24px;
	position: relative;
	padding: 32px;
	height: 198px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
}
.main_grid .apply:hover {
	background: var(--du-primary-dark) url(../images/renewal_img/nambu_logo_bg.png) no-repeat top 16px right -40px; 
	background-size: 60%;   
}
.main_grid .apply:hover .apply_txt_wrap {
	gap: 24px;
}
.main_grid .apply:hover .apply_txt_wrap i {
	background: url(../images/renewal_img/arrow_forward_w.png) no-repeat center center; 
	background-size: contain; 
	border: 1px solid #fff;
}
.apply_txt_wrap {
	display: flex;
	align-items: center;
	gap: 12px; 
	font-size: 24px;
	font-weight: 600;
	color: #fff;
	transition: .3s;
}
.apply_txt_wrap i {
	background: #fff url(../images/renewal_img/arrow_forward_blue.png) no-repeat center center; 
	background-size: contain; 
	width:26px;
	height:26px;
	border-radius: 999px;
}
.main_grid .apply p {
	color: #fff;
	font-size: 16px; 
	width: 160px;
 	max-width: 100%;
	word-break: keep-all;
}
.main_grid .apply_char {
	width: 104px;
	height: 155px;
	background: url(../images/renewal_img/char.png) no-repeat center center; 
	background-size: contain; 
	position: absolute;
	right: 0;
	bottom: -24px;  
}
.main_grid .notice {
	background: var(--du-bg-subtle);
	padding: 32px;
	border-radius: 53px 16px 16px 16px;
}
.main_grid .notice li {
	width: 100%;
}
.main_grid .notice li a {
	border-bottom: 1px solid var(--du-border-tertiary);
	display: block;
	padding: 8px 0;
	font-weight: 500;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}
.notice_txt_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px; 
}
.notice_txt_wrap h2 {
	font-size:22px;
	font-weight: 700;
	color: var(--du-text-primary); 
}
.notice_txt_wrap .moreBtn {
	background: var(--du-primary) url(../images/renewal_img/arrow_forward_w.png) no-repeat center center; 
	background-size: contain; 
	width: 30px;
	height: 30px;
	border-radius: 999px;
}
.notice_txt_wrap .moreBtn:hover {
	background: var(--du-primary-dark) url(../images/renewal_img/arrow_forward_w.png) no-repeat center center; 
	background-size: contain; 
}
/* quick 퀵메뉴  */
.quick_wrap > li {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	min-height: 50px; /* 영역 확보용 임시 높이 */
}
.quick_wrap a {
	border-radius: 12px;
	height: 100%;
	width: 100%;
	display: block;
	position: relative;
	box-shadow:0 8px 18px #576E8F25;
}
.quick_wrap a:hover .quick_arrow {
	background: var(--du-primary-dark) url(../images/renewal_img/arrow_forward_w.png) no-repeat center center; 
	background-size: 80%;
	right: -16px;
}
.quick_wrap a:hover .quick_title {
	color: var(--du-primary-dark);
}
.quick_img {
	border-radius: 12px;
} 
.quick_title {
	padding: 16px;
	text-align: center;
	color: #3E4A55;
	font-weight:600;
}
.quick_arrow {
	position: absolute;
	right: -12px;
	top: -12px;
	width: 46px;
	height: 46px; 
	border:8px solid #fff;
	background: #3E4A55 url(../images/renewal_img/arrow_forward_w.png) no-repeat center center; 
	background-size: 80%;
	border-radius: 999px;
}
.quick_img {
	height: 94px;
}
.quick1 {
	background: #4C7DF1 url(../images/renewal_img/quick1.png) no-repeat top 12px center; 
	background-size: 80%; 
}
.quick2 {
	background: #FF9962 url(../images/renewal_img/quick2.png) no-repeat top 12px center; 
	background-size: 60%; 
}
.quick3 {
	background: #5383DB url(../images/renewal_img/quick3.png) no-repeat top 12px center; 
	background-size: 60%; 
} 
.quick4 {
	background: #FF9292 url(../images/renewal_img/quick4.png) no-repeat bottom -12px left -16px; 
	background-size: 80%;  
}
.quick5 {
	background: #808EB2 url(../images/renewal_img/quick5.png) no-repeat top 12px center; 
	background-size: 60%; 
}

/* footer */
footer.row {
	background: #11213B;
}
.du-footer {
	color: #fff;
	font-size: 14px;
	padding: 48px 0;
}
.footaddr {
	color: #fff;
}
.du-footer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footerLogo {
	width:128px;
	height: 32px;
	background: url(../images/renewal_img/logo_w.png) no-repeat center center; 
	background-size: contain; 
}

.tel_wrap {
	margin-bottom:8px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.tel_wrap span {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
}

.tel_wrap em {
	font-weight: 500;
	color: rgba(255,255,255,0.47);
}
.du-footer-btm {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	gap:16px;
	border-top: 1px solid #ffffff36;  
	padding-top: 20px;
}
.footaddr {
	font-weight: 500;
	display: block;
	margin-bottom: 20px;
}
.footer_info {
	display: flex;
	align-items: center;
	gap: 16px;
	border-bottom: none;
	width: auto;
}
.footer_info a {
	color: rgba(255,255,255,0.47);
	font-weight: 500;
}
.footer_info a:hover {
	color: #fff;
}
.copyright {
	color: rgba(255,255,255,0.47);
	font-size: 12px;
	padding: 0 0 0 0;
}


/* top 버튼 */
.fix_mov {
	right: auto;
	left: 16px;
	bottom: 16px;
	border:1px solid #62AEF8;
	background: #ffffff;
    z-index: 999;
}
.fix_mov:hover {
	background:#62AEF8;  
}
.fix_mov:hover a {
	color: #fff;
	padding-top: 0;
	background: url(../images/renewal_img/keyboard_arrow_up.png) no-repeat top 4px center; 
    background-size: 0;  
}

.fix_mov a {
	color: #62AEF8;
	padding-top: 0;
	background: url(../images/renewal_img/keyboard_arrow_up.png) no-repeat top 4px center; 
    background-size: 36%;  
    padding-top: 10px;  
    font-size: 14px;
    font-weight: 500;
    transition: .2s;
}
.fix_mov a::before,
.fix_mov a::after {
	display: none;
}


/* subvisual 서브 비쥬얼 영역 */
.sub_visul_wrap {
    padding: 90px 0 0 0;
}
.sub_visual {
	height: auto;
	/* min-height: 142px; */
	background-image: 
		url(../images/renewal_img/sub_bg2.png),
		url(../images/renewal_img/sub_bg1.png);
	background-position: right 30% top, right bottom 40%;
	background-size: contain, 40%;  
	background-repeat: no-repeat; 
	background-color: #E5F0FF;
	padding: 32px;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.sub_visual p { 
	font-size: 15px;
	color: #3B66A0;
}
.sub_visual h1 {
	font-size: 26px;
	color: #3B66A0;
	font-weight: 700; 
}
.submenulayer {
	width: 1440px;
    max-width: calc(100% - 32px);
    justify-content: flex-start;
}
.submenupan {
	border-bottom: none;
}
#subwrapper {
	background: #fff;
}
.stitle01.submenuTitle {
	padding: 8px;
	padding-right: 28px; 
	display: flex;
	align-items: center;
}
.stitle01.submenuTitle::before,
.stitle01.submenuTitle::after {
	background-color: var(--du-primary);
	width: 6px;
    height: 2px;
}
.stitle01.submenuTitle::before {
	top: 21px;
}
.stitle01.submenuTitle::after {
	bottom: 22px;
}
.submenuTitleText {
	line-height: 1.6;
	font-size: 14px;
	color: var(--du-primary);
	font-weight: 600;
}
.submenu1list,
.submenu1list.active {
	font-size: 14px;
	min-width: auto;
}
.submenu1list.active a, 
.submenu1list:hover a {
	min-width: auto;
	background-color: transparent;
	color: var(--du-primary);
	position: relative;
	padding: 8px;
}
.submenu1list.active a::before {
	content: '';
	position: absolute;
	left: -2px; 
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 4px;
	background: var(--du-primary);
	border-radius: 999px;
}
.submenu1list {
	border: 1px solid transparent;
}
.submenu1list a {
	padding: 8px 10px;
	min-width: auto;
	border-right: none;
	color: #7D828D;
	font-size: 14px;
}
.submenu1list:first-child {
	border-left: none;
}
.dept_title {
	color: var(--du-text-primary);	
	font-weight: 700;
	font-size: 36px;
}
h1.dept_title {
	width: fit-content;
    margin: 0 auto 48px;
}
h1.dept_title:before {
	display: none;
}
h1.dept_title:after {
	content: '';
	position: absolute;
	right: -16px;
	top: -10px;
	background: url(../images/renewal_img/title_ico.png) no-repeat center center; 
    background-size: contain;
    width: 40px;
    height: 26px;
    z-index: -1;
}
h3.dept_title:before {
	animation: none;
	width: 20px; 
	background: var(--du-primary);
	border-radius: 999px;
	background: #CCEBFF;
}


#contents {
	padding: 16px 0 150px;
	overflow-x: visible;
}

/* 생활관 소개 */
.sub_content01.renewal .sec1 p b {
	color: var(--du-primary);
	padding: 0;
}
.sub_content01.renewal .sec1 p {
	margin-bottom: 8px; 
	margin-left: 0;
	padding: 0;
}
.renewal .line_blk li {
	margin-left: 20px;
}

.dorm_intro {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}
.dorm_intro > ul {
	background: var(--du-bg-subtle);
	border-radius: 12px;  
	width: calc(33% - 18px);
	padding: 20px; 
	display: flex;
	justify-content: center;
}
.dorm_intro > ul > li {
}
.dorm_intro > ul > li > ul {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
}
.dorm_intro > ul > li > ul li { 
	padding: 0 10px;
	font-size: 18px;
	text-align: center;
	color: #5A6379;
}
.dorm_intro > ul > li > ul li + li {
	border-left: 1px solid  #5A6379;
}
.dorm_intro .box_title {
	display: flex;
	gap: 4px;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-bottom: 12px;
}
.dorm_intro .box_title {
	color: var(--du-primary);
}
.dorm_intro .box_title i {
	width: 22px;
	height: 22px;
}
.apart_ico {
	background: url(../images/renewal_img/apartment.png) no-repeat center center; 
    background-size: contain;
}
.diversity_ico {
	background: url(../images/renewal_img/diversity.png) no-repeat center center; 
    background-size: contain;
}
.bedroom_ico {
	background: url(../images/renewal_img/bedroom_child.png) no-repeat center center; 
    background-size: contain;
}
.dorm_intro p {
	font-weight: 600;
	text-align: center;
	color: #5A6379;
}
.sub_content01.renewal .sec1 img {
	max-width: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	margin: 0 0 0 0;
}
.img_txt_wrap {
	position: relative;
	margin: 0 auto;	
    width: 600px;
    aspect-ratio: 4 / 3 auto;
    max-width: 100%;
}
.img_txt_wrap span {
	background: var(--du-bg-subtle); 
	color: var(--du-text-disabled);
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 12px;
	border-radius: 0 30px 0 0;
	box-shadow: 0 0 8px #00000025;
	padding-right: 20px;
	font-weight: 500;
	font-size: 16px;
	width: fit-content;
}


/* 시설현황 */
.facility_tab{
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
	gap:10px;
	margin-bottom:50px;
}

.facility_tab li button{
	padding:0 24px;
	height:44px;
	border:1px solid var(--du-border-tertiary);
	border-radius:6px;
	background:#fff;
	cursor:pointer;
	transition:.3s;
	font-family: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.facility_tab li button:hover {
	color: var(--du-primary-dark);
	border: 1px solid var(--du-primary-dark);
}
.facility_tab li.active button{
	background:var(--du-primary-dark);
	border-color:var(--du-primary-dark);
	color:#fff;
	font-weight: 500;
}
.facility_tab li button i {
	width: 24px;
	height: 24px; 
}
.facility_tab li[data-filter="all"] button i {
	background: url(../images/renewal_img/grid_view_navy.png) no-repeat center center; 
    background-size: contain;
}
.facility_tab li[data-filter="all"].active button i {
	background: url(../images/renewal_img/grid_view_w.png) no-repeat center center; 
    background-size: contain;
}
.facility_tab li[data-filter="room"] button i {
	background: url(../images/renewal_img/bedroom_child_navy.png) no-repeat center center; 
    background-size: contain;
}
.facility_tab li[data-filter="room"].active button i {
	background: url(../images/renewal_img/bedroom_child_w.png) no-repeat center center; 
    background-size: contain;
}
.facility_tab li[data-filter="life"] button i {
	background: url(../images/renewal_img/chair_navy.png) no-repeat center center; 
    background-size: contain;
}
.facility_tab li[data-filter="life"].active button i {
	background: url(../images/renewal_img/chair_w.png) no-repeat center center; 
    background-size: contain;
}
.facility_tab li[data-filter="common"] button i {
	background: url(../images/renewal_img/dresser_navy.png) no-repeat center center; 
    background-size: contain;
}
.facility_tab li[data-filter="common"].active button i {
	background: url(../images/renewal_img/dresser_w.png) no-repeat center center; 
    background-size: contain;
}


.facility_wrap .sec1{
	display:grid;
	grid-template-columns:repeat(3, 1fr);
	gap:30px;
}
.facility_wrap .sec1 li{
	overflow:hidden;
	border-radius:16px;
	background:#fff;
	box-shadow:0 4px 16px rgba(0,0,0,.08);
	transition:.3s;
	position: relative;
}
.facility_wrap .sec1 li:hover{
	transform:translateY(-6px);
	box-shadow:0 12px 24px rgba(0,0,0,.12);
}
.facility_wrap .sec1 li img{
	display:block;
	width:100%;
	aspect-ratio:4/3;
	object-fit:cover;
}
.facility_wrap .sec1 li span{
	display:flex;
	align-items:center;
	justify-content:center;
	padding: 8px 20px;   
	border-radius:999px;
	font-size:17px;
	text-align:center;
	margin: 0 0 0 0;
	background: var(--du-bg-subtle);
	color: var(--du-text-disabled);
	font-weight: 400;
	position: absolute;
	left: 16px;
	bottom: 16px;
	z-index: 1;
	width: fit-content;
	max-width: 100%;
}
.facility_wrap .sec1 li.hide{
	display:none;
}
.sub_content02.facility_wrap li {
    width: auto;
    margin: 0 0 0 0;
}

/* 게시판 검색상자 */
.innersearchpan {
	border-radius: 8px;
	background: var(--du-bg-subtle);
	border: none;	
}
.smcstyleselect,
.smcstyleselect2 {
	margin-right: 0;
}
.comboCate_st,
.smcstylegroup input{
	padding-left: 10px !important;
}
.comboCate_st,
.smcstylegroup input,
.btn-flat.btn {
	border-radius: 6px;
	font-family: inherit;
}
.btn-flat.btn {

}
.pageinfo {
	padding-left: 0;
}
.sublist_body table {
	border-top: none;
}
.sublist_body table tr th {
	background: var(--du-bg-subtle);
    border-top: 2px solid var(--du-text-primary)!important;
    font-weight: 500;
}
/* 페이징 */
.pagination > .active > a, 
.pagination > .active > span, 
.pagination > .active > a:hover, 
.pagination > .active > span:hover, 
.pagination > .active > a:focus, 
.pagination > .active > span:focus {
	background: var(--du-primary-dark);
	border: 1px solid var(--du-primary-dark);
}
.pagination-sm > li > a,
.pagination-sm > li > span {
	padding: 6px 12px;
}
.pagination > .paginate_box_button > a,
.pagination > .paginate_box_button > span {
	padding: 6px 12px;
}
.pagination > li > a,
.pagination > li > span {
	color: var(--du-text-tertiary);
}

/* 갤러리 */
.galleryBox {
	padding-bottom: 0;
	margin-bottom: 6px;
	border-radius: 12px;
}
.galleryBox img {
    border: 1px solid transparent;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.sub_content06 ul {
	background-color: var(--du-bg-subtle);
}
.dept_body table tr th {
	background-color: var(--du-bg-subtle);
}
.dept_body table th:hover,
.dept_body table td:hover {
	background-color: var(--du-bg-subtle);
}
.ViewBoxHead {
	background: var(--du-bg-subtle);
}

/* 사이트맵 */
.dept_sitemap {
	background: #FDFDFE url(../images/renewal_img/sitemap_bg.png) no-repeat right 30px top 30px; 
    background-size: 600px auto;
}
.dept_sitemap > a {
	color: var(--du-primary-dark);
}
.dept_sitemap > ul > li {
	background: #fff;
	border: none; 
	padding: 10px;
	border-radius: 12px;
	box-shadow: 0 0 10px #576E8F25;
	justify-content: flex-start;
	margin: 8px 0;
}
.dept_sitemap > ul > li > a {
	font-size: 21px; 
	width: 16%;
}
.dept_sitemap .depth_sub2 li {
	position: relative;
	margin: 0 0 0 0;
}
.dept_sitemap .depth_sub2 li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 16px; 
	background: var(--du-border-tertiary);
}
.sub_menu_form .depth_sub2 li a {
	color: var(--du-text-sub);	
}


/* board.css */
/* 게시글 상세 */
.comment-list {
	border: none;
}
.comment-input .textarea {
	display: flex;
}
.comment-input .input-area textarea {
	flex: 1;
	width: auto;
}
.comment-wrap .current {
	border-bottom: none;
}
.comment-input .input-area {
	background-color: var(--du-bg-subtle);
}
.comment-wrap {
	border-bottom: none;
}
#add_new_comment {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.mycontentbody table {
	border-top: 2px solid var(--du-text-primary);
}
.attachbox #btn-fileadd {
	padding: 8px 12px;
	font-size: 14px;
	background: var(--du-primary);
}
.mycontentbody select,
.mycontentbody input {
	padding: 6px;
}
/* 작성자 */
.board_use1	{
	float:none;
	width: auto;
	margin-right: 11px;
}
.board_use1 input{
	float:none;
	width: 20px !important;
	margin-top: 0;
	height: auto;
}
.board_use1 span{
	float: none;
	margin-top: 0;
	font-size: 14px;
	font-weight: bold;
	margin-left: 6px;
	line-height: 1.4;
}
.board_use2{
	float: none;
	width: auto;
	margin-right: 11px;
}
.board_use2 input:nth-child(1){
	float: none;
	width: 20px;
	margin-top: auto;
	height: auto;
}
.board_use2 .board_name_input{
	float: none;
	width: 140px;
	padding: 8px 8px;
}
.board_use2 span{
	float: none;
	margin-top: 0;
	font-size: 14px;
	font-weight: bold;
	margin-left: 6px;
	line-height: 1.4;
	margin-right: 17px;
}
.board_use1,
.board_use2 {
	display: inline-flex;	
	align-items: center;
}
.board_use1 input[type=radio],
.board_use2 input[type=radio] {
	height: 18px; 
}
.infolabel {
	background: var(--du-bg-subtle);
}



.mycontentbody select, 
.mycontentbody input,
textarea {
    border: 1px solid var(--du-border-tertiary);
    font-size: 14px;
    border-radius: 4px;
	
}



/* ## 마이페이지 ##  */
#subTopMenu li:has(a.active) {
    font-size: 14px;
    min-width: auto;
}
#subTopMenu a.active {
    min-width: auto;
    background-color: transparent;
    color: var(--du-primary);
    position: relative;
    padding: 8px;
}
#subTopMenu a.active::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--du-primary);
    border-radius: 999px;
}
#contents:has(.dormMy) .dept_title {
	display: none;
}
.dormMy {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}
.dormMy .leftSec {
	width: 280px;
}
.dormMy .rightSec {
	width: calc(100% - 280px);
}
.dormMy_title_wrap {
	margin-bottom: 24px;
}
.dormMy_title {
    width: fit-content;
    color: var(--du-text-primary);
    font-weight: 700;
    font-size: 36px;
    margin: 0 0;
}
.dormMy_title.mbl {
	display: none;
}
.dormMy_title:after {
    content: '';
    position: absolute;
    right: -16px;
    top: -10px;
    background: url(../images/renewal_img/title_ico.png) no-repeat center center;
    background-size: contain;
    width: 40px;
    height: 26px;
    z-index: -1;
}
.my_sidebar {
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap:12px;
	border: 1px solid #CAD0DF;
	border-radius: 10px;
	box-shadow: 0 2px 10px #00000011;
}
.my_sidebar a {
	display: flex;
	align-items:center;
	gap: 8px;
	padding: 16px;
	font-weight: 600;
	color: #5A6379;
	font-size: 18px;
	border-radius: 8px;
}
.my_sidebar a.active {
	color: var(--du-primary);
	background: var(--du-bg-info) url(../images/renewal_img/keyboard_arrow_right_blue.png) no-repeat center right 12px;
	background-size: 24px;
}
.my_sidebar a:not(.active):hover {
	color: var(--du-primary);
	background: url(../images/renewal_img/keyboard_arrow_right_blue.png) no-repeat center right 12px;
	background-size: 24px;
}
.side_ico {
	width: 36px;
	height: 36px;
	border-radius: 999px;
}
.side_ico1 {
	background: var(--du-bg-subtle) url(../images/renewal_img/badge_gray.png) no-repeat center center;
    background-size: 64%;
}
.my_sidebar a:not(.active):hover .side_ico1 {
	background: var(--du-bg-info) url(../images/renewal_img/badge_blue.png) no-repeat center center;
    background-size: 64%;
    color: var(--du-primary);
}
.active .side_ico1 {
	background: #fff url(../images/renewal_img/badge_blue.png) no-repeat center center;
    background-size: 64%;
}
.side_ico2 {
	background: var(--du-bg-subtle) url(../images/renewal_img/directions_run_gray.png) no-repeat center center;
    background-size: 64%;
}
.my_sidebar  a:not(.active):hover .side_ico2 {
	background: var(--du-bg-info) url(../images/renewal_img/directions_run_blue.png) no-repeat center center;
    background-size: 64%;
    color: var(--du-primary);
}
.active .side_ico2 {
	background: #fff url(../images/renewal_img/directions_run_blue.png) no-repeat center center;
    background-size: 64%;
}
.side_ico3 {
	background: var(--du-bg-subtle) url(../images/renewal_img/quick_reference_all_gray.png) no-repeat center center;
    background-size: 64%;
}
.my_sidebar  a:not(.active):hover .side_ico3 {
	background: var(--du-bg-info) url(../images/renewal_img/quick_reference_all_blue.png) no-repeat center center;
    background-size: 64%;
    color: var(--du-primary);
}
.active .side_ico3 {
	background: #fff url(../images/renewal_img/quick_reference_all_blue.png) no-repeat center center;
    background-size: 64%;
}
.side_ico4 {
	background: var(--du-bg-subtle) url(../images/renewal_img/real_estate_agent_gray.png) no-repeat center center;
    background-size: 64%;
}
.my_sidebar  a:not(.active):hover .side_ico4{
	background: var(--du-bg-info) url(../images/renewal_img/real_estate_agent_blue.png) no-repeat center center;
    background-size: 64%;
    color: var(--du-primary);
}
.active .side_ico4 {
	background: #fff url(../images/renewal_img/real_estate_agent_blue.png) no-repeat center center;
    background-size: 64%;
}
.side_ico5 {
	background: var(--du-bg-subtle) url(../images/renewal_img/construction_gray.png) no-repeat center center;
    background-size: 64%;
}
.my_sidebar  a:not(.active):hover .side_ico5 {
	background: var(--du-bg-info) url(../images/renewal_img/construction_blue.png) no-repeat center center;
    background-size: 64%;
    color: var(--du-primary);
}
.active .side_ico5 {
	background: #fff url(../images/renewal_img/construction_blue.png) no-repeat center center;
    background-size: 64%;
}
.side_ico6 {
	background: var(--du-bg-subtle) url(../images/renewal_img/door_back_gray.png) no-repeat center center;
    background-size: 64%;
}
.my_sidebar  a:not(.active):hover .side_ico6 {
	background: var(--du-bg-info) url(../images/renewal_img/door_back_blue.png) no-repeat center center;
    background-size: 64%;
    color: var(--du-primary);
}
.active .side_ico6 {
	background: #fff url(../images/renewal_img/door_back_blue.png) no-repeat center center;
    background-size: 64%;
}
.dormMy_contents {
	margin-top: 24px;
}
/* 마이페이지 : 퇴관신청 */
.step_diagram {
	display: flex;
	gap: 20px; 
	justify-content: space-between;
	position: relative;
	z-index: 1;
}
.step_diagram::before {
	content: '';
	position: absolute;
	left: 0;
	top: 20px; 
	width: 100%;
	height: 10px;
	background: var(--du-bg-info);
	z-index: -1;
}
.step_diagram li {
	border-radius: 12px;
	border: 1px solid var(--du-border-tertiary);
	width: calc(100% / 5);
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
	background: #fff;
}
.step_diagram li span {
	padding: 12px; 
	color: #fff;
	background: var(--du-primary-dark);
	display: flex;
	align-items: center;
	gap: 10px; 
	justify-content: space-between;
	width: 100%;
	font-size: 18px;
	font-weight: 500;
}
.step_diagram li:last-child span {
	justify-content: center;
}
.step_diagram li:last-child span i {
	display: none;
}
.step_diagram li span i {
	background: url(../images/renewal_img/keyboard_arrow_right_w.png) no-repeat center center;
    background-size: contain;
	width: 24px;
	height:24px;
}

.step_diagram .step_detail {
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.step_diagram .step_detail p {
	text-align: center;
}
.guide_ico {
	width: 22px;
	height: 22px;
}
.leave_content {
    display: none;
}

.leave_content.active {
    display: block;
}
.leave_type_wrap {
	display: flex;
	gap: 20px;
	justify-content: space-between;
}
.leave_btn {
	width: calc(100% - 10px);
	border: 1px solid var(--du-border-tertiary);
	border-radius: 8px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--du-bg-subtle);
	box-shadow: 0 2px 6px #00000012;
	padding-right: 60px;
}

.leave_btn:hover {
	border: 1px solid var(--du-primary);
}
.leave_btn span {
	display: flex;
    align-items: start;
	flex-direction: column;
	gap: 6px;
	color: #5A6379;
}
.leave_btn:hover span {
	color: var(--du-primary);
}
.leave_btn span strong {
	font-size: 22px;
	font-weight: 700;
	color: inherit;
}
.leave_btn span em {
	font-size: 16px;
	color: inherit;
	white-space: normal;
	text-align: left;
}
.leave_btn i {
	width: 48px;
	height: 48px;
}
.leave_btn.active {
	border: 1px solid var(--du-primary);
	background: var(--du-bg-info) url(../images/renewal_img/check_circle_blue.png) no-repeat center right 12px;
    background-size: auto 32%;
}
.leave_btn[data-type="regular"] i {
	background: url(../images/renewal_img/domain_gray.png) no-repeat center center;
    background-size: contain;
}
.leave_btn[data-type="regular"].active i,
.leave_btn[data-type="regular"]:hover i  {
	background: url(../images/renewal_img/domain_blue.png) no-repeat center center;
    background-size: contain;
}
.leave_btn[data-type="regular"].active span {
	color: var(--du-primary);
}
.leave_btn[data-type="early"] i {
	background: url(../images/renewal_img/domain_disabled_gray.png) no-repeat center center;
    background-size: contain;
}
.leave_btn[data-type="early"].active i,
.leave_btn[data-type="early"]:hover i {
	background: url(../images/renewal_img/domain_disabled_blue.png) no-repeat center center;
    background-size: contain;
}
.leave_btn[data-type="early"].active span{
	color: var(--du-primary);
}

/* 생활관 퇴관전 확인사항 모달 */
.checkList_modal {
	font-size: 18px;
}
.dept_body table tr:first-child {
	border-top: 2px solid var(--du-text-primary);
}
.checkList_modal th {
	width: auto;
	text-align: left !important;
}
.checkList_modal th,
.checkList_modal td {
	font-size: 18px;
}
.checkList_modal .du-radio span,
.checkList_modal textarea {
	font-size: 18px;
}
.checkList_modal .du-radio:has(input:checked) span {
	color: var(--du-primary);
}


.checkList_modal table:not(table.not_tbl) tr th:last-child,
.checkList_modal table:not(table.not_tbl) tr td:last-child {
	border-right: 1px solid #ddd;
}

/* 마이페이지- 고장 수리 사진 확대 */
.photo_view_modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.75);
	z-index: 9999;
}

.photo_view_cont {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	height: 800px;
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.photo_view_cont img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 8px;
}

.photo_view_close {
	position: absolute;
	right: 30px;
	top: 30px;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	background: #fff url(../images/dorm_img/close.png) no-repeat center center; 
    background-size: auto 72%;
}

#dtlPhotoArea img {
	cursor: pointer;
}

.repair_detail_img {
	max-width: 140px;
	object-fit: cover;
	border: 1px solid #ccc;
	border-radius: 4px;
	cursor: pointer;
}


/* 모바일메뉴 마이페이지바로가기 추가 */
.mbl_my a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2px;
	color: var(--du-primary);
	background: #fff;
    padding: 8px 12px;
    box-shadow: 0px 0px 6px #00000016;
    margin-right: 8px;
    border-radius: 6px;
}
.mbl_my .my_ico {
	width: 20px;
	height: 20px;
}














