@charset "UTF-8";

/* ------------------------------------------------------------------------- */
/* CSS Table of Contents
/* ------------------------------------------------------------------------- */
/*

0. Reset

1. Common
    1-1. input, select, textarea
    1-2. checkbox
    1-3. radio
    1-4. button
    1-5. table
    1-6. pagination
    1-7. layer

2. Layout
    2-1. wrap
    2-2. header
    2-3. container

3. Sub
    3-1. lnb
    3-2. common
    3-3. sort
    3-4. steps
    3-5. content
    3-6. map

4. Main

5. Intro
    5-1. 회원가입
    5-2. 로그인 / 아이디,비밀번호 찾기
    5-3. 초기화면
    
/* ------------------------------------------------------------------------- */
/* 0. Reset
/* ------------------------------------------------------------------------- */

* {box-sizing:border-box}

html, body, div, span, h1, h2, h3, h4, h5, h6, p, 
address, em, img, strong, i, dl, dt, dd, ul, li, 
fieldset, form, label, legend, table, caption, 
tbody, tfoot, thead, tr, th, td, figure, button, input, select {
	margin: 0;
	padding: 0;
	border: 0;
    word-break: break-all;
}
:lang(ko) {word-break: keep-all;}
ul, li {list-style: none;}
a {text-decoration: none; color: inherit;}
em, address {font-style: normal;}
h1, h2, h3, h4, h5, h6, strong {font-weight: normal;}
article, aside, figcaption, figure, footer, header, nav, section, main {display: block;}
table {border-collapse: collapse; border-spacing:0;}
/*
input, button, select {
    border-radius:0; 
    border: none;
    background-color: transparent;
}
*/
select {
    appearance:none;
    -webkit-appearance:none; 
    -moz-appearance:none; 
}
button, select {cursor: pointer;}
input:focus, select:focus, option:focus, textarea:focus, button:focus {outline: none;}

img, svg, video, canvas, audio, iframe {display: block;}
img, video {max-width: 100%; height: auto;}

body {
    font: 400 16px/1 'Pretendard', 'Malgun Gothic' ,'돋움', dotum, AppleGothic, sans-serif; 
    letter-spacing: -0.2px;
    background-color: #fff;
}
/* 스크롤바의 너비와 높이 설정 */
::-webkit-scrollbar {
    width: 12px; /* 세로 스크롤바 너비 */
    height: 12px; /* 가로 스크롤바 높이 */
}

/* 스크롤바 트랙 (배경) 스타일 */
::-webkit-scrollbar-track {
    background-color: var(--gray);
    border-radius: 10px;
}

/* 스크롤바 손잡이 (드래그 가능한 부분) */
::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}

/* 스크롤바 손잡이 (드래그 시) */
::-webkit-scrollbar-thumb:hover {
    background-color: var(--gray);
}

