/********************** 로그인 / 회원가입 **********************/

.introWrapper {min-height: 100vh; background: var(--bgcolor); overflow: hidden}
.introWrapper .introBox {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2.5rem;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid var(--bordercolor);
    border-radius: 1.875rem;
}

.introWrapper .introBox.loginBox {width: 27.5rem;}
.introWrapper .introBox.signUpBox {width: 32.5rem;}

.introWrapper .introBox form {margin: 2rem 0 1.25rem;}

/********************** 로그인 **********************/

.LoginInputWrap {overflow: hidden; margin: 0.625rem 0;}
.LoginInputWrap span {
    float: left;
    width: 3.125rem;
    height: 3.125rem;
    text-align: center;
    line-height: 3.125rem;
}

.LoginInputWrap span.loginInputId {background: url(../img/icon_id.png) no-repeat 50% 50%;}
.LoginInputWrap span.loginInputPw {background: url(../img/icon_pass.png) no-repeat 50% 50%;}

.LoginInputWrap input {
    width: calc(100% - 3.125rem);
    height: 3.125rem;
    line-height: 3.125rem;
    float: left;
    border: 0;
    background: #e8f0fe;
    border-radius: 0.3125rem;
    padding: 0 1.25rem;
    box-sizing: border-box;
    font-size: var(--fontL);
    font-weight: 500;
}

.introWrapper .introBox button {
    display: inline-block;
    width: 100%;
    height: 3.125rem;
    line-height: 3.125rem;
    font-size: var(--fontL);
    border: 0;
    color: #fff;
    border-radius: 0.3125rem;
}

.introWrapper .introBox .signUpChk {margin: 1rem 0 0;}

.introWrapper .introBox .signUpChk>p>button {
    display: inline;
    width: auto;
    height: 1.5rem;
    line-height: 1.5rem;
    margin: 0.5rem 0;
    background: transparent;
    color: var(--maincolor);
    font-size: var(--fontM);
}

.introWrapper .introBox button.btnLogin {
    background-color: var(--maincolor);
    margin-top: 1.875rem;
}

.introWrapper .loginBox button.btnSignUp {
    background-color: #999;
    margin-top: 0.625rem;
}

.introWrapper .loginBox .loginLink {text-align: center;}
.introWrapper .loginBox .loginLink a {
    display: inline-block;
    padding: 0 1rem;
    line-height: 1.875rem;
    height: 1.875rem;
    text-align: center;
    font-size: var(--fontS);
    color: #999;
}

.introWrapper .loginBox .loginLink a:hover {
    background-color: var(--bgcolor);
    color: var(--maincolor);
}

/********************** 회원가입 **********************/

.signUpBox {width: 100%; border-collapse: collapse;}
.signUpBox th {
    text-align: left;
    padding-right: 2.5rem;
    white-space: nowrap;
    font-weight: 500;
}
.signUpBox td {padding: 0.3125rem 0;}
.signUpBox td * {
    width: 100%;
    height: 2.5rem;
    line-height: 2.5rem;
    padding: 0 0.625rem 0;
    box-sizing: border-box;
    border: 1px solid var(--bordercolor);
    border-radius: 0.3125rem;
    font-size: var(--fontM);
    font-weight: 500;
}

.signUpBox td.joinId input[type='text'] {
	width: calc(100% - 7.5rem);
	float: left;
}

.signUpBox td.joinId button {
	width: 7rem;
	float: left;
	margin-left: 0.5rem;
	background: var(--maincolor);
	height: 2.5rem;
	line-height: 2.5rem;
	font-weight: 400;
	font-size: 1rem;
}

.signUpBox td input::placeholder {font-weight: 400;}

.introWrapper .introBox.signUpBox form {margin-bottom: 0;}

/********************** 에러페이지 **********************/

.introBox {width: 480px;}

/********************** 헤더 **********************/

header {
    width: 100%;
    height: 6.25rem;
    border-bottom: 1px solid var(--bordercolor);
    padding: 0 1.25rem;
    box-sizing: border-box;
}

.headerWrap {
    width: min(calc(50% + 725px), 100%);
    float: left;
    display: flex;
    flex-wrap: nowrap;
    height: 6.25rem;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
}

.mainNavi, .headerRight {white-space: nowrap; flex-shrink: 0;}

