header {
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: sticky;
    top: 0;
    padding: 0 1.5rem;
    z-index: 7777;
    background: #fff;
}
header h1 {
    width: 15rem;
}
header h1 a {
    width: 100%;
}
header h1 a img {
    width: 100%;
}
header #menuBtn {
    width: 2rem;
    position: absolute;
    right: 1.5rem;
}
header #menuBtn img {
    width: 100%;
}
header #backBtn {
    width: 3rem;
    position: absolute;
    left: 1.5rem;
}
header #backBtn img {
    width: 100%;
}

.bannerImg {
    width: 100%;
    padding: 1.5rem 0;
}
.bannerImg a {
    width: 100%;
}
.bannerImg a img {
    width: 100%;
}

.navBg {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 8888;
}
nav {
    background-color: #fff;
    display: flex;
    flex-flow: column nowrap;
    height: 100%;
    width: 70%;
    position: fixed;
    overflow-y: auto;
    bottom: 0;
    right: 0;
    z-index: 9999;
    padding: 6rem 1.5rem 0;
}
nav button {
    width: 2rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}
nav button img {
    width: 100%;
}
nav h2 {
    font-size: 1.6rem;
    font-weight: 800;
    padding: 3rem 0;
}
nav > a {
    font-size: 1.6rem;
    font-weight: 800;
    padding: 2rem 0;
}
nav .sub {
    display: flex;
    flex-flow: column nowrap;
}
nav .sub a {
    font-size: 1.4rem;
    padding: 1.5rem 0 1.5rem 3rem;
    position: relative;
}
nav .sub a:last-child::after {
    top: 1rem;
    height: 2.1rem;
}
nav .sub a::before {
    content: '';
    width: 2rem;
    height: 0.1rem;
    background: #333;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
nav .sub a::after {
    content: '';
    width: 0.1rem;
    height: 4.4rem;
    background: #333;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
main {
    padding-top: 2.5rem;
    padding-bottom: 6rem;
}
/* 검색 */

/* 지역센터 */

main > h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
}
main #regionFrm {
    padding: 0 1.5rem 3rem;

}
main #regionFrm select {
    border: none;
    font-size: 1.4rem;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    width: 100%;
    margin-bottom: 3rem;
    background-image: url(../img/arrow-7.png);
    background-repeat: no-repeat;
    background-size: 1.5rem;
    background-position: right 1.5rem center;
}
main #regionFrm select option {
    font-size: 1.4rem;
}
main #regionFrm button {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 800;
    padding: 2rem 0;
    border-radius: 1rem;
    background: #5E7BE3;
    width: 100%;
}
main .center {
    padding: 3rem 1.5rem;
}
main .center h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f5eae;
    background: #e1f1ff;
    width: max-content;
    padding: 1.5rem 3rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

main .center table tr th {
    font-size: 1.4rem;
    width: 25%;
    text-align: left;
    color: #545454;
}
main .center table tr td {
    font-size: 1.4rem;
    width: 75%;
    padding: 1rem 0;
    font-weight: 800;
    line-height: 1.4;
}
main .center table tr #map {
    height: 20rem;
}

/* 질문 */
main .qna {

}
main .qna .open {

}
main .qna .open h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    font-weight: 800;
    padding: 2rem 1.5rem;
    line-height: 1.4;
    background: #F6F8FA;
    border-radius: 1rem 1rem 0 0;
}
main .qna .open h3 img {
    width: 1.5rem;
}
main .qna .open pre {
    font-size: 1.4rem;
    line-height: 1.4;
    padding: 2rem 1.5rem;
}

/* 뉴스 */
.news_page {

}
.news_page h2 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 2rem;
}
.news_page .news {
    display: flex;
    flex-flow: column nowrap;
}
.news_page .news a {
    padding: 0 0 2rem 0;
    display: flex;
    gap: 1.5rem;
}
.news_page .news a:last-child {
    border: none;
}
.news_page .news a .image {
    width: 45%;
    height: 12rem;
    overflow: hidden;
}
.news_page .news a .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news_page .news a .text {
    width: 60%;
    position: relative;
}
.news_page .news a .text h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.4;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news_page .news a .text p {
    font-size: 1.2rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    gap: 0.5rem;
    word-break: break-word;
}
.news_page .news a .text p img {
    width: 1rem;
}
.news_page .news a .text .bottom {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
}