/* font */
@font-face {
    font-family: 'Pretendard';
    src:url('/css/common/font/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src:url('/css/common/font/Pretendard-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src:url('/css/common/font/Pretendard-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src:url('/css/common/font/Pretendard-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans KR';
    src:url('/css/common/font/NotoSansKR-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans KR';
    src:url('/css/common/font/NotoSansKR-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans KR';
    src:url('/css/common/font/NotoSansKR-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}


:root {
    --bg: #f3f3f3;
    --main: #009fe2;
    --white: #ffffff;
    --gray: #d6d6d6;
    --text: #000000;
    --text85: #262626;
    --text75: #434343;
    --text60: #666666;
    --text50: #7f7f7f;
    --text40: #999999;
    --text30: #b2b2b2;
    --table: #f6f6f6;
    --border: #e8e8e8;
    --border2: #dfdfdf;
    --descBg: #eef3f6;
    --disabled: #f9f9f9;
    --focus: #474747;
    --radius: 8px;
    --grayHover: #c9c9c9;
    --mainHover: #0088ce;
    --tableHover: #f2fafe;
    --scroll: #8b8b8b;
    --textRed: #F03800;
}

input, button, select, textarea {font-family: 'Pretendard';}

.hidden {
    width: 0; height: 0; 
    position: absolute; left: -9999px; top: 0;
    overflow: hidden;
}
.scrollX {overflow: hidden; overflow-x: auto;}
.scrollY {overflow: hidden; overflow-y: auto;}
.scrollX::-webkit-scrollbar, 
.scrollY::-webkit-scrollbar {width: 8px; height: 8px;}
.scrollX::-webkit-scrollbar-track, 
.scrollY::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: var(--white);
}
.scrollX::-webkit-scrollbar-thumb, 
.scrollY::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--scroll);
}
.flexible {display: flex;}
.full {width: 100%;}
.shrink0 {flex-shrink: 0;}
.flex1 {flex: 1;}



/* ------------------------------------------------------------------------- */
/* 1. Common
/* ------------------------------------------------------------------------- */
/* 1-1. input, select, textarea
/* ------------------------------------------------------------------------- */
/* input */
.it {
    width: 100%; height: 38px;
    padding: 0 16px;
    border: 2px solid var(--border2);
    border-radius: var(--radius);
    font-size: 16px; line-height: 1.4; color: var(--text85);
    background-color: white;
}
.it::placeholder {color: var(--text40);}
.it:read-only,
.it:disabled {background-color: var(--disabled);}
.it:focus {border-color: var(--focus);}
.it:read-only:focus,
.it:disabled:focus {border-color: var(--border2);}
.it.date {
    width: 180px;
    padding-right: 36px;
    background: white url(/css/common/img/ico_cal.png) no-repeat right 10px center / 16px;
    position: relative;
}
.it.date::-webkit-calendar-picker-indicator {
    width: 100%; height: 100%;
    color: transparent;
    background: transparent;
    position: absolute; left: 0; top: 0;
    cursor: pointer;
}
.it.date::-webkit-inner-spin-button {display: none;}

.it.w120 {max-width: 120px;}
.it.w180 {max-width: 180px;}
.it.w260 {max-width: 260px;}


/* select */
.st {
    min-width: 260px; height: 38px;
    padding: 0 36px 0 16px;
    border: 2px solid var(--border2);
    border-radius: var(--radius);
    font-size: 16px; line-height: 1.4; color: var(--text85);
    background: #fff url(/css/common/img/ico_select.png) no-repeat right 18px center / 11px 7px;
}
.st.w170 {min-width: 150px;}
.st.w200 {min-width: 200px;}
.st.full {min-width: auto; width: 100%;}
.st:focus {border-color: var(--focus);}


/* textarea */
textarea {
    width: 100%; min-height: 120px;
    padding: 12px 18px;
    border: 2px solid var(--border2);
    border-radius: var(--radius);
    font-size: 16px; line-height: 1.4; color: var(--text85);
    resize: none;
}
textarea::placeholder {color: var(--text40);}
textarea:read-only,
textarea:disabled {background-color: var(--disabled);}
textarea:focus {border-color: var(--focus);}
.board td textarea {margin-bottom: -6px;}


/* label */
.label {
    display: inline-block;
    font-weight: 400; font-size: 16px; line-height: 38px; color: var(--text85);
}
.input_box {display: flex; align-items: center;}
.input_box + .input_box {margin-left: 20px;}
.input_box > * + * {margin-left: 8px;}
.input_box .ex {margin-left: 12px;}



/* ------------------------------------------------------------------------- */
/* 1-2. checkbox
/* ------------------------------------------------------------------------- */
.check_box {display: flex; align-items: center;}
.check_btn {
    display: flex; align-items: center;
    cursor: pointer;
}
.check_btn + .check_btn {margin-left: 20px;}
.check_btn input[type="checkbox"] {
    width: 24px; height: 24px;
    padding: 0;
    border: none;
    background-color: transparent;
    overflow: hidden;
    opacity: 0;
}
.check_btn span {
    margin-left: 8px;
    position: relative;
}
.check_btn span::before {content: "";
    width: 24px; height: 24px;
    background: url(/css/common/img/ico_checkbox.png) no-repeat center / contain;
    position: absolute; left: -32px; top: 50%;
    transform: translateY(-50%);
}
.check_btn input[type="checkbox"]:checked + span::before {background-image: url(/css/common/img/ico_checkbox_on.png);}

.check_btn.noTxt {
    width: 24px;
    margin: 0 auto;
}
.check_btn.noTxt span {margin-left: 24px;}
.check_btn.noTxt span::before {left: -24px;}



/* ------------------------------------------------------------------------- */
/* 1-3. radio
/* ------------------------------------------------------------------------- */
.radio_box {display: flex; align-items: center;}
.radio_btn {
    display: flex; align-items: center;
    cursor: pointer;
}
.radio_btn + .radio_btn {margin-left: 20px;}
.radio_btn input[type="radio"] {
    width: 26px; height: 26px;
    padding: 0;
    border: none;
    background-color: transparent;
    overflow: hidden;
    opacity: 0;
}
.radio_btn span {
    margin-left: 8px;
    position: relative;
}
.radio_btn span::before {content: "";
    width: 26px; height: 26px;
    background: url(/css/common/img/ico_radio.png) no-repeat center / contain;
    position: absolute; left: -34px; top: 50%;
    transform: translateY(-50%);
}
.radio_btn input[type="radio"]:checked + span::before {background-image: url(/css/common/img/ico_radio_on.png);}

.radio_btn.noTxt {
    width: 26px;
    margin: 0 auto;
}
.radio_btn.noTxt span {margin-left: 26px;}
.radio_btn.noTxt span::before {left: -26px;}



/* ------------------------------------------------------------------------- */
/* 1-4. button
/* ------------------------------------------------------------------------- */
.btn {
    display: flex; align-items: center; justify-content: center;
    min-width: 100px; height: 42px;
    padding: 0 12px;
    border: 2px solid var(--gray);
    border-radius: var(--radius);
    font-weight: 500; font-size: 16px; text-align: center; color: var(--text85);
    background-color: var(--white);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
/* (jack 추가) */
.btn.sm {
	min-width: 50px;
	max-width: 80px;	
}
.btn.type2 {
    height: 48px;
    padding: 0 32px;
}
.btn.gray {
    border-color: var(--gray);
    color: var(--text60);
    background-color: var(--gray);
}
.btn.blue {
    border-color: var(--main);
    color: var(--white);
    background-color: var(--main);
}
.btn:disabled {
    background-color: var(--disabled);
    cursor: auto;
}

.btn_box {display: flex; align-items: center; justify-content: center;}
.btn + .btn {margin-left: 12px;}

/* btn:hover */
.btn:hover {border-color: var(--focus);}
.btn.gray:hover {
    border-color: var(--grayHover);
    color: var(--text);
    background-color: var(--grayHover);
}
.btn.blue:hover {
    border-color: var(--mainHover);
    color: var(--white);
    background-color: var(--mainHover);
}



/* ------------------------------------------------------------------------- */
/* 1-5. table
/* ------------------------------------------------------------------------- */
.board {
    border-top: 2px solid var(--border);
    background-color: white;
}
.board table {width: 100%;}
.board thead {border-bottom: 2px solid var(--border);}
.board tbody tr {border-bottom: 2px solid var(--border);}
.board th,
.board td {
    height: 48px;
    padding: 5px 12px;
    line-height: 1.4; text-align: center; color: var(--text85);
}

/* (jack 추가) */
.board td button{
    display: inline-block;
}

.board th {
    font-weight: 600; font-size: 17px; line-height: 36px;
    background-color: var(--table);
}
.board td {font-weight: 400; font-size: 16px;}
.board td.tal {text-align: left;}
.board td.tar {text-align: right;}

.board tr.noData td {
    height: 130px;
    color: var(--text60);
}
.board .required {color: var(--textRed);}

/* type2(input O) / type3(input X) */
.board.type2 colgroup .col1,
.board.type3 colgroup .col1 {width: 15% !important; min-width: 180px;}
.board.type2 colgroup .col2,
.board.type3 colgroup .col2 {width: 35% !important;}
.board.type2 colgroup .col3,
.board.type3 colgroup .col3 {width: 25% !important;}
.board.type2 colgroup .col4,
.board.type3 colgroup .col4 {width: 75% !important;}
.board.type2 colgroup .col5,
.board.type3 colgroup .col5 {width: 35% !important;}
.board.type2 colgroup .col6,
.board.type3 colgroup .col6 {width: 65% !important;}
.board.type2 th,
.board.type2 td {text-align: left; }
.board.type2 th {padding: 5px 20px;}
.board.type3 th,
.board.type3 td {
    padding: 5px 20px;
    text-align: left;
}
.board.type3 td {padding: 10px 20px;}

.board.type2 th,
.board.type2 td {text-align: left; }
.board.type2 th {padding: 5px 20px;}
.board.type2 td {font-size: 16px;}

/* ------------------------------------------------------------------------- */
/* 1-5-1. table tr hover (jack 추가)
/* ------------------------------------------------------------------------- */
.board-hover {
    border-top: 2px solid var(--border);
    background-color: white;
}
.board-hover table {width: 100%;}
.board-hover thead {border-bottom: 2px solid var(--border);}
.board-hover tbody tr {border-bottom: 2px solid var(--border);}
.board-hover tbody tr:not(.noData):hover {cursor: pointer; background-color: var(--main);}
.board-hover tbody tr:not(.noData):hover td{color: var(--white) !important; font-weight: 700;}
.board-hover th,
.board-hover td {
    height: 48px;
    padding: 5px 12px;
    line-height: 1.4; text-align: center; color: var(--text85);
}

.board-hover td button{
    display: inline-block;
}

.board-hover th {
    font-weight: 600; font-size: 17px; line-height: 36px;
    background-color: var(--table);
}
.board-hover td {font-weight: 400; font-size: 15px;}
.board-hover td.tal {text-align: left;}
.board-hover td.tar {text-align: right;}

.board-hover tr.noData td {
    height: 140px;
    color: var(--text60);
}

/* type2 mati*/
.board-hover.type2 colgroup .col1 {width: 15% !important; min-width: 180px;}
.board-hover.type2 colgroup .col2 {width: 35% !important;}
.board-hover.type2 colgroup .col3 {width: 85% !important;}
.board-hover.type2 th,
.board-hover.type2 td {text-align: center; }
.board-hover.type2 th {padding: 5px 20px;}
.board-hover.type2 td {font-size: 16px;}





/* ------------------------------------------------------------------------- */
/* 1-6. pagination
/* ------------------------------------------------------------------------- */
.pagination {
    display: flex; align-items: center; justify-content: center;
    width: 100%;
    padding: 20px 0;
}
.pagination button {
    width: 26px; height: 26px;
    border: 2px solid var(--border2);
    border-radius: 6px;
    font-weight: 400; font-size: 14px; line-height: 22px; text-align: center; color: var(--text30);
    background-color: var(--white); 
    position: relative;
    transition: border-color 0.1s ease, color 0.1s ease;
}
.pagination button + button {margin-left: 6px;}
.pagination .prev,
.pagination .last {margin-left: 3px;}
.pagination button:not(.num)::before {content: "";
    width: 12px; height: 10px;
    background: url(/css/common/img/ico_pag1.png) no-repeat center / contain;
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
}
.pagination button.last::before {background-image: url(/css/common/img/ico_pag2.png);}
.pagination button.prev::before {transform: translate(-50%, -50%) rotate(180deg);}
.pagination button.first::before {
    background-image: url(/css/common/img/ico_pag2.png);
    transform: translate(-50%, -50%) rotate(180deg);
}

/* hover & on */
.pagination button:hover {
    border-color: var(--text75);
    font-weight: 600; color: var(--text75);
}
.pagination button.on {
    border-color: var(--text75);
    font-weight: 600; color: var(--text75);
}
.pagination button:not(.num):hover::before {background-image: url(/css/common/img/ico_pag1_on.png);}
.pagination button:not(.num).first:hover::before,
.pagination button:not(.num).last:hover::before {background-image: url(/css/common/img/ico_pag2_on.png);}



/* ------------------------------------------------------------------------- */
/* 1-7. layer
/* ------------------------------------------------------------------------- */
.layer {
    display: none;
    width: 100%; height: 100vh;
    position: fixed; left: 0; top: 0; z-index: 10000;
}
.layer.on {display: block;}
.layer_dimmed {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    position: absolute; left: 0; top: 0;
}
.layer_box {
    width: 1560px; max-width: 1920px;
    border-radius: 10px;
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}
/* MATI */
.layer_box.map {width: calc(100% - 40px); height: calc(100vh - 150px);}
.layer.on .layer_box {animation: pop 0.4s cubic-bezier(0.37, 0, 0.63, 1) forwards;}

@keyframes pop {
    20% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    60% {opacity: 1;}
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* header */
.layer_header {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px 10px 0 0;
    background-color: var(--main);
    position: relative;
}
.layer_header .layer_title {
    padding-left: 30px;
    font-weight: 700; font-size: 22px; line-height: 26px; color: var(--white);
    background: url(/css/common/img/ico_layerTit.png) no-repeat left 2px center / 19px 13px;
    position: relative;
}
.layer_header .layer_title.type2 {
    display: flex; align-items: center;
    padding-left: 0;
    background: none;
}
.layer_header .layer_title.type2 img {
    width: 108px; height: 50px;
    margin-right: 36px;
}
.layer_header .layer_title.type2 span {position: relative;}
.layer_header .layer_title.type2 span::before {content: "";
    width: 2px; height: 18px;
    background-color: rgba(255,255,255,0.5);
    position: absolute; left: -18px; top: 50%;
    transform: translateY(-50%);
}

/* header - close button */
.layer_header .layer_close {
    width: 30px; height: 30px;
    position: relative;
    background-color: transparent;
}
.layer_header .layer_close::before {
	content: "";
    width: 17px; height: 17px;
    background: url(/css/common/img/ico_close.png) no-repeat center / contain;
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}
.layer_header .layer_close:hover::before {transform: translate(-50%, -50%) rotate(90deg);}

/* header - map search */
.layer_header .map_search {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
}
.layer_header .map_search input {
    width: 400px; height: 48px;
    padding: 0 80px 0 20px;
    border: 2px solid var(--white);
    border-radius: 24px;
    font-size: 16px; color: var(--text);
    background-color: var(--white);
}
.layer_header .map_search input:focus {border-color: var(--focus);}
.layer_header .map_search button {
    width: 64px; height: 36px;
    border: 2px solid var(--border);
    border-radius: 20px;
    background-color: var(--white);
    font-weight: 600; font-size: 15px; color: var(--text85);
    position: absolute; right: 7px; top: 6px;
    transition: background-color 0.2s ease;
}
.layer_header .map_search button:hover {background-color: var(--bg);}


/* content */
.layer_content {
    padding: 30px 15px 30px 40px;
    border-radius: 0 0 10px 10px;
    background-color: var(--white);
}
.layer_content .scrollY {
    max-height: calc(100vh - 158px);
    padding-right: 25px;
    padding-bottom: 30px;
}


/* content - map */
.map_content {
    height: calc(100% - 76px);
    border-radius: 0 0 10px 10px;
    background-color: var(--white);
    position: relative;
    overflow: hidden; 
}
.map_content.type2 {height: calc(100% - 58px);}
.map_content .map_area {
    width: 100%; height: 100%;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}





/* ------------------------------------------------------------------------- */
/* 2. Layout
/* ------------------------------------------------------------------------- */
/* 2-1. wrap
/* ------------------------------------------------------------------------- */
body {
    font-weight: 400; font-family: 'Pretendard'; color: var(--text85);
    background-color: var(--bg);
}
#wrap {
    width: 100%; max-width: 2000px; min-width: 1600px;
    padding: 0 20px 12px 20px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}



/* ------------------------------------------------------------------------- */
/* 2-2. header
/* ------------------------------------------------------------------------- */
#header {
    width: calc(100% - 40px); max-width: 1960px; height: 78px;
    border: 2px solid var(--border); border-top: 0;
    border-radius: 0 0 20px 20px;
    background-color: var(--white);
    position: fixed; left: 50%; top: 0; z-index: 10000; 
    transform: translateX(-50%);
    transition: width 0.3s linear, border-radius 0.3s linear, margin 0.3s linear;
}
#header .inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1960px; min-width: 1580px; height: 78px;
    padding: 0 30px;
    margin: 0 auto;
}

#header.on {
    width: 100%; max-width: 100%;
    border-radius: 0;
    border-left-color: var(--white); border-top-color: var(--white);
}
#header.on .inner {padding: 0 32px;}


/* logo */
#header .logo a {
    display: flex; align-items: center;
    height: 50px;
    font-weight: 700; font-size: 22px; color: var(--text);
    position: relative;
}
#header .logo a::before {content: "";
    width: 2px; height: 18px;
    background-color: #c9c9c9;
    position: absolute; left: 128px; top: 50%;
    transform: translateY(-50%);
}
#header .logo a img {
    width: 108px; height: 50px;
    margin-right: 36px;
    object-fit: contain;
}

/* gnb */
#header .gnb {
    display: flex; align-items: center; justify-content: center;
    height: 100%;
    position: absolute; left: 50%; top: 0;
    transform: translateX(-50%);
}
#header .gnb a {
    height: 100%;
    margin: 0 40px;
    font-weight: 600; font-size: 20px; line-height: 78px; color: var(--text);
    position: relative;
    transition: color 0.2s ease;
}
#header .gnb a::before,
#header .gnb a::after {content: "";
    width: 0; height: 5px;
    background-color: var(--main);
    position: absolute; bottom: 0;
    transition: width 0.2s ease;
}
#header .gnb a::before {left: 50%;}
#header .gnb a::after {right: 50%;}

/* gnb:hover & gnb.on */
#header .gnb a.on {font-weight: 700; color: var(--main);}
#header .gnb a.on::before,
#header .gnb a.on::after {width: 50%;}

#header .gnb a:hover {color: var(--main);}
#header .gnb a:hover::before,
#header .gnb a:hover::after {width: 50%;}

/* login */
#header .login {display: flex; align-items: center;}
#header .login .user {
    display: flex; align-items: center;
    margin-right: 30px;
}
#header .login .user_img {
    width: 50px; height: 50px;
    margin-right: 8px;
    border: 2px solid var(--border);
    border-radius: 50%;
    background-color: var(--white);
    overflow: hidden;
}
#header .login .user_img img {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
#header .login .user_name {font-size: 15px; color: var(--text75);}
#header .login_btn,
#header .mypage_btn {
    min-width: 72px; height: 34px;
    padding: 0 8px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 14px; line-height: 30px; text-align: center; color: var(--text75);
    background-color: var(--white);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
#header .login_btn {margin-right: 10px;}
#header .mypage_btn {
    border-color: var(--main);
    color: var(--white);
    background-color: var(--main);
}