.mainNavi>li {
    float: left;
    width: 11.25rem;
    text-align: center;
    position: relative;
}

.mainNavi>li>a {
    display: block;
    height: 6.25rem;
    line-height: 6.25rem;
}

.subNavi {
    display: none;
    width: 100%;
    box-sizing: border-box;
    border: 2px solid var(--maincolor);
    position: absolute;
    background-color: #fff;
    z-index: 1000;
}

.subNavi::after {
    content: '';
    position: absolute;
    top: -8.5px;
    left: 50%;
    width: 0.75rem;
    height: 0.75rem;
    border: solid var(--maincolor);
    background: #fff;
    border-width: 2px 2px 0 0;
    transform: rotate(-45deg) translate(-50%, -50%);
    z-index: 1;
    box-sizing: border-box;
}

.subNavi>li {
    line-height: 2.5rem;
    height: 2.5rem;
    position: relative;
    z-index: 2;
}

.mainNavi>li:hover>a{color: var(--maincolor); font-weight: 500;}
.mainNavi>li:hover .subNavi {display: block;}

.subNavi>li>a {
    display: block;
    line-height: 2.5rem;
    height: 2.5rem;
}
.subNavi>li>a:hover {background: var(--hovercolor);}

.btnDetail {
    display: inline-block;
    border: 0;
    background: #fff;
    color: var(--maincolor);
}

.headerRight {overflow: hidden;}

.headerRight>* {float: left;}

.headerRight>p {
    line-height: 2rem;
    margin-right: 0.625rem;
}

.btnHeader {
    width: 2rem;
    height: 2rem;
    background-color: transparent;
    border: 0;
}

.btnHeader.btnUser {background: url(../img/icon_user.png) no-repeat 50% 50%;}
.btnHeader.btnPw {background: url(../img/icon_passworld.png) no-repeat 50% 50%;}
.btnHeader.btnLogout {background: url(../img/icon_logout.png) no-repeat 50% 50%;}

/********************** main **********************/

main {
    width: 96%;
    max-width: 1490px;
    margin: 2.5rem auto;
}

main.popup {max-width: auto;}

.titleBox {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
	margin-bottom: 1.25rem;
}

.titleBox .btnBox.btnBoxRight {float: right;}

.siteMap {overflow: hidden;}
.siteMap>li {float: left; padding: 0 1rem; position: relative;}
.siteMap>li::after {
    content: '';
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    right: -0.625rem;
    top: 0;
    background: url(../img/icon_next.png) no-repeat 50% 50%;
    background-size: cover;
    opacity: 0.5;
}
.siteMap>li:nth-last-child(1)::after {display: none;}

.siteMap>li>a {color: #888;}
.siteMap>li>a:hover {color: var(--maincolor);}


/********************** 이용자 검색 **********************/


.userSearchPage {margin-bottom: 2.5rem;}

.userSearchPage .searchBox>form {
    width: 100%;
    background: var(--bgcolor);
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 0.625rem 0;
    align-items: center;
}

.userSearchPage .searchBox>form>select {margin-right: 0.625rem;}

.userSearchPage .searchBox>form input[type='text'] {
	width: 10rem;
	margin-right: 0;
	float: none;
	background: #fff;
}


/********************** 검색 **********************/

.searchBox {
    overflow: hidden;
    margin-bottom: 0.625rem;
}

.searchBox>form {
    float: left;
    display: flex;
    flex-wrap: wrap;
    gap: 0 2rem;
    width: 100%;
}

.searchBox>form input[type='text'],
.searchBox>form input[type='date'],
.searchBox>form select {
    height: 2.25rem;
    line-height: calc(2.25rem - 2px);
    border: 1px solid var(--bordercolor);
    border-radius: 0.3125rem;
    font-size: var(--fontM);
    float: left;
    box-sizing: border-box;
}

.searchBox>form select,
.searchBox>form input[type='date'] {width: 10rem; padding: 0 0.625rem;}
.searchBox>form input[type='text'] {
    max-width: 20rem;
    width: calc(100% - 5rem);
    padding: 0 0.625rem;
}

.searchBox>form button#search-btn {
    width: 5rem;
    height: 2.25rem;
    background-color: var(--maincolor);
    color: #fff;
    border: 0;
    border-radius: 0.3125rem;
    font-size: var(--fontM);
}

