@charset "UTF-8";

:root {
    --color-white: #ffffff;
    --color-navyblack: #0F172A;
    --color-secondary: #2196F3;
    --color-secondary-active: #0076CE;
    --color-primary-400: #647EEC;
    --color-primary-500: #496BD6;
    --color-primary-600: #3258B9;
    --color-primary: #2F5BC1;
    --color-primary-bg: #F5FAFF;
    --color-primary-dark: #0F316A;
    --color-bg-light: #f9f9f9;
    --color-people: #6951CB;
    --color-people-bg: #F2F2FE;
    --color-line: #cccccc;

    /* 타이틀 폰트 사이즈 : 최종 버전으로 추후 변수명의 숫자 일괄 삭제 */
    --font-title-24-lg: 24px;
    --font-title-20-md: 20px;
    --font-title-18-sm: 18px;
    --font-title-16-xs: 16px;

    /* 폰트사이즈 : 최종 버전으로 추후 변수명의 숫자 일괄 삭제 */
    --font-20-xl: 20px;
    --font-18-lg: 18px;
    --font-16-md: 16px;
    --font-15-sm: 15px;
    --font-14-xs: 14px;
    --font-13-xxs: 13px;
    --font-12-min: 12px;

    /* 폰트두께 : 최종 버전으로 추후 변수명의 숫자 일괄 삭제 */
    --font-bold: 700;
    --font-semibold: 600;
    --font-medium: 500;
    --font-regular: 400;
    --font-light: 300;

    /* 여백 : 최종 버전으로 추후 변수명의 숫자 일괄 삭제 */
    --space-48-max: 48px;
    --space-40-xxl: 40px;
    --space-32-xl: 32px;
    --space-24-lg: 24px;
    --space-20-md: 20px;
    --space-16-sm: 16px;
    --space-12-xs: 12px;
    --space-8-xxs: 8px;
    --space-4-min: 4px;

    /* 모서리지름 : 최종 버전으로 추후 변수명의 숫자 일괄 삭제 */
    --radius-full: 100px;
    --radius-24-xxl: 24px;
    --radius-20-xl: 20px;
    --radius-16-lg: 16px;
    --radius-8-md: 8px;
    --radius-4-sm: 4px;
}

/* 기존 소스 custom */
.map .sec_01 .call-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

.call-wrap .col.l2 {
    margin: 0;
    width: 100%;
}

.call-wrap .col.s10 {
    width: 100%;
}

.map .sec_02 .bus-title h4 {
    text-align: left;
    word-break: break-all;
}

.table_bus tbody {
    display: flex;
    flex-direction: column;
}

.table_bus tbody>tr {
    display: flex;
    flex-direction: column;
}

.table_bus tbody>tr>th {
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 10px;
    height: min-content;
    padding: 12px 0 !important;
}

.table_bus tbody>tr>th img {
    height: 24px;
    margin: 0 !important;
    width: 24px;
}

.table_bus tbody>tr>td {
    height: min-content;
}

.table_bus tbody>tr>td>ul {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
}

.table_bus tbody>tr>td>ul>li {
    padding: 0 !important;
    width: 100% !important;
}

.breadcrumb-wrap .breadcrumb li a.home {
    font-size: 0;
}

@media screen and (min-width: 768px) {
    .map .sec_01 .call-wrap {
        display: block;
    }

    .call-wrap .col.l2 {
        width: 16.6666666667%;
        margin-left: auto;
    }

    .call-wrap .col.s10 {
        width: 83.3333333333%;
    }

    .table_bus tbody>tr>td>ul {
        flex-direction: row;
    }

    .table_bus tbody>tr>td>ul>li {
        width: 50% !important;
    }
}

@media screen and (min-width: 992px) {
    .table_bus tbody {
        display: table-row-group;
    }

    .table_bus tbody>tr {
        display: table-row;
    }

    .table_bus tbody>tr>th {
        display: table-cell;
        padding: 15px 10px 10px !important;
    }

    .table_bus tbody>tr>th img {
        height: unset;
        margin: 0 auto 1rem auto !important;
        width: unset;
    }

    .table_bus tbody>tr>td {
        height: 3rem;
    }

    .table_bus tbody>tr>td>ul {
        display: table !important;
    }

    .table_bus tbody>tr>td>ul>li {
        padding: 10px 0 10px 15px !important;
    }
}

/* 신규 css */
.map-img {
    background: url(../../images/new/m_map.png);
    background-size: cover;
    background-position: left top;
    display: block;
    font-size: 0;
    height: 220px;
    width: 100%;
}