#header .login_btn:hover {background-color: var(--bg);}
#header .mypage_btn:hover {
    border-color: var(--mainHover);
    background-color: var(--mainHover);
}



/* ------------------------------------------------------------------------- */
/* 2-3. container
/* ------------------------------------------------------------------------- */
#container {
    display: flex; flex-direction: column;
    min-height: calc(100vh - 102px); height: auto;
    padding: 58px; padding-bottom: 0;
    margin-top: 88px;
    border: 2px solid var(--border);
    border-radius: 20px;
    background-color: var(--white);
}

#main {
    display: flex; flex: 1;
    height: auto; 
    padding-bottom: 80px;
}


/* footer */
#footer {
    padding: 22px 0;
    border-top: 2px solid var(--border);
    font-family: 'Noto Sans KR'; line-height: 26px; letter-spacing: -0.5px;
}
#footer .menu {margin-bottom: 10px;}
#footer .menu a {
    margin-right: 24px;
    font-weight: 500; font-size: 15px; color: var(--text85);
}
/* (jack 변경) */
#footer .footer-info {display: flex; align-items: center; justify-content: space-between;}
#footer .footer-info .addr {
    display: flex; align-items: center;
    font-weight: 400; font-size: 14px; color: var(--text50);
}
#footer .footer-info .addr address {margin-right: 10px;}
#footer .footer-info .copy {font-weight: 300; font-size: 13px; color: var(--text40);}




/* ------------------------------------------------------------------------- */
/* 3. Sub
/* ------------------------------------------------------------------------- */
/* 3-1. lnb
/* ------------------------------------------------------------------------- */
.lnb {
    width: 220px; 
    margin-right: 60px;
}
.lnb_depth1 > li {width: 100%;}
.lnb_depth1 > li + li {margin-top: 10px;}
.lnb_depth1 > li a {
    display: block;
    width: 100%; height: 48px;
    padding: 0 20px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-weight: 500; font-size: 16px; line-height: 44px; color: var(--text85);
    background-color: var(--white);
    position: relative;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.lnb_depth1 > li.type2 a::after {content: "";
    width: 11px; height: 7px;
    /* background: url(/css/common/img/ico_depth.png) no-repeat center / contain; */
    position: absolute; right: 20px; top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.lnb_depth2 {display: none;}
.lnb_depth2.on {display: block;}
.lnb_depth2 li {
    padding: 0 20px;
}
.lnb_depth2 li a {
    height: 42px;
    padding: 0 2px;
    border: 0;
    font-weight: 500; line-height: 42px;
}
.lnb_depth1 .lnb_depth2 li a::after {
    display: none;
    width: 12px; height: 9px;
    right: 0;
}
.lnb_depth2 li + li a::before {content: "";
    width: 100%; height: 2px;
    background-color: var(--border);
    position: absolute; left: 0; top: -1px;
}


/* hover & on */
.lnb_depth1 > li:hover > a {background-color: var(--bg);}
.lnb_depth1 > li.on > a {
    border-color: var(--main);
    font-weight: 600; color: var(--white);
    background-color: var(--main);
}
.lnb_depth1 > li.type2.on a::after {
     /* background-image: url(/css/common/img/ico_depth_on.png); */
    transform: translateY(-50%) rotate(180deg);
}

.lnb_depth1 > li.type2.on .lnb_depth2 li.on a {font-weight: 600; color: var(--main);}
.lnb_depth1 > li.type2.on .lnb_depth2 li.on a::after {
    display: block;
    background-image: url(/css/common/img/ico_blueCheck.png);
    transform: translateY(-50%);
}



/* ------------------------------------------------------------------------- */
/* 3-2. common
/* ------------------------------------------------------------------------- */
.content {width: calc(100% - 280px);}
.content_tit {
    display: flex; align-items: center; justify-content: space-between;
    height: 32px;
    margin-bottom: 16px;
    position: relative;
}
.content_tit h2 {
    padding-left: 26px;
    font-weight: 700; font-size: 24px; line-height: 32px; color: var(--text85);
    background: url(/css/common/img/ico_tit.png) no-repeat left center / 18px 13px;
}
.content_tit .btn.upload {
    padding: 0 20px 0 46px;
    font-size: 17px;
    background-image: url(/css/common/img/ico_upload.png); background-repeat: no-repeat;
    background-position: left 20px center; background-size: 16px 16px;
    position: absolute; right: 0; bottom: 0;
}

.sec {margin-bottom: 35px;}
.sec:last-of-type {margin-bottom: 0;}
.sec_title {
    display: flex; align-items: center; justify-content: space-between;
    height: 32px;
    margin-bottom: 12px;
    position: relative;
}
.sec_title h3 {
    padding-left: 18px;
    font-weight: 600; font-size: 20px; line-height: 1.6; color: var(--text85);
    position: relative;
}
.sec_title h3.type2 {
    display: flex; align-items: center;
    padding-left: 0;
}
.sec_title h3::before {content: "";
    width: 9px; height: 9px;
    border-radius: 50%;
    background-color: #dadada;
    position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
}
.sec_title h3.type2::before {display: none;}

.sec_title h3.type2 > span {
    margin-left: 6px;
    color: var(--main);
}
.sec_title h3.type2 > span span {font-size: 21px;}

.sec_title .btn {
    height: 38px;
    margin-top: -6px;
}
.sec_title.type2 {justify-content: start;}
.sec_title.type2 span {
    margin-left: 15px;
    font-size: 15px; color: var(--main);
}

.sec + .btn_box {margin-top: 40px;}



/* ------------------------------------------------------------------------- */
/* 3-3. sort
/* ------------------------------------------------------------------------- */
.sort {
    margin-bottom: 35px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--bg);
}
.sort_list {
    display: flex; align-items: center; flex-wrap: wrap; gap: 16px 32px; gap: 16px 32px;
    width: 100%;
    padding: 22px 38px;
    border-bottom: 2px solid var(--border);
}
.sort_list .label {
    flex-shrink: 0;
    margin-right: 10px;
    font-weight: 600; font-size: 17px; line-height: 42px;
}
.sort_list .it {height: 42px;}
.sort_list input[type="text"].it {width: 300px;} 
.sort_list .st {height: 42px;}
.sort_list .input_box.type2 > * + * {margin-left: 6px;}
.sort_list .input_box.type2 .label {
    margin-right: 0;
    font-weight: 400; font-size: 16px; color: var(--text60);
}
.sort_list .input_box.type2 .label + .it {width: 80px;}
.sort_list .input_box.type2 .it + .label {margin-left: 10px;}
.sort_list .input_box .check_btn + .check_btn {margin-left: 10px;}
.sort_list .input_box .check_btn span::before {left: -30px;}
.sort_list .input_box .check_box + .it {margin-left: 10px;}
.sort_btn {
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.sort_btn .btn {padding: 0 20px;}



/* ------------------------------------------------------------------------- */
/* 3-4. steps
/* ------------------------------------------------------------------------- */
.content_steps {margin-bottom: 35px;}
.content_steps ul {
    display: flex; align-items: center; justify-content: space-between;
    position: relative;
}
.content_steps ul + ul {margin-top: 15px;}
.content_steps ul + ul li:first-child::before {content: "";
    width: 6px; height: 10px;
    background: url(/css/common/img/ico_arrowR.png) no-repeat center / contain;
    position: absolute; left: 50%; top: -12px;
    transform: translateX(-50%) rotate(90deg);
}
.content_steps ul li {
    flex: 1;
    height: 38px;
    padding: 0 10px;
    border-radius: 30px;
    font-size: 16px; line-height: 38px; text-align: center; color: var(--text40); letter-spacing: -0.5px;
    background-color: var(--border);
    position: relative;
}
.content_steps ul li + li {margin-left: 15px;}
.content_steps ul li + li::before {content: "";
    width: 6px; height: 10px;
    background: url(/css/common/img/ico_arrowR.png) no-repeat center / contain;
    position: absolute; left: -10px; top: 50%;
    transform: translateY(-50%);
}
.content_steps ul li.on {
    color: var(--white);
    background-color: var(--main);
}

/* 역방향 */
.content_steps ul.reverse li:nth-child(1) {order: 10;}
.content_steps ul.reverse li:nth-child(2) {order: 9;}
.content_steps ul.reverse li:nth-child(3) {order: 8;}
.content_steps ul.reverse li:nth-child(4) {order: 7;}
.content_steps ul.reverse li:nth-child(5) {order: 6;}
.content_steps ul.reverse li:nth-child(6) {order: 5;}
.content_steps ul.reverse li:nth-child(7) {order: 4;}
.content_steps ul.reverse li:nth-child(8) {order: 3;}
.content_steps ul.reverse li:nth-child(9) {order: 2;}
.content_steps ul.reverse li:nth-child(10) {order: 1;}
.content_steps ul.reverse li + li {margin-left: 0; margin-right: 15px;}
.content_steps ul.reverse li + li::before {
    left: auto; right: -10px;
    transform: translateY(-50%) rotate(180deg);
}



/* ------------------------------------------------------------------------- */
/* 3-5. content
/* ------------------------------------------------------------------------- */
/* 등록 */
.board .btn {
    min-width: 54px; height: 32px;
    border-radius: 6px;
    font-size: 15px;
    margin: 0 auto;
}
.board .btn.type2 {
    height: 48px;
    font-size: 16px;
    margin: 0;
}
.board td.tar .it {text-align: right;}

/* 공사구간 */
.addr_box {padding: 10px 8px;}
.addr_box > * + * {margin-top: 12px !important;}
.addr_box .flexible + .flexible {margin-top: 12px;}
.addr_box .flexible > * + * {margin-left: 20px;}
.addr_box p.desc {font-size: 15px; line-height: 1.6; color: var(--main);}

/* description */
.board + .desc_box {margin-top: 20px;}
.desc_box {
    padding: 20px 24px;
    border-radius: var(--radius);
    background-color: var(--descBg);
}
.desc_box p {
    padding-left: 8px;
    font-size: 15px; line-height: 25px; color: var(--main);
    position: relative;
}
.desc_box p::before {content: "";
    width: 3px; height: 3px;
    border-radius: 50%;
    background-color: var(--main);
    position: absolute; left: 0; top: 10px;
}
.desc_box .desc_img {
    display: flex;
    margin: 20px 0 5px 0;
}
.desc_box .desc_img_box + .desc_img_box {margin-left: 20px;}
.desc_box .desc_img_box strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px; line-height: 20px;
}
.desc_box .desc_down {
    display: inline-block;
    padding-top: 10px;
    font-weight: 500; font-size: 16px;
}
.desc_box .desc_down:hover {text-decoration: underline; text-underline-offset: 3px;}

/* MATI */
/* 파일 다운로드 */
.board table td .file_download button {
    display: inline-block;
    margin-right: 5px;
    font-size: 16px; line-height: 25px; color: var(--main);
}
.board table td .file_download span {
    display: inline-block;
    font-size: 15px; line-height: 25px; color: var(--text60);
}
.board table td .file_download button:hover {text-decoration: underline; text-underline-offset: 3px;}


/* 파일 업로드 */
.board table td .file_upload {
    display: flex; align-items: center;
    position: relative;
}
.board table td .file_btn {
    flex-shrink: 0;
    margin-right: 8px;
    position: relative;
    overflow: hidden;
}
.board table td .file_btn .btn {width: 90px; height: 38px;}
.board table td .file_btn input[type="file"] {
    width: 160px; height: 38px;
    background-color: tomato;
    position: absolute; left: -70px; top: 0;
    cursor: pointer;
    opacity: 0;
}
.board table td .file_upload .it {max-width: 400px;}

.board table td .file_btn:hover .btn {border-color: var(--focus);}



/* ------------------------------------------------------------------------- */
/* 3-6. map
/* ------------------------------------------------------------------------- */
/* leftMenu - 레이어 */
.map_leftMenu {
    width: 300px; height: 100%;
    padding: 20px 26px;
    border-right: 2px solid var(--border);
    background-color: var(--white);
    position: absolute; left: 0; top: 0;
}
.map_leftMenu > .tit {border-bottom: 2px solid var(--main);}
.map_leftMenu > .tit strong {
    display: block;
    font-weight: 600; font-size: 20px; line-height: 42px; color: var(--main);
}
.map_leftMenu .map_btn {
    display: flex; justify-content: space-between;
    margin: 20px 0 40px 0;
    border: 2px solid var(--border2);
    border-radius: var(--radius);
    position: relative;
}
.map_leftMenu .map_btn::before {content: "";
    width: 2px; height: 100%;
    background-color: var(--border2);
    position: absolute; left: 50%; top: 0;
    transform: translateX(-50%);
}
.map_leftMenu .map_btn .radio_btn {
    width: calc(50% - 1px);
    margin-left: 0;
    position: relative;
}
.map_leftMenu .map_btn .radio_btn::before {content: "";
    width: 100%; height: 2px;
    background-color: var(--border);
    position: absolute; left: 0; bottom: -22px;
}
.map_leftMenu .map_btn .radio_btn input {
    width: 100%; height: 42px;
    position: absolute; left: 0; top: 0;
}
.map_leftMenu .map_btn .radio_btn span {
    display: block;
    width: 100%;
    border-radius: var(--radius) 0 0 var(--radius);
    margin-left: 0;
    font-size: 16px; line-height: 42px; text-align: center; color: var(--text60);
    transition: background-color 0.2s ease, color 0.2s ease;
}
.map_leftMenu .map_btn .radio_btn:nth-child(2) span {border-radius: 0 var(--radius) var(--radius) 0;}
.map_leftMenu .map_btn .radio_btn span::before {display: none;}
.map_leftMenu .map_btn .radio_btn input:checked + span {
    color: var(--white);
    background-color: var(--main);
    outline: 2px solid var(--mainHover);
}

.map_leftMenu .scrollY {
    width: calc(100% + 14px); height: calc(100% - 150px);
    padding-right: 14px; 
}
.map_leftMenu .scrollY::-webkit-scrollbar {width: 4px;}
.map_leftMenu .scrollY::-webkit-scrollbar-track {border-radius: 4px;}
.map_leftMenu .scrollY::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: var(--text30);
}
.map_leftMenu .map_list {color: var(--text85);}
.map_leftMenu .map_list + .map_list {margin-top: 20px;}
.map_leftMenu .map_list > strong {
    display: block;
    padding-left: 4px;
    margin-bottom: 6px;
    font-weight: 600; font-size: 18px; line-height: 1.8; 
}
.map_leftMenu .map_list .depth1 {
    border: 2px solid var(--border);
    border-radius: var(--radius);
}
.map_leftMenu .map_list .depth1 + .depth1 {margin-top: 12px;}
.map_leftMenu .map_list .depth1 .tit {
    padding: 0 18px;
    font-weight: 500; font-size: 16px; line-height: 38px;
    position: relative;
    cursor: pointer;
}
.map_leftMenu .map_list .depth1 .tit::after {content: "";
    width: 11px; height: 7px;
    background: url(/css/common/img/ico_select.png) no-repeat center / contain;
    position: absolute; right: 16px; top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}