.searchBox .btnBox {float: right;}

.searchBox div.searchList {
    display: flex;
    gap: 0 0.5rem;
    align-items: center;
    margin: 0.3125rem 0;
}

.searchBr {flex-basis: 100%;}

.searchBox span {white-space: nowrap;}

.searchBox div.searchList.searchKeywordWrap {
    margin: 0;
    width: calc(100% - 4rem);
    gap: 0.25rem 0.5rem;
}

/********************** 이용자 확인 승인 **********************/


.userAckTb {border: 1px solid var(--bordercolor);}

.userAckTb>thead>tr>th:nth-child(1),
.userAckTb>tbody>tr>td:nth-child(1) {border-right: 1px solid var(--bordercolor);}

.userAckTb td input[type='checkbox'] {width: 1rem; height: 1rem;}

.userAckTb td.userDataTd {
    padding: 0;
    border-left: 1px solid var(--bordercolor);
}

.userAckTb td.userDataTd.noListTd {background: var(--bgcolor) !important;}

.userDataList {
    width: 100%;
    border-collapse: collapse;
    background: #fff !important;
}

.userAckTb .lineTd {padding: 0; height: 0.5rem; background: var(--bgcolor); }

.userDataList tr:nth-last-child(1) {border-bottom: 0;}

.userDataList tr {border-bottom: 1px solid #f1f1f1;}

.userDataList tr:hover {background: var(--hovercolor);}

.userDataList td {
	width: 33.3%;
	height: 2.5rem !important;
	text-align: center;
}


/********************** 이용자 상세내역 **********************/


.userDetailTb {
    border: 1px solid var(--bordercolor);
}

.userDetailTb th, .userDetailTb td {text-align: left;}

.userDetailTb th {border: 1px solid var(--bordercolor); white-space: nowrap;}
.userDetailTb td {padding: 0.625rem 1.25rem; background-color: #fff;}

.userDetailBox {
	display: inline-block;
    width: 100%;
    margin-top: 2.5rem;
}

.userStateValue {
    border-left: 1px solid var(--bordercolor);
    color: var(--maincolor);
    width: 0;
    white-space: nowrap;
}

.userDetailBox input[type='radio'] {display: none;}
.userDetailBox>label {
    width: 10rem;
    line-height: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--bordercolor);
    background-color: var(--bgcolor);
    color: #666;
    float: left;
    text-align: center;
    margin-right: -1px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.userDetailBox input[type='radio']:checked+label {
    color: var(--maincolor);
    background: #fff;
    border-bottom: 1px solid #fff;
    font-weight: 500;
}

.userDetailBox>div {
    width: 100%;
    padding: 1.875rem;
    border: 1px solid var(--bordercolor);
    margin-top: -1px;
    float: left;
    box-sizing: border-box;
}

.userDetailBox>div ul.documentList {clear: both; margin-top: 1.25rem;}

.userDetailBox>div ul.documentList li {
    border-bottom: 1px solid #eee;
    line-height: 1.5rem;
    padding: 0.5rem 0;
    display: flex;
}

.userDetailBox>div ul.documentList li a {margin-left: 0.5rem; width: 100%;}
.userDetailBox>div ul.documentList li a:hover {color: var(--maincolor); font-weight: 500;}

.userDetailBox>div ul.documentList li a span {
    font-size: var(--fontXS) !important;
    color: #999;
    margin-left: 1.875rem;
}

.userDetailBox>div .btnBox {float: right;}

.mobHeader, .menuClose {display: none;}

.signUpBox td label {white-space: nowrap; float: left; width: 50%;}
.signUpBox td input[type="radio"] {width: 13px; height: 13px;}

.signUpPopup {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100vh;
    z-index: 1000;
    display: none;
}

.signUpPopupBox {
    position: absolute;
    top: 10vh;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 92%;
    max-width: 600px;
    height: 60vh;
    z-index: 1000;
    padding: 2.5rem 1.25rem;
    box-sizing: border-box;
    overflow-y: auto;
    display: none;
}

.signUpPopupBox>ul {
    margin-top: 1.25rem;
}

.signUpPopupBox>ul>li {
    margin-bottom: 1rem;
}

.signUpPopupBox .subText {margin-top: 0.5rem;}
.signUpPopupBox .subText li{
    font-size: var(--fontS);
    color: #666 !important;
}

.introWrapper .introBox .signUpPopup .closePopup {
    width: 10rem;
    position: absolute;
    top: 75vh;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--maincolor);
}


.designTb th.notice-tit {background: #fff;}
.notice-2tit {background: var(--bgcolor); white-space: nowrap;}
.noticeTb {margin-top: 0.625rem;}
.noticeTb td, .noticeTb th {border: 1px solid var(--bordercolor);}

.noticePc {display: table-row;}
.noticeMob {display: none;}

.noticeEditTb td {text-align: left;}

@media screen and (min-width: 1490px) {
    header {
        width: 100%;
        float: none;
    }
}

@media screen and (max-width: 1489px) {

    .mobHeader {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem;
    }

    .mobHeader h1 img {
        height: 50px;
    }

    .mobHeader .menuMob {
        width: 2rem;
        height: 2rem;
        background: url(../img/menuMob.png) no-repeat 50% 50%;
        border: 0;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        padding: 0;
        z-index: 10000;
        display: none;
    }

    header .headerWrap {
        background: #fff;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        padding: 1.25rem;
        display: block;
        position: relative;
    
    }

    .mainNavi {
        text-align: center;
        margin: 4rem auto 1.25rem;
        max-width: 600px;
        border-top: 1px solid #aaa;
    }

    header .headerWrap .mainNavi>li {float: none; width: 100%;}

    header .headerWrap .mainNavi>li>a {
        display: block;
        height: 3.75rem;
        line-height: 3.75rem;
        border: solid #aaa;
        border-width: 0 1px 1px;
    }

    .subNavi {
        width: 100%;
        box-sizing: border-box;
        border: 0;
        position: static;
        background-color: #f3f3f3;
        border: solid #aaa;
        border-width: 0 1px 1px;
    }

    .subNavi::after {display: none;}
    
    .headerRight {
        position: absolute;
        top: 6.75rem;
        left: 0;
        width: 100%;
        text-align: center;
    }

    .headerRight>* {
        float: none;
        display: inline-block;
    }

    .headerRight>p {display: inline-block; vertical-align: top;}

    .menuClose {
        display: block;
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        width: 2rem;
        height: 2rem;
        background: url(../img/icon_x2.png) no-repeat 50% 50%;
        border: 0;
    }
}

@media screen and (max-width: 600px) {
  .introWrapper .introBox.loginBox {width: 92%; max-width: 27.5rem;}

  .introWrapper {
    height: initial;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
  }

  .introWrapper .introBox.signUpBox {
        max-width: 32.5rem;
        width: 92%;
        position: initial;
        transform: translate(0, 0);
        margin: 2rem 4%;
        box-sizing: border-box;
    }

    .signUpBox th {padding-right: 1rem;}

    .signUpBox td.joinId input[type='text'] {width: 100%;}
    .signUpBox td.joinId button {margin: 0.5rem 0 0 0;}

    main h1 {
        max-height: 50px;
        max-width: 60%;
        height: auto;
    }

    .menuMob h1 {margin: 0 auto;}

    main h1 img {
        width: 100%;
        height: auto;
    }

    .titleBox {display: block;}
    .siteMap {
        float: right;
        margin-top: 0.5rem;
    }

    .searchBox>form select {
        width: auto;
    }

    .searchBox>form button#search-btn {
        width: 10rem;
    }

    .searchBox,
    .searchBox>form select, .searchBox>form input {font-size: var(--fontS);}
    .searchBox>form select {padding: 0; width: 8rem;}

    .noticeTb td, .noticeTb th {font-size: var(--fontS);}

    .noticePc {display: none;}
    .noticeMob {display: table-row;}
}

@media screen and (max-width: 480px) {
    .signUpBox th,
    .signUpBox td *,
    .signUpBox td.joinId button,
    .introWrapper .introBox .signUpChk button {font-size: 0.875rem !important;}

    .searchBox span {width: 4rem;}

    .searchList {width: 100%;}

    .searchBox>form select {
        width: calc(100% - 4.5rem);
    }

    .searchKeywordWrap>.searchList>input[type='text'] {width: calc(100% - 5.5rem) !important;}

    .searchBox div.searchList.searchKeywordWrap {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 400px) {
    .signUpBox td label {width: 100%;}
}