@media screen and (min-width: 468px) {
    .map-img {
        height: 260px;
    }
}

@media screen and (min-width: 576px) {
    .map-img {
        height: 340px;
    }
}

@media screen and (min-width: 768px) {
    .map-img {
        background: url(../../images/new/pc_map.png);
        background-size: cover;
        background-position: left top;
        height: 380px;
    }
}

@media screen and (min-width: 992px) {
    .map-img {
        height: 500px;
    }
}

@media screen and (min-width: 1200px) {
    .map-img {
        height: 580px;
    }
}

.school-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.school-img img {
    width: 100%;
}

@media screen and (min-width: 992px) {
    .school-wrap {
        gap: 30px;
    }
}

.img-group {
    margin: 0 auto;
    position: relative;
    text-align: center;
    width: 100%;
}

.img-group img {
    width: 100%;
}

.img-group .pc-img {
    display: none;
}

.img-group .mo-img {
    max-width: 400px;
}

.img-group .mo-img.max-260 {
    max-width: 260px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .img-group .pc-img {
        display: block;
    }

    .img-group .pc-img.max-900 {
        max-width: 900px;
        margin: 0 auto;
    }

    .img-group .mo-img {
        display: none;
    }
}

.circle-title {
    align-items: center;
    background: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    outline: 1px solid var(--color-primary);
    outline-offset: 4px;
    max-width: 800px;
    margin: 4px;
    padding: var(--space-12-xs) 40px;
    text-align: center;
}

.circle-title h2 {
    color: var(--color-white);
    font-size: var(--font-18-lg);
    font-weight: var(--font-bold);
}

.table-group {
    margin: var(--space-16-sm) 0 0 0;
}

.table-group.gray tr {
    border: 0;
}

.table-group.gray th {
    background: var(--color-bg-light);
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    font-weight: var(--font-bold);
    height: max-content;
    padding: var(--space-12-xs) 0;
    text-align: center;
}

.table-group.gray td {
    border-bottom: 1px solid var(--color-line);
    font-size: var(--font-14-xs);
    line-height: 1.5;
    height: max-content;
    padding: var(--space-12-xs);
    text-align: center;
}

.table-group.gray td b {
    font-size: var(--font-14-xs);
    font-weight: bold;
}

.table-group.gray .none-color {
    background: none;
    border: none;
}

.table-group.gray td img {
    width: 40px;
}

@media screen and (min-width: 1200px) {
    .circle-title {
        margin: 0 auto;
        padding: var(--space-16-sm) 60px;
    }

    .circle-title h2 {
        font-size: var(--font-title-20-md);
    }

    .table-group {
        margin: var(--space-20-md) 0 0 0;
    }

    .table-group.gray tbody td {
        font-size: var(--font-15-sm);
    }

    .table-group.gray tbody td b {
        font-size: var(--font-15-sm);
    }
}

.table-group.table-horizontal tr:first-child td {
    border-top: 1px solid var(--color-line);
}

.table-group.table-horizontal td {
    padding: var(--space-12-xs) var(--space-20-md);
    text-align: left;
}

.list-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-16-sm);
}

.list-item dl {
    display: flex;
    flex-direction: column;
}

.list-item dl dt {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--font-16-md);
    font-weight: var(--font-semibold);
    padding: var(--space-12-xs) 0;
    text-align: center;
}

.list-item dl dd {
    background: var(--color-primary-bg);
    padding: var(--space-20-md) var(--font-12-min);
    text-align: center;
}

.list-item dl dd img {
    max-width: 260px;
    width: 100%;
}

.list-item dl dd:last-child {
    background: none;
    border-top: 1px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-size: var(--font-16-md);
    font-weight: var(--font-semibold);
    padding: var(--space-12-xs) 0;
    text-align: center;
}

.list-item dl.people dt {
    background: var(--color-people);
}

.list-item dl.people dd {
    background: var(--color-people-bg);
}

.list-item dl.people dd:last-child {
    background: none;
    border-color: var(--color-people);
    color: var(--color-people);
}

@media screen and (min-width: 768px) {
    .list-item {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--space-20-md);
    }

    .list-item li {
        width: calc((100% / 2) - 10px);
    }
}

@media screen and (min-width: 1200px) {
    .list-item {
        flex-wrap: nowrap;
    }

    .list-item li {
        width: calc((100% / 5) - 10px);
    }
}

.table-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--space-24-lg);
}

.table-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-12-xs);
}

.table-section .table-group {
    margin: 0;
}

