/* reset.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    background: #fafafa;
    font-family: "Roboto", sans-serif;
}

a {
    text-decoration: none;
}

ul,
li,
ol {
    list-style: none;
}

.pageBg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.header__menu.active ~ .pageBg {
    display: block;
}

/* header */

header {
    width: 1200px;
    padding: 0 40px;
    height: 116px;
    display: flex;
    gap: 100px;
    align-items: center;
    margin: 0 auto;
}

.header__menu {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.header__menu__mob {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(136, 51, 255, 0.1);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 15px;
    cursor: pointer;
    display: none;
}

.header__menu__mob span {
    display: block;
    width: 24px;
    height: 4px;
    background: #0075FF;
    border-radius: 4px;
}

.close_btn {
    display: none;
}

.depth1 {
    display: flex;
    gap: 40px;
    align-items: center;
}

.depth1>li {
    font-size: 13px;
    position: relative;
    height: 100%;
}

.depth1>li>a {
    color: #6B7A99;
    font-weight: 700;
}

.depth1 > li > a:hover {
    color: #0075FF;
}

.depth1 > li:first-child {
    position: relative;
}

.depth1 > li:first-child::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
    visibility: hidden;
}

.depth1 > li:first-child:hover::after {
    visibility: visible;
}

.depth1>li:first-child:hover .depth2, .depth1 > li:first-child .depth2:hover ~ .depth2 {
    display: flex;
}

.depth2 {
    display: flex;
    gap: 40px;
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    width: max-content;
    align-items: center;
    padding: 10px 20px;
    background: #fff;
    gap: 30px;
    height: 40px;
    border-radius: 30px;
    filter: drop-shadow(0px 2px 5px rgba(38, 51, 77, 0.03));
    display: none;
}

.depth2>li {
    font-size: 12px;
    width: auto;
}

.depth2>li>a {
    color: #6B7A99;
    font-weight: 700;
}

.depth2 > li > a:hover {
    color: #0075FF;
}

.depth1 > li > a.active, .depth2 > li > a.active {
    color: #0075FF;
}

.sign {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sign>li {
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 50px;
    background: rgba(0, 117, 255, 0.1);
}

.sign>li>a {
    color: #0075FF;
    font-weight: 700;
    display: block;
    height: 100%;
    width: 100%;
}

/* footer */

footer {
    background: #fff;
    padding: 60px 0;
    width: 100%;
    height: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    margin-top: 100px;
}

.footer__infoBox {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
}

.custom_center {
    align-self: flex-end;
}

.footer_info ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.footer_info ul li a {
    display: block;
    font-size: 11px;
    font-weight: 400;
    background: #f2f2f2;
    border-radius: 30px;
    color: #000;
    padding: 6px 14px 5px 14px;
}

.FooterLogo {
    margin-bottom: 20px;
}

.footer_info__address {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 10px;
    color: #8e8e8e;
}

.footer_info__address p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.footer_info__address p span {
    font-weight: 700;
}

.custom_center__title {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.custom_center__title h3 {
    color: #999;
    font-size: 11px;
    font-weight: 400;
}

.custom_center_time {
    width: 216px;
    background: #F7F8FA;
    border-radius: 8px;
    padding: 16px 22px;
}

.custom_center_time p {
    font-size: 13px;
    font-weight: 700;
    color: #000;
}

.custom_center__info {
    display: flex;
    gap: 50px;
}

.custom_center__info p {
    display: flex;
    align-items: center;
    gap: 7px;
}

.custom_center__info p span {
    font-size: 13px;
    font-weight: 700;
    color: #000;
}

/* Main */
.MainCont {
    width: 1120px;
    margin: 0 auto;
}

.MainContExplainBox {
    display: flex;
    justify-content: space-between;
    gap: 56px;
}

.MainContExplain {
    padding-left: 180px;
    padding-top: 100px;
}

.MainContExplain span {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
    display: inline-block;
}

.MainContExplain h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.MainContExplain img {
    margin-top: 30px;
}

.MainContExplainDetail {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.MainContExplainDetail p {
    font-size: 13px;
    font-weight: 400;
    color: #888;
    line-height: 18px;
}

.MainContExplainImg img {
    max-width: 100%;
    max-height: 100%;
}

/* Legal */

.LegalContBox {
    width: 800px;
    margin: 0 auto;
    margin-top: 100px;
}
.LegalCont {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    background: #ededed;
}

.LegalCont__title h2 {
    font-size: 24px;
}

.LegalCont__content__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.LegalCont__content__item h3 {
    font-size: 18px;
    color: #333;
    margin-top: 50px;
    margin-bottom: 40px;
}

.LegalCont__content__item #legalDetail .chapter .section {
    margin-bottom: 15px;
}

.LegalCont__content__item #legalDetail .chapter h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
}

.LegalCont__content__item #legalDetail .chapter h4 {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
}

