.sectionTop, .sectionBottom {
    display:flex;
    gap:50px;
}

.sectionTop {
    padding:100px 0 130px;
}

main h2 {
    font-size:24px;
    font-weight:500;
    width:100%;
    padding-bottom:14px;
    border-bottom:2px dashed #dbdbdb;
    margin-bottom:30px;
}

.notice {
    width:calc(55% - 25px);
}

.noticeTable {
    width:100%;
    margin-bottom:10px;
}

.noticeTable .tr {
    display:grid;
    grid-template-columns: 70px 1fr;
}

main .center {
    text-align:center;
}

.noticeTable .gray {
    color:#7a7a7a;
}

.noticeTable .th {
    height:40px;
    background:#2c2e83;
    color:#fff;
    line-height:40px;
}

.noticeTable .td {
    height:50px;
    line-height:50px;
    border-bottom: 1px solid #CBCBCB;
}

.noticeTable .tr:last-of-type .td {
    border-bottom: 1px solid #767676;
}

.notice .more {
    display:block;
    width:100%;
    text-align:right;
}

.faq {
    width:calc(45% - 25px);
}

.faqTable .tr {
    display:grid;
    grid-template-columns: 50px 1fr;
    border-top: 1px solid #767676;
    height:50px;
    line-height:50px;
}

.faqTable .tr:last-child {
    border-bottom:1px solid #767676;
}

.tabBox {
    width:865px;
}

.tabMenu {
    display:flex;
    gap:145px;
    border:1px solid #e3e3e3;
    width:100%;
    height:50px;
    line-height:50px;
    padding:0 56px;
    background:#f8f8f8;
}

.tabMenu li {
    color:#cbcbcb;
    font-size:20px;
    font-weight:500;
    position:relative;
    cursor:pointer;
}

.tabMenu li.on {
    color:#333;
}

.tabMenu li:after {
    content:'';
    position:absolute;
    display:block;
    width:1px;
    height:30px;
    background:#686868;
    top:50%;
    transform:translateY(-50%);
    right:-72px;
}

.tabMenu li:last-child:after {
    display:none;
}

.tabContents {
    width:100%;
    height:auto;
    border:1px solid #e3e3e3;
    border-top:0;
    background:#fff;
}

.content0 {
    display:flex;
    gap:20px;
    padding:40px 16px 60px;
}

#map {
    width:330px;
    height:330px;
}

.side li {
    margin-bottom:40px;
    font-size:14px;
}

.side li span {
    display:inline-block;
    width:90px;
    padding-left:14px;
    position:relative;
    font-size:16px;
    font-weight:500;
}

.side li span:before {
    content:'';
    display:block;
    position:absolute;
    width:4px;
    height:4px;
    border-radius:50%;
    background:#333;
    top:50%;
    left:0;
    transform:translateY(-50%);
}

.road {
    display:flex;
}

.road .img {
    width:100px;
    height:100px;
}

.road p {
    text-align:center;
    font-size:15px;
}

.subway, .bus {
    width:50%;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
}

.content1 {
    padding:40px 36px 60px;
    flex-direction:column;
}

.content1 p {
    font-size:20px;
    font-weight:500;
    margin-bottom:20px;
}

.content1 .title {
    font-size:24px;
    color:#2c2e83;
    margin-bottom:36px;
}

.content1 {
    display:none;
}

.information {
    width:calc(100% - 915px);
    height:auto;
    border:1px solid #e3e3e3;
    padding:38px 28px;
    background:#fff;
}

.information .title {
    padding:10px 26px;
    color:#fff;
    font-size:22px;
    font-weight:500;
    margin-bottom:30px;
    display:inline-block;
}

.time .title {
    background:#95C11E;
}

.counseling .title {
    background:#2c2e83;
}

.information li {
    position:relative;
    font-size:18px;
    padding-left:24px;
    margin-bottom:6px;
}

.information li:before {
    content:'';
    display:block;
    position:absolute;
    width:4px;
    height:4px;
    border-radius:50%;
    background:#333;
    top:50%;
    left:10px;
    transform:translateY(-50%);
}

.counseling {
    margin-top:64px;
}

.td, .th {
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
}


@media all and (max-width:1299px) {
    .sectionTop, .sectionBottom {
        flex-direction:column;
    }

    .notice, .faq, .tabBox, .information {
        width:100%;
    }
}

@media all and (max-width:881px) {
    .content0, .road {
        flex-direction:column;
        align-items:center;
    }

    .road {
        padding:30px 0;
        gap:30px;
    }

    .side li {
        margin-bottom:12px;
    }

    .subway, .bus {
        width:100%;
    }

    .tabMenu li {
        font-size:16px;
    }
}

@media all and (max-width:720px) {
    .sectionTop {
        padding:40px 0 60px;
    }
}

@media all and (max-width:684px) {
    .tabMenu {
        gap:130px;
        padding:0;
        justify-content:center;
    }

    .tabMenu li:after {
        right:-65px;
        height:14px;
        transform:translateY(0);
        top:18px;
    }

    main h2 {
        font-size:20px;
    }

    .sectionTop .th, .sectionTop .td, .notice .more, .tabMenu li {
        font-size:14px;
    }

    .side li {
        font-size:13px;
        display:grid;
        grid-template-columns: 100px 1fr;
    }

    .side li span {
        font-size:15px;
    }

    .side li span:before {
        top:10px;
        transform:translateY(0);
    }

    .content1 p {
        font-size:14px;
    }
    
    .content1 .title {
        font-size:18px;
    }
}

@media all and (max-width:592px) {
    .tabMenu {
        gap:100px;
    }

    .tabMenu li:after {
        right:-50px;
    }
}

@media all and (max-width:496px) {
    .tabMenu {
        gap:70px;
    }

    .tabMenu li:after {
        right:-35px;
    }
}

@media all and (max-width:410px) {
    #map {
        width:90vw;
        height:90vw;
    }

    .tabMenu {
        gap:50px;
    }

    .tabMenu li:after {
        right:-25px;
    }
}

@media all and (max-width:359px) {
    .tabMenu li {
        font-size:12px;
    }
}

@media all and (max-width:339px) {
    .tabMenu {
        gap:40px;
    }

    .tabMenu li:after {
        right:-20px;
    }
}