.table-top {
    display: flex;
    flex-direction: column;
    gap: var(--space-8-xxs);
}

.table-top h2 {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--font-16-md);
    padding: var(--space-12-xs);
    text-align: center;
}

.table-top img {
    width: 100%;
}

.table-title {
    align-items: center;
    background: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    outline: 4px solid #E6E6E6;
    margin: 4px auto;
    max-width: 260px;
    padding: var(--space-12-xs) 40px;
    text-align: center;
}

.table-title h2 {
    color: var(--color-white);
    font-size: var(--font-18-lg);
    font-weight: var(--font-bold);
}

@media screen and (min-width: 1200px) {
    .table-wrap {
        flex-direction: row;
        flex-wrap: wrap;
        row-gap: var(--space-24-lg);
    }

    .table-section {
        width: calc((100% / 2) - 12px);
    }

    .table-wrap.type2 {
        flex-wrap: wrap;
    }

    .table-section.type2 {
        width: calc((100% / 2) - 16px);
    }
}

@media screen and (min-width: 1400px) {
    .table-wrap {
        column-gap: 80px;
    }

    .table-section {
        width: calc((100% / 2) - 40px);
    }

    .table-wrap.type2 {
        column-gap: 20px;
        flex-wrap: nowrap;
    }

    .table-section.type2 {
        width: calc((100% / 3) - 10px);
    }
}

.table-group.gray td.td-img {
    padding: 0;
}

.table-group.gray td.td-img img {
    height: 128px;
    width: 100%;
}

.greenery-img {
    background: url(../../images/new/09_04_09.png);
    background-size: cover;
    height: 128px;
    width: 100%;
}

.table-group.gray td.w-100 img {
    margin: 0 auto;
    max-width: 150px;
    width: 100%;
}

.table-group.gray td.logo-img.type1 img {
    width: 68px;
}

.table-group.gray td.logo-img.type2 img {
    width: 60px;
}

.table-group.gray td.logo-img.type3 img {
    width: 68px;
}

@media screen and (min-width: 1200px) {

    .table-group.gray td.logo-img,
    .table-group.gray td.w-100 {
        height: 128px;
    }


    .line-row-height {
        height: 130px !important;
    }
}

.building-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-16-sm);
}

.building-info ul {
    border-top: 1px solid var(--color-line);
    display: flex;
    flex-direction: column;
}

.building-info ul li {
    border-bottom: 1px solid var(--color-line);
    line-height: 1.5;
    padding: var(--space-12-xs) var(--space-16-sm);
}

@media screen and (min-width: 992px) {
    .building-info {
        flex-direction: row;
    }

    .building-info img {
        max-width: 180px;
    }

    .building-info ul {
        width: 100%;
    }
}

.table-group.blue {
    background: none !important;
}

.table-group.blue tr {
    border: 0;
}

.table-group.blue th {
    background: var(--color-primary);
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    border-radius: 0;
    color: var(--color-white);
    font-size: var(--font-14-xs);
    font-weight: var(--font-bold);
    height: max-content;
    padding: var(--space-12-xs) 0;
    text-align: center;
}

.table-group.blue td {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-line);
    font-size: var(--font-14-xs);
    line-height: 1.5;
    height: max-content;
    padding: var(--space-12-xs);
    text-align: center;
}

.table-group.blue td a {
    color: var(--color-primary);
    font-size: var(--font-14-xs);
    font-weight: var(--font-bold);
    text-decoration: underline;
}

.table-group.table-horizontal.blue td {
    padding: var(--space-12-xs) var(--space-20-md);
    text-align: left;
}

@media screen and (min-width: 1200px) {
    .table-group.blue tbody td {
        font-size: var(--font-15-sm);
    }

    .table-group.blue tbody td b {
        font-size: var(--font-15-sm);
    }

    .table-group.blue tbody td a {
        font-size: var(--font-15-sm);
    }
}