.LegalCont__content__item #legalDetail .chapter p {
    font-size: 14px;
    line-height: 1.4;
}

.LegalCont__content__item #legalDetail .chapter .subItemText {
    margin-left: 10px;
}

.LegalCont__content__item ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.LegalCont__content__item ul li {
    font-size: 13px;
    color: #888;
    line-height: 18px;
}

/* ParkingList */
.ParkingListCont {
    width: 800px;
    margin: 0 auto;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ParkingListCont__title h2 {
    font-size: 24px;
}

.ParkingListCont__content__box {
    display: flex;
    justify-content: space-between;
}

.ParkingListCont__content__title h3 {
    font-size: 16px;
    font-weight: 400;
}

.ParkingListCont__content__title span {
    font-size: 11px;
    font-weight: 400;
    color: #aaa;
}

.ParkingListCont__content__item {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ParkingListCont__content__item li {
    text-align: center;
}

.ParkingListCont__content__item li p {
    color: #666;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 10px;
}

.ParkingListCont__content__item__img {
    display: flex;
    gap: 10px;
}

/* 이미지 사이즈 임시 설정입니다. */
.ParkingListCont__content__item__img img {
    width: 180px;
    height: 135px;
    background: #d9d9d9;
}

/* Application */
.ApplicationCont {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 600px;
    margin: 0 auto;
    margin-top: 100px;
}

.ApplicationCont__title h2 {
    font-size: 24px;
    font-weight: 700;
}

.ApplicationCont__content ul {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ApplicationCont__content ul li {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0px 9px 46px rgba(0, 0, 0, 0.05), 0px 11px 15px rgba(0, 0, 0, 0.05);
    background: #fff;
    height: 86px;
    padding: 20px;
}

.ApplicationCont__content ul li a {
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
    width: 100%;
}

.ApplicationCont__content ul li .number_circle {
    background: rgba(0, 117, 255, 0.1);
    border-radius: 50%;
    width: 46px;
    height: 46px;
    position: relative;
}

.ApplicationCont__content ul li .number_circle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0075ff;
    font-size: 23px;
    font-weight: 900;
}

.ApplicationCont__content__item {
    display: flex;
    flex-direction: column;
}

.ApplicationCont__content__item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000;

}

.ApplicationCont__content__item h3 span {
    font-size: 12px;
    font-weight: 400;
    color: #aaa;
}

.ApplicationCont__content__item p {
    font-size: 12px;
    color: #aaa;
    font-weight: 400;
}

.ApplicationCont__content #paymentForm {
    padding: 20px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 9px 46px rgba(0, 0, 0, .05), 0 11px 15px rgba(0, 0, 0, .05);
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.ApplicationCont__content #paymentForm label {
    font-size: 16px;
    color: #000;
    font-weight: 700;
}

.ApplicationCont__content #paymentForm input {
    border: 1px solid #ededed;
    border-radius: 4px;
    padding: 8px;
    font-size: 14px;
    width: 100%;
}

.ApplicationCont__content #paymentForm button {
    background-color: #0075ff;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.ApplicationCont__content #paymentForm button:hover {
    background: #0056b3;
}

.ApplicationCont__content #estimatedAmount {
    margin-top: 10px;
    color: #0075ff;
    font-size: 16px;
    font-weight: 700;
}

