/* parkingSec
------------------------------------*/

.parkingSecWrap {
    padding: 32px 0;
}

.parkingSecWrap .parkingSec {
    min-width: 640px;
    width: 640px;
    padding: 16px 16px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .parkingSecWrap .parkingSec {
        min-width: inherit;
        width: auto;
    }

}

/* parkingTit
------------------------------------*/
.parkingTit {
    background-image: url("/files/image/parking_tit.png");
    background-repeat: no-repeat;
    background-position: right;
    padding: 20px 0 4px;
    box-sizing: border-box;
    border-radius: 12px;
}

@media screen and (max-width: 767px) {

    .parkingTit {
        background-image: none;
        padding: 0;
    }

}

.parkingInfoWrap {
    position: relative;
}

.bgcloud_01 {
    position: absolute;
    left: -160px;
    top: 452px;
    width: 190px;
}

.bgcloud_02 {
    position: absolute;
    right: -180px;
    top: -14px;
    width: 180px;
}

.bgcloud_03 {
    position: absolute;
    right: -146px;
    bottom: -76px;
    width: 200px;
}


@media screen and (max-width: 767px) {

    .bgcloud_01 {
        display: none;
        /* left: 0;
        bottom: 0;
        width: 120px; */
    }
    
    .bgcloud_02 {
        right: 0;
        top: -140px;
        width: 80px;
    }
    
    .bgcloud_03 {
        right: 0;
        bottom: -71px;
        width: 100px;
    }

}

/*parkingInfo*/
.parkingInfo {
    padding: 24px 12px;
    border-top: 1px solid #acacac;
    box-sizing: border-box;
}

.parkingInfo:last-child {
    border-bottom: 1px solid #acacac;
}

.parkingInfo .parkingInfoCnt_info_tit {
    color: #427538;
    font-weight: 700;
    font-size: 24px;
}

@media screen and (max-width: 767px) {

    .parkingInfo {
        padding: 24px 8px;
    }

    .parkingInfo .parkingInfoCnt_info_tit {
        font-size: 24px;
    }

}

/*parkingInfoCnt*/
.parkingInfoCnt {
    display: flex;
    align-items: flex-end;
}

@media screen and (max-width: 767px) {
    .parkingInfoCnt {
        display: block;
    }
}

/*parkingInfoCnt_info*/
.parkingInfoCnt_info {
    min-width: 420px;
}

.parkingInfoCnt_info > *:not(:first-child) {
    margin-top: 8px;
}

.parkingInfoCnt_info .parkingInfoCnt_info_title {
    font-size: 18px;
}

.parkingInfoCnt_info .parkingInfoCnt_info_data {
    display: flex;
    align-items: flex-start;
}

.parkingInfoCnt_info .parkingInfoCnt_info_data .parkingInfoCnt_info_data_head {
    margin-right: 4px;
    white-space: nowrap;
}

@media screen and (max-width: 767px) {
    .parkingInfoCnt_info {
        min-width: inherit;
        margin-bottom: 16px;
    }
}

/*parkingInfoCnt_status*/
.parkingInfoCnt_status {
    width: 100%;
    margin-left: auto;
}


@media screen and (max-width: 767px) {
    .parkingInfoCnt_status {
        width: 200px;
        margin: 0 auto;
    }
}



/*parkingStatus*/
.parkingStatus {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    border: 1px solid #0f960f;
    color: #0f960f;
    border-radius: 8px;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-left: auto;
}

.parkingStatus-disable {
    border-color: #d20000;
    color: #d20000;
}

/* parkingStatus_border */
.parkingStatus .parkingStatus_border {
    width: 1px;
    height: 24px;
    margin-right: 16px;
    display: inline-block;
    top: 4px;
    background-color: #0f960f;
    margin-left: 12px;
    margin-right: 12px;
}

.parkingStatus.parkingStatus-disable .parkingStatus_border {
    background-color: #d20000;
}

/* parkingStatus_icon */

.parkingStatus .parkingStatus_icon {
    display: block;
    width: 40px;
    height: 30px;
    position: relative;
}

/* ?? */
.parkingStatus .parkingStatus_icon::after {
    position: absolute;
    content: '';
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 4px solid #0f960f;
}

/* ?? */
.parkingStatus.parkingStatus-disable .parkingStatus_icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 40px;
    height: 4px;
    border-radius: 0;
    border: none;
    background-color: #d20000;
}

.parkingStatus.parkingStatus-disable .parkingStatus_icon::before {
    position: absolute;
    content: '';
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 40px;
    height: 4px;
    border-radius: 0;
    border: none;
    background-color: #d20000;
    background: #d20000;
}



@media screen and (max-width: 767px) {
    .parkingStatus {
        padding: 16px;
        font-size: 24px;
        margin-bottom: 8px;
        margin-left: auto;
    }
}