.map-modal {
    align-items: center;
    background: var(--color-white);
    display: flex;
    left: 0;
    height: 100%;
    justify-content: center;
    padding: var(--space-24-lg);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.map-modal .modal-close {
    border: 0;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

.map-modal img {
    height: 100%;
    width: 100%;
}

.none-scroll {
    overflow: hidden;
}

.building-schedule ul {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-16-sm);
    justify-content: center;
}

.building-schedule ul li {
    text-align: center;
    width: 100%;
}

.building-schedule ul li img {
    transform: rotate(90deg);
}

.building-schedule dl dt {
    background: var(--color-secondary-active);
    color: var(--color-white);
    font-size: var(--font-16-md);
    line-height: 1.5;
    padding: var(--space-12-xs) 0;
    text-align: center;
}

.building-schedule dl dd {
    border-bottom: 1px solid var(--color-secondary-active);
    color: var(--color-navyblack);
    font-size: var(--font-16-md);
    line-height: 1.5;
    padding: var(--space-12-xs) 0;
    text-align: center;
}

@media screen and (min-width: 992px) {
    .building-schedule ul {
        flex-direction: row;
    }

    .building-schedule ul li {
        width: max-content;
    }

    .building-schedule ul li:nth-child(1),
    .building-schedule ul li:nth-child(3),
    .building-schedule ul li:nth-child(5) {
        flex: 1;
    }

    .building-schedule ul li img {
        transform: rotate(0deg);
    }
}

.img-desc-text {
    display: flex;
    flex-direction: column;
    margin: var(--space-16-sm) 0 0 0;
}

.img-desc-text dl {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.img-desc-text dl dt {
    font-weight: var(--font-bold);
}

.img-desc-text dl dt,
.img-desc-text dl dd {
    color: var(--color-navyblack);
    font-size: var(--font-16-md);
}

.img-desc-text dl dd {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
}

.img-desc-text dl dd::after {
    content: '↓';
}

@media screen and (min-width: 768px) {
    .img-desc-text {
        bottom: 40px;
        flex-direction: row;
        justify-content: center;
        max-width: 812px;
        left: 50%;
        position: relative;
        transform: translateX(-50%);
        width: 100%;
    }

    .img-desc-text li {
        flex: 1;
    }

    .img-desc-text dl dd::after {
        display: none;
    }
}

.sky-box {
    align-items: center;
    background: var(--color-primary-bg);
    display: flex;
    flex-direction: column;
    gap: var(--space-20-md);
    padding: var(--space-24-lg) var(--space-16-sm);
}

.sky-box ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-20-md);
    width: 100%;
}

.sky-box ul li {
    display: flex;
    flex-direction: column;
    gap: var(--space-12-xs);
}

.sky-box dt {
    color: var(--color-navyblack);
    font-size: var(--font-15-sm);
    font-weight: var(--font-bold);
    line-height: 24px;
}

.sky-box dd {
    color: var(--color-navyblack);
    font-size: var(--font-14-xs);
    line-height: 20px;
    margin: 0 0 0 var(--space-12-xs);
    position: relative;
}

.sky-box dd::before {
    background: var(--color-navyblack);
    border-radius: 100px;
    content: '';
    display: inline-block;
    height: 3px;
    left: -8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
}

.schematics-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.schematics-group .sm-01 {
    display: flex;
    gap: 8px;
    position: relative;
}

.schematics-group .sm-01 .left {
    align-items: center;
    background: var(--color-primary);
    border-radius: 100px;
    color: var(--color-white);
    font-size: var(--font-12-min);
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    text-align: center;
    width: 60px;
}

.schematics-group .sm-01 .right {
    align-items: center;
    background: var(--color-primary-dark);
    border-radius: 30px;
    color: var(--color-white);
    display: flex;
    font-size: var(--font-12-min);
    height: 60px;
    line-height: 1.2;
    padding: 0 var(--space-20-md);
    position: relative;
    width: 100%;
}

.schematics-group .sm-01 .right::after {
    background: var(--color-primary-dark);
    content: '';
    display: inline-block;
    height: 1px;
    position: absolute;
    left: -8px;
    width: 8px;
}