.map_leftMenu .map_list .depth2 {display: none;}
.map_leftMenu .map_list .check_btn {
    padding: 8px;
    margin-left: 0;
}
.map_leftMenu .map_list .check_btn input {width: 2px; height: 20px;}
.map_leftMenu .map_list .check_btn span {
    width: 100%;
    font-weight: 500; font-size: 16px;  color: var(--text75);
}
.map_leftMenu .map_list .check_btn span::before {
    width: 20px; height: 20px;
    background-image: url(/css/common/img/ico_checkbox2.png);
    left: auto; right: 0;
}
.map_leftMenu .map_list .check_btn input:checked + span {color: var(--main);}
.map_leftMenu .map_list .depth1 > .check_btn {padding: 9px 8px;}
.map_leftMenu .map_list .depth2 .check_btn span {font-weight: 400;}

/* leftMenu dpeth:active */
.map_leftMenu .map_list .depth1 .tit.on {border-bottom: 2px solid var(--border);}
.map_leftMenu .map_list .depth1 .tit.on::after {transform: translateY(-50%) rotate(180deg);}


/* 굴착등록 */
.map_register {
    display: flex; align-items: center;
    padding: 8px;
    border: 2px solid var(--border);
    border-radius: 10px;
    background-color: var(--white);
    position: absolute; left: 324px; top: 24px;
}
.map_register .tit {
    margin: 0 20px 0 14px;
    font-weight: 600; font-size: 20px; color: var(--main);
}
.map_register .flexible > * + * {margin-left: 6px;}
.map_register .flexible .btn {
    min-width: 76px; height: 38px;
    padding: 0 10px;
    font-weight: 400; font-size: 15px;
}
.map_register .flexible .st {
    min-width: 120px;
    padding: 0 30px 0 10px;
    font-size: 15px;
    background-position: right 10px center;
}


/* 위치찾기 */
.map_board {
    width: 25%; min-width: 400px; max-width: 500px;
    border-radius: 10px;
    position: absolute; left: 30px; top: 30px;
    box-shadow: 1px 3px 5px rgba(0,0,0,0.15);
}
.map_board .board {
    border: 2px solid var(--border);
    border-radius: 10px;
}
.map_board.Draggable .board {cursor: move;}
.map_board .board table {
    border-radius: 10px;
    overflow: hidden;
}
.map_board .board table tr:last-child {border-bottom: 0;}



/* ------------------------------------------------------------------------- */
/* 4. Main
/* ------------------------------------------------------------------------- */
/* 도로굴착 종합현황 */
.main_content {
    width: 100%;
    /* padding: 0 80px; */
}
.main_tit {
    display: block;
    height: 70px;
    margin-bottom: 20px;
    font-weight: 700; font-size: 32px; line-height: 70px; text-align: center; letter-spacing: -0.5px;
}
.main_status {
    display: flex; justify-content: center;
    margin-bottom: 80px;
}
.main_status li {
    /* flex: 1; */
    width: 100%; max-width: 250px;
    border-radius: 12px;
    background-color: var(--descBg);
    position: relative;
    transition: background-color 0.2s ease;
}
.main_status li + li {margin-left: 88px;}
.main_status li + li::before {content: "";
    width: 18px; height: 30px;
    background: url(/css/common/img/ico_main_arrow.png) no-repeat center / contain;
    position: absolute; left: -52px; top: 50%;
    transform: translateY(-50%);
}
.main_status li a {
    display: flex; flex-direction: column; align-items: center; justify-content: space-between;
    width: 100%; height: 100%;
    padding-top: 124px;
    text-align: center;
}
.main_status .status_tit {
    display: flex; align-items: center; justify-content: center;
    width: 100%; min-height: 94px;
    margin-bottom: 28px;
    font-weight: 700; font-size: 26px; line-height: 34px;
    position: relative;
    transition: color 0.2s ease;
}
.main_status .status_tit::before {content: "";
    width: 59px; height: 70px;
    background: url(/css/common/img/ico_main.png) no-repeat 0 0 / 310px 70px;
    position: absolute; left: 53%; top: -70px;
    transform: translateX(-50%);
}
.main_status li:nth-child(2) .status_tit::before {
    background-position: -59px 0;
    left: 50%;
}
.main_status li:nth-child(3) .status_tit::before {
    width: 56px;
    background-position: -118px 0;
    left: 50%;
}
.main_status li:nth-child(4) .status_tit::before {
    width: 76px;
    background-position: -174px 0;
    left: 50%;
}
.main_status li:nth-child(5) .status_tit::before {
    width: 60px;
    background-position: -250px 0;
}
.main_status .status_num {
    width: 100%; height: 74px;
    border-radius: 0 0 12px 12px;
    font-weight: 600; font-size: 24px; line-height: 74px; color: var(--white);
    background-color: var(--main);
}
.main_status .status_num span {
    margin-right: 3px;
    font-weight: 700; font-size: 46px;
    vertical-align: -4px;
}

