header {
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    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 #backBtn {
    width: 2.5rem;
    position: absolute;
    right: 1.5rem;
}
header #backBtn img {
    width: 100%;
}

main {
    padding: 1rem 1.5rem 10rem;
}
main > h2 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 1rem;
}
main .weekWrap {
    padding-bottom: 2rem;
}
main .weekWrap h2 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
main .weekWrap h2 a {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #5f5f5f;
}
main .weekWrap h2 a img {
    width: 1.5rem;
}
main .weekWrap .week {
    height: 10rem;
    padding: 1rem;
    display: flex;
    border-radius: 1rem;
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.2);
}
main .weekWrap .week .day {
    width: calc(100% / 7);
    border-radius: 1rem;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding-top: 1.5rem;
    position: relative;
}
main .weekWrap .week .day.today {
    background: #ededed;
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.2);
}
main .weekWrap .week .day em {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
main .weekWrap .week .day span {
    font-size: 1.4rem;
    font-weight: 800;
}
main .weekWrap .week .day strong {
    font-size: 1.4rem;
    border-bottom: 1px solid #00cba8;
    color: #00cba8;
    font-weight: 600;
    width: max-content;
    position: absolute;
    bottom: 1rem;
}
main .menuWrap {
    padding: 2rem 0;
}
main .menuWrap h2 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 1rem;
}
main .menuWrap .top {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
main .menuWrap .top a {
    width: 50%;
    position: relative;
}
main .menuWrap .top a img {
    width: 100%;
}
main .menuWrap .top a .text {
    position: absolute;
    top: 2rem;
    left: 1.5rem;
}
main .menuWrap .top a .text p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}
main .menuWrap .top a .text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}
main .menuWrap .bottom {
    display: flex;
    flex-flow: column nowrap;
    gap: 1.5rem;
}
main .menuWrap .bottom a {
    width: 100%;
    height: 50%;
    position: relative;
}
main .menuWrap .bottom a img {
    width: 100%;
}
main .menuWrap .bottom a .text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 2rem;
}
main .menuWrap .bottom a:nth-of-type(1) .text p,
main .menuWrap .bottom a:nth-of-type(1) .text h3 {
    color: #333;
}
main .menuWrap .bottom a .text p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}
main .menuWrap .bottom a .text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}
main .menu2Wrap {
    display: flex;
    gap: 1.5rem;
    padding-top: 2rem;
}
main .menu2Wrap a {
    width: 50%;
    position: relative;
}
main .menu2Wrap a img {
    width: 100%;
}
main .menu2Wrap a .text {
    position: absolute;
    top: 2rem;
    left: 2rem;
}
main .menu2Wrap a .text p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
main .menu2Wrap a .text h3 {
    font-size: 1.6rem;
    font-weight: 800;
}

/* 리스트 */
main #filterFrm {
    display: flex;
    gap: 1rem;
    height: 4rem;
    margin-bottom: 3rem;
}
main #filterFrm select {
    width: 40%;
    background-color: #ededed;
    background-image: url(../img/arrow-4.png);
    background-position: right 1.5rem center;
    background-size: 1.5rem;
    background-repeat: no-repeat;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 1rem;
    padding: 0 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}