@media screen and (min-width: 992px) {
    .table-wrap.type2 {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .table-section.type2 {
        width: calc((100% / 2) - 12px);
    }

    .sky-box {
        min-height: 400px;
    }
}

@media screen and (min-width: 1400px) {
    .table-wrap.type2 {
        flex-wrap: nowrap;
    }

    .table-section.type2 {
        width: calc((100% / 3) - 12px);
    }

    .schematics-group .sm-01 .right {
        padding: 0 var(--space-16-sm);
    }

}

.item-list-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item-list-info dl {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item-list-info dl dt {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--font-16-md);
    font-weight: var(--font-semibold);
    padding: var(--space-12-xs) 0;
    text-align: center;
}

.item-list-info dl dd {
    background: var(--color-primary-bg);
    color: var(--color-primary);
    font-size: var(--font-16-md);
    padding: var(--space-12-xs) var(--space-16-sm);
}

@media screen and (min-width: 992px) {
    .item-list-info dl {
        flex-direction: row;
    }

    .item-list-info dl dt {
        flex: 0 0 auto;
        width: 160px;
    }

    .item-list-info dl dd {
        width: 100%;
    }
}

.table-group.table-data {
    margin: 0 !important;
}

.table-group.table-data thead th {
    border: 1px solid var(--color-line);
}

.table-group.table-data tbody td {
    border: 1px solid var(--color-line);
    padding: var(--space-12-xs) var(--space-4-min);
}

.table-scroll {
    overflow-x: scroll;
    width: 100%;
}

.table-scroll::-webkit-scrollbar {
    background: none;
    height: 8px;
}

.table-scroll::-webkit-scrollbar-thumb {
    background: var(--color-line);
}

.building-schedule.blue {
    background: none !important;
}

.building-schedule.blue dl dt {
    background: var(--color-primary);
}

.building-schedule.blue dl dd {
    border-bottom: 1px solid var(--color-primary);
}

@media screen and (min-width: 992px) {

    .building-schedule.blue ul li:nth-child(1),
    .building-schedule.blue ul li:nth-child(3),
    .building-schedule.blue ul li:nth-child(5),
    .building-schedule.blue ul li:nth-child(7),
    .building-schedule.blue ul li:nth-child(9) {
        flex: 1;
    }

    .building-schedule.blue dt {
        align-items: center;
        display: flex;
        font-size: var(--font-14-xs);
        height: 88px;
        justify-content: center;
    }

    .building-schedule.blue dd {
        align-items: center;
        display: flex;
        font-size: var(--font-14-xs);
        height: 144px;
        justify-content: center;
    }
}

@media screen and (min-width: 1400px) {
    .building-schedule.blue dt {
        font-size: var(--font-16-md);
        height: 70px;
    }

    .building-schedule.blue dd {
        font-size: var(--font-16-md);
    }
}

.purpose-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-8-xxs);
}

.purpose-list li {
    background: var(--color-bg-light);
    border-radius: 100px;
    font-size: var(--font-16-md);
    padding: var(--space-12-xs) 0;
    text-align: center;
}

@media screen and (min-width: 992px) {
    .purpose-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .purpose-list li {
        width: calc((100% / 2) - var(--space-4-min));
    }

    .purpose-list li.w-100 {
        width: 100%;
    }
}

.road-map {
    display: flex;
    flex-direction: column;
    gap: var(--space-16-sm);
}

.road-map dl {
    display: flex;
    flex-direction: column;
    gap: var(--space-4-min);
}

.road-map dt {
    border-radius: 100px;
    color: var(--color-white);
    font-size: var(--font-16-md);
    padding: var(--space-12-xs) 0;
    text-align: center;
}

.road-map dd {
    background: var(--color-bg-light);
    border-radius: 100px;
    font-size: var(--font-16-md);
    padding: var(--space-12-xs) var(--space-20-md);
}

.road-map li:nth-child(1) dt {
    background: var(--color-primary-400);
}

.road-map li:nth-child(2) dt {
    background: var(--color-primary-500);
}

.road-map li:nth-child(3) dt {
    background: var(--color-primary-600);
}

.road-map li:nth-child(4) dt {
    background: var(--color-primary);
}

@media screen and (min-width: 992px) {
    .road-map {
        gap: var(--space-8-xxs);
    }

    .road-map dl {
        flex-direction: row;
        gap: var(--space-16-sm);
    }

    .road-map dt {
        flex: 0 0 auto;
        position: relative;
        width: 160px;
    }

    .road-map dt::after {
        background: var(--color-primary);
        bottom: -8px;
        content: '';
        display: inline-block;
        height: 8px;
        left: 50%;
        position: absolute;
        transform: translateX(-50%);
        width: 1px;
    }

    .road-map li:last-child dt::after {
        display: none;
    }

    .road-map dd {
        width: 100%;
    }
}

.dev-plans {
    display: flex;
    flex-direction: column;
    gap: var(--space-16-sm);
}

.dev-plans dl {
    display: flex;
    flex-direction: column;
    gap: var(--space-4-min);
}

.dev-plans dt {
    background: var(--color-primary-400);
    border-radius: 100px;
    color: var(--color-white);
    font-size: var(--font-16-md);
    padding: var(--space-12-xs) 0;
    text-align: center;
}

.dev-plans dd {
    background: var(--color-bg-light);
    border-radius: 100px;
    font-size: var(--font-16-md);
    padding: var(--space-12-xs) var(--space-20-md);
}