/* 도로굴착 종합현황 : hover */
.main_status li:hover {background-color: #ddeef9;}
.main_status li:hover .status_tit {color: var(--main);}

/* 도로굴착 종합현황 disabled */
.main_status li.disabled {background-color: #eee;}
.main_status li.disabled .status_tit {color: var(--text40);}
.main_status li.disabled .status_tit::before {background-image: url(/css/common/img/ico_main_disabled.png);}
.main_status li.disabled .status_num {
    color: var(--text40);
    background-color: #e0e0e0;
}
.main_status li.disabled:hover {background-color: #eee;}
.main_status li.disabled:hover .status_tit {color: var(--text40);}


/* 처음 방문이세요? */
.main_visit {
    display: flex; justify-content: space-between;
    max-width: 1602px;
    padding: 40px;
    margin: 0 auto;
    border-radius: 12px;
    color: var(--white);
    background: url(/css/common/img/visit_bg.jpg) no-repeat center / cover;
}
.main_visit .visit_tit {
    flex-shrink: 0;
    padding: 0 50px 0 20px;
    font-weight: 700; font-size: 26px; line-height: 76px;
}
.main_visit .visit_menu {
    display: flex;
    width: 100%; justify-content: end;
}
.main_visit .visit_menu li {
    width: 100%; max-width: 238px; height: 160px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
.main_visit .visit_menu li + li {margin-left: 20px;}
.main_visit .visit_menu li a {
    display: block;
    width: 100%; height: 100%;
    padding: 24px 12%;
}
.main_visit .visit_menu .menu_tit {font-weight: 500; font-size: 19px; line-height: 26px;}
.main_visit .visit_menu li::after {content: "";
    width: 23px; height: 28px;
    background: url(/css/common/img/ico_firstVisit.png) no-repeat 0 0 / 139px 28px;
    position: absolute; right: 12%; bottom: 28px;
    opacity: 0.8;
}
.main_visit .visit_menu li:nth-child(2)::after {
    width: 30px;
    background-position: -23px 0;
}
.main_visit .visit_menu li:nth-child(3)::after {
    width: 28px;
    background-position: -53px 0;
}
.main_visit .visit_menu li:nth-child(4)::after {
    width: 30px;
    background-position: -81px 0;
}
.main_visit .visit_menu li:nth-child(5)::after {
    width: 28px;
    background-position: -111px 0;
}

/* 처음 방문이세요? : hover */
.main_visit .visit_menu li:hover {
    border-color: var(--main);
    background-color: var(--main);
}
.main_visit .visit_menu li:hover::after{opacity: 1;}





/* ------------------------------------------------------------------------- */
/* 5. Intro
/* ------------------------------------------------------------------------- */
/* 5-1. 회원가입
/* ------------------------------------------------------------------------- */
#wrap.type2 {min-width: 0;}
#header.type2 {position: absolute;}
#header.type2 .inner {
    justify-content: center;
    min-width: 0;
}
.login_tit {
    display: block;
    margin: 22px 0 30px 0;
    font-weight: 700; font-size: 26px; line-height: 34px; text-align: center; color: var(--text);
}
#header.type2.on {
    width: calc(100% - 40px); max-width: 1960px; 
    border-color: var(--border);
    border-radius: 0 0 20px 20px;
}
.login_desc {font-size: 18px; line-height: 26px; text-align: center; color: var(--text75);}


/* 회원구분 */
.login_list {padding: 120px 0 80px 0;}
.login_list ul {display: flex; justify-content: center;}
.login_list .category {width: 100%; max-width: 250px;}
.login_list .category + .category {margin-left: 30px;}
.login_list .category a {
    display: block;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: background-color 0.2s ease;
}
.login_list .category_tit {
    min-height: 260px;
    padding: 134px 20px 28px 20px;
    text-align: center; color: var(--text);
    position: relative;
}
.login_list .category_tit::before {content: "";
    width: 72px; height: 72px;
    background: url(/css/common/img/login_member1.svg) no-repeat center / contain;
    position: absolute; left: 50%; top: 50px;
    transform: translateX(-50%);
}
.login_list .category2 .category_tit::before {background-image: url(/css/common/img/login_member2.svg);}
.login_list .category3 .category_tit::before {background-image: url(/css/common/img/login_member3.svg);}
.login_list .category4 .category_tit::before {background-image: url(/css/common/img/login_member4.svg);}
.login_list .category_name {
    display: block;
    margin-bottom: 10px;
    font-weight: 700; font-size: 20px; line-height: 27px;
}
.login_list .category_desc {font-size: 14px; line-height: 20px;}
.login_list .category_btn {
    height: 60px;
    border-radius: 0 0 12px 12px;
    font-size: 18px; line-height: 60px; text-align: center; color: var(--text75);
    background-color: var(--descBg);
    transition: background-color 0.2s ease, color 0.2s ease;
}
.login_list .category_info {
    padding: 12px 0 0 15px;
    font-size: 14px; line-height: 20px; color: var(--text50);
    position: relative;
}
.login_list .category_info::before {
    content: "※";
    position: absolute; left: 0; top: 12px;
}

.login_list .category a:hover {background-color: var(--descBg);}
.login_list .category a:hover .category_btn {
    font-weight: 500; color: var(--white);
    background-color: var(--main);
}


/* 회원가입 STEP */
.login_steps {
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 65px;
}
.login_steps li {
    min-width: 178px; height: 38px;
    padding: 0 20px;
    border-radius: 20px;
    background-color: #eee;
    position: relative;
}
.login_steps li + li {margin-left: 16px;}
.login_steps li + li::before {content: "";
    width: 6px; height: 10px;
    background: url(/css/common/img/ico_steps.svg) no-repeat center / contain;
    position: absolute; left: -11px; top: 14px;
}
.login_steps li span {
    display: block;
    font-size: 16px; line-height: 38px; text-align: center; color: var(--text40);
}

.login_steps li.on {background-color: var(--main);}
.login_steps li.on span {color: var(--white);}


/* 약관 */
.login_terms {display: flex; flex-direction: column; align-items: center;}
.login_terms .term {
    display: flex;
    padding-bottom: 60px;
}
.login_terms .term:last-of-type {border-bottom: 2px solid var(--border);}
.login_terms .term_tit {
    flex-shrink: 0;
    width: 140px;
    margin-right: 80px;
    font-weight: 700; font-size: 20px; line-height: 27px; color: var(--text);
}
.login_terms .term_tit span {color: var(--textRed);}
.login_terms .term_box {width: 650px;}
.login_terms .term_cont {
    height: 300px;
    padding: 20px;
    margin-bottom: 20px;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    font-size: 15px; line-height: 1.5; color: var(--text75); 
}
.login_terms .term_cont::-webkit-scrollbar {width: 5px;}
.login_terms .term_cont::-webkit-scrollbar-track {margin: 15px 0;}
.login_terms .term_cont::-webkit-scrollbar-thumb {background-color: var(--grayHover);}
.login_terms .check_btn input[type="checkbox"] {width: 24px; height: 24px;}
.login_terms .check_btn span {
    padding-top: 2px;
    font-weight: 500; font-size: 15px; line-height: 21px; color: #777;
}
.login_terms .check_btn span::before {
    width: 24px; height: 24px;
    background-image: url(/css/common/img/ico_checkbox3.svg);
    left: -32px; top: 0;
    transform: translateY(0);
}
.login_terms .check_btn input[type="checkbox"]:checked + span {color: var(--text);}
.login_terms .check_btn input[type="checkbox"]:checked + span::before {background-image: url(/css/common/img/ico_checkbox3_on.svg);}
.login_terms .checkAll {margin: 30px 0;}
.login_terms + .btn_box .btn {border-width: 1px;}


/* 가입인증 */
.login_list.login_symple {
    display: flex; justify-content: center;
    padding-top: 60px;
}
.login_list.login_symple .category_tit::before {background-image: url(/css/common/img/login_symple.svg);}
.login_list.login_symple + .btn_box .btn {border-width: 1px;}


/* 회원정보입력 */
.login_board {
    width: 840px;
    margin: 0 auto;
    position: relative;
}
.login_board .board {border-width: 1px;}
.login_board .board tbody tr {border-width: 1px;}
.login_board .board th {
    padding: 5px 28px;
    position: relative;
}
.login_board .board .required {position: absolute; left: 15px; top: 6px;}
.login_board > p {
    font-size: 14px; line-height: 24px; color: var(--text75);
    position: absolute; left: 0; top: -32px;
}
.login_board > p span {font-weight: 600; color: var(--textRed); vertical-align: -2px;}
.login_board .it {border-width: 1px;}
/* MATI */
.login_board .it.w200 {width: 200px;}
.login_board .it.w300 {width: 300px;}
.login_board .it:read-only {background-color: var(--white);}
.login_board .st {border-width: 1px;}

.login_board .input_box > * + * {margin-left: 10px;}
.login_board .input_box .btn {
    flex-shrink: 0;
    min-width: 120px; height: 38px;
    border-width: 1px;
    font-size: 14px;
}
.login_board .input_box.phone .it {
    width: 80px;
    text-align: center;
}
.login_board .input_box.phone span {color: var(--border2);}
.login_board .input_box.phone > * + * {margin-left: 6px;}

.login_board .members span {
    display: inline-block;
    font-weight: 400; font-size: 17px; color: var(--text40);
    position: relative;
}
.login_board .members span.on {font-weight: 600; color: var(--main);}
.login_board .members span + span {margin-left: 12px;}
.login_board .members span + span::before {content: "/";
    font-weight: 400; color: var(--text40);
    position: absolute; left: -10px;
}
.login_board + .btn_box {margin-top: 30px;}
.login_board + .btn_box .btn {border-width: 1px;}


/* 가입완료 */
.login_done {
    display: flex; flex-direction: column; align-items: center;
    padding: 60px;
    text-align: center;
}
.login_done p {
    padding-top: 90px;
    font-weight: 400; font-size: 26px; line-height: 1.4; color: var(--text85);
    position: relative;
}
.login_done p::before {content: "";
    width: 74px; height: 74px;
    background: url(/css/common/img/login_done.svg) no-repeat center / contain;
    position: absolute; left: 50%; top: 0;
    transform: translateX(-50%);
}
.login_done p .user {font-weight: 700;}
.login_done .btn_box {margin: 40px 0;}
.login_done .btn {
    min-width: 120px; height: 52px;
    padding: 0 20px;
    border-width: 1px;
}



/* ------------------------------------------------------------------------- */
/* 5-2. 로그인 / 아이디,비밀번호 찾기
/* ------------------------------------------------------------------------- */
.login_form {
    width: 360px;
    margin: 0 auto;
}
.login_input {
    width: 100%;
    margin-bottom: 20px;
}
.login_input label {
    display: block;
    width: 100%;
}
.login_input label + label {margin-top: 12px;}
.login_input input {
    display: block;
    width: 100%; height: 45px;
    padding: 0 15px;
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    font-weight: 500; font-size: 14px; color: var(--text);
    background-color: var(--white);
}
.login_input input::placeholder {font-weight: 400; color: var(--text40);}
.login_input input:focus {border-color: var(--main);}
.login_form .btn {
    width: 100%; height: 50px;
}
.login_form .btn + .link {margin-top: 30px;}
.login_form .link {
    display: flex; align-items: center; justify-content: center;
    height: 20px;
}
.login_form .link a {
    font-size: 14px; line-height: 20px; color: var(--text75);
    position: relative;
    transition: color 0.2s ease;
}
.login_form .link a + a {margin-left: 32px;}
.login_form .link a + a::before {content: "";
    width: 1px; height: 10px;
    background-color: var(--border2);
    position: absolute; left: -16px; top: 5px;
}
.login_form .link a:hover {color: var(--main);}

.login_form + .login_sns {margin-top: 70px;}
.login_sns {
    width: 360px;
    margin: 0 auto;
}
.login_sns .sns_tit {
    display: block;
    margin-bottom: 20px;
    font-size: 16px; line-height: 20px; text-align: center; color: var(--text50);
}
.login_sns .sns_btn a {
    display: block;
    width: 100%; height: 45px;
    border-radius: var(--radius);
    line-height: 45px; text-align: center;
    background-color: #06C755;
    transition: background-color 0.2s ease;
}
.login_sns .sns_btn a + a {margin-top: 12px;}
.login_sns .sns_btn a span {
    padding-left: 26px;
    font-weight: 700; font-size: 14px; color: var(--white);
    position: relative;
}
.login_sns .sns_btn a span::before {content: "";
    width: 18px; height: 18px;
    background: url(/css/common/img/login_naver.svg) no-repeat left center / contain;
    position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
}
.login_sns .sns_btn a.sns_kakao {background-color: #FEE500;}
.login_sns .sns_btn a.sns_kakao span {color: var(--text);}
.login_sns .sns_btn a.sns_kakao span::before {background-image: url(/css/common/img/login_kakao.svg);}

.login_sns .sns_btn a.sns_naver:hover {background-color: #08B950;}
.login_sns .sns_btn a.sns_kakao:hover {background-color: #F1D900;}





/* ------------------------------------------------------------------------- */
/* 5-3. 초기화면
/* ------------------------------------------------------------------------- */
#intro {
    display: flex; justify-content: space-between;
    width: 100%; height: 100vh; min-height: 910px;
    background: url(/css/common/img/intro_bg.jpg) no-repeat left / cover;
    overflow: hidden; overflow-y: auto;
}

/***** contentArea *****/
#intro .intro_cont {
    display: flex; flex-direction: column; align-items: center; justify-content: space-between;
    width: calc(100% - 130px); 
    padding: 45px 30px 35px 30px;
    margin: 0 auto;
    text-align: center; color: var(--white);
}
#intro .intro_header {width: 100%;}
#intro .intro_header h1 {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 50px;
    position: relative;
}
#intro .intro_header h1 img {
    height: 50px;
    margin-right: 36px;
}
#intro .intro_header h1 span {
    font-weight: 600; font-size: 22px; line-height: 50px;
    position: relative;
}
#intro .intro_header h1 span::before {content: "";
    width: 2px; height: 18px;
    background-color: rgba(255,255,255,0.5);
    position: absolute; left: -16px; top: 50%;
    transform: translateY(-50%);
}