main #filterFrm select option {
    font-size: 1.4rem;
    font-weight: 600;
}
main #filterFrm input {
    font-size: 1.4rem;
    font-weight: 600;
    width: 60%;
    background-color: #ededed;
    background-image: url(../img/arrow-4.png);
    background-position: right 1.5rem center;
    background-size: 1.5rem;
    background-repeat: no-repeat;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 1rem;
    padding: 0 1.5rem;
}
main #filterFrm #userSearch {
    background-image: none;
}
.result {
    display: flex;
    flex-flow: column nowrap;
}
.result a {
    padding: 1.5rem 0;
    border-bottom: 1px solid #c4c4c4;
}
.result a:last-child {
    border: none;
}
.result a .typeScrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.result a .typeScrap .type {
    display: flex;
    gap: 0.5rem;
}
.result a .typeScrap .type span {
    border-radius: 1rem;
    font-size: 1.4rem;
    padding: 0.8rem 1.5rem;
    background: #d9e5ff;
    color: #3b7cff;
}
.result a .typeScrap .type span.blue {
    background: #d9e5ff;
    color: #3b7cff;
}
.result a .typeScrap .type span.red {
    background: #ffeded;
    color: #ff5a5a;
}
.result a .typeScrap .type span.yellow {
    background: #fbfae3;
    color: #e7d265;
}
.result a .typeScrap .type span.green {
    background: #edfff3;
    color: #01caa6;
}
.result a .typeScrap .type span.brown {
    background: #ffebfc;
    color: #f43dd1;
}
.result a .typeScrap .type span.AIS_TP_CD_NM {
    background: #ededed;
    color: #333;
}
.result a .typeScrap button {
    width: 2rem;
}
.result a .typeScrap button img {
    width: 100%;
}
.result a h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.result a .dateRegion {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.result a .dateRegion .date {
    font-size: 1.4rem;
    color: #606060;
}
.result a .dateRegion .date span {
    font-size: 1.4rem;
    color: #606060;
}
.result a .dateRegion p {
    font-size: 1.4rem;
    color: #606060;
}
main .pagination {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}
main .pagination a {
    font-size: 1.4rem;
    font-weight: 600;
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
}
main .pagination span {
    font-size: 1.4rem;
    font-weight: 600;
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    background: #00cba8;
    color: #fff;
}
main .pagination a img {
    width: 30%;
}

/* 달력 */
#noticeBg {
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    z-index: 9999;
}
#noticeBg .notice {
    border-radius: 1rem;
    overflow: hidden;
    width: calc(100% - 3rem);
}
#noticeBg .notice .top {
    background-color: #00cba8;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#noticeBg .notice .top h2 {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 600;
}
#noticeBg .notice .top h2 span {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 600;
}
#noticeBg .notice .top button {
    width: 2.5rem;
}
#noticeBg .notice .top button img {
    width: 100%;
}
#noticeBg .notice .result {
    background: #fff;
    height: 30rem;
    overflow-y: auto;
    position: relative;
}
#noticeBg .notice .result > p {
    font-size: 1.4rem;
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#noticeBg .notice .result a {
    padding: 1.5rem;
}
main .calendarWrap {
    border-radius: 1rem;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 4rem;
}
main .calendarWrap .date {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 1.5rem 0;
    background: #00cba8;
}
main .calendarWrap .date button {
    width: 2.5rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
main .calendarWrap .date #prevMonth {
    left: 1.5rem;
}
main .calendarWrap .date #nextMonth {
    right: 1.5rem;
}
main .calendarWrap .date button img {
    width: 100%;
}
main .calendarWrap .date select {
    font-size: 1.4rem;
    font-weight: 600;
    border: none;
    background: none;
    background-image: url(../img/arrow-3.png);
    background-position: right 1rem center;
    background-size: 1.5rem;
    background-repeat: no-repeat;
    color: #fff;
    padding: 0 3rem 0 1.5rem;
    border-right: 1px solid #fff;
}
main .calendarWrap .date select:nth-of-type(2) {
    border: none;
}
main .calendarWrap .date select option {
    font-size: 1.4rem;
    font-weight: 600;
}
main .calendarWrap .filter {
    display: flex;
}
main .calendarWrap .filter select {
    width: calc(100% / 3);
    background-color: #ededed;
    background-image: url(../img/arrow-4.png);
    background-position: right 1.5rem center;
    background-size: 1.5rem;
    background-repeat: no-repeat;
    padding: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    border: none;
    border-right: 1px solid #c2c2c2;
}
main .calendarWrap .filter select option {
    font-size: 1.4rem;
    font-weight: 600;
}
main .calendarWrap .weekName {
    display: flex;
}
main .calendarWrap .weekName h3 {
    font-size: 1.4rem;
    width: calc(100% / 7);
    padding: 1rem 0;
    text-align: center;
    color: #5f5f5f;
    border-top: 1px solid #c2c2c2;
    border-bottom: 1px solid #c2c2c2;
    border-right: 1px solid #c2c2c2;
    background: #edfff3;
}
main .calendarWrap .weekName h3.blue {
    color: #1509ff;
}
main .calendarWrap .weekName h3.red {
    color: #ff1212;
}
main .calendarWrap .calendar {
    display: flex;
    flex-flow: row wrap;
}
main .calendarWrap .calendar a {
    width: calc(100% / 7);
    height: 6rem;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #c2c2c2;
    border-right: 1px solid #c2c2c2;
    gap: 0.5rem;
}
main .calendarWrap .calendar a.today {
    background: #ededed;
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.2);
}
main .calendarWrap .calendar a span {
    font-size: 1.4rem;
    font-weight: 600;
    pointer-events: none;
}
main .calendarWrap .calendar a span.blue {
    color: #1509ff;
}
main .calendarWrap .calendar a span.red {
    color: #ff1212;
}
main .calendarWrap .calendar a strong {
    font-size: 1.4rem;
    border-radius: 1rem;
    background: #edfff3;
    color: #00cba8;
    padding: 0.2rem 1rem;
    pointer-events: none;
}