@media screen and (min-width: 992px) {
    .dev-plans {
        gap: var(--space-8-xxs);
    }

    .dev-plans dl {
        flex-direction: row;
        gap: var(--space-16-sm);
    }

    .dev-plans dt {
        flex: 0 0 auto;
        position: relative;
        width: 160px;
    }

    .dev-plans dd {
        width: 100%;
    }
}

.dev-plans-detail {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-12-xs);
    justify-content: center;
    margin: var(--space-40-xxl) 0 0 0;
}

.dev-plans-detail dl {
    width: 100%;
}

.dev-plans-detail dl dt {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--font-16-md);
    padding: var(--space-12-xs) 0;
    text-align: center;
}

.dev-plans-detail dl dd {
    background: var(--color-primary-bg);
    border-bottom: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-size: var(--font-16-md);
    font-weight: var(--font-semibold);
    padding: var(--space-16-sm) var(--space-12-xs);
    text-align: center;
}

.dev-plans-detail dl dd:last-child {
    background: none;
}

.dev-plans-detail dl dd ul {
    color: var(--color-navyblack);
    font-size: var(--font-15-sm);
    font-weight: 500;
    list-style: disc;
    padding: 0 0 0 var(--space-20-md);
    text-align: left;
}

.dev-plans-detail dl dd ul li {
    list-style: disc;
}

.dev-plans-detail span {
    color: var(--color-primary);
    font-size: var(--font-16-md);
}

@media screen and (min-width: 992px) {
    .dev-plans-detail {
        flex-direction: row;
    }

    .dev-plans-detail dl dd {
        font-size: var(--font-13-xxs);
    }

    .dev-plans-detail dl dd ul {
        font-size: var(--font-13-xxs);
    }
}

@media screen and (min-width: 1400px) {
    .dev-plans-detail dl dd {
        font-size: var(--font-16-md);
    }

    .dev-plans-detail dl dd ul {
        font-size: var(--font-15-sm);
    }
}

.market-status .chulha_process .step1 a {
    color: #FFFEE2;
}

.row-margin {
    display: flex;
    flex-wrap: wrap;
    margin: -4px;
}

.row-margin .col {
    float: unset;
}

.row-margin>div {
    padding: 4px;
}

.img-title {
    background: var(--color-primary);
    margin: 0 0 var(--space-8-xxs);
    padding: var(--space-8-xxs) 0;
}

.img-title h6 {
    color: var(--color-white);
    font-size: var(--font-16-md);
    text-align: center;
}

.img-desc {
    align-items: flex-start;
    display: flex;
    gap: var(--space-8-xxs);
    margin: var(--space-20-md) 0 0 0;
}

.img-desc li {
    color: var(--color-navyblack);
    text-align: center;
    width: calc(100% / 3);
}

.img-desc li span {
    color: #73BF43;
}

.eco-step {
    display: flex;
    flex-direction: column;
    gap: var(--space-20-md);
}

.eco-step .step-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-8-xxs);
}

.eco-step .one {
    align-items: center;
    background: #FF8201;
    border-radius: var(--radius-8-md);
    color: var(--color-white);
    display: flex;
    font-size: var(--font-18-lg);
    justify-content: center;
    padding: var(--space-32-xl) 0;
    width: 100%;
}

.eco-step .two-group {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: var(--space-12-xs);
    width: 100%;
}

.eco-step .two-row-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-8-xxs);
    width: 100%;
}

.eco-step .two {
    align-items: center;
    border: 1px solid #FF8201;
    border-radius: var(--radius-8-md);
    color: var(--color-navyblack);
    font-size: var(--font-16-md);
    display: flex;
    justify-content: center;
    padding: var(--space-20-md) 0;
    text-align: center;
    width: 100%;
}

.eco-step .three-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-8-xxs);
    width: 100%;
}

.eco-step .three {
    align-items: center;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-8-md);
    display: flex;
    flex-direction: column;
    padding: var(--space-8-xxs);
    width: 100%;
}

.eco-step .three dt {
    background: #FFF4EA;
    border-radius: var(--radius-8-md);
    color: #FF8201;
    padding: var(--space-16-sm) 0;
    text-align: center;
    width: 100%;
}

.eco-step .three dd {
    padding: var(--space-12-xs);
}

.eco-step .four {
    align-items: center;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-8-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-16-sm);
    width: 100%;
}