/* main */
#intro .intro_main {
    width: 100%; max-width: 800px;
    padding: 40px 0 45px 0;
}


/* main - login */
#intro .intro_desc {
    margin-bottom: 25px;
    font-weight: 500; font-size: 16px; line-height: 1.6;
}
#intro .intro_desc strong {
    display: block;
    font-weight: 700; font-size: 30px; 
}
#intro .intro_login .btn {
    max-width: 264px; height: 54px;
    margin: 0 auto;
    font-size: 18px;
}
#intro .intro_login .btn + .link {margin-top: 12px;}
#intro .intro_login .link {display: flex; align-items: center; justify-content: center;}
#intro .intro_login .link a {
    font-size: 15px; line-height: 20px;
    position: relative;
}
#intro .intro_login .link a + a {margin-left: 30px;}
#intro .intro_login .link a + a::before {content: "";
    width: 2px; height: 14px;
    background-color: rgba(255,255,255,0.3);
    position: absolute; left: -16px; top: 3px;
}
#intro .intro_login .btn.logout {
    width: 160px;
    border-radius: 30px;
}


/* main - menu */
#intro .intro_menu {
    display: flex; justify-content: space-between;
    padding: 36px 0 40px 0;
}
#intro .intro_menu .service {
    display: flex;
    margin-right: 16px;
}
#intro .intro_menu .service li {
    width: 124px; height: 124px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 10px;
}
#intro .intro_menu .service li + li {margin-left: 16px;}
#intro .intro_menu .service li a {
    display: block; height: 100%;
    width: 100%;
    padding: 58px 20px 20px 20px;
    position: relative;
}
#intro .intro_menu .service li a::before {content: "";
    width: 28px; height: 24px;
    background: url(/css/common/img/intro_services.png) no-repeat left / 112px 24px;
    position: absolute; left: 50%; top: 24px;
    transform: translateX(-50%);
}
#intro .intro_menu .service li:nth-child(2) a::before {background-position: -28px 0;}
#intro .intro_menu .service li:nth-child(3) a::before {background-position: -56px 0;}
#intro .intro_menu .service li:nth-child(4) a::before {background-position: -84px 0;}
#intro .intro_menu .service li a span {font-size: 15px; line-height: 1.4;}

#intro .intro_menu .guide li {
    width: 240px; height: 56px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: var(--radius);
    transition: width 0.2s ease;
}
#intro .intro_menu .guide li + li {margin-top: 12px;}
#intro .intro_menu .guide li a {
    display: block;
    width: 100%; height: 100%;
    padding-left: 60px;
    text-align: left;
}
#intro .intro_menu .guide li a span {
    font-size: 16px; line-height: 52px; 
    position: relative;
}
#intro .intro_menu .guide li a span::before {content: "";
    width: 17px; height: 16px;
    background: url(/css/common/img/intro_guide.png) no-repeat left / 34px 16px;
    position: absolute; left: -30px; top: 50%;
    transform: translateY(-50%);
}
#intro .intro_menu .guide li:nth-child(2) a span::before {background-position: -17px 0;}


/* main - notice */
#intro .intro_notice {display: flex; flex-direction: column; align-items: center;}
#intro .intro_notice_list {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; height: 54px;
    padding: 0 40px;
    border-radius: var(--radius);
    line-height: 54px;
    background-color: rgba(255,255,255,0.1);
    transition: width 0.2s ease;
}
#intro .intro_notice_list + .intro_notice_list {margin-top: 8px;}
#intro .intro_notice_list .tag {
    margin-right: 40px;
    font-size: 14px; line-height: 16px;
    position: relative;
}
#intro .intro_notice_list .tag::after {content: "";
    width: 2px; height: 16px;
    background-color: rgba(255,255,255,0.3);
    position: absolute; right: -40px; top: 0;
}
#intro .intro_notice_list .tit {
    flex: 1;
    height: 54px;
    margin: 0 40px;
    font-size: 16px;
    overflow: hidden;
}
#intro .intro_notice_list .tit a {
    display: inline-block; 
    width: 100%; height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#intro .intro_notice_list .date {
    flex-shrink: 0;
    font-size: 14px;
    opacity: 0.3;
}


/* footer */
#intro .intro_footer {font-family: 'Noto Sans KR'; line-height: 1.5;}
#intro .intro_footer .menu {
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
    font-size: 14px;
}
#intro .intro_footer .menu a + a {margin-left: 25px;}
#intro .intro_footer .addr {
    display: flex;
    font-weight: 300; font-size: 13px; color: rgba(255,255,255,0.6);
}
#intro .intro_footer .addr address {margin-right: 8px;}
#intro .intro_footer .copy {font-weight: 300; font-size: 12px; color: rgba(255,255,255,0.6);}
/***** // contentArea *****/



/***** mapArea *****/
#intro .intro_map {
    display: flex;
    width: 130px;
    transition: width 0.8s cubic-bezier(0.33, 1, 0.68, 1), top 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

/* header */
#intro .map_header {
    flex-shrink: 0;
    width: 130px;
    padding: 60px 20px;
    border: 1px solid var(--border2);
    border-radius: 20px 0 0 20px;
    text-align: center;
    background-color: var(--white);
    position: relative;
}
/* MATI */
#intro .map_header .map_tit {
    margin-bottom: 30px;
    font-weight: 700; font-size: 20px; line-height: 1.2; color: var(--text);
    position: relative;
}
#intro .map_header .map_tit span {
    display: block;
    padding: 18px 0;
    font-weight: 600; font-size: 18px; color: var(--main);
}
#intro .map_header .map_tit::after {content: "";
    width: 60px; height: 1px;
    background-color: var(--border);
    position: absolute; left: 50%; bottom: -4px;
    transform: translateX(-50%);
}
#intro .map_header .map_status li {
    padding-top: 30px;
    background: url(/css/common/img/intro_status1.png) no-repeat center top / 20px;
}
#intro .map_header .map_status li + li{margin-top: 26px;}
#intro .map_header .map_status li:nth-child(2) {background-image: url(/css/common/img/intro_status2.png);}
#intro .map_header .map_status li:nth-child(3) {background-image: url(/css/common/img/intro_status3.png);}
#intro .map_header .map_status li span {font-size: 15px; line-height: 18px; color: var(--text);}
#intro .map_header .map_status li.on {border:1px solid #f6dce4; background-color: #faedf1;}
#intro .map_header .map_btn {
    width: 60px; height: 60px;
    border: 1px solid var(--grayHover);
    border-radius: 50%;
    background: #fff url(/css/common/img/intro_arrow.png) no-repeat center / 22px;
    position: absolute; left: 50%; bottom: 35px;
    transform: translateX(-50%) rotate(180deg);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
#intro .map_header .map_btn:hover {
    border-color: var(--main);
    background-color: var(--main);
    background-image: url(/css/common/img/intro_arrow_on.png);
}
#intro .map_header .map_btn.on {transform: translateX(-50%);}


/* map */
#intro .map_container {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    transition: width 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
#intro .map_container .mapArea {
    height: 100%;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}
#intro .map_container .mapArea img {
    width: 100%; height: 100%;
    object-fit: cover;
}
#intro .map_container .pin {
    width: 26px; height: 32px;
    background-repeat: no-repeat; background-position: center; background-size: contain;
    position: absolute; 
    cursor: pointer;
}
#intro .map_container .pin1 {background-image: url(/css/common/img/intro_status1.png);}
#intro .map_container .pin2 {background-image: url(/css/common/img/intro_status2.png);}
#intro .map_container .pin3 {background-image: url(/css/common/img/intro_status3.png);}


/* 도로굴착 현황 리스트 */
#intro .map_list {
    width: 410px; height: 100%;
    padding: 25px 20px 0 35px;
    border-right: 1px solid var(--border);
    background-color: #f4f8f9;
    position: absolute; left: -410px; top: 0; z-index: 1;
    transition: left 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
#intro .map_list .swiper {width: 100%; height: 100%;}
#intro .map_list ul {
    flex-direction: column;
    max-height: 100%;
    padding-right: 15px;
    padding: 35px 15px 35px 0;
    box-sizing: border-box;
}
#intro .map_list ul::-webkit-scrollbar {width: 6px;}
#intro .map_list ul::-webkit-scrollbar-track {
    margin: 35px 0;
    background-color: transparent;
}
#intro .map_list ul li {
    height: 90px !important;
    border: 1px solid var(--border2);
    border-radius: 10px;
    background-color: var(--white);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
#intro .map_list ul li + li {margin-top: 10px;}
#intro .map_list ul li a {
    display: block;
    width: 100%; height: 100%;
    padding: 12px 20px 14px 20px;
}
#intro .map_list ul li .tit {
    display: block;
    margin-bottom: 4px;
    font-weight: 600; font-size: 16px; line-height: 30px; color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis; white-space: nowrap;
}
#intro .map_list ul li .duration {
    display: flex; align-items: center;
    height: 28px;
}
#intro .map_list ul li .duration .label {
    width: 70px; height: 28px;
    margin-right: 10px;
    border: 1px solid var(--border2);
    border-radius: 15px;
    font-weight: 500; font-size: 14px; line-height: 26px; text-align: center; color: var(--text75);
    background-color: #e7e9f0;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
#intro .map_list ul li .duration .date {font-size: 14px; color: var(--text50);}

#intro .map_list ul li.on {
    border-color: #d0b3bc;
    background-color: #faedf1;
}
#intro .map_list ul li.on .duration .label {
    border-color: rgba(215,215,215,0.75);
    background-color: rgba(255,255,255,0.75);
}

#intro .map_list_btn {
    width: 38px; height: 60px;
    border-radius: 0 6px 6px 0;
    background-color: var(--main);
    position: absolute; right: -38px; top: 50%;
    transform: translateY(-50%);
}
#intro .map_list_btn::before {content: "";
    width: 8px; height: 10px;
    background: url(/css/common/img/intro_list_btn.png) no-repeat center / contain;
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
}

#intro .map_list.on {left: 0;}
#intro .map_list.on .map_list_btn::before {transform: translate(-50%, -50%) rotate(180deg);}


/* 도로굴착 정보 알람 받기 */
#intro .map_alarm {
    display: flex;
    width: max-content;
    border: 1px solid #c8c8c8;
    border-radius: 30px;
    background-color: var(--white);
    position: absolute; left: 50%; bottom: 35px;
    transform: translateX(-50%);
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
#intro .map_alarm.on {transform: translateX(-15%);}
#intro .map_alarm .tit {
    flex-shrink: 0;
    padding: 0 20px 0 30px;
    font-weight: 600; font-size: 18px; line-height: 58px; letter-spacing: -0.6px; color: var(--text);
    position: relative;
}
/* MATI */
/* #intro .map_alarm .tit::after {
	content: "";
    width: 2px; height: 15px;
    background-color: var(--text);
    position: absolute; right: 0; top: 50%;
    transform: translateY(-50%);
} */
#intro .map_alarm .input {
    display: inline-flex;
    width: fit-content;
    padding: 9px 9px 9px 0;
    justify-content: flex-end;
}
#intro .map_alarm .input input {
    width: 260px;
    padding: 0 20px;
    font-size: 16px; color: var(--text);
}
#intro .map_alarm .input input::placeholder {font-size: 15px; color: var(--text50);}
#intro .map_alarm .input button {
    width: 100px; height: 40px;
    border-radius: 20px;
    font-weight: 600; font-size: 16px; line-height: 40px; text-align: center; color: var(--white);
    background-color: var(--main);
    transition: background-color 0.2s ease;
}
#intro .map_alarm .input button:hover {background-color: var(--mainHover);}