/* 서브 */
main > h2 span {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f5eae;
}
main > h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1662b0;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
}
main > h3.black {
    color: #333;
}
main > pre {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 4rem;
    padding: 0 1.5rem;
}
main > img {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 4rem;
}
main .stepSwiper {
    height: max-content;
    overflow: hidden;
    padding: 1rem 1.5rem 2rem;
}
main .stepSwiper .swiper-slide {
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
}
main .stepSwiper .swiper-slide .image {
    border-radius: 1rem;
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.2);
    height: 10rem;
    overflow: hidden;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}
main .stepSwiper .swiper-slide .image span {
    color: #fff;
    font-size: 1.4rem;
    padding: 0.8rem 0;
    background: #1662b0;
    width: 100%;
    text-align: center;
}
main .stepSwiper .swiper-slide .image img {
    height: 50%;
    margin-top: 1rem;
}
main .stepSwiper .swiper-slide h4 {
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.4;
}
main .toggle {
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
    padding: 0 1.5rem;
}
main .toggle .open {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #9c9c9c;
}
main .toggle .open h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    font-weight: 800;
    padding: 2rem 1.5rem;
    line-height: 1.4;
}
main .toggle .open h4 img {
    width: 1.5rem;
}
main .toggle .open pre {
    font-size: 1.4rem;
    line-height: 1.7;
    padding: 2rem 1.5rem;
    background: #e1f1ff;
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.1);
    color: #626263;
}
main .toggle .open pre b {
    font-size: 1.4rem;
    font-weight: 600;
}
main .useSwiper {
    height: max-content;
    overflow: hidden;
    padding: 0.5rem 0 8rem;
    margin: 0 1.5rem;
}
main .useSwiper .swiper-pagination {
    bottom: 4.5rem;
}
main .useSwiper .swiper-pagination .swiper-pagination-bullet {
    width: 1.5rem;
    height: 1.5rem;
    background: #e8e8e8;
    opacity: 1;
}
main .useSwiper .swiper-pagination .swiper-pagination-bullet-active {
    width: 3rem;
    border-radius: 5rem;
    background: #1662b0;
}
main .useSwiper .swiper-slide {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
}
main .useSwiper .swiper-slide h4 {
    padding: 2rem 0;
    color: #fff;
    font-size: 1.6rem;
    background: #1662b0;
    text-align: center;
}
main .useSwiper .swiper-slide .bottom {
    padding: 1.5rem 0;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}
main .useSwiper .swiper-slide .bottom img {
    height: 6rem;
}
main .useSwiper .swiper-slide .bottom span {
    font-size: 1.4rem;
}
main .category {
    display: flex;
    gap: 1rem;
    padding: 0 1.5rem;
    margin-bottom: 3rem;
}
main .category a {
    width: calc(100% / 3);
    padding: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 1rem;
    border: 1px solid #9f9f9f;
    text-align: center;
}
main .category a.on {
    background: #e1f1ff;
    border: 1px solid #e1f1ff;
    color: #1662b0;
}
main .threeContent {
    padding: 0 1.5rem;
}
main .threeContent h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1662b0;
}
main .threeContent pre {
    font-size: 1.4rem;
    line-height: 1.4;
}
main .threeContent pre b {
    font-size: 1.4rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}
main .grayBar {
    width: 100%;
    height: 0.5rem;
    background: #e8e8e8;
    margin-bottom: 4rem;
}


/* footer */
footer {
    background: #7f7f7fb7;
    padding: 2rem 1.5rem;
}
footer .name {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}
footer address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}
footer .num {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    text-align: center;
}