.ApplicationCont__content .hint {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ApplicationCont__content .multiplier {
    margin-right: 5px;
}

.ApplicationCont__content .frac {
    display: inline-flex;
    align-items: center;
}

.ApplicationCont__content .bracket {
    font-size: 24px;
}

.ApplicationCont__content .inner {
    display: inline-block;
    text-align: center;
}

.ApplicationCont__content .numerator,
.ApplicationCont__content .denominator {
    display: block;
}

.ApplicationCont__content .denominator {
    border-top: 1px solid #000;
}

.ApplicationCont__content .exponent {
    font-size: 10px;
    vertical-align: top;
    margin-left: 2px;
    position: relative;
    top: -15px;
}

/* SignUp */
.SignUpCont {
    width: 360px;
    margin: 0 auto;
    margin-top: 100px;
}

.SignUpCont__title {
    margin-bottom: 40px;
}

.SignUpCont__title h2 {
    font-size: 24px;
    font-weight: 700;
}

.SignUpCont form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.SignUp__input {
    display: flex;
    flex-direction: column-reverse;
    gap: 5px;
}

.SignUp__input label {
    font-size: 14px;
    font-weight: 700;
}

.SignUp__input input {
    width: 100%;
    height: 56px;
    border-radius: 10px;
    border: 0;
    padding: 15px;
    font-size: 13px;
    box-shadow: 0px 10px 75px rgba(147, 147, 147, 0.1);
    color: #cacaca;
}

.SignUp__input input:focus {
    outline: none;
}

.SignUp__input input::placeholder {
    color: #cacaca;
    font-size: 14px;
    font-weight: 700;
}

.region__choose {
    width: 100%;
    height: 56px;
    border-radius: 10px;
    border: 0;
    padding: 15px;
    font-size: 13px;
    background: #fff;
    box-shadow: 0px 10px 75px rgba(147, 147, 147, 0.1);
    color: #cacaca;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    cursor: pointer;
}

.region__choose span {
    font-size: 14px;
    font-weight: 700;
    color: #cacaca;
}

.SignUpCont button {
    background: rgba(0, 117, 255, 0.1);
    box-shadow: 0px 6px 75px rgba(100, 87, 87, 0.05);
    border-radius: 12px;
    border: 0;
    height: 56px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
}

.SignUpCont button.active {
    background: rgba(0, 117, 255, 1);
}

/* Investigation */
.InvestigationCont {
    width: 800px;
    margin: 0 auto;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.InvestigationCont__title {
    margin-bottom: 20px;
}

.InvestigationCont__title h2 {
    font-size: 24px;
    font-weight: 700;
}

.InvestigationCont__legal__item > li:first-child {
    margin-bottom: 20px;
}

.InvestigationCont__legal__item>li:first-child .InvestigationCont__depth > li {
    display: flex;
    align-items: center;
}

.InvestigationCont__legal__item>li:first-child .InvestigationCont__depth > li span {
    width: 2px;
    height: 2px;
    display: inline-block;
    background: #888;
    border-radius: 50%;
    position: relative;
    top: -1px;
    margin: 0 10px;
}

.InvestigationCont__legal__item>li:first-child .InvestigationCont__depth > li p {
    font-size: 11px;
    font-weight: 400;
    color: #888;
    margin-bottom: 3px;
}

.InvestigationCont__legal__item li h3 {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin-bottom: 5px;
}

.InvestigationCont__legal__item > li:last-child h3 {
    margin-bottom: 20px;
}

.InvestigationCont__legal__item > li:last-child .InvestigationCont__depth {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
    text-align: center;
}

.InvestigationCont__legal__item>li:last-child .InvestigationCont__depth > li p {
    font-size: 13px;
    font-weight: 700;
    color: #666;
    margin-bottom: 10px;
}

.InvestigationCont__legal__item>li:last-child .InvestigationCont__depth > li img {
    width: 372px;
    height: 279px;
    background: #d9d9d9;
}

/* Agreement */
#agreementCont .chapter {
    margin-top: 50px;
}

#agreementCont .chapter h3 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 40px;
}

#agreementCont .chapter .section {
    margin-bottom: 30px;
}

#agreementCont .chapter .section h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

#agreementCont .chapter .section p {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

#agreementCont .chapter .section .subItemText {
    margin-left: 10px;
}

/* Board */
.BoardCont {
    min-height: 100%;
    max-width: 1000px;
    margin: auto;
    margin-top: 100px;
    box-sizing: border-box;
    padding-bottom: 297px;
}

.BoardCont h3 {
    font-size: 24px;
    margin-bottom: 40px;
}

.BoardCont .BoardTotalCount {
    margin-bottom: 10px;
}

.BoardContTableBox {
    width: 100%;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    border-radius: 8px;
    border: 1px solid #ddd;
}

.BoardContTableBox table {
    width: 100%;
    border-collapse: collapse;
}

.BoardContTableBox th {
    background: #f8f8f8;
    color: #333;
    font-weight: 700;
    text-align: center;
    padding: 15px;
}

.BoardContTableBox td {
    padding: 15px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.BoardContTableBox td a {
    color: #000;
}

.BoardCont .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.BoardCont #pagination {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #000;
}

.BoardCont #pagination a {
    color: #000;
}

/* BoardDetails */
.BoardDetailCont {
    width: 100%;
    min-height: 100%;
    max-width: 1000px;
    margin: auto;
    box-sizing: border-box;
}

.BoardDetailContBox {
    margin-top: 100px;
    /* 높이값 임시 설정 */
    height: 400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    padding: 20px;
    border-radius: 10px;
    background: #fff;
}

.BoardDetailCont #detailTitle {
    font-size: 24px;
}

.BoardDetailCont .BoardMove {
    color: #000;
    font-size: 14px;
    border: 1px solid #000;
    padding: 5px;
    border-radius: 5px;
}

.BoardDetailCont .BoardDetailData {
    margin-bottom: 15px;
}

.BoardDetailCont .DetailAttachment {
    background: #f5f6fa;
    padding: 10px;
    font-size: 13px;
    border-top: 1px solid #999;
}

.BoardDetailCont .DetailContent {
    margin: 40px 0;
    padding: 0 10px;
}