/* 스크랩 */
main .titleTotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
main .titleTotal h2 {
    font-size: 1.6rem;
    font-weight: 800;
}
main .titleTotal p {
    font-size: 1.4rem;
    font-weight: 600;
}
main .titleTotal p span {
    font-size: 1.4rem;
    font-weight: 800;
    color: #00cba8;
}

/* 서브 */
main .box {
    border: 1px solid #c5c5c5;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}
main .box h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #00cba8;
    margin-bottom: 1rem;
}
main .box h4 {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}
main .box pre {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #555555;
    margin-bottom: 2rem;
}
main .box pre span {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #ff5c5c;
}
main .box pre:last-child {
    margin: 0;
}
main > a {
    position: relative;
    display: inline-block;
    width: 100%;
    border-radius: 1rem;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}
main > a img {
    width: 100%;
}
main > a .text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 1.5rem;
}
main > a .text p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
main > a .text h3 {
    font-size: 1.6rem;
    font-weight: 800;
}

/* 질문 */
main .qna {
    border-top: 1px solid #bbbbbb;
    border-bottom: 1px solid #bbbbbb;
    margin-top: 3rem;
}
main .qna .open {
    border-bottom: 1px solid #bac2bd;
}
main .qna .open h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    gap: 1rem;
    line-height: 1.4;
    font-size: 1.4rem;
    font-weight: 800;
}
main .qna .open h3::before {
    content: 'Q';
    border-radius: 100%;
    width: 2.5rem;
    height: 2.5rem;
    color: #fff;
    background: #00cba8;
    position: absolute;
    left: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
main .qna .open h3 img {
    width: 2.5rem;
}
main .qna .open pre {
    font-size: 1.4rem;
    padding: 1.5rem 1rem;
    line-height: 1.4;
    color: #555354;
    background: #edfff3;
}

/* 뉴스 */
main .news {
    display: flex;
    flex-flow: column nowrap;
}
main .news a {
    padding: 2rem 0;
    border-bottom: 1px solid #bbbbbb;
    display: flex;
    gap: 1.5rem;
}
main .news a:last-child {
    border: none;
}
main .news a .image {
    width: 40%;
    height: 12rem;
    border-radius: 1rem;
    overflow: hidden;
}
main .news a .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
main .news a .text {
    width: 60%;
    position: relative;
}
main .news a .text h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.4;
}
main .news a .text p {
    font-size: 1.4rem;
    line-height: 1.4;
}
main .news a .text .date {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* 지도 */
#map {
    width: 100%;
    height: 70vh;
    z-index: 1;
    margin-bottom: 4rem;
    position: relative;
  }
  .custom_marker_red {
  background-image: url(../img/icon-1.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 3.5rem !important;
  height: 4rem !important;
  }
  
  .custom_marker_blue {
  background-image: url(../img/icon-2.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 3.5rem !important;
  height: 4rem !important;
  }
  
  .leaflet-marker-icon { border-radius: 50%; text-align: center;}
  .leaflet-marker-icon div { line-height:40px;}
  .leaflet-marker-icon div span { font-size: 1.6rem;}
  
  .leaflet-popup { bottom: 4rem !important; }
  .leaflet-popup-content { font-size: 1.4rem;}
  .leaflet-popup-close-button span {font-size: 1.4rem;}
  
  
  .marker-cluster { width: 5rem !important; height: 5rem !important; border-radius: 50% !important; }
  .marker-cluster > div { width: 4rem; height: 4rem; border-radius: 50%; position: absolute; margin-left: unset !important; margin-top: unset !important; top:50%; left: 50%; transform: translate(-50%,-50%);}
  
  .sm { background-color: unset !important; /* width: 7rem !important; height: 7rem !important; */}
  .sm > div { background: url(../img/green.png) no-repeat center / cover; background-color: unset !important; width: 4rem !important; height: 4rem !important;}
  .sm > div span { line-height:4rem;}
  .md { background-color: unset !important; /* width: 7rem !important; height: 7rem !important; */}
  .md > div { background: url(../img/red.png) no-repeat center / cover; background-color: unset !important; width: 4rem !important; height: 4rem !important;}
  .md > div span { line-height:4rem;}
  .lg { background-color: unset !important; /* width: 7rem !important; height: 7rem !important; */}
  .lg > div { background: url(../img/red.png) no-repeat center / cover; background-color: unset !important; width: 4rem !important; height: 4rem !important;}
  .lg > div span { line-height:4rem;}
  
  
  .marker_info { position: absolute; top: 1.5rem; right: 1.5rem; padding: 0.3rem 1rem; z-index: 9999; background: #ffffffcf; border-radius: 10px;}
  .marker_info p { display: flex; align-items: center; font-size: 1.4rem; font-weight: 600; margin: 0.6rem 0; }
  .marker_info p img { width: 1.5rem; margin-right: .7rem;}
  
  
  #info_box { position: absolute; bottom: 0; left: 0; width: 100%; z-index: 9999; border-radius: 1rem 1rem 0 0 ; background: #fff; box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.3); overflow: hidden;}
  #info_box.lh,
  #info_box.newhome {}
  #info_box .name_link { background: #00cba8; color: #fff; text-align: left;}
  #info_box .name_link { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 1.5rem; font-size: 1.6rem; font-weight: 800; text-align: center; position: relative;}
  #info_box .name_link button {
    width: 2.5rem;
  }
  #info_box .name_link button img {
    width: 100%;
  }
  #info_box .name_link:after { content:''; background: url(../IMG/map-arrow.png) no-repeat center / contain; width: 1rem; height: 2rem; position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%);}
  #info_box .detail_wrap { background: #fff; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; position: relative;}
  #info_box .detail_wrap .cls { width: 100%; font-size: 1.4rem; font-weight: 600;}
  #info_box .detail_wrap .cls:before { content: "유형"; font-size: inherit;font-weight: 500; width: 25%; display: inline-block; color: #4e4e4e;}
  #info_box .detail_wrap .state { width: 100%; font-size: 1.4rem; font-weight: 600;}
  #info_box .detail_wrap .state:before {width: 25%; content: "공고상태"; font-size: inherit; color: #4e4e4e; display: inline-block; font-weight: 500;}
  #info_box .detail_wrap .period { font-size: 1.4rem; width: 100%; font-weight: 600;}
  #info_box .detail_wrap .period:before {width: 25%; content: '공고기간'; display: inline-block; color: #4e4e4e; font-weight: 500;}
  #info_box .gonggo_link {
    color: #fff;
    background: #00cba8;
    border-radius: 1rem;
    font-size: 1.4rem;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    padding: 0.8rem 1rem;
  }