.eco-step span {
    align-items: center;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.eco-step span::before {
    background: url(../../images/new/i-step-right.svg);
    content: '';
    display: inline-block;
    height: 20px;
    transform: rotate(90deg);
    width: 20px;
}

@media screen and (min-width: 1200px) {
    .eco-step .step-group {
        flex-direction: row;
    }

    .eco-step .one {
        flex: 0 0 auto;
        width: 120px;
    }

    .eco-step .two-row-group {
        flex-direction: row;
    }

    .eco-step .two {
        flex: 0 0 auto;
        width: 120px;
    }

    .eco-step .three-group {
        flex-direction: row;
    }

    .eco-step .four {
        flex: 0 0 auto;
        height: 100%;
        width: 100px;
    }

    .eco-step span::before {
        transform: rotate(0deg);
    }
}

.system-schematic {
    display: flex;
    flex-direction: column;
    gap: var(--space-20-md);
}

.system-top .title {
    background: linear-gradient(90deg, #2F5BC1 0%, #0584BF 100%);
    border-radius: 100px;
    color: var(--color-white);
    font-size: var(--font-20-xl);
    font-weight: var(--font-bold);
    padding: var(--space-8-xxs);
    text-align: center;
}

.system-schematic .system-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-8-xxs);
    width: 100%;
}

.system-schematic .system-group .left {
    border: 1px solid var(--color-primary);
    background: var(--color-primary-bg);
    border-radius: var(--radius-8-md);
    font-size: var(--font-18-lg);
    font-weight: var(--font-semibold);
    text-align: center;
    padding: var(--space-16-sm);
}

.system-schematic br.pc {
    display: none;
}

.system-schematic .system-group .right {
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-8-md);
    color: var(--color-navyblack);
    font-size: var(--font-18-lg);
    font-weight: var(--font-semibold);
    padding: var(--space-12-xs);
    text-align: center;
}

.system-schematic .system-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-16-sm);
}

.system-schematic .right-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-8-xxs);
    width: 100%;
}

.system-schematic .right-group dl {
    display: flex;
    flex-direction: column;
    gap: var(--space-8-xxs);
    width: 100%;
}

.system-schematic .right-group dt {
    background: var(--color-primary);
    border-radius: var(--radius-8-md);
    color: var(--color-white);
    font-size: var(--font-16-md);
    font-weight: var(--font-semibold);
    padding: var(--space-12-xs);
    text-align: center;
}

.system-schematic .right-group dt.point {
    background: var(--color-primary-dark);
}

.system-schematic .right-group dd {
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-8-md);
    padding: var(--space-12-xs);
}

.system-schematic .right-group h3 {
    color: var(--color-primary-dark);
    font-size: var(--font-18-lg);
    font-weight: var(--font-semibold);
    margin: 0 0 var(--space-8-xxs) 0;
    text-align: center;
}

.system-schematic .right-group ul {
    list-style: disc;
    padding: 0 0 0 var(--space-20-md);
}

.system-schematic .right-group ul li {
    color: var(--color-navyblack);
    font-size: var(--font-16-md);
    line-height: 24px;
    list-style: disc;
}

@media screen and (min-width: 992px) {
    .system-top .title {
        padding: var(--space-16-sm) 0;
    }

    .system-schematic .system-group {
        flex-direction: row;
    }

    .system-schematic .system-group .left {
        align-items: center;
        flex: 0 0 auto;
        display: flex;
        justify-content: center;
        width: 120px;
    }

    .system-schematic .system-group .right {
        padding: var(--space-16-sm);
        width: 100%;
    }

    .system-schematic .right-group {
        flex-direction: row;
    }

    .system-schematic .right-group dd {
        height: 100%;
    }
}

.quick-wrap .floating .floating_area {
    width: 75%;
}

.floating_area .quick_btn_wrap {
    display: none;
}

@media screen and (max-width: 1024px) {
    .floating_area .quick_btn_wrap {
        display: block !important;
    }
}