/* 반응형 */
/* header */
@media screen and (max-width: 1300px) {
    header {
        width: 100%;
        padding: 0 20px;
    }
}

@media screen and (max-width: 950px) {
    header {
        justify-content: space-between;
    }

    .header__menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 0;
        height: 100%;
        background-color: #fff;
        overflow-x: hidden;
        transition: width 0.5s;
        z-index: 1000;
        visibility: hidden;
    }

    .header__menu.active {
        width: 250px;
        visibility: visible;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding-left: 20px;
        gap: 20px;
    }

    .depth1 {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .depth1>li {
        height: auto;
    }

    .depth1>li>a {
        display: block;
        padding: 10px;
    }

    .depth1>li:first-child::after,
    .depth1>li:first-child:hover::after {
        display: none;
    }

    .depth2 {
        flex-direction: column;
        gap: 10px;
        position: static;
        width: 100%;
        height: 100%;
        padding: 0;
        border-radius: 0;
        filter: none;
        display: none;
        margin-top: 10px;
    }

    .depth1>li:hover .depth2 {
        display: none;
    }

    .depth2.active {
        display: flex;
    }

    .close_btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        border: none;
        background: none;
        font-size: 24px;
        cursor: pointer;
    }

    .header__menu__mob {
        display: flex;
    }
}

/* main */
@media screen and (max-width: 1300px) {
    .MainCont {
        width: 100%;
    }
}

@media screen and (max-width: 1100px) {
    .MainCont {
        padding: 0 20px;
    }
    
    .MainContExplain h3 {
        font-size: 24px;
    }
    .MainContExplain {
        padding-left: 0;
    }
}

@media screen and (max-width: 950px) {
    .MainContExplain {
        padding-top: 50px;
    }
    .MainContExplainBox {
        flex-direction: column;
        gap: unset;
    }
}

/* Legal */
@media screen and (max-width: 950px) {
    .LegalContBox {
        width: 100%;
        padding: 0 20px;
        margin-top: 50px;
    }
}

/* ParkingList */
@media screen and (max-width: 950px) {
    .ParkingListCont {
        width: 100%;
        padding: 0 20px;
        margin-top: 50px;
    }
    
}

@media screen and (max-width: 800px) {
    .ParkingListCont__content {
        width: 100%;
    }
    .ParkingListCont__content__item__img img {
        width: 100%;
    }
    .ParkingListCont__content__box {
        flex-direction: column;
        gap: 100px;
    }
}

@media screen and (max-width: 500px) {
    .ParkingListCont__content__box {
        align-items: center;
    }
} 

/* Investigation */
@media screen and (max-width: 950px) {
    .InvestigationCont {
        width: 100%;
        padding: 0 20px;
    }

    .InvestigationCont__legal__item>li:last-child .InvestigationCont__depth>li img {
        width: 100%;
    }

    .InvestigationCont__legal__item>li:last-child .InvestigationCont__depth {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Application */
@media screen and (max-width: 950px) {
    .ApplicationCont {
        margin-top: 50px;
        width: 100%;
        padding: 0 20px;
    }
}
@media screen and (max-width: 400px) {
    .ApplicationCont {
        width: auto;
        padding: 0 20px;
    }
    .ApplicationCont__content__item h3 {
        font-size: 14px;
    }

    .ApplicationCont__content__item p {
        font-size: 11px;
    }

    .ApplicationCont__content ul li {
        padding: 10px;
    }

    .ApplicationCont__content ul li a {
        gap: 10px;
    }

    .ApplicationCont__content ul li .number_circle span {
        font-size: 15px;
    }
}

/* SignUp */
@media screen and (max-width: 950px) {
    .SignUpCont {
        margin-top: 50px;
    }
}

@media screen and (max-width: 400px) {
    .SignUpCont {
        width: auto;
        padding: 0 20px;
    }
}

/* footer */
@media screen and (max-width: 1300px) {
    .footer__infoBox {
        width: 100%;
        padding: 0 20px;
    }
}

@media screen and (max-width: 950px) {
    footer {
        margin-top: 40px;
    }

    .custom_center {
        align-self: unset;
    }

    .footer__infoBox {
        flex-direction: column;
        gap: 90px;
    }
}

@media screen and (max-width: 350px) {
    .custom_center__info {
        gap: 15px;
    }
}

/* Board */
@media screen and (max-width: 950px) {
    .BoardCont {
        margin-top: 50px;
        width: 100%;
        padding: 0 20px;
        padding-bottom: 100px;
    }
}

/* BoardDetail */
@media screen and (max-width: 950px) {
    .BoardDetailCont {
        width: 100%;
        padding: 0 20px;
    }

    .BoardDetailContBox {
        margin-top: 50px;
    }
}