/* 상세 레이어 */
#intro .layer {
    width: fit-content; height: auto;
    padding: 20px 25px 25px 25px;
    border: 1px solid var(--grayHover);
    border-radius: 10px;
    background-color: var(--white);
    position: absolute;
    box-shadow: 4px 4px 5px rgba(0,0,0,0.15);
}
#intro .layer_header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0;
    margin-bottom: 15px;
    background-color: transparent;
}
#intro .layer_header strong {font-weight: 700; font-size: 18px; line-height: 1.4; color: var(--text);}
#intro .layer_close {
    width: 28px; height: 28px;
    margin-right: -6px;
    position: relative;
}
#intro .layer_close::before {content: "";
    width: 16px; height: 16px;
    background: url(/css/common/img/ico_close2.png) no-repeat center / contain;
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}
#intro .layer_close:hover::before {transform: translate(-50%, -50%) rotate(90deg);}
#intro .layer_cont {
    max-height: calc(100svh - 440px);
    overflow: hidden; overflow-y: auto;
}
#intro .layer_cont .board {
    width: 530px;
    border: 1px solid var(--border); border-bottom: 0;
}
#intro .layer_cont .board  .col1 {min-width: 80px !important;}
#intro .layer_cont .board tbody tr {border: 0;}
#intro .layer_cont .board tbody th,
#intro .layer_cont .board tbody td {
    height: 38px; height: auto;
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
    font-size: 14px; line-height: 20px;
}
#intro .layer_cont .board tbody th {background-color: #f4f8f9;}
#intro .layer_cont .board tbody td {border-left: 1px solid var(--border);}
#intro .layer_cont .board tbody td + th {border-left: 1px solid var(--border);}


/* 도로굴착 현황 지도 영역 : active */
#intro .intro_cont.on {
    width: 25%; min-width: 380px; max-width: 480px;
    padding-bottom: 30px;
}
#intro .intro_cont.on .intro_main {
    max-width: 264px;
    padding: 35px 0;
}
#intro .intro_cont.on .intro_desc {display: none;}
#intro .intro_cont.on .intro_menu {
    flex-direction: column; align-items: center;
    padding: 26px 0 20px 0;
}
#intro .intro_cont.on .intro_menu .service {
    flex-wrap: wrap; justify-content: center; gap: 10px 12px;
    margin: 0 0 12px 0;
}
#intro .intro_cont.on .intro_menu .service li {height: 120px;}
#intro .intro_cont.on .intro_menu .service li + li {margin-left: 0;}
#intro .intro_cont.on .intro_menu .guide li {width: 264px; height: 54px;}
#intro .intro_cont.on .intro_menu .guide li span {line-height: 50px;}
#intro .intro_cont.on .intro_notice_list {
    max-width: 264px;
    padding: 0 16px;
}
#intro .intro_cont.on .intro_notice_list:nth-child(3),
#intro .intro_cont.on .intro_notice_list:nth-child(4) {display: none;}
#intro .intro_cont.on .intro_notice_list .tag {
    margin-right: 18px;
    font-size: 13px;
}
#intro .intro_cont.on .intro_notice_list .tag::after {right: -18px;}
#intro .intro_cont.on .intro_notice_list .tit {
    margin: 0 4px 0 14px;
    font-size: 15px; text-align: left;
}
#intro .intro_cont.on .intro_notice_list .date {display: none;}
#intro .intro_cont.on .intro_footer .menu {
    justify-content: start;
    margin-bottom: 10px;
    font-size: 13px; text-align: left;
}
#intro .intro_cont.on .intro_footer .addr {
    flex-direction: column;
    font-size: 12px; text-align: left;
}
#intro .intro_cont.on .intro_footer .copy {font-size: 12px; text-align: left;}

#intro .intro_map.on {width: 100%;}
#intro .intro_map.on .map_container {width: 100%;}
/***** // mapArea *****/



/***** Media Query *****/
@media (max-width: 1440px) {

    /* 도로굴착 현황 : active */
    #intro .intro_map.on {
        width: calc(100% + 380px);
        margin-left: -380px;
    }

}


@media (max-width: 1024px) {

    /***** contentArea *****/
    #intro .intro_cont {max-width: 604px;}

    /* main - menu */
    #intro .intro_menu {flex-direction: column; align-items: center;}
    #intro .intro_menu .service {margin-right: 0; margin-bottom: 16px;}
    #intro .intro_menu .guide {
        display: flex;
        width: 100%; 
    }
    #intro .intro_menu .guide li {width: calc(50% - 8px);}
    #intro .intro_menu .guide li + li {margin: 0 0 0 16px;}

    /* main - notice */
    #intro .intro_notice_list {
        max-width: 100%;
        padding: 0 30px;
    }
    #intro .intro_notice_list:nth-child(3),
    #intro .intro_notice_list:nth-child(4) {display: none;}
    #intro .intro_notice_list .tag {margin-right: 30px;}
    #intro .intro_notice_list .tag::after {right: -30px;}
    #intro .intro_notice_list .tit {margin: 0 30px;}
    #intro .intro_notice_list .date {font-size: 13px;}


    /***** mapArea *****/
    /* 상세 레이어 */
    #intro .layer {
        width: calc(100% - 40px); max-width: 440px; 
        padding: 15px 20px 20px 20px;
    }
    #intro .layer_header {margin-bottom: 10px;}
    #intro .layer_header strong {font-size: 17px;}
    #intro .layer_cont .board {width: 100%;}
    #intro .layer_cont .board tbody tr {
        display: flex; flex-direction: column;
        width: 378px !important;
    }
    #intro .layer_cont .board tbody th {display: none;}
    #intro .layer_cont .board tbody td {
        width: 100% !important; min-height: 38px;
        padding-left: 30%;
        border-left: 0;
        background: linear-gradient(to right, #f4f8f9 27%, #fff 27% 73%);
        position: relative;
    }
    #intro .layer_cont .board tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        position: absolute; left: 12px; top: 8px;
    }

}

@media (max-width: 768px) {

    body {overflow: hidden;}
    #intro {background-position: left 45% top;}

    /***** contentArea *****/
    #intro .intro_cont {
        justify-content: center;
        width: 100%; height: 100svh;
        padding-top: 90px; padding-bottom: 70px;
        position: relative;
    }
    #intro .intro_header {
        position: absolute; left: 50%; top: 10vw;
        transform: translateX(-50%);
    }

    /* main */
    #intro .intro_main {
        display: flex; flex-direction: column; 
        width: 100%;
        padding: 5svh 0; 
    }

    /* main - login */
    #intro .intro_desc {display: none;}
    #intro .intro_login {
        order: 1;
        padding-top: 45px;
    }
    #intro .intro_login .btn {
        width: 100%; height: 50px;
        font-size: 17px;
    }
    #intro .intro_login .btn + .link {margin-top: 20px;}
    #intro .intro_login .link a {font-size: 14px; color: rgba(255,255,255,0.8);}
    #intro .intro_login .link a + a::before {width: 1px; left: -15px;}
    #intro .intro_login .btn.logout {width: 100%; font-size: 16px;}

    /* main - menu */
    #intro .intro_menu {padding-top: 0; padding-bottom: 40px;}
    #intro .intro_menu .service {
        width: 100%; 
        margin-bottom: 20px;
    }

    /* main - notice */
    #intro .intro_notice_list {
        justify-content: start;
        height: 48px;
        padding: 0 20px;
    }
    #intro .intro_notice_list .tag {
        margin-right: 15px;
        color: rgba(255,255,255,0.8);
    }
    #intro .intro_notice_list .tag::after {
        width: 1px;
        right: -15px;
    }
    #intro .intro_notice_list .tit {
        height: 48px;
        margin: 0 0 0 15px;
        font-size: 14px; line-height: 48px; text-align: left;
    }
    #intro .intro_notice_list .date {display: none;}

    /* footer */
    #intro .intro_footer {display: none;}


    /***** mapArea *****/
    #intro .intro_map {
        flex-direction: column;
        width: 100%;
        position: absolute; top: calc(100% - 70px);
    }
    #intro .map_header {
        width: 100%; height: 120px;
        padding: 0;
        border-radius: 15px 15px 0 0;
        border: 0; border-bottom: 1px solid var(--border2);
    }
    #intro .map_header .map_tit {
        display: flex; align-items: center; justify-content: center;
        height: 70px;
        padding-top: 12px;
        margin-bottom: 0;
        border-bottom: 1px solid var(--border2);
        font-size: 19px;
    }
    #intro .map_header .map_tit span {
        margin-left: 10px;
        font-size: 19px;
    }
    #intro .map_header .map_tit::after {display: none;}
    #intro .map_header .map_status {
        display: flex; align-items: center; justify-content: center;
        height: 50px;
    }
    #intro .map_header .map_status li {
        height: 50px;
        padding-top: 0; padding-left: 28px;
        background-position: left top 13px;
    }
    #intro .map_header .map_status li + li {margin-top: 0; margin-left: 28px;}
    #intro .map_header .map_status li span {font-size: 14px; line-height: 50px;}
    #intro .map_header .map_btn {
        width: 100%; height: 70px;
        border: 0; border-radius: 0;
        background: none;
        left: 0; top: 0;
        transform: translateX(0);
    }
    #intro .map_header .map_btn::after {content: "";
        width: 40px; height: 6px;
        border-radius: 3px;
        background-color: var(--border2);
        position: absolute; left: 50%; top: 10px;
        transform: translateX(-50%);
    }
    #intro .map_header .map_btn:hover {
        border-color: transparent;
        background-color: transparent; background-image: none;
    }

    /* map */
    #intro .map_container {width: 100%; height: calc(100svh - 120px);}

    /* 도로굴착 현황 리스트 */
    #intro .map_list {
        width: 100%; height: 117px;
        padding: 10px 0px 10px 14px;
        border-right: 0; border-bottom: 1px solid var(--border);
        left: 0; top: -117px;
        transition: top 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    }
    #intro .map_list .swiper {
        width: 100%; height: auto; 
        padding-right: 14px;
    }
    #intro .map_list ul {
        flex-direction: row;
        padding: 0;
        overflow: visible;
    }
    #intro .map_list ul li {
        min-width: 220px; width: 56%; height: 96px !important;
        border-radius: 6px;
    }
    #intro .map_list ul li + li {margin-top: 0;}
    #intro .map_list ul li a {padding: 10px 14px;}
    #intro .map_list ul li .tit {
        height: 42px;
        padding-left: 4px;
        margin-bottom: 8px;
        font-size: 14px; line-height: 1.5;
        overflow: hidden; text-overflow: ellipsis; white-space: normal;
        display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    }
    #intro .map_list ul li .duration {height: 24px;}
    #intro .map_list ul li .duration .label {
        width: 58px; height: 24px;
        margin-right: 6px;
        font-size: 12px; line-height: 22px;
    }
    #intro .map_list ul li .duration .date {font-size: 12px; color: var(--text75);}
    #intro .map_list_btn {
        width: 60px; height: 30px;
        border-radius: 0 0 10px 10px;
        right: 50%; top: auto; bottom: -30px;
        transform: translate(50%,0);
    }
    #intro .map_list_btn::before {
        width: 14px; height: 14px;
        transform: translate(-50%, -50%) rotate(90deg);
    }
    #intro .map_list.on {top: 0;}
    #intro .map_list.on .map_list_btn::before {transform: translate(-50%, -55%) rotate(270deg);}

    /* 도로굴착 정보 알람 받기 */
    #intro .map_alarm {
        align-items: center;
        width: calc(100% - 40px);
        bottom: 20px;
    }
    #intro .map_alarm.on {transform: translateX(-50%);}
    #intro .map_alarm .tit {
        padding: 0 20px 0 25px;
        line-height: 1.5;
    }
    #intro .map_alarm .input {
        width: 100%;
        border-radius: 30px;
    }
    #intro .map_alarm .input input {width: 100%;}
    #intro .map_alarm .input button {
        flex-shrink: 0;
        height: 36px;
        line-height: 36px;
    }

    /* 상세 레이어 */
    #intro .layer_header {margin-bottom: 10px;}
    #intro .layer_header strong {font-size: 16px;}
    #intro .layer_close {
        width: 24px; height: 24px;
        margin-right: -4px;
    }
    #intro .layer_close::before {width: 14px; height: 14px;}


    /* 도로굴착 현황 : active */
    #intro .intro_cont.on {
        width: 100%; max-width: 604px;
        padding-bottom: 70px;
    }
    #intro .intro_cont.on .intro_main {
        max-width: 100%;
        padding: 5svh 0;
    }
    #intro .intro_cont.on .intro_menu {padding-top: 0; padding-bottom: 40px;}
    #intro .intro_cont.on .intro_menu .service {
        gap: 16px;
        margin-bottom: 20px;
    }
    #intro .intro_cont.on .intro_menu .service li {height: 124px;}
    #intro .intro_cont.on .intro_menu .guide li {height: 56px;}
    #intro .intro_cont.on .intro_menu .guide li span {line-height: 52px;}
    #intro .intro_cont.on .intro_notice_list {
        max-width: 100%;
        padding: 0 20px;
    }
    #intro .intro_cont.on .intro_notice_list .tag {
        margin-right: 15px;
        font-size: 14px; color: rgba(255,255,255,0.8);
    }
    #intro .intro_cont.on .intro_notice_list .tag::after {
        width: 1px;
        right: -15px;
    }
    #intro .intro_cont.on .intro_notice_list .tit {
        margin: 0 0 0 15px;
        font-size: 14px; line-height: 48px;
    }
    #intro .intro_map.on {
        width: 100%;
        margin-left: 0;
        top: 0;
    }
    #intro .map_header .map_btn.on {transform: translateX(0) rotate(0);}
}