@media screen and (max-width: 1024px) {
    .quick-wrap .floating .pagetop img {
        width: 35px;
        height: 35px
    }

    .floating_area .quick_btn_wrap {
        display: inline-block;
        margin-left: 5px
    }

    .quick-wrap .floating .floating_area {
        width: auto;
    }

    .quick_bg {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(26, 37, 33, 0.9);
        z-index: 10;
    }

    .all_fixed .quick_bg {
        display: block
    }

    .floating_area .quick_btn {
        display: block;
        width: 35px;
        height: 35px;
        background: url("../../images/quick_btn_bg.png") no-repeat;
        text-indent: -9999px
    }

    .floating_area .quick_clse_btn {
        display: none;
        width: 35px;
        height: 35px;
        background: url("../../images/quick_clse_btn.png") no-repeat;
        text-indent: -9999px
    }

    .quick_btn_wrap.active {}

    .quick_btn_wrap.active .quick_btn {
        display: none;
    }

    .quick_btn_wrap.active .quick_clse_btn {
        display: block;
    }

    body.all_fixed {
        overflow: hidden;
    }

    .all_fixed .quick-wrap .quick-link {
        display: block;
        width: auto !important;
        border-radius: 0
    }

    .quick-wrap {
        position: absolute;
        right: 15px !important;
        /*top: 13% !important;*/
        width: 120px !important;
        z-index: 20;
    }

    .quick-wrap .quick-link .center li:last-child {
        border-bottom: 1px solid #D4D4D4;
    }

    .quick-wrap .quick-link .center li a {
        padding: .5rem 1rem;
        font-size: 12px;
        color: #fff
    }

    .quick-wrap .quick-link .top {
        padding: .5rem 1.5rem;
    }

    .plan_lst {
        display: block;
    }

    .plan_lst>li:last-child {
        margin-top: 3rem
    }

    .plan_lst>li:last-child:before {
        top: -45px;
        left: 50%;
        transform: rotate(90deg);
        margin-left: -22px;
    }

    .digitalm .sec_02 dl::after {
        content: '';
        top: auto !important;
        left: 50%;
        bottom: -36px;
        transform: rotate(90deg);
        margin-left: -22px;
    }

    table {
        table-layout: auto;
    }

    td,
    th {
        font-size: 1rem
    }

    .sidenav .m-gnb-wrap .lan-group {
        z-index: 1;
        display: none;
        position: fixed;
        top: 5.5rem;
        background: rgb(255, 255, 255);
        position: absolute;
        border-radius: 0.5rem;
        overflow: hidden;
        border: 2px solid #EAEAEA;
    }

    .sidenav .m-gnb-wrap .etc-sch {
        position: relative;
        margin: 0 1.25rem 1.5rem 1.25rem;
    }

    .sidenav .m-gnb-wrap .etc-sch .form-control {
        border-radius: 0.5rem;
        padding-right: 50px;
    }

    .sidenav .m-gnb-wrap .etc-sch .ico-sch {
        position: absolute;
        right: 1rem;
        top: 0.8rem;
    }

    .sidenav .m-gnb-wrap .etc-sch .ico-sch>.sr-only {
        width: 1.25rem;
        height: 1.25rem;
        content: url(../../images/icon_common_live\ area.svg);
    }

    .sidenav .m-gnb-wrap .trigger-lan {
        border: 2px solid #EAEAEA;
        border-radius: 0.5rem;
        padding: 0 1rem !important;
        font-size: 1rem;
    }

    .sidenav .m-gnb-wrap .m-gnb-top-etc {
        padding: 1.25rem 1.5rem;
    }

    .sidenav .m-gnb-wrap .m-gnb-menu {
        border-top: 1px solid #D8D8D8;
    }

    .sidenav .m-gnb-wrap button:active,
    .sidenav .m-gnb-wrap button:hover,
    .sidenav .m-gnb-wrap button:focus {
        background: none;
    }

    .garak-search .floor_view_tab {
        display: none
    }

    .input-field.type_02 .select-wrapper .caret {
        top: 0.5rem;
    }

}

@media screen and (min-width: 992px) {
    .map_box_area {
        height: 450px;
    }
}

@media screen and (min-width: 768px) {
    .map_box_area {
        height: 380px;
    }
}

@media screen and (max-width: 760px) {
    .market-safety .img_con .img_center {
        display: block;
        text-align: center
    }

    .sub_tit_box .txt1.txt1_v2 {
        padding-left: 0 !important;
        text-align: left
    }
}

@media screen and (max-width: 720px) {
    .img_box_pcs2 img {
        width: 100%;
        margin-right: 0;
    }
}

@media screen and (max-width: 530px) {
    .map .sec_01 .call-wrap .btn_lst {
        display: flex;
        flex-direction: column;
    }

    .map .sec_01 .call-wrap .btn_lst a:first-child {
        margin-bottom: 5px;
    }
}


@media screen and (max-width: 500px) {
    .company_history .history_wrap .his_pager .txt_box {
        flex-wrap: wrap;
    }

    .company_history .history_wrap .list li .month {
        width: 100% !important;
    }
}

@media screen and (max-width: 430px) {
    .collapsible-body {
        overflow-x: auto
    }

    .map_box_area {
        height: 120px;
    }

    .market-corp .mk_tit_con>a:first-of-type {
        font-size: 16px;
    }
}

@media screen and (max-width: 430px) {
    .block_360 {
        display: block
    }
}