@charset "UTF-8";
.tool-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 15px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.tool-wrap .total-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  position: relative;
}
.tool-wrap .total-count .txt {
  font-size: 1.5rem;
  color: #666;
}
.tool-wrap .total-count .txt .num {
  color: var(--theme);
  font-weight: 700;
}
.tool-wrap .total-count .txt .total {
  color: #666;
}
.tool-wrap .total-count .selectbox {
  min-width: 80px;
}
.tool-wrap .total-count .selectbox:after {
  top: 9px;
  right: 10px;
  width: 5px;
  height: 5px;
  opacity: 0.7;
}
.tool-wrap .total-count .selectbox select {
  padding: 5px 10px;
  font-size: 1.3rem;
}
.tool-wrap .total-count .right-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.tool-wrap .total-count .toggle-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  gap: 4px;
}
.tool-wrap .total-count .toggle-wrap .label {
  font-size: 1.4rem;
  font-weight: 500;
}
.tool-wrap .total-count .toggle-wrap input {
  display: none;
}
.tool-wrap .total-count .toggle-wrap .slider {
  position: relative;
  width: 30px;
  height: 15px;
  background-color: #ccc;
  border-radius: 20px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.tool-wrap .total-count .toggle-wrap .slider::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.tool-wrap .total-count .toggle-wrap input:checked + .slider {
  background-color: #000;
}
.tool-wrap .total-count .toggle-wrap input:checked + .slider::before {
  -webkit-transform: translateX(12px);
          transform: translateX(12px);
}
.tool-wrap .search-input {
  position: relative;
  width: 650px;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tool-wrap .search-input .selectbox {
  width: 25%;
  border-right: 0;
}
.tool-wrap .search-input .selectbox select {
  line-height: normal;
  border: 0;
}
.tool-wrap .search-input .input {
  width: 100%;
  border: 1px solid var(--line);
  background-color: #fff;
}
.tool-wrap .search-input .input input {
  font-size: 1.6rem;
  padding: 8px 60px 8px 15px;
  width: 100%;
  display: block;
  background: #fff;
}
.tool-wrap .search-input .button {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: var(--dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tool-wrap .search-input .button button {
  display: block;
  width: 100%;
  height: 100%;
}
.tool-wrap .search-input .button button > img {
  width: 24px;
  height: 24px;
}
.tool-wrap .selectbox {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
}
.tool-wrap .selectbox:after {
  content: "";
  width: 5px;
  height: 5px;
  right: 10px;
  top: 14px;
  border-left: 1px solid #666;
  border-bottom: 1px solid #666;
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  cursor: pointer;
}
.tool-wrap .selectbox select {
  background: transparent;
  font-size: 1.5rem;
  padding: 8px 20px 8px 15px;
  width: 100%;
  cursor: pointer;
}
.tool-wrap .bord-filter-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.tool-wrap .bord-filter-wrap .filter-btn {
  display: inline-block;
  padding: 5px 10px;
  min-width: 70px;
  text-align: center;
  border: 1px solid #d4d7dd;
  border-radius: 5px;
  background-color: #fff;
  color: #222;
  font-size: 1.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-weight: 500;
  color: #666;
}
.tool-wrap .bord-filter-wrap .filter-btn:hover {
  border-color: var(--theme);
  color: var(--theme);
}
.tool-wrap .bord-filter-wrap .filter-btn.active {
  border-color: var(--theme);
  background-color: var(--theme);
  color: #fff;
  font-weight: 600;
}

.multi-tool .multi-search {
  width: 100%;
}
.multi-tool .multi-search .search-input {
  width: 100%;
  min-width: 630px;
  gap: 5px;
  max-width: 100%;
}
.multi-tool .multi-search .search-input .selectbox:after {
  right: 10px;
  width: 5px;
  height: 5px;
  top: 16px;
}
.multi-tool .multi-search .search-input .selectbox select {
  padding-left: 10px;
  padding-right: 13px;
}
.multi-tool .multi-search .search-input.layout-2 .selectbox {
  width: 25%;
}
.multi-tool .multi-search .search-input.layout-3 .selectbox {
  width: 30%;
}
.multi-tool .multi-search .search-input.layout-5 .selectbox {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
}
.multi-tool .multi-search .search-input .selectbox {
  border-right: 1px solid var(--line);
}

@media (max-width: 900px) {
  .tool-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 10px;
  }
  .tool-wrap .total-count {
    padding-top: 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tool-wrap .total-count.has-right-btn {
    padding-right: 70px;
  }
  .tool-wrap .total-count.has-right-btn .right-btn {
    bottom: -2px;
  }
  .tool-wrap .total-count.has-right-btn .right-btn .a-btn {
    padding: 6px 18px;
  }
  .tool-wrap .total-count .txt {
    font-size: 1.4rem;
  }
  .tool-wrap .search-input {
    width: 100%;
  }
  .tool-wrap .bord-filter-wrap {
    margin: 15px 0 5px;
  }
  .tool-wrap .bord-filter-wrap .filter-btn {
    font-size: 1.4rem;
  }

  .multi-tool .multi-search .search-input {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-right: 57px;
    min-width: auto;
  }
  .multi-tool .multi-search .search-input.layout-2 .selectbox {
    width: calc(50% - 5px);
  }
  .multi-tool .multi-search .search-input.layout-3 .selectbox {
    width: calc(33% - 3px);
  }
}
@media (max-width: 768px) {
  .tool-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 10px;
  }
  .tool-wrap .total-count {
    padding-top: 30px;
  }
  .tool-wrap .total-count .txt {
    font-size: 1.4rem;
  }
  .tool-wrap .total-count .filter-checkbox {
    margin-left: 0;
  }
  .tool-wrap .search-input {
    width: 100%;
  }
  .tool-wrap .search-input .input {
    width: 100%;
  }
}
@media (max-width: 475px) {
  .tool-wrap {
    padding-bottom: 5px;
  }
  .tool-wrap .search-input .selectbox {
    width: 80px;
  }
  .tool-wrap .search-input .selectbox:after {
    right: 10px;
    top: 16px;
    width: 5px;
    height: 5px;
  }
  .tool-wrap .search-input .selectbox select {
    font-size: 1.4rem;
    padding: 8px 15px 8px 10px;
  }
  .tool-wrap .search-input .input input {
    font-size: 1.4rem;
    padding: 8px 10px;
  }
  .tool-wrap .search-input .input input::-webkit-input-placeholder {
    font-size: 1.4rem;
  }
  .tool-wrap .search-input .input input::-moz-placeholder {
    font-size: 1.4rem;
  }
  .tool-wrap .search-input .input input:-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .tool-wrap .search-input .input input::-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .tool-wrap .search-input .input input::placeholder {
    font-size: 1.4rem;
  }
  .tool-wrap .search-input .button {
    width: 50px;
  }
  .tool-wrap .search-input .button button {
    font-size: 1.4rem;
    font-weight: 800;
  }
  .tool-wrap .search-input .button button > img {
    width: 20px;
    height: 20px;
  }
  .tool-wrap .total-count {
    padding-top: 15px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .tool-wrap .total-count .input-check label {
    font-size: 1.4rem;
  }

  .multi-tool .tool-wrap {
    gap: 0;
  }
  .multi-tool .multi-search {
    padding: 0;
    background-color: transparent;
  }
  .multi-tool .multi-search .search-input {
    padding-right: 0;
  }
  .multi-tool .multi-search .search-input .button {
    height: 42px;
    top: unset;
    bottom: 0;
  }
  .multi-tool .multi-search .search-input .button button {
    padding: 10px 0;
  }
}
/* 전체 페이지 스크롤 방지 (이 페이지에만 적용) */
html, body {
  height: 100%;
}

body.map-search-page {
  overflow: hidden;
}

/* 모바일 검색 영역 */
.mobile-search-area {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  background: transparent;
  z-index: 9;
}
.mobile-search-area .search-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mobile-search-area .search-input .input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
  border: none;
  border-radius: 25px;
  background: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.mobile-search-area .search-input .input input {
  width: 100%;
  padding: 12px 20px;
  font-size: 1.4rem;
  border: none;
  background: transparent;
  border-radius: 25px;
}
.mobile-search-area .search-input .input input::-webkit-input-placeholder {
  color: #999;
}
.mobile-search-area .search-input .input input::-moz-placeholder {
  color: #999;
}
.mobile-search-area .search-input .input input:-ms-input-placeholder {
  color: #999;
}
.mobile-search-area .search-input .input input::-ms-input-placeholder {
  color: #999;
}
.mobile-search-area .search-input .input input::placeholder {
  color: #999;
}
.mobile-search-area .search-input .button {
  display: none;
  /* 버튼 숨김 */
}

.map-search {
  --map-list-width: 470px;
  position: relative;
  width: 100%;
  min-height: 100svh;
  padding: 0;
}
.map-search .map-area {
  width: calc(100% - var(--map-list-width));
  margin-left: var(--map-list-width);
  height: 100vh;
  background-image: url("../img/exploration/map_bg.png");
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.map-search .marker {
  position: absolute;
  z-index: 5;
  max-width: 100%;
}
.map-search .marker > img {
  width: 75px;
  height: 75px;
  cursor: pointer;
}
.map-search .marker.active {
  z-index: 10;
}
.map-search .marker .detail-layer {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 320px;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 8px 13px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 13px rgba(0, 0, 0, 0.2);
  z-index: 20;
}
.map-search .marker .detail-layer::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
}
.map-search .marker .detail-layer .layer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 16px;
  height: 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}
.map-search .marker .detail-layer .layer-close img {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.map-search .marker .detail-layer .layer-close:hover img {
  opacity: 1;
}
.map-search .marker .detail-layer .layer-label {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 700;
}
.map-search .marker .detail-layer .layer-label.type-1 {
  background: var(--pink);
  color: #fff;
}
.map-search .marker .detail-layer .layer-label.type-2 {
  background: var(--green);
  color: #fff;
}
.map-search .marker .detail-layer .layer-claim {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  margin: 10px 0 8px;
  line-height: 1.4;
}
.map-search .marker .detail-layer .layer-desc {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.map-search .marker .detail-layer .layer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.map-search .marker .detail-layer .layer-info .info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.map-search .marker .detail-layer .layer-info .info-item dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.3rem;
  color: #999;
  font-weight: 500;
  min-width: 50px;
}
.map-search .marker .detail-layer .layer-info .info-item dd {
  font-size: 1.4rem;
  color: #333;
  font-weight: 600;
}
.map-search .marker .detail-layer .layer-link {
  display: block;
  margin-top: 14px;
  padding: 10px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  font-size: 1.3rem;
  font-weight: 600;
}
.map-search .marker.active .detail-layer {
  display: block;
}

.map-list-area {
  position: fixed;
  bottom: 0;
  left: 0;
  height: calc(100vh - 101px);
  z-index: 99;
  width: var(--map-list-width);
}
.map-list-area .mo-drag-btn {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  text-align: center;
  width: 100%;
  padding: 13px 0;
}
.map-list-area .mo-drag-btn .drag-btn {
  width: 40px;
  height: 4px;
  background: #cdcdcd;
  border-radius: 20px;
  display: inline-block;
}
.map-list-area .place-list {
  position: relative;
  z-index: 2;
  height: calc(100vh - 101px);
  background: #fff;
  padding: 30px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
.map-list-area .place-list .head-area {
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}
.map-list-area .place-list .type-select-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  padding-top: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.map-list-area .place-list .type-select-area .item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.map-list-area .place-list .type-select-area .item:first-child {
  border-radius: 5px 0 0 5px;
}
.map-list-area .place-list .type-select-area .item:last-child {
  border-radius: 0 5px 5px 0;
}
.map-list-area .place-list .type-select-area .item + .item {
  margin-left: -1px;
}
.map-list-area .place-list .type-select-area .item .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 12px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.map-list-area .place-list .type-select-area .item .btn p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}
.map-list-area .place-list .type-select-area .item:hover {
  border-color: var(--theme);
  background: rgba(16, 135, 245, 0.06);
  z-index: 1;
}
.map-list-area .place-list .type-select-area .item:hover .btn p {
  color: var(--theme);
}
.map-list-area .place-list .type-select-area .item.active {
  border-color: var(--theme);
  background: rgba(16, 135, 245, 0.1);
  z-index: 2;
}
.map-list-area .place-list .type-select-area .item.active .btn p {
  color: var(--theme);
  font-weight: 700;
}
.map-list-area .place-list .search-area {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.map-list-area .place-list .search-area .search-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
}
.map-list-area .place-list .search-area .search-input .input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px solid var(--line);
  border-radius: 5px 0 0 5px;
  background: #fff;
}
.map-list-area .place-list .search-area .search-input .input input {
  width: 100%;
  padding: 12px 15px;
  font-size: 1.5rem;
  border: none;
  background: transparent;
}
.map-list-area .place-list .search-area .search-input .input input::-webkit-input-placeholder {
  color: #999;
}
.map-list-area .place-list .search-area .search-input .input input::-moz-placeholder {
  color: #999;
}
.map-list-area .place-list .search-area .search-input .input input:-ms-input-placeholder {
  color: #999;
}
.map-list-area .place-list .search-area .search-input .input input::-ms-input-placeholder {
  color: #999;
}
.map-list-area .place-list .search-area .search-input .input input::placeholder {
  color: #999;
}
.map-list-area .place-list .search-area .search-input .button button {
  padding: 13px 30px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 0 5px 5px 0;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
}
.map-list-area .place-list .search-area .search-input .button button:hover {
  background: #333;
}
.map-list-area .place-list .result-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0 15px 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.map-list-area .place-list .result-summary .total {
  font-size: 1.6rem;
  color: #333;
  font-weight: 600;
}
.map-list-area .place-list .result-summary .total .num {
  color: var(--theme);
  font-weight: 700;
}
.map-list-area .place-list .result-summary .breakdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  font-size: 1.4rem;
  color: #666;
}
.map-list-area .place-list .result-summary .breakdown span strong {
  font-weight: 700;
  color: #333;
}
.map-list-area .place-list .list-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  padding: 15px;
  background: #f1f1f1;
  /* 얇은 스크롤바 스타일 */
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  /* Firefox */
}
.map-list-area .place-list .list-area::-webkit-scrollbar {
  width: 6px;
  /* 웹킷 브라우저 스크롤바 너비 */
}
.map-list-area .place-list .list-area::-webkit-scrollbar-track {
  background: transparent;
  /* 스크롤바 트랙 배경 */
}
.map-list-area .place-list .list-area::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  /* 스크롤바 색상 */
  border-radius: 3px;
  /* 스크롤바 모서리 둥글게 */
}
.map-list-area .place-list .list-area::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
  /* 호버 시 색상 */
}
.map-list-area .place-list .list-area .card-list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.map-list-area .place-list .list-area .card-list-group .item {
  display: block;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.map-list-area .place-list .list-area .card-list-group .item:hover {
  border: 1px solid var(--theme);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.map-list-area .place-list .list-area .card-list-group .item .label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 1.3rem;
  font-weight: 700;
}
.map-list-area .place-list .list-area .card-list-group .item .label.type-1 {
  background: var(--pink);
  color: #fff;
}
.map-list-area .place-list .list-area .card-list-group .item .label.type-2 {
  background: var(--green);
  color: #fff;
}
.map-list-area .place-list .list-area .card-list-group .item .tit {
  font-size: 1.7rem;
  font-weight: 700;
  color: #333;
  margin: 11px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.map-list-area .place-list .list-area .card-list-group .item .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #666;
}
.map-list-area .place-list .list-area .card-list-group .item .info span strong {
  font-weight: 600;
  color: #333;
}
.map-list-area .place-list .list-area .card-list-group .item .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.map-list-area .place-list .list-area .card-list-group .item .tags .tag {
  display: inline-block;
  padding: 4px 10px;
  background: #e8e8e8;
  border-radius: 4px;
  font-size: 1.3rem;
  color: #444;
}

@media (max-width: 1500px) {
  .map-list-area {
    height: calc(100vh - 98px);
  }
}
@media (max-width: 1024px) {
  .mobile-search-area {
    display: block;
  }

  .map-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 100svh;
    overflow: hidden;
  }
  .map-search .marker > img {
    width: 60px;
    height: 60px;
  }
  .map-search .marker .detail-layer {
    width: 280px;
    padding: 20px;
  }
  .map-search .marker .detail-layer .layer-claim {
    font-size: 1.5rem;
  }
  .map-search .marker .detail-layer .layer-desc {
    font-size: 1.3rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .map-search .marker .detail-layer .layer-link {
    font-size: 1.2rem;
  }
  .map-search .map-area {
    width: 100%;
    height: 45vh;
    margin-left: 0;
  }

  .map-list-area {
    padding-top: 50px;
    height: 50vh;
    width: 100%;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 30px;
    -webkit-transition: top 0.3s ease-out, height 0.3s ease-out;
    transition: top 0.3s ease-out, height 0.3s ease-out;
    -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  .map-list-area.full-height {
    height: calc(100vh - 100px);
  }
  .map-list-area .mo-drag-btn {
    display: block;
  }
  .map-list-area .place-list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-height: 0;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    cursor: -webkit-grab;
    cursor: grab;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    padding: 0;
  }
  .map-list-area .place-list:active {
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }
  .map-list-area .place-list .type-select-area .item .btn {
    padding: 12px 10px;
  }
  .map-list-area .place-list .type-select-area .item .btn p {
    font-size: 1.5rem;
  }
  .map-list-area .place-list .search-area {
    display: none;
  }
  .map-list-area .place-list .result-summary {
    padding: 20px 0 15px 0;
  }
  .map-list-area .place-list .result-summary .total {
    font-size: 1.5rem;
  }
  .map-list-area .place-list .result-summary .breakdown {
    font-size: 1.2rem;
  }
  .map-list-area .place-list .list-area {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-height: 0;
    overflow-y: auto;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
    margin-bottom: 0;
  }
  .map-list-area .place-list .list-area .card-list-group .item {
    padding: 15px;
  }
  .map-list-area .place-list .list-area .card-list-group .item .tit {
    font-size: 1.5rem;
    margin: 8px 0;
  }
  .map-list-area .place-list .list-area .card-list-group .item .info {
    font-size: 1.3rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .map-list-area .place-list .type-select-area {
    margin-bottom: 0;
  }
  .map-list-area .place-list .type-select-area .item .btn {
    padding: 8px;
  }
  .map-list-area .place-list .type-select-area .item .btn p {
    font-size: 1.4rem;
  }
  .map-list-area .place-list .list-area .card-list-group .item .label {
    padding: 3px 9px;
    font-size: 1.2rem;
  }
  .map-list-area .place-list .list-area .card-list-group .item .info {
    margin-bottom: 7px;
    gap: 3px 15px;
  }
  .map-list-area .place-list .list-area .card-list-group .item .tags .tag {
    padding: 3px 9px;
  }
}/*# sourceMappingURL=map.css.map */