@media (max-width: 640px) {

    /***** contentArea *****/
    #intro .intro_cont {max-width: 460px;}
    #intro .intro_header h1 {height: 40px;}
    #intro .intro_header h1 img {
        height: 40px;
        margin-right: 26px;
    }
    #intro .intro_header h1 span {font-size: 18px; line-height: 40px;}
    #intro .intro_header h1 span::before {
        height: 16px;
        left: -12px;
    }

    /* main - login */
    #intro .intro_login .btn {max-width: 100%;}

    /* main - menu */
    #intro .intro_menu .service {
        justify-content: center;
        margin-bottom: 54px;
    }
    #intro .intro_menu .service li {
        flex-shrink: 0;
        width: 88px; min-width: 60px;
        height: 88px; min-height: 60px;
        border-width: 1px;
        background-color: rgba(255,255,255,0.16);
    }
    #intro .intro_menu .service li a {padding: 0;}
    #intro .intro_menu .service li a::before {
        width: 32px; height: 30px;
        background: url(/css/common/img/intro_services_m.png) no-repeat left / 120px 30px;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    #intro .intro_menu .service li:nth-child(2) a::before {
        width: 28px;
        background-position: -32px 0;
    }
    #intro .intro_menu .service li:nth-child(3) a::before {
        width: 30px;
        background-position: -60px 0;
    }
    #intro .intro_menu .service li:nth-child(4) a::before {
        width: 30px;
        background-position: -90px 0;
    }
    #intro .intro_menu .service li a span {
        width: 100%;
        font-size: 13px; line-height: 1.25;
        position: absolute; left: 50%; bottom: -40px;
        transform: translateX(-50%);
    }
    #intro .intro_menu .guide li {
        height: 48px;
        border-width: 1px;
        background-color: rgba(255,255,255,0.16);
    }
    #intro .intro_menu .guide li a {
        padding: 0 10px;
        text-align: center;
    }
    #intro .intro_menu .guide li a span {font-size: 14px; line-height: 46px;}
    #intro .intro_menu .guide li a span::before {display: none;}
    

    /***** mapArea *****/
    /* 도로굴착 정보 알람 받기 */
    #intro .map_alarm {
        flex-direction: column; align-items: flex-start;
        width: 100%;
        padding: 15px;
        border: 0; border-top: 1px solid var(--border2);
        border-radius: 0;
        left: 0; bottom: 0;
        transform: translateX(0);
    }
    #intro .map_alarm.on {transform: translateX(0);}
    #intro .map_alarm .tit {
        padding: 0 5px;
        margin-bottom: 8px;
        font-size: 17px;
    }
    #intro .map_alarm .tit::after {display: none;}
    #intro .map_alarm .input {
        padding: 5px;
        border: 1px solid #c8c8c8;
    }
    #intro .map_alarm .input input {
        padding: 0 14px;
        font-size: 15px;
    }
    #intro .map_alarm .input input::placeholder {font-size: 14px;}
    /* MATI */
    #intro .map_alarm .input button {
        width: 49%;
        font-size: 15px; 
    }
    #intro .map_alarm .input button span {display: none;}

    
    /* 도로굴착 현황 : active */
    #intro .intro_cont.on {max-width: 460px;}
    #intro .intro_cont.on .intro_menu .service {margin-bottom: 54px;}
    #intro .intro_cont.on .intro_menu .service li {height: 88px;}
    #intro .intro_cont.on .intro_menu .guide li {height: 48px;}
    #intro .intro_cont.on .intro_menu .guide li span {line-height: 46px;}

}


@media (max-width: 480px) {

    /***** contentArea *****/
    #intro .intro_cont {padding: calc(10vw + 40px) 10vw 70px 10vw;}
    #intro .intro_menu .service {margin-bottom: 50px;}
    #intro .intro_menu .service li {
        width: calc((100% - 48px)/4);
        height: calc((80vw - 48px)/4);
    }
    #intro .intro_menu .service li a span {
        font-size: 12px;
        bottom: -36px;
    }
    #intro .intro_menu .guide li {width: calc(50% - 4px);}
    #intro .intro_menu .guide li + li {margin-left: 8px;}


    /***** mapArea *****/
    /* 상세 레이어 */
    #intro .layer {
        left: 50% !important; right: auto !important; top: 50% !important;
        transform: translate(-50%, -50%);
    }
    #intro .layer_cont .board tbody tr {width: calc(100vw - 84px) !important;}
    #intro .layer_cont .board tbody th,
    #intro .layer_cont .board tbody td {font-size: 13px; line-height: 18px;}
    #intro .layer_cont .board tbody td {
        min-height: 36px;
        padding-left: 92px;
        background: linear-gradient(to right, #f4f8f9 83px, #fff 83px 100%);
    }
    #intro .layer_cont .board tbody td::before {
        width: 70px;
        left: 8px;
    }

    /* 도로굴착 현황 : active */
    #intro .intro_cont.on {
        min-width: 0;
        padding: calc(10vw + 40px) 10vw 70px 10vw;
    }
    #intro .intro_cont.on .intro_menu .service {margin-bottom: 50px;}
    #intro .intro_cont.on .intro_menu .service li {height: calc((80vw - 48px)/4);}

}

/* ------------------------------------------------------------------------- */
/* 모바일용 도로굴착 정보 페이지
/* ------------------------------------------------------------------------- */
#info {
    width: 100%; height: 100svh;
    background-color: var(--white);
    overflow: hidden;
    position: relative;
}
#info .info_tit {
    display: flex; align-items: center;
    width: 100%; height: 65px;
    padding: 0 20px;
    position: relative;
}
#info .info_logo {height: 46px;}
#info .info_tit h2 {
    font-weight: 700; font-size: 22px; line-height: 65px; text-align: center; color: var(--text);
    position: absolute; left: 50%; top: 0;
    transform: translateX(-50%);
}
#info .info_container {
    width: 100%; height: calc(100svh - 65px);
    position: relative;
}
#info .info_container .mapArea {
    width: 100%; height: 100%;
    background-color: var(--white);
}
#info .info_container .mapArea img {width: 100%; height: 100%; object-fit: cover;}
#info .info_container .detail {
    width: 100%;
    padding: 20px 25px 25px 25px;
    border-top: 1px solid var(--border2);
    background-color: var(--white);
    position: absolute; left: 0; bottom: 0;
}
#info .info_container .detail .tit {
    display: block;
    padding-left: 5px;
    margin-bottom: 15px;
    font-weight: 700; font-size: 18px; line-height: 1.4; color: var(--text85);
}
#info .info_container .detail .cont .board {border: 1px solid var(--border); border-bottom: 0;}
#info .info_container .detail .cont .board .col1 {min-width: 80px !important;}
#info .info_container .detail .cont .board tbody tr {border-bottom: 0;}
#info .info_container .detail .cont .board th,
#info .info_container .detail .cont .board td {
    height: 38px;
    padding: 8px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 15px; line-height: 22px;
}
#info .info_container .detail .cont .board th {background-color: #f4f8f9;}
#info .info_container .detail .cont .board td {border-left: 1px solid var(--border);}
#info .info_container .detail .cont .board td + th {border-left: 1px solid var(--border);}

@media (max-width: 768px) {
    #info .info_tit {
        height: 56px;
        padding: 0 15px;
    }
    #info .info_logo {height: 38px;}
    #info .info_tit h2 {font-size: 20px; line-height: 56px;}
    #info .info_container {height: calc(100svh - 56px);}
    #info .info_container .detail {padding: 20px;}
    #info .info_container .detail .tit {
        margin-bottom: 12px;
        font-size: 17px;
    }
    #info .info_container .detail .cont .board th,
    #info .info_container .detail .cont .board td {
        padding: 8px 12px;
        font-size: 14px; line-height: 20px;
    }
}

@media (max-width: 640px) {
    #info .info_tit {
        height: 50px;
        padding: 0 15px;
    }
    #info .info_logo {height: 32px;}
    #info .info_tit h2 {font-size: 18px; line-height: 50px;}
    #info .info_container {height: calc(100svh - 50px);}
    #info .info_container .detail {padding: 15px;}
    #info .info_container .detail .tit {
        padding-left: 3px;
        margin-bottom: 10px;
        font-size: 16px;
    }
    #info .info_container .detail .cont .board .col1 {min-width: 0 !important;}
    #info .info_container .detail .cont .board th,
    #info .info_container .detail .cont .board td {
        padding: 5px 8px;
        font-size: 13px; line-height: 18px;
    }
}

@media (max-width: 480px) {
    #info .info_container .detail {padding-top: 13px;}
    #info .info_container .detail .cont .board th,
    #info .info_container .detail .cont .board td {
        height: 30px;
        font-size: 12px; line-height: 1.4;
    }
}
