@charset "utf-8";

@import './reset.css';
@import './common.css';

@font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 100 900;
  src: url('../fonts/PretendardVariable.woff2') format('woff2');
}
[x-cloak] { display: none !important; }
/* ======================== s: navbar ======================== */
.navbar {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: var(--navbar-width);
    height: 100vh;
    padding: 2.4rem 1.2rem;
    border-right: 0.1rem solid #D9D9D9;
    background: #fff;
}
.navbar .menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.6rem;
}
.navbar .menu-list .menu-item {}
.navbar .menu-list .menu-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}
.navbar .menu-list .menu-item a .icon {
    width: 2.4rem;
    height: 2.4rem;
    background-color: #737373;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    content: "";
    display: inline-block;
}
.navbar .menu-list .menu-item.active a .icon {
    background-color: var(--active-color);
}
.navbar .menu-list .menu-item a .icon.home {
    -webkit-mask-image: url('../images/ico_snb_home.svg');
    mask-image: url('../images/ico_snb_home.svg');
}
.navbar .menu-list .menu-item a .icon.my-prop {
    -webkit-mask-image: url('../images/ico_snb_my.svg');
    mask-image: url('../images/ico_snb_my.svg');
}
.navbar .menu-list .menu-item a .icon.map {
    -webkit-mask-image: url('../images/ico_snb_map.svg');
    mask-image: url('../images/ico_snb_map.svg');
}
.navbar .menu-list .menu-item a .icon.review {
    -webkit-mask-image: url('../images/ico_snb_review.svg');
    mask-image: url('../images/ico_snb_review.svg');
}
.navbar .menu-list .menu-item a .icon.menu {
    -webkit-mask-image: url('../images/ico_snb_menu.svg');
    mask-image: url('../images/ico_snb_menu.svg');
}
.navbar .menu-list .menu-item a .name {
    font-weight: 500;
    font-size: 1.2rem;
    color: #737373;
}
.navbar .menu-list .menu-item.active a .name {
    color: var(--active-color);
    font-weight: 700;
}
/* .navbar ul li .icon {
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    color: #D9D9D9;
}
.navbar ul li .icon svg {
    height: 100%;
}
.navbar ul li .icon:hover {
    color: #595959;
}
.navbar ul li.active .icon {
    color: var(--primary-color);
} */
/* .navbar ul li.apt.active .icon {
    color: var(--primary-color);
}
.navbar ul li.house.active .icon {
    color: #1A237E;
}
.navbar ul li.villa.active .icon {
    color: #2962FF
}
.navbar ul li.office.active .icon {
    color: #00A86B
}
.navbar ul li.land.active .icon {
    color: #FB8C00
}  */
/* .navbar ul li.mo-ham {
    display: none;
}
.navbar ul li .tooltip {
    position: absolute;
    left: 0;
    top: 50%;
    padding: 1rem;
    margin-left: 3.3rem;
    margin-top: 0.4rem;
    border-radius: 0.7rem;
    white-space: nowrap;
    font-weight: 500;
    font-size: 1.2rem;
    box-shadow: 0.2rem 0.2rem 0.7rem 0 rgba(0,0,0,0.1);
    pointer-events: none;
}
.navbar ul li .tooltip.hover {
    border: 0.1rem solid #E5E5E5;
    opacity: 0;
    transform: translateY(-50%) translateX(-1rem);
    background-color: #fff;
    transition: all 0.2s ease;
}
.navbar ul li .icon:hover + .tooltip.hover {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
.navbar ul li .tooltip.clicked {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(-50%) translateX(-1rem);
    font-weight: 600;
    color: #fff;
    background-color: var(--primary-color);
    transition: all 0.2s ease;
}
.navbar ul li.active .tooltip.clicked.show {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
}
.navbar ul li .tooltip.clicked .close {
    width: 0.8rem;
    height: 0.8rem;
    background-image: url(../images/ico_close_x.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-color: unset;
} */
/* .navbar ul li.apt .tooltip.clicked {
    background-color: var(--secondary-color);
}
.navbar ul li.house .tooltip.clicked {
    background-color: #1A237E;
}
.navbar ul li.villa .tooltip.clicked {
    background-color: #2962FF
}
.navbar ul li.office .tooltip.clicked {
    background-color: #00A86B
}
.navbar ul li.land .tooltip.clicked {
    background-color: #FB8C00
} */
/* ======================== e: navbar ======================== */


/* ======================== s: sidebar-panel ======================== */
.sidebar-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 7rem;
    z-index: 99;
    max-width: var(--sidepanel-width);
    width: 100%;
    height: 100vh;
    border-right: 1px solid #D9D9D9;
    background-color: #fff;
    z-index: 99;
    transform: translateX(0);
    transition: transform 0.3s ease;
}
.sidebar-panel.open {
    transform: translateX(-100%);
}
.panel-header {
    flex-shrink: 0;
    position: relative;
}
.panel-header .logo {
    padding: 2rem;
    border-bottom: 0.1rem solid #F0F0F0;
    background-color: #fff;
}
.panel-header .btn-mo-close {
    width: 3rem;
    height: 3rem;
    background-image: url(../images/ico_close_x_b.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.5rem;
}
.panel-header .search-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 0.1rem solid #F0F0F0;
    background-color: #fff;
}
.panel-header .search-input {
   position: relative;
   width: 100%;
}
.panel-header .search-input input {
    padding: 1.5rem 7rem 1.5rem 1.5rem;
}
.panel-header .search-input input:focus {
    box-shadow: none;
}
.panel-header .search-input .loading-spinner {
    position: absolute;
    left: 0;
    bottom: -1.6rem;
    font-weight: 500;
    font-size: 1.2rem;
}
.panel-header .search-input .btn-clear {
    position: absolute;
    right: 4.2rem;
    top: 1.7rem;
}
.panel-header .search-input .btn-search {
    position: absolute;
    right: 1.5rem;
    top: 1.7rem;
    width: 2rem;
    height: 2rem;
    background-image: url(../images/ico_search.svg);
    background-repeat: no-repeat;
}
.panel-header .recent-searches-wrap {
    position: absolute;
    left: 0;
    top: 14.8rem;
    z-index: 105;
    width: 100%;
    height: calc(100vh - 14.8rem);
    overflow-y: auto;
    /* background-color: rgba(0,0,0,0.5); */
    background-color: #fff;
}
.panel-header .recent-searches-wrap .empty-area {
    padding: 13rem 0;
    text-align: center;
}
.panel-header .recent-searches-wrap .empty-txt {
    font-size: 1.4rem;
    color: #8C8C8C;
}
.panel-header .recent-searches {
    margin-bottom: 2rem;
    background-color: #fff;
}
.panel-header .recent-searches .tit-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}
.panel-header .recent-searches .tit-area .tit {
    font-weight: 600;
    font-size: 1.6rem;
}
.panel-header .recent-searches .tit-area .btn-all-remove {
    font-size: 1.2rem;
    color: #8c8c8c;
}
.panel-header .recent-searches .btn-more {
    width: 100%;
    height: 4rem;
    margin-top: 1rem;
    border-bottom: 0.1rem solid #ddd;
    border-top: 0.1rem solid #ddd;
    font-weight: 500;
    font-size: 1.4rem;
}
.panel-header .recent-list {
    max-height: 19rem;
    overflow: hidden;
}
.panel-header .recent-list.is-open {
    max-height: 100%;
}
.panel-header .recent-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.8rem;
    margin: 0 1.5rem;
    border-bottom: 0.1rem solid #ddd;
}
.panel-header .recent-list li:nth-child(5), .panel-header .recent-list.is-open li:last-child {
    border-bottom: none;
}
.panel-header .recent-list.is-open li:nth-child(5){
    border-bottom: 0.1rem solid #ddd;
}
.panel-header .recent-list li .btn-recent {
    display: flex;
    align-items: center;
    width: calc(100% - 2.8rem);
}
.panel-header .recent-list li svg {
    color: #949494;
}
.panel-header .recent-list li p {
    width: 100%;
    padding: 0 0.4rem;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 14px;
}
.panel-header .recent-list li .date {
    font-size: 12px;
    color: #949494;
}
.panel-header .recent-list li .btn-remove {
    width: 2rem;
    height: 2rem;
    background-image: url(../images/ico_close_x_b.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.panel-header .recent-items {
    margin-bottom: 0;
}
.panel-header .recent-items .recent-list {
    max-height: 42.4rem;
}
.panel-header .recent-items .recent-list.is-open {
    max-height: 100%;
}
.panel-header .recent-items .recent-list li {
    height: auto;
    padding: 1rem 0;
}
.panel-header .recent-items .recent-list li .btn-recent-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    width: calc(100% - 2.8rem);
}
.panel-header .recent-items .recent-list li .btn-recent-item strong {
    text-align: left;
    font-weight: 700;
    font-size: 1.4rem;
}
.panel-header .recent-items .recent-list li .btn-recent-item strong .badge {
    margin-right: 0.5rem;
    padding: 0.2rem 0.6rem;
    font-size: 1.1rem;
    vertical-align: text-bottom;
    line-height: 1.2;
}
.panel-header .recent-items .recent-list li .btn-recent-item p {
    padding: 0;
    font-size: 1.4rem;
    color: #949494;
    white-space: normal;
}
.panel-header .recent-items .recent-list li .btn-recent-item p span {
    display: inline-block;
    min-width: 5rem;
    font-weight: 600;
    color: #444;
}
.panel-body {
    flex-grow: 1;
    position: relative;
    height: 100%;
}
.panel-body .summary {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 0.1rem solid #F0F0F0;
}
.summary .summary-info {}
.summary .summary-info .info {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
    font-weight: 700;
    font-size: 2rem;
}
.summary .summary-info .info span {
    padding-left: 1rem;
    font-weight: 500;
    font-size: 1.6rem;
}
.summary .summary-info .info span b {
    font-weight: 600;
    color: var(--primary-color);
}
.summary .btn-filter {
    align-self: flex-end;
    width: 1.6em;
    height: 1.6em;
    background-image: url(../images/ico_filter.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.card-container {}
.card-container .card-list {
    display: flex;
    flex-direction: column;
}
.card-container .card-list .card-item {
    padding: 2rem 1.5rem;
    border-bottom: 0.1rem solid #F0F0F0;
}
.card-container .card-list .card-item .card-images {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    height: 18rem;
}
.card-container .card-list .card-item .card-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-item .card-images .card-images-swiper {
    width: 100%;
    height: 22rem;
    border-radius: 1rem;
}
.card-item .card-images .card-images-swiper .swiper-slide {
    background-color: #E5E5E5;
}
.card-item .card-images .card-images-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-item .card-images .card-images-swiper .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background-color: #F0F0F0;
}
.card-item .card-images .card-images-swiper .btn::before {
    content: '';
    width: 0.8rem;
    height: 1rem;
    background-image: url(../images/ico_swiper_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.card-item .card-images .card-images-swiper .btn.prev {
    transform: translateY(-50%) rotate(180deg);
}
.card-item .card-images .card-images-swiper .btn.next {
    left: auto;
    right: 1.2rem;
}
.card-item .card-images .watch {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 10;
}
.card-item .card-details {
    position: relative;
    padding-top: 1rem;
}
.card-item .card-details .status-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-item .card-details .category {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    font-weight: 500;
    font-size: 1.6rem;
    color: #8C8C8C;
}
.card-item .card-details .category span {
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--primary-color);
}
.card-item .card-details .title {
    padding-top: 1rem;
    line-height: 1.2;
    text-align: left;
    font-weight: 500;
    font-size: 1.8rem;
    word-break: break-all;
}
.card-item .card-details .title:hover {
    text-decoration: underline;
}
.card-item .card-details .price {
    display: block;
    padding-top: 1rem;
    font-weight: 700;
    font-size: 2rem;
}
.card-item .card-details .details-info {
    padding-top: 1rem;
}
.card-item .card-details .details-info ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.card-item .card-details .details-info ul li {
    flex-basis: calc(50% - 0.5rem);
    font-weight: 500;
    font-size: 1.4rem;
    color: #737373;
}
.card-item .card-details .details-info ul li:nth-child(1),
.card-item .card-details .details-info ul li:nth-child(2) {
    flex-basis: 100%;
}
.card-item .card-details .details-info ul li span {
    display: inline-block;
    min-width: 4rem;
    margin-right: 1.5rem;
}
.card-item .card-details .tag-group {
    padding-top: 1.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.card-item .card-details .tag-group span {
    font-weight: 500;
    font-size: 1.4rem;
    color: #C9C9C9;
}
.card-item .card-details .tag-group span::before {
    content: '#';
}
.card-item .card-details .tag-group span:not(:last-child)::after {
    content: ' · ';
}
.card-item .card-details .btn-listing-more {
    position: absolute;
    right: 0;
    top: 2rem;
    padding: 0.5rem 1rem;
    border: 0.1px solid var(--primary-color);
    border-radius: 0.5rem;
}
.card-item .card-details .btn-listing-more span {
    font-weight: 700;
    font-size: 1.2rem;
}
/* 실거래 매물 상세화면 */
.listing-detail .btn-back {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100;
    width: 4rem;
    height: 4rem;
    background-color: #424242;
    background-image: url(../images/ico_close_x.svg);
    background-repeat: no-repeat;
    background-size: 2rem 2rem;
    background-position: center;
}
.listing-images-area .listing-images {
    height: 22rem;
    background-color: #E5E5E5;
}
.listing-images-area .listing-images img {
    height: 100%;
}
.listing-images-area .listing-images-swiper {
    position: relative;
    width: 100%;
    height: 100%;
}
.listing-images-area .listing-images-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.listing-images-area .listing-images-swiper .btn {
    position: absolute;
    top: 50%;
    z-index: 10;
}
.listing-images-area .listing-images-swiper .btn.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}
.listing-images-area .listing-images-swiper .prev {
    left: 1.5rem;
    transform: rotate(-180deg);
}
.listing-images-area .listing-images-swiper .next {
    right: 1.5rem;
}
.listing-images-area .listing-images-swiper .swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 20px;
    line-height: 20px;
    padding: 0 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
}
.listing-images-area .tab-btns {
    display: flex;
    gap: 0;
    height: auto;
    padding: 0;
    border-radius: 0;
    background-color: unset;
}
.listing-images-area .tab-btns .tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.5rem;
    padding: 0;
    line-height: 0;
    border-radius: 0;
    border-bottom: 1px solid #D9D9D9;
    font-weight: 500;
}
.listing-images-area .tab-btns .tab.active {
    box-shadow: unset;
    border-color: var(--active-color);
    color: var(--active-color);
}
.listing-summary {
    position: relative;
    padding: 2rem 1.5rem;
    border-bottom: 0.1rem solid #E5E5E5;
}
.listing-summary .btn-noti {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    padding: 0.7rem 1rem 0.7rem 3.2rem;
    border: 0.1rem solid #E5E5E5;
    border-radius: 0.7rem;
    font-weight: 500;
    font-size: 1.2rem;
    background-image: url(../images/ico_noti.svg);
    background-repeat: no-repeat;
    background-size: 1.6rem 1.6rem;
    background-position: center left 1rem;
}

.listing-summary .info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.listing-summary .listing-num {
    padding: 0.4rem 0.5rem;
    line-height: 1;
    border-radius: 0.5rem;
    border: 0.1rem solid #E5E5E5;
    font-weight: 500;
    font-size: 1.2rem;
    color: #424242;
}
.listing-summary .listing-date {
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--primary-color);
}


.listing-summary .tit {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.8rem;
}
.listing-summary .address-area {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    font-size: 1.4rem;
    color: #737373;
}
.listing-summary .address-area .copy {
    display: inline-block;
    width: 1.2rem;
    height: 1.4rem;
    margin-left: 0.5rem;
    vertical-align: middle;
    background-image: url(../images/ico_copy.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.listing-summary .address-area .btn-road-name {
    padding: 0.3rem 1rem 0.3rem 2.6rem;
    border: 0.1rem solid #E5E5E5;
    border-radius: 0.7rem;
    margin-right: 0.6rem;
    font-weight: 500;
    font-size: 1.2rem;
    background-color: #fff;
    background-image: url(../images/ico_change.svg);
    background-repeat: no-repeat;
    background-size: 1.2rem 1.2rem;
    background-position: center left 0.8rem;
}
.listing-summary .desc {
    margin-top: 1rem;
    line-height: 1.5;
    font-size: 1.4rem;
}
.listing-summary .btn-more {
    width: auto;
    height: auto;
    margin-top: 1rem;
    font-weight: 500;
    font-size: 1.2rem;
    color: #8C8C8C;
}
.listing-summary .btn-more::before {
    content: none;
}
.sticky-menus {
    position: sticky;
    top: 0;
    z-index: 99;
    width: 100%;
    margin: 0 !important;
}
.listing-menus-swiper {
    border-bottom: 0.1rem solid #737373;
    background-color: #fff;
}
.listing-menus-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10rem;
    line-height: 4.4rem;
    font-weight: 500;
    font-size: 1.4rem;
    cursor: pointer;
}
.listing-menus-swiper .swiper-slide.active {
    border-bottom: 0.2rem solid var(--active-color);
    font-weight: 700;
    color: var(--active-color);
}
.btn-toggle {
    position: absolute;
    right: -6rem;
    bottom: 0;
    width: 6rem;
    padding: 1rem;
    font-weight: 500;
    font-size: 1.4rem;
    color: #fff;
    background-color: var(--primary-color);
    z-index: 99;
}
/* 실매물 상세 화면 */
.verified-listing .listing-summary {}
.verified-listing .listing-summary .listing-num {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 0.5rem;
    border-radius: 0.5rem;
    border: 0.1rem solid #E5E5E5;
    font-size: 1.2rem;
}
.verified-listing .listing-summary .listing-date {
    padding-left: 0.5rem;
    vertical-align: middle;
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--primary-color);
}
/* 면적 선택 팝업 */
.area-select-popup-left-44 {
    display: none;
    left: calc(var(--sidepanel-width) + var(--navbar-width));
}
.area-select-popup-left-44.show {
    display: block;
}
.area-select-popup {
    display: none;
}
.area-select-popup.show {
    display: block;
}
.area-select-popup .area-list {}
.area-select-popup .area-list li a, .area-select-popup-left-44 .area-list li a {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 2.5rem;
    border-bottom: 0.1rem solid #E5E5E5;
}
.area-select-popup .area-list li strong, .area-select-popup-left-44 .area-list li strong {
    font-weight: 600;
    font-size: 1.6rem;
}
.area-select-popup .area-list li strong span, .area-select-popup-left-44 .area-list li strong span {
    font-weight: 500;
    font-size: 1.4rem;
    color: #8C8C8C;
}
.area-select-popup .area-list li p, .area-select-popup-left-44 .area-list li p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.2rem;
}
.area-select-popup .area-list li p span, .area-select-popup-left-44 .area-list li p span {
    margin-right: auto;
    padding-left: 1rem;
}
.area-select-popup .area-list li p em, .area-select-popup-left-44 .area-list li p em {
    padding-left: 1rem;
    font-weight: 600;
}
.area-select-popup .area-list li .area-group, .area-select-popup-left-44 .area-list li .area-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.map-search-area {
    position: fixed;
    left: 10rem;
    top: 3rem;
    z-index: 50;
    /* display: flex;
    align-items: center;
    gap: 2rem;
    transition: left 0.3s ease; */
}
.map-search-area .btn-searchbar {
    position: relative;
    width: 34rem;
    height: 4rem;
    padding: 0 1.2rem;
    text-align: left;
    border: 0.1rem solid #D9D9D9;
    border-radius: 0.8rem;
    background-color: #fff
}
.map-search-area .btn-searchbar span {
    display: block;
    width: 85%;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 1.6rem;
    color: #8c8c8c;
}
.map-search-area .btn-searchbar svg {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #D9D9D9;
}

/* .sidebar-container:has(.sidebar-panel) .filter-wrap {
    left: 48rem;
} */
.filter-wrap {
    position: fixed;
    left: 46rem;
    top: 3rem;
    z-index: 100;
    /* transition: left 0.3s ease; */
}
.filter-wrap .filter {
    display: flex;
    gap: 1rem;
}
.filter-wrap .filter-dropdown {
    position: relative;
}
.filter-wrap .filter-dropdown > button {
    height: 3.6rem;
}
.filter-wrap .filter-dropdown .btn-outline {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.filter-wrap .filter-dropdown .btn-outline.active {
    background-color: var(--primary-color);
    color: #fff;
}
.filter-wrap .filter-dropdown .btn-outline.active svg {
    transform: rotate(180deg);
}
.filter-wrap .filter-panel {
    position: absolute;
    left: 0;
    top: 4.4rem;
    min-width: 40rem;
    padding: 2rem 1.6rem;
    border-radius: 0.8rem;
    box-shadow: 0 0 1rem 0.1rem rgba(0, 0, 0, 0.3);
    background-color: #fff;
}
.filter-wrap .filter-panel .notice {
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.4rem;
    color: #8c8c8c;
}
.filter-wrap .filter-panel .filter-group + .filter-group {
    margin-top: 2rem;
}
/* .filter-wrap .filter-panel .filter-group {
    margin: 2rem 0;
} */
.filter-wrap .filter-panel .filter-group .filter-tit {
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.6rem;
}
.filter-wrap .filter-panel .filter-group .filter-subtit {
    font-weight: 500;
    font-size: 1.4rem;
}
.filter-wrap .filter-panel .filter-group:last-child {
    margin-bottom: 0;
}
.filter-wrap .filter-panel .filter-group .filter-title {
    padding-bottom: 0.8rem;
    font-weight: 600;
    font-size: 1.6rem;
    color: #424242;
}
.filter-wrap .filter-panel .filter-group .filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}
.filter-wrap .filter-panel .filter-group .tab-btns {
    margin-bottom: 2rem;
}
.filter-wrap .filter-panel .filter-group .tab-panel .custom-tab-btns {
    margin: 0 0 1rem;
}
/* 면적필 */
.area-range-wrap input[type="range"]:nth-of-type(1) {
    left: -0.8rem;
}
.area-range-wrap .range-label {
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.6rem;
    color: #424242;
}
.area-range-wrap:not(:first-child) .range-label {
    margin-top: 2rem;
}
.area-range-wrap .range-label span {
    color: var(--primary-color);
}
/* ======================== e: sidebar-panel ======================== */

/* ======================== s: section-contents ======================== */
.sc-side-home {
    padding-bottom: 1.5rem;
}
.sc-side-home ul {}
.sc-side-home li {
    display: flex;
    gap: 1.5rem;
    padding: 0.5rem 0;
}
.sc-side-home li .tit {
    flex-shrink: 0;
    font-weight: 500;
    font-size: 1.4rem;
    color: #8c8c8c;
}
.sc-side-home p, .sc-side-home p span {
    font-size: 1.4rem;
    color: #424242;
}
.sc-side-home .address .jibun {
    padding: 0.2rem 0.8rem;
    border-radius: 0.4rem;
    font-weight: bold;
    font-size: 1.2rem;
    background-color: #f3f4f6;
}
.sc-side-home .price .badge {
    margin-left: 0.5rem;
    padding: 0.2rem 0.4rem;
    border-radius: 0.4rem;
    font-size: 1.2rem;
    border: 0.1px solid var(--primary-color);
    color: var(--primary-color);
}
.sc-side-home .price .badge::before {
    content: none;
}
.sc-side-home .price .txt {
    margin-top: 0.5rem;
    font-size: 1.2rem;
    color: #424242;
}
.sc-side-home .pyeong span {
    font-size: 1.4rem;
    color: #424242;
}
.sc-side-home .pyeong span::after {
    content: ' / ';
}
.sc-side-home .pyeong span:last-child::after {
    content: none;
}
.sc-side-home .building-info span {
    font-size: 1.4rem;
    color: #424242;
}
.sc-side-home .building-info span::after {
    content: ' | ';
    color: #e5e7eb;
}
.sc-side-home .building-info span:last-child:after {
    content: none;
}
.sc-side-home .years span {
    font-size: 1.4rem;
    color: #424242;
}
.listing-contents {
    background-color: #E5E5E5;
}
.listing-contents .section {
    /* 상단 고정 메뉴의 높이가 180px라면 그보다 조금 더 여유 있게 설정 */
    /* 이 수치를 조절하면서 "중앙" 느낌을 맞추세요 */
    scroll-margin-top: 180px;
}
.sc-listing {}
.sc-listing .info {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 0.1rem solid #E5E5E5;
}
.sc-listing .listing-price {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--primary-color);
}
.sc-listing .desc {
    margin-top: 0.4rem;
    line-height: 1.5;
    font-size: 1.4rem;
    color: #424242;
}
.sc-listing .info-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}
.sc-listing .info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    flex-basis: calc(50% - 1rem);
    font-weight: 500;
    font-size: 1.4rem;
    color: #424242;
}
.sc-listing .info-list li::before {
    content: '';
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    background-repeat: no-repeat;
    background-size: contain;
}
.sc-listing .info-list li.ico-floor::before {
    background-image: url(../images/ico_floor.svg);
}
.sc-listing .info-list li.ico-area::before {
    background-image: url(../images/ico_area.svg);
}
.sc-listing .info-list li.ico-maintenance::before {
    background-image: url(../images/ico_maintenance.svg);
}
.sc-listing .info-list li.ico-room::before {
    background-image: url(../images/ico_room.svg);
}
.sc-listing .info-list li.ico-parking::before {
    background-image: url(../images/ico_parking.svg);
}
.sc-listing .info-list li.ico-forestland::before {
    background-image: url(../images/ico_forestland.svg);
}
.sc-listing .tag-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.sc-listing .tag-group span {
    padding: 0.4rem 1rem;
    border: 0.1rem solid #E5E5E5;
    border-radius: 0.5rem;
    line-height: 1;
    font-weight: 500;
    font-size: 1.2rem;
    color: #424242;
}
.sc-listing
 {
    font-size: 1.2rem;
}
.sc-listing .common-head-table .base {
    background-color: rgba(173, 60, 54, 0.05);
}
.sc-listing .common-head-table .address {
    text-align: left !important;
}
.sc-listing .common-head-table .address strong {
    display: block;
    font-weight: bold;
}
.sc-listing .land-area {
    width: 100%;
    height: 25rem;
    margin-bottom: 1.2rem;
    border-radius: 0.4rem;
    overflow: hidden;
    background-color: #eee;
}
.sc-listing .opnion-area {
    max-height: 33.6rem;
    margin-top: 1.2rem;
    padding: 1.5rem;
    border: 0.1rem solid #D9D9D9;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    color: #424242;
    background-color: #FCFCFC;
    overflow-y: auto;
}
.sc-listing .opnion-area .tit {
    display: block;
    margin-bottom: 1rem;
    font-weight: bold;
}
.sc-listing .opnion-area .tit::before {
    content: '';
    display: inline-block;
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 0.2rem;
    vertical-align: middle;
    background-image: url(../images/ico_opinion_badge.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.sc-listing .option-list-wrap {
    width: 100%;
    padding: 1.2rem 0;
    border-bottom: 0.1rem solid #E5E5E5;
}
.sc-listing .option-list-wrap .tit {
    font-weight: 600;
    font-size: 1.6rem;
    color: #424242;
}
.sc-listing .option-list-wrap .option-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem 1rem;
}
.sc-listing .option-list-wrap .option-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: calc((100% - 3rem) / 4);
}
.sc-listing .option-list-wrap .option-item::before {
    content: '';
    display: block;
    width: 7rem;
    height: 6.2rem;
    background-repeat: no-repeat;
    background-size: contain;
}
.sc-listing .option-list-wrap .option-item.ac-ceiling::before {
    background-image: url(../images/ico_option_ac-ceiling.svg);
}
.sc-listing .option-list-wrap .option-item.ac-standing::before {
    background-image: url(../images/ico_option_ac-standing.svg);
}
.sc-listing .option-list-wrap .option-item.ac-wall::before {
    background-image: url(../images/ico_option_ac-wall.svg);
}
.sc-listing .option-list-wrap .option-item.bed::before {
    background-image: url(../images/ico_option_bed.svg);
}
.sc-listing .option-list-wrap .option-item.wardrobe::before {
    background-image: url(../images/ico_option_wardrobe.svg);
}
.sc-listing .option-list-wrap .option-item.built-in-closet::before {
    background-image: url(../images/ico_option_built-in-closet.svg);
}
.sc-listing .option-list-wrap .option-item.dining-table::before {
    background-image: url(../images/ico_option_dining-table.svg);
}
.sc-listing .option-list-wrap .option-item.sofa::before {
    background-image: url(../images/ico_option_sofa.svg);
}
.sc-listing .option-list-wrap .option-item.shoe-cabinet::before {
    background-image: url(../images/ico_option_shoe-cabinet.svg);
}
.sc-listing .option-list-wrap .option-item.refrigerator::before {
    background-image: url(../images/ico_option_refrigerator.svg);
}
.sc-listing .option-list-wrap .option-item.washing-machine::before {
    background-image: url(../images/ico_option_washing-machine.svg);
}
.sc-listing .option-list-wrap .option-item.dryer::before {
    background-image: url(../images/ico_option_dryer.svg);
}
.sc-listing .option-list-wrap .option-item.microwave::before {
    background-image: url(../images/ico_option_microwave.svg);
}
.sc-listing .option-list-wrap .option-item.dishwasher::before {
    background-image: url(../images/ico_option_dishwasher.svg);
}
.sc-listing .option-list-wrap .option-item.shower-booth::before {
    background-image: url(../images/ico_option_shower-booth.svg);
}
.sc-listing .option-list-wrap .option-item.bathtub::before {
    background-image: url(../images/ico_option_bathtub.svg);
}
.sc-listing .option-list-wrap .option-item.bidet::before {
    background-image: url(../images/ico_option_bidet.svg);
}
.sc-listing .option-list-wrap .option-item.sink::before {
    background-image: url(../images/ico_option_sink.svg);
}
.sc-listing .option-list-wrap .option-item.gas-stove::before {
    background-image: url(../images/ico_option_gas-stove.svg);
}
.sc-listing .option-list-wrap .option-item.induction::before {
    background-image: url(../images/ico_option_induction.svg);
}
.sc-listing .option-list-wrap .option-item.gas-oven::before {
    background-image: url(../images/ico_option_gas-oven.svg);
}
.sc-listing .option-list-wrap .option-item.security-guard::before {
    background-image: url(../images/ico_option_security-guard.svg);
}
.sc-listing .option-list-wrap .option-item.private-security::before {
    background-image: url(../images/ico_option_private-security.svg);
}
.sc-listing .option-list-wrap .option-item.cctv::before {
    background-image: url(../images/ico_option_cctv.svg);
}
.sc-listing .option-list-wrap .option-item.security-bars::before {
    background-image: url(../images/ico_option_security-bars.svg);
}
.sc-listing .option-list-wrap .option-item.fire-alarm::before {
    background-image: url(../images/ico_option_fire-alarm.svg);
}
.sc-listing .option-list-wrap .option-item.elevator::before {
    background-image: url(../images/ico_option_elevator.svg);
}
.sc-listing .option-list-wrap .option-item.video-phone::before {
    background-image: url(../images/ico_option_video-phone.svg);
}
.sc-listing .option-list-wrap .option-item.intercom::before {
    background-image: url(../images/ico_option_intercom.svg);
}
.sc-listing .option-list-wrap .option-item.card-key::before {
    background-image: url(../images/ico_option_card-key.svg);
}
.sc-listing .option-list-wrap .option-item.terrace::before {
    background-image: url(../images/ico_option_terrace.svg);
}
.sc-listing .option-list-wrap .option-item.veranda::before {
    background-image: url(../images/ico_option_veranda.svg);
}
.sc-listing .option-list-wrap .option-item.yard::before {
    background-image: url(../images/ico_option_yard.svg);
}
.sc-listing .option-list-wrap .option-item.parcel-locker::before {
    background-image: url(../images/ico_option_parcel-locker.svg);
}
.sc-listing .option-list-wrap .option-item span {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    color: #424242;
}
.sc-listing .floor-plan-area {
    margin: 1.2rem 0;
}
.sc-listing .floor-plan-area .tit {
    font-weight: 600;
    font-size: 1.6rem;
    color: #424242;
}
.sc-listing .floor-plan-area .floor-plan-swiper {
    height: 20rem;
    border: 0.1rem solid #D9D9D9;
    border-radius: 0.4rem;
}
.sc-listing .floor-plan-area .floor-plan-swiper .swiper-slide {
    padding: 1rem;
}
.sc-listing .floor-plan-area .floor-plan-swiper .swiper-slide img {
    height: 100%;
    margin: 0 auto;
    object-fit: contain;
}
.sc-listing .floor-plan-area .floor-plan-swiper .swiper-button-next,
.sc-listing .floor-plan-area .floor-plan-swiper .swiper-button-prev {
    width: 2.2rem;
    height: 2.7rem;
    color: #737373 !important;
}

.sc-listing .floor-plan-area .floor-plan-swiper .swiper-pagination-bullet-active {
  background: #737373 !important;
}
.sc-listing-info .listing-list {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding-bottom: 1.5rem;
}
.sc-listing-info .listing-list li a {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
}
.sc-listing-info .listing-list li .img {
    position: relative;
    width: 18rem;
    height: 12rem;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #eee;
}
.sc-listing-info .listing-list li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sc-listing-info .listing-list li .img .btn-like {
    position: absolute;
    right: 0.7rem;
    top: 0.7rem;
    z-index: 5;
}
.sc-listing-info .listing-list li .img .btn-like svg {
    color: var(--primary-color);
}
.sc-listing-info .listing-list li .info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.sc-listing-info .listing-list li .category {
    align-self: flex-start;
    margin-bottom: 0.2rem;
    padding: 0 0.6rem;
    border-radius: 0.4rem;
    font-weight: 500;
    font-size: 1.2rem;
}
.sc-listing-info .listing-list li .category.mult_house {
    border: 1px solid #FF8888;
    background-color: #FFECEC;
    color: #DD2222;
}
.sc-listing-info .listing-list li .category.single_house {
    border: 1px solid #88CC99;
    background-color: #EDFAF3;
    color: #228844;
}
/* .sc-listing-info .listing-list li .category.building {
    border: 1px solid #99BBFF;
    background-color: #EEF4FF;
    color: #2255CC;
} */
.sc-listing-info .listing-list li .category.factory {
    border: 1px solid #77BBDD;
    background-color: #EEF8FB;
    color: #1188AA;
}
.sc-listing-info .listing-list li .category.office {
    border: 1px solid #FFAACC;
    background-color: #FFEFF8;
    color: #CC2277;
}
.sc-listing-info .listing-list li .category.land {
    border: 1px solid #D4B86A;
    background-color: #FBF5E0;
    color: #9A7030;
}
.sc-listing-info .listing-list li .info strong,
.sc-listing-info .listing-list li .info .price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.6rem;
}
.sc-listing-info .listing-list li .info p {
    font-size: 1.4rem;
}
.sc-listing-info .listing-list li .info p span {
    margin-right: 0.3rem;
    color: #8C8C8C;
}
.sc-listing-info .listing-list li .stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
}
.sc-listing-info .listing-list li .stats .likes {
    color: #8C8C8C
}
.sc-listing-info .listing-list li .stats .likes::before {
    color: #8c8c8c;
}
.sc-listing-info .btn-listing-more {
    display: block;
    width: 100%;
    height: 4.5rem;
    line-height: 4.5rem;
    border-top: 0.1rem solid #F0F0F0;
    text-align: center;
    font-size: 1.4rem;
    color: #8C8C8C;
}
/* 매물 목록 리스트화면 */
.side-detail-layer {
    position: fixed;
    left: calc(var(--sidepanel-width) + var(--navbar-width));
    top: 0;
    width: var(--sidepanel-width);
    height: 100%;
    z-index: 40;
    overflow-y: auto;
}
.side-detail-layer.left-0 {
    left: 0;
}
.listing-detail  {
    position: absolute;
    left:0;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #fff;
}
.listing-all-views {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background-color: #fff;
}
.listing-all-views.show, .listing-detail.show {
    display: block;
}
.listing-all-views .sc-listing-info {
    overflow-y: auto;
    height: calc(100% - 10.4rem);
}
.listing-all-views .summary {
    display: flex;
    flex-direction: column;
}
.listing-all-views .summary .summary-head {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}
.listing-all-views .summary .summary-head .btn-back {
    position: absolute;
    left: 0;
    top: 0;
    width: 1rem;
    height: 1.9rem;
    background-image: url(../images/ico_btn_back.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.listing-all-views .summary .summary-head .title {
    text-align: center;
    font-weight: 600;
    font-size: 1.8rem;
}
.listing-all-views .summary .summary-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.listing-all-views .summary .summary-info .info {
    font-weight: 500;
    font-size: 1.6rem;
}
.listing-all-views .sc-listing-info .listing-list {
    gap: 0;
}
.listing-all-views .sc-listing-info .listing-list li a {
    padding: 1.5rem;
    border-bottom: 0.1rem solid #F0F0F0;
}
.listing-all-views .listing-list li .watch {
    color: #8C8C8C;
}
.listing-all-views .listing-list li .watch::before {
    background-image: url(../images/ico_eye_b.svg);
}
.listing-all-views .listing-list li .like {
    color: #8C8C8C;
}
.sc-deal-price .max-content {
    max-height: 45rem;
}
.sc-deal-price .tab-container {}
.sc-deal-price .topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.sc-deal-price .tab-panel > .tab-btns {
    display: flex;
    margin-bottom: 1.5rem;
}
.sc-deal-price .tab-btns .tab {
    flex: 1;
}
.sc-deal-price .trade-option-bar {
    display: flex;
    align-items: stretch;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.sc-deal-price .trade-metric-tabs {
    display: flex;
    flex: 1;
    gap: 0.6rem;
}
.sc-deal-price .trade-metric-tab {
    flex: 1;
    height: 3.2rem;
    padding: 0 1rem;
    border: 0.1rem solid #E5E5E5;
    border-radius: 0.7rem;
    background-color: #fff;
    color: #8C8C8C;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 3rem;
    white-space: nowrap;
}
.sc-deal-price .trade-metric-tab.active {
    border-color: #222;
    color: #222;
    box-shadow: none;
}
.sc-deal-price .area-unit-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    flex: 0 0 4.6rem;
    height: 3.2rem;
    border: 0;
    border-radius: 0.7rem;
    background-color: #6E6E6E;
    color: #fff;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1;
}
.sc-deal-price .area-unit-toggle span {
    font-size: 1.2rem;
}
.sc-deal-price .gragh-info {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.sc-deal-price .gragh-info div {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 9.6rem;
    border: 0.1rem solid #E5E5E5;
    border-radius: 0.7rem;
}
.sc-deal-price .gragh-info .tit {
    padding-bottom: 0.3rem;
    font-weight: 500;
    font-size: 1.5rem;
}
.sc-deal-price .gragh-info .tit em {
    font-weight: 700;
}
.sc-deal-price .gragh-info p {
    padding-bottom: 0.5rem;
    font-size: 1.4rem;
    color: #8C8C8C;
}
.sc-deal-price .gragh-info strong {
    font-weight: 600;
    font-size: 1.6rem;
}
.sc-deal-price .gragh-info.monthly {
    align-items: center;
    flex-wrap: wrap;
}
.sc-deal-price .gragh-info.monthly > p {
    padding-bottom: 0;
}
.sc-deal-price .gragh-info.monthly strong {
    flex-basis: 100%;
}
.sc-deal-price .gragh {
    margin-bottom: 1.5rem;
}
.sc-deal-price .no-data {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 4rem;
    color: #8c8c8c;
}
.sc-unit-info .sc-contents, .sc-unit-info .select-group,.sc-floor-info .sc-contents, .sc-floor-info .select-group {
    padding-bottom: 1.5rem;
}
.sc-apt-price {
    padding-bottom: 1.5rem;
}
.sc-apt-price .select-group {
    margin-bottom: 1.5rem;
}
.sc-building-age {}
.sc-building-age .summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 7.8rem;
    padding-left: 8.5rem;
    border: 0.1rem solid #E5E5E5;
    border-radius: 1rem;
    background-image: url(../images/ico_building.svg);
    background-repeat: no-repeat;
    background-size: 5rem 5rem;
    background-position: center left 1.5rem;
}
.sc-building-age .summary P {
    font-weight: 500;
    font-size: 1.4rem;
}
.sc-building-age .summary P span {
    font-weight: 700;
    font-size: 1.6rem;
}
.sc-building-age .info {
    padding: 1.5rem;
    line-height: 1.4;
    border-radius: 1rem;
    font-weight: 500;
    font-size: 1.6rem;
    background-color: #F7F7F7;
}
.sc-building-age .info span {
    font-size: 1.4rem;
}
.sc-land-plan, .sc-building-age, .sc-agent-info {
    padding-bottom: 1.5rem;
}
.sc-maint-fee .fee-swiper {
    margin: 1.5rem 0;
}
.sc-maint-fee .fee-swiper .swiper-slide .title {
    padding-bottom: 1.5rem;
    border-bottom: 0.1rem solid #E5E5E5;
    text-align: center;
    font-weight: 500;
    font-size: 1.6rem;
}
.sc-maint-fee .fee-swiper .prev,
.sc-maint-fee .fee-swiper .next {
    top: 1rem;
    width: 1rem;
    color: #424242;
}
.sc-maint-fee .tab-btns {
    display: flex;
    gap: 0.6rem;
    margin: 2rem 0 1.5rem;
    background-color: unset;
}
.sc-maint-fee .tab-btns .tab {
    flex: 1;
    height: 3.6rem;
    border-radius: 0.7rem;
    border: 0.1rem solid #E5E5E5;
}
.sc-maint-fee .tab-btns .tab.active {
    border-color: var(--active-color);
    font-weight: 600;
    color: var(--active-color);
}
.sc-maint-fee .common-table {}
.sc-maint-fee .common-table tr th {
    min-width: 15rem;
}
.sc-infra .traffic-swiper .swiper-slide {
    flex: 1;
    white-space: nowrap;
}
.sc-infra .infra-list-area .txt {
    padding-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1.2rem;
}
.sc-infra .infra-list-area .infra-list {
    border-top: 0.1rem solid #E5E5E5;
}
.sc-infra .infra-list-area .infra-list li {
    display: flex;
    align-items: center;
    padding: 1rem 0.5rem;
    border-bottom: 0.1rem solid #E5E5E5;
    cursor: pointer;
}
.sc-infra .infra-list-area .infra-list li::before {
    content: '';
    display: inlne-block;
    flex-shrink: 0;
    margin-right: 1rem;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background-color: #737373;
}
.sc-infra .infra-list-area .infra-list li.subway::before {
    width: 1.2em;
    height: 1.5em;
    -webkit-mask-image: url(../images/ico_subway.svg);
    mask-image: url(../images/ico_subway.svg);
}
.sc-infra .infra-list-area .infra-list li.bus::before {
    width: 1.8em;
    height: 1.4em;
    -webkit-mask-image: url(../images/ico_bus.svg);
    mask-image: url(../images/ico_bus.svg);
}
.sc-infra .infra-list-area .infra-list li.school::before {
    width: 1.8em;
    height: 1.6em;
    -webkit-mask-image: url(../images/ico_school.svg);
    mask-image: url(../images/ico_school.svg);
}
.sc-infra .infra-list-area .infra-list li.amenities::before {
    width: 1.5em;
    height: 1.7em;
    -webkit-mask-image: url(../images/ico_cart.svg);
    mask-image: url(../images/ico_cart.svg);
}
.sc-infra .infra-list-area .infra-list li.medical::before {
    width: 1.4rem;
    height: 1.4rem;
    -webkit-mask-image: url(../images/ico_medical.svg);
    mask-image: url(../images/ico_medical.svg);
}
.sc-infra .infra-list-area .infra-list li p {
    font-weight: 500;
    font-size: 1.4rem;
    color: #595959;
}
.sc-infra .infra-list-area .infra-list li p:first-child {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.sc-infra .infra-list-area .infra-list li p:last-child {
    margin-left: auto;
    white-space: nowrap;
}
.sc-infra .infra-list-area .infra-list li:hover p {
    text-decoration: underline;
    color: #424242;
}
.sc-infra .infra-list-area .infra-list li:hover::before {
    background-color: #424242;
}
.sc-infra .infra-list-area .infra-list li p span {}


.sc-review, .sc-review .sc-subtitle {
    padding: 0;
}
.sc-review .sc-head {
    padding: 1.5rem;
}
.sc-review .review-content {
    height: auto;
}
.sc-review .tab-container {
    margin-bottom: 1.5rem;
}
.sc-review .tab-btns {
    display: flex;
    margin-bottom: 1rem;
}
.sc-review .tab-btns  .tab {
    flex: 1;
}
.sc-review .ai-reviews-list {
    padding: 1rem;
    border-radius: 1.6rem;
    background-color: #F7F7F7;
}
.sc-review .ai-reviews-list li {
    padding: 1rem;
    border-bottom: 0.1rem solid #E5E5E5;
    font-size: 1.4rem;
    color: #595959;
    background-color: #fff;
}
.sc-review .resident-reviews {
    border-top: 0.1rem solid #F0F0F0;
}
.sc-review .resident-reviews li {
    padding: 1.5rem 0;
    border-bottom: 0.1rem solid #F0F0F0;
}
.sc-review .resident-reviews li .name {
    padding-bottom: 0.5rem;
    font-size: 1.2rem;
}
.sc-review .resident-reviews li .date {
    padding-bottom: 1rem;
    font-size: 1.2rem;
    color: #8C8C8C;
}
.sc-review .resident-reviews li .review {
    font-size: 1.4rem;
}
.sc-review .resident-reviews li .stats {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}
.sc-review .resident-reviews li .stats .likes {
    color: #8C8C8C;
}
.sc-review .resident-reviews li .stats .likes::before {
    background-image: url(../images/ico_heart02.svg);
}
.sc-review .resident-reviews li .stats .comments {
    margin-left: 1rem;
}
.sc-review .resident-reviews li .stats .btn-reply {
    margin-left: 1.5rem;
    font-size: 1.2rem;
    color: #8C8C8C;
}
/* 실거래 내역 모달 */
.modal-container .actual-price {
    padding: 2rem -2rem !important;
}
.actual-price .contents-group {
    padding: 0 1.6rem;
    border-top: 0.6rem solid #F7F7F7;
    background-color: #fff;
}
.actual-price .contents-group h3 {
    padding-top: 1.2rem;
    font-weight: 500;
    font-size: 1.6rem;
}
.actual-price .contents-group .contents-list {}
.actual-price .contents-group .contents-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    padding: 1rem;
}
.actual-price .contents-group .contents-list li:not(:last-child) {
    border-bottom: 0.1rem solid #F7F7F7;
}
.actual-price .contents-group .contents-list li span {
    font-weight: 500;
    font-size: 1.4rem;
    color: #424242;
}
.actual-price .contents-group .contents-list li .tit {
    min-width: 10rem;
    color: #8c8c8c;
}
.actual-price .contents-group .contents-list li span:not(.tit) {
    flex: 1;
    text-align: right;
    word-break: keep-all;
}
/* ======================== e: section-contents ======================== */

/* ======================== s: map-container ======================== */
.map-container {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.map-container .map-area {
    display: flex;
    width: 100%;
    height: 100%;
}
.map-container .map-area .map {
    width: 100%;
    height: 100%;
}
.map-container .map-area .pano {
    width: 50%;
    height: 100%;
}
.map-container .map-area .map .marker {
    min-width: 7rem;
}
.map-container .map-area .map .marker .tit {
    padding: 0.3rem;
    border-radius: 0.4rem;
    text-align: center;
    font-size: 1.2rem;
}
.map-container .map-area .map .marker .date {
    padding: 0.3rem 0;
    text-align: center;
    font-size: 1.1rem;
}
.map-container .map-area .map .marker .amount {
    text-align: center;
    font-weight: 700;
    font-size: 1.4rem;
    color: #202224;
}
.map-container .map-area .map .marker.apt .tit {
    background-color: #F7D9D9;
    color: #BB1111;
}
.map-container .map-area .map .marker.apt .date {
    color: var(--primary-color);
}
.map-container .map-area .map .marker.land .tit {
    background-color: #D9F7E4;
    color: #2BC067;
}
.map-container .map-area .map .marker.land .date {
    color: #2BC067;
}
.map-container .map-area .map .marker.shop .tit {
    background-color: #F7ECD9;
    color: #C07F2B;
}
.map-container .map-area .map .marker.shop .date {
    color: #C07F2B;
}
.map-container .map-area .map .marker.mult_house .tit {
    background-color: #D9E6F7;
    color: #2B65C0;
}
.map-container .map-area .map .marker.mult_house .date {
    color: #2B65C0;
}
.map-container .map-area .map .marker.single_house .tit {
    background-color: #E8D9F7;
    color: #732BC0;
}
.map-container .map-area .map .marker.single_house .date {
    color: #732BC0;
}
.map-container .map-area .map .marker.multi_family .tit {
    background-color: #CFE8D6;
    color: #0F5132;
}
.map-container .map-area .map .marker.multi_family .date {
    color: #0F5132;
}
.map-container .map-area .map .marker.office .tit {
    background-color: #F7D9F2;
    color: #C02B9D;
}
.map-container .map-area .map .marker.office .date {
    color: #C02B9D;
}
.map-container .map-area .map .marker.factory .tit {
    background-color: #FBF3A7;
    color: #F2BD03;
}
.map-container .map-area .map .marker.factory .date {
    color: #F2BD03;
}
.map-container .btn-search-area {
    position: absolute;
    left: 9rem;
    top: 2rem;
}
.map-container .btn-search-area .btn-search {
    width: 32rem;
    height: 4.8rem;
    padding: 1.4rem 4.8rem 1.4rem 1.6rem;
    border-radius: 0.7rem;
    text-align: left;
    font-size: 1.4rem;
    color: #8C8C8C;
    background-color: #fff;
    background-image: url(../images/ico_search.svg);
    background-repeat: no-repeat;
    background-size: 2rem 2rem;
    background-position: right 1.6rem center;
    box-sizing: border-box;
    box-shadow: 0.4rem 0.4rem 0.8rem 0 rgba(0, 0, 0, 0.12);
}
.map-container .controller {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.map-container .controller .btns-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 5.2rem;
    padding: 0.4rem 0.3rem;
    border-radius: 0.8rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.7);
    overflow: hidden;
    background-color: #fff;
}
.map-container .controller .btns-group .btns-group-tit {
    margin-bottom: 0.8rem;
    text-align: center;
    font-weight: 500;
    font-size: 1.2rem;
    color: #B3B3B3;
}
.map-container .controller .btns-group .btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    width: 100%;
    border-radius: 0.4rem;
}
.map-container .controller .btns-group.btns-pin .btn .toggle {

}
.map-container .controller .btns-group.btns-pin .btn + .btn {
    margin-top: 0.8rem;
}
/* .map-container .controller .btns-group .btn + .btn {
    padding-top: 0.4rem;
} */
/* .map-container .controller .btns-group .btn:hover {
    background-color: oklch(96.7% 0.003 264.542);
} */
.map-container .controller .btns-group .btn .icon {
    width: 2rem;
    height: 2rem;
}
/* .map-container .controller .btns-group .btn .name{
    font-weight: 500;
    font-size: 1.2rem;
} */
.map-container .controller .btns-group .btn.zoom .icon,
.map-container .controller .btns-group .btn.current-location .icon {
    width: 1.8rem;
}
.map-container .controller .btns-group .btn.zoom .icon img,
.map-container .controller .btns-group .btn.current-location .icon img {
    filter: invert(49%) sepia(0%) saturate(22%) brightness(91%) contrast(90%);
}

/* 통합 마커 */
.integrated-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.marker-tabs  {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 0.3rem;
    padding: 0.3rem;
    border-radius: 1.5rem;
    background-color: #F0F0F0;
}
.marker-tabs .active {
    color: #fff;
    background-color: #595959;
}
.tab-btn-sale, .tab-btn-actual {
    flex: 1;
    padding: 0.2rem 0.4rem;
    border-radius: 1.5rem;
    text-align: center;
    font-weight: 500;
    font-size: 1.2rem;
    color: #8C8C8C;
}
/* .tab-btn-sale.active {
    color: #fff;
    background-color: #1D6EB7;
}
.tab-btn-actual.active {
    color: #fff;
    background-color: #1D6EB7;
} */
.marker-card {
    min-width: 8rem;
}
.view-data {
    border-radius: 0.6rem;
    overflow: hidden;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, .15);
}
/* 마커에서 hidden 처리된 카드(매물+실거래 동시 PNU의 미선택 카드)를 실제로 숨김
   — .hidden 범용 규칙이 없어 카드가 둘 다 떠 그림자가 겹치던 문제 수정 */
.integrated-marker .view-data.hidden {
    display: none;
}
/* 26/05/11 핀수정 */
.view-data::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0.6rem;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-width: 0.7rem;
    border-right-width: 0.5rem;
    border-left-width: 0.5rem;
}

.map-container .map-area .map .view-data.apt::after,
.map-container .map-area .map .view-data.pro_31::after,
.map-tools-modal .info-box .view-data.apt::after {
    border-top-color: #F6C0BE;
}
.map-container .map-area .map .view-data.land::after,
.map-container .map-area .map .view-data.pro_22::after,
.map-tools-modal .info-box .view-data.land::after {
    border-top-color: #D4B86A;
}
.map-container .map-area .map .view-data.shop::after,
.map-container .map-area .map .view-data.pro_25::after,
.map-tools-modal .info-box .view-data.shop::after {
    border-top-color: #9DA9CD;
}
.map-container .map-area .map .view-data.mult_house::after,
.map-container .map-area .map .view-data.pro_32::after,
.map-tools-modal .info-box .view-data.mult_house::after {
    border-top-color: #FECEBD;
}
.map-container .map-area .map .view-data.single_house::after,
.map-container .map-area .map .view-data.pro_9::after,
.map-tools-modal .info-box .view-data.single_house::after {
    border-top-color: #88CC99;
}
.map-container .map-area .map .view-data.multi_family::after,
.map-tools-modal .info-box .view-data.multi_family::after {
    border-top-color: #88CC99;
}
.map-container .map-area .map .view-data.office::after,
.map-container .map-area .map .view-data.pro_33::after,
.map-tools-modal .info-box .view-data.office::after {
    border-top-color: #FAAFE8;
}
.map-container .map-area .map .view-data.factory::after,
.map-container .map-area .map .view-data.pro_34::after,
.map-tools-modal .info-box .view-data.factory::after {
    border-top-color: #77BBDD;
}
.map-container .map-area .map .view-data.building::after,
.map-container .map-area .map .view-data.pro_16::after,
.map-tools-modal .info-box .view-data.building::after {
    border-top-color: #99BBFF;
}
.view-data .category {
    position: relative;
    margin-bottom: -0.2rem;
    padding-top: 0.2rem;
    text-align: center;
    font-weight: 500;
    font-size: 1.1rem;
    /* color: rgba(255,255,255,0.7); */
    /* background-color: rgba(29, 110, 183, 0.1); */
}
.map-container .map-area .map .view-data.apt .category,
.map-container .map-area .map .view-data.pro_31 .category {
    color: #DD2222;
}
.map-container .map-area .map .view-data.land .category,
.map-container .map-area .map .view-data.pro_22 .category {
    color: #9A7030;
}
.map-container .map-area .map .view-data.shop .category,
.map-container .map-area .map .view-data.pro_25 .category {
    color: #3333AA;
}
.map-container .map-area .map .view-data.mult_house .category,
.map-container .map-area .map .view-data.pro_32 .category {
    color: #CC6633;
}
.map-container .map-area .map .view-data.single_house .category,
.map-container .map-area .map .view-data.pro_9 .category {
    color: #228844;
}
.map-container .map-area .map .view-data.multi_family .category {
    color: #228844;
}
.map-container .map-area .map .view-data.office .category,
.map-container .map-area .map .view-data.pro_33 .category {
    color: #CC2277;
}
.map-container .map-area .map .view-data.factory .category,
.map-container .map-area .map .view-data.pro_34 .category {
    color: #1188AA;
}
.map-container .map-area .map .view-data.building .category,
.map-container .map-area .map .view-data.pro_16 .category {
    color: #2255CC;
}

.map-container .map-area .map .view-data.apt .total,
.map-container .map-area .map .view-data.pro_31 .total,
.map-container .map-area .map .view-data.apt .danga,
.map-container .map-area .map .view-data.pro_31 .danga,
.map-tools-modal .info-box .view-data.apt .total,
.map-tools-modal .info-box .view-data.apt .category {
    color: #BB1111;
}
.map-container .map-area .map .view-data.land .total,
.map-container .map-area .map .view-data.pro_22 .total,
.map-container .map-area .map .view-data.land .danga,
.map-container .map-area .map .view-data.pro_22 .danga,
.map-tools-modal .info-box .view-data.land .total,
.map-tools-modal .info-box .view-data.land .category {
    color: #6B4D10;
}
.map-container .map-area .map .view-data.shop .total,
.map-container .map-area .map .view-data.pro_25 .total,
.map-container .map-area .map .view-data.shop .danga,
.map-container .map-area .map .view-data.pro_25 .danga,
.map-tools-modal .info-box .view-data.shop .total,
.map-tools-modal .info-box .view-data.shop .category {
    color: #111177;
}
.map-container .map-area .map .view-data.mult_house .total,
.map-container .map-area .map .view-data.pro_32 .total,
.map-container .map-area .map .view-data.mult_house .danga,
.map-container .map-area .map .view-data.pro_32 .danga,
.map-tools-modal .info-box .view-data.mult_house .total,
.map-tools-modal .info-box .view-data.mult_house .category {
    color: #994411;
}
.map-container .map-area .map .view-data.single_house .total,
.map-container .map-area .map .view-data.pro_9 .total,
.map-container .map-area .map .view-data.single_house .danga,
.map-container .map-area .map .view-data.pro_9 .danga,
.map-tools-modal .info-box .view-data.single_house .total,
.map-tools-modal .info-box .view-data.single_house .category {
    color: #116633;
}
.map-container .map-area .map .view-data.multi_family .total,
.map-container .map-area .map .view-data.multi_family .danga,
.map-tools-modal .info-box .view-data.multi_family .total,
.map-tools-modal .info-box .view-data.multi_family .category {
    color: #116633;
}
.map-container .map-area .map .view-data.office .total,
.map-container .map-area .map .view-data.pro_33 .total,
.map-container .map-area .map .view-data.office .danga,
.map-container .map-area .map .view-data.pro_33 .danga,
.map-tools-modal .info-box .view-data.office .total,
.map-tools-modal .info-box .view-data.office .category {
    color: #991155;
}
.map-container .map-area .map .view-data.factory .total,
.map-container .map-area .map .view-data.pro_34 .total,
.map-container .map-area .map .view-data.factory .danga,
.map-container .map-area .map .view-data.pro_34 .danga,
.map-tools-modal .info-box .view-data.factory .total,
.map-tools-modal .info-box .view-data.factory .category {
    color: #006688;
}
.map-container .map-area .map .view-data.building .total,
.map-container .map-area .map .view-data.pro_16 .total,
.map-container .map-area .map .view-data.building .danga,
.map-container .map-area .map .view-data.pro_16 .danga,
.map-tools-modal .info-box .view-data.building .total,
.map-tools-modal .info-box .view-data.building .category {
    color: #113399;
}

.view-data.view-both > .total {
    font-size: 10px;
}
.view-data.view-both > .total b {
    font-size: 11px;
}
.view-data.view-both .amount .total {
    padding-bottom: 0;
}
.map-container .map-area .map .view-both.pro_31 > .total,
.map-container .map-area .map .view-both.pro_31 > .total b {
    color: #DD2222;
}
.map-container .map-area .map .view-both.pro_22 > .total,
.map-container .map-area .map .view-both.pro_22 > .total b {
    color: #9A7030;
}
.map-container .map-area .map .view-both.pro_25 > .total,
.map-container .map-area .map .view-both.pro_25 > .total b {
    color: #3333AA;
}
.map-container .map-area .map .view-both.pro_32 > .total,
.map-container .map-area .map .view-both.pro_32 > .total b {
    color: #CC6633;
}
.map-container .map-area .map .view-both.pro_9  >.total,
.map-container .map-area .map .view-both.pro_9  >.total b {
    color: #228844;
}
.map-container .map-area .map .view-both.pro_33 > .total,
.map-container .map-area .map .view-both.pro_33 > .total b {
    color: #CC2277;
}
.map-container .map-area .map .view-both.pro_34 > .total,
.map-container .map-area .map .view-both.pro_34 > .total b {
    color: #1188AA;
}
.map-container .map-area .map .view-both.pro_16 > .total,
.map-container .map-area .map .view-both.pro_16 > .total b {
    color: #2255CC;
}

.view-data .total {
    display: block;
    padding-bottom: 0.2rem;
    padding: 0 0.4rem 0.2rem;
    text-align: center;
    font-weight: 500;
    font-size: 1.1rem;
    white-space: nowrap;
    /* color: #ffffff; */
}
.view-data .danga {
    display: block;
    text-align: center;
}
.view-data .total b,
.view-data .danga .pyung,
.view-data .danga .m2 {
    font-size: 1.3rem;
    font-weight: 600;
}
.view-data .danga .pyung {
    padding: 0 0.8rem;
}
.view-data .total .actual-price {
    display: block;
    line-height: 1.4;
    font-weight: 500;
    font-size: 1.1rem;
    /* color: rgba(255,255,255,0.7); */
}
.view-data .badge {
    position: absolute;
    left: 50%;
    top: -50%;
    transform: translateX(-50%);
    padding: 0.2rem 0.8rem;
    border-radius: 1.5rem;
    font-size: 1rem;
    color: #fff;
    background-color: #595959;
}
.view-data .badge::before {
    content: none;
}
.view-data .summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0 0 0.4rem 0.4rem;
    background-color: #fff;
}
.view-data .summary .date {
    display: none;
    line-height: 1.6;
    font-weight: 500;
    font-size: 1.1rem;
    color: #8C8C8C;
}
.view-data .summary .amount,
.view-data .summary .area {
    display: flex;
    align-items: center;
}
.view-data .summary .total,
.view-data .summary .danga span  {
    font-weight: 500;
    font-size: 1.1rem;
    color: #8C8C8C;
}
.view-data .summary .total span {
    font-weight: 500;
    font-size: 1.1rem;
    color: #8C8C8C;
}
.view-data .summary .amount span,
.view-data .summary .area span {
    line-height: 1.6;
    font-weight: 500;
    font-size: 1.1rem;
    color: #8C8C8C;
}
/* 단가 면적기준 동그라미 배지 (공/전/계/임/대/연/건/거) — 면적 앞에 표시 */
.view-data .summary .area .area-basis {
    font-style: normal;
    font-weight: 500;
    margin-right: 0.3rem;
    color: #8C8C8C;
}
.map-container .map-area .map .view-data .sale {
    font-weight: 500;
    font-size: 1.1rem;
}
/* .map-container .map-area .map .view-data.pro_1 .sale {
    color: #AD3C36;
}
.map-container .map-area .map .view-data.pro_9 .sale {
    color: #732BC0;
}
.map-container .map-area .map .view-data.pro_16 .sale {
    color: #F2BD03;
}
.map-container .map-area .map .view-data.pro_22 .sale {
    color: #2BC067;
}
.map-container .map-area .map .view-data.pro_25 .sale {
    color: #C07F2B;
} */
.map-container .map-area .map .view-data.apt,
.map-container .map-area .map .view-data.pro_31,
.map-tools-modal .info-box .view-data.apt {
    border: 0.1rem solid #FF8888;
    /* color: #F7D9D9; */
    background-color: #FFECEC;
}
/* .map-container .map-area .map .view-data.apt .date,
.map-container .map-area .map .view-data.pro_1 .date {
    color: #BD3C3B;
} */
.map-container .map-area .map .view-data.land,
.map-container .map-area .map .view-data.pro_22,
.map-tools-modal .info-box .view-data.land {
    border: 0.1rem solid #D4B86A;
    /* color: #005B1D; */
    background-color: #FBF5E0;
}
/* .map-container .map-area .map .view-data.land .date,
.map-container .map-area .map .view-data.pro_22 .date {
    color: #3CC267;
} */
.map-container .map-area .map .view-data.shop,
.map-container .map-area .map .view-data.pro_25,
 .map-tools-modal .info-box .view-data.shop {
    border: 0.1rem solid #9999EE; 
    /* color: #F7ECD9; */
    background-color: #EEEEFF;
}
/* .map-container .map-area .map .view-data.shop .date,
.map-container .map-area .map .view-data.pro_25 .date {
    color: #C28942;
} */
.map-container .map-area .map .view-data.mult_house,
.map-container .map-area .map .view-data.pro_32,
.map-tools-modal .info-box .view-data.mult_house {
    /* color: #D9E6F7; */
    background-color: #FFF2EC;
    border: 0.1rem solid #FFBB99;
}
/* .map-container .map-area .map .view-data.mult_house .date {
    color: #4271C2;
} */
.map-container .map-area .map .view-data.single_house,
.map-container .map-area .map .view-data.pro_9,
.map-tools-modal .info-box .view-data.single_house {
    /* color: #E8D9F7; */
    background-color: #EDFAF3;
    border: 0.1rem solid #88CC99;
}
.map-container .map-area .map .view-data.multi_family,
.map-tools-modal .info-box .view-data.multi_family {
    background-color: #E2F0E8;
    border: 0.1rem solid #88CC99;
}
/* .map-container .map-area .map .view-data.single_house .date,
.map-container .map-area .map .view-data.pro_9 .date {
    color: #7E41C2;
} */
.map-container .map-area .map .view-data.office,
.map-container .map-area .map .view-data.pro_33,
.map-tools-modal .info-box .view-data.office {
    /* color: #F7D9F2; */
    background-color: #FFEFF8;
    border: 0.1rem solid #FFAACC;
}
/* .map-container .map-area .map .view-data.office .date {
    color: #C23EA2;
} */
.map-container .map-area .map .view-data.factory,
.map-container .map-area .map .view-data.pro_34,
 .map-tools-modal .info-box .view-data.factory {
    /* color: #FBF3A7; */
    background-color: #EEF8FB;
    border: 0.1rem solid #77BBDD;
}
/* .map-container .map-area .map .view-data.factory .date,
.map-container .map-area .map .view-data.commercial .date {
    color: #B5AF00;
} */
 .map-container .map-area .map .view-data.building,
.map-container .map-area .map .view-data.pro_16,
.map-tools-modal .info-box .view-data.building {
    /* color: #FBF3A7; */
    background-color: #EEF4FF;
    border: 0.1rem solid #C0D7FF;
}

 /* 지도도구 미니모달 */
.map-tools-modal {
    position: absolute;
    right: calc(100% + 0.8rem);
    top: 0;
    /* transform: translateY(-50%); */
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.8rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 0.5rem;
    min-width: 16.3rem;
    z-index: 100;
}
.map-tools-modal.p12 {
    padding: 1.2rem;
}
.map-tools-modal .tools-section + .tools-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}
.map-tools-modal .tools-section-title {
    text-align: left;
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
}
.map-tools-modal .close {
    position: absolute;
    right: 1.2rem;
    top: 1.2rem;
    color: #C9C9C9;
}
.map-tools-modal .info-box,
.danga-area-modal .info-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    margin-top: 1.2rem;
    padding: 1.3rem;
    border-radius: 0.6rem;
    background-color: #EAEDF0;
}
.map-tools-modal .info-box .view-data,
.danga-area-modal .info-box .view-data {
    border: 1px solid #FF8888;
    background-color: #FFECEC;
}
.map-tools-modal .info-box .view-data::after,
.danga-area-modal .info-box .view-data::after {
    border-top-color: #FF8888;
}
.map-tools-modal .info-box .view-data .total,
.map-tools-modal .info-box .view-data .category,
.danga-area-modal .info-box .view-data .total,
.danga-area-modal .info-box .view-data .category {
    color: #DD2222;
}
.map-tools-modal .info-box .view-data .ex-total {
    display: block !important;
}
.map-tools-modal .info-box .view-data .ex-summary,
.map-tools-modal .info-box .view-data .ex-summary .area .m2{
    display: flex !important;
}
.map-tools-modal .info-box p,
.danga-area-modal .info-box p {
    text-align: left;
    white-space: nowrap;
    font-weight: 500;
    font-size: 1.4rem;
    color: #8C8C8C;
}
.map-tools-modal .radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 1.7rem;
}
.map-tools-modal .radio-group.flex-wrap {
    flex-direction: row;
    flex-wrap: wrap;
}
.map-tools-modal .radio-group.flex-wrap .radio-item {
    flex: 1 1 calc(50% - 0.4rem);
}
.map-tools-modal .radio-item .desc {
    padding-left: 2.4rem;
    text-align: left;
    font-weight: 500;
    font-size: 1.2rem;
    color: #8c8c8c;
}
.map-tools-modal .btns-row {
    display: flex;
}
.map-tools-modal .btns-row .btn.on {
    color: var(--primary-color);
}
.map-tools-modal .btns-row .btn:not(:last-child) {
    border-right: 1px solid #f0f0f0;
}
.map-tools-modal .btns-row .name {
    font-size: 1.2rem;
}


/* ======================== e: map-container ======================== */

	:root {
	--white : #fff ;
	--black : #000 ;
	--gray : #e7e9eb ;
	--gray-100 : #f7f9fc ;
	--primary : #C02B2B ;
	--shadow : 0 0 10px 5px rgba(0,0,0,.15) ;
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000000;
    --bs-white: #ffffff;
    --bs-gray: #78829D;
    --bs-gray-dark: #252F4A;
    --bs-gray-100: #F9F9F9;
    --bs-gray-200: #F1F1F4;
    --bs-gray-300: #DBDFE9;
    --bs-gray-400: #C4CADA;
    --bs-gray-500: #99A1B7;
    --bs-gray-600: #78829D;
    --bs-gray-700: #4B5675;
    --bs-gray-800: #252F4A;
    --bs-gray-900: #071437;
    --bs-light: #F9F9F9;
    --bs-primary: #7239EA;
    --bs-secondary: #F9F9F9;
    --bs-success: #50CD89;
    --bs-info: #009EF7;
    --bs-warning: #FFC700;
    --bs-danger: #F1416C;
    --bs-dark: #1E2129;
    --bs-light-rgb: 249,249,249;
    --bs-primary-rgb: 114,57,234;
    --bs-secondary-rgb: 249,249,249;
    --bs-success-rgb: 80,205,137;
    --bs-info-rgb: 0,158,247;
    --bs-warning-rgb: 255,199,0;
    --bs-danger-rgb: 241,65,108;
    --bs-dark-rgb: 30,33,41;
}

/* .badge {
	display : inline-block ;
	vertical-align : middle ;
	font-size : 10px ;
	line-height : 1 ;
	padding : 3px ;
	font-weight : 600 ;
	border-radius : 3px ;
	background-color : var(--bs-yellow) ;
}
.badge.green {
	color : var(--white);
	background-color : var(--bs-green) ;
}
.badge.blue {
	color : var(--white);
	background-color : var(--bs-blue) ;
} */

body > section.message {
	display : none ;
}
.marker {
	text-align : center ;
	background-color : var(--white);
	border-radius : 5px ;
	position : relative ;
	box-shadow : var(--shadow) ;
	padding : 5px ;
	min-width : 60px ;
	z-index : 10000000 ;
}
.marker:hover,.over-zindex-100:hover {
	z-index : 10000001 !important ;
}
.marker:before {
	content : "" ;
	position : absolute ;
	top : 100% ;
	left : calc( 50% - 4px );
	border-top : solid 8px var(--white) ;
	border-left : solid 6px transparent ;
	border-right : solid 6px transparent  ;
}
.marker .category {
	background-color : var(--primary) ;
	color : var(--white) ;
	font-size : 10px ;
	padding : 3px 6px ;
	width : 100% ;
	border-radius : 5px ;
	word-break: keep-all;
}
.marker .price {
	padding : 5px ;
	font-size : 14px ;
	line-height : 20px ;
	font-weight : 800 ;
}
.trade-marker {
    width: 7rem;
    height: 7rem;
    padding: 1.6rem 1.1rem;
    background-color: var(--primary-color);
    opacity: 0.8;
    border: 0.1rem solid var(--primary-color);
    border-radius: 50%;
    text-align: center;
    color: #fff;
    cursor: pointer;
}
.trade-marker span {
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1;
}
.trade-marker p {
    margin-top: 0.1rem;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.2;
}
.jibun-marker {
    position: relative;
    /* width: 8rem; */
    padding: 0.3rem 0.5rem;
    box-sizing: border-box;
    text-align: center;
    border-radius: 0.5rem;
    background-color: var(--primary-color);
}
/* .jibun-marker::before {
    content: '';
    display: block;
    position: absolute;
    left: -0.1rem;
    top: -2.5rem;
    width: 8rem;
    height: 2.5rem;
    background-image: url(../images/ico_marker_roof.svg);
    background-repeat: no-repeat;
    background-size: cover;
} */
.jibun-marker span {
    word-break: keep-all;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}
section.nmodal {
	background : rgba(0,0,0,.6) ;
	position : fixed ;
	top : 0 ;
	left : 0 ;
	z-index : 100 ;
	width : 100vw ;
	height : 100vh ;
	overflow-y : auto ;
	padding : 52px 0 ;
	place-items : center ;
	display : grid ;
	font-size : 14px ;
}
section.nmodal > .detail {
	background-color : #fff ;
	border-radius : 12px ;
	width : 1050px ;
	display : grid ;
	grid-template-columns : 1fr 360px ;
}
section.nmodal > .detail h2 {
	font-size: 20px ;
	font-weight : 800 ;
	line-height : 28px ;
	padding-bottom : 20px ;
	margin-top : 52px ;
}
section.nmodal > .detail h3 {
	font-size: 16px ;
	font-weight : 800 ;
	line-height : 22px ;
	padding : 20px 0 12px 0 ;
}
section.nmodal > .detail > header {
    grid-column: span 2;
	line-height : 48px ;
	padding : 0 16px ;
	border-bottom : solid 1px var(--gray) ;
	display : flex ;
	justify-content: space-between;
}
section.nmodal > .detail > header h1 {
	font-size : 16px ;
	font-weight : 600 ;
}
section.nmodal > .detail > .body {
	border-right : solid 1px var(--gray) ;
}

section.nmodal > .detail > .body .media {
	display : grid ;
	grid-template-columns : repeat(4,1fr) ;
	grid-template-rows : repeat(2,1fr) ;
	height : 260px ;
	background-color : var(--gray) ;
}
section.nmodal > .detail > .body .media .image {
	aspect-ratio : 346 / 260 ;
	background-position : center ;
	background-repeat : no-repeat ;
	background-size : cover ;
}
section.nmodal > .detail > .body .media > *:first-child {
	grid-row : span 2 ;
	grid-column : span 2 ;
}
section.nmodal > .detail > .body .media > .cadastral {
	grid-column : span 2 ;
}
section.nmodal > .detail > .body.no-trade {
	grid-column: span 2;
}
section.nmodal > .detail > .body.no-trade .media .satellite {
	grid-column: span 2;
	/*display : none ;*/
}
section.nmodal > .detail > .body .lands > .tab {
	background-color : var(--white) ;
	position : sticky ;
	top : -52px ;
}
section.nmodal > .detail > .body .lands > .tab > ul {
	display : grid ;
	grid-template-columns : repeat(5,1fr);
	line-height : 40px ;
	border-bottom : solid 1px var(--gray) ;
}
section.nmodal > .detail > .body.no-trade .lands > .tab > ul {
	grid-template-columns : repeat(4,1fr);
}
section.nmodal > .detail > .body .lands > .tab > ul > li {
	position: relative ;
	text-align : center ;
	cursor : pointer ;
}
section.nmodal > .detail > .body .lands > .tab > ul > li:before {
	content : "" ;
	display : block ;
	position : absolute ;
	bottom : 0 ;
	left : 0 ;
	width : 100% ;
	height : 2px ;
}
section.nmodal > .detail > .body .lands > .tab > ul > li a {
	word-break : keep-all ;
	white-space : nowrap ;
}
section.nmodal > .detail > .body .lands > .tab > ul > li.on {
	color : var(--primary) ;
}
section.nmodal > .detail > .body .lands > .tab > ul > li.on:before {
	background-color : var(--primary) ;
}
section.nmodal > .detail > .body .lands > .cont {
	padding : 30px 20px ;
}
section.nmodal > .detail > .body .lands > .cont .price {
	font-size : 22px ;
	font-weight : 800 ;
}
section.nmodal > .detail > .body .lands > .cont .title {
	font-size : 16px ;
	font-weight : 800 ;
}
.tags {
	display : inline-block ;
	vertical-align: text-bottom;
}
.tags > span {
	margin : 1px 3px 1px 0 ;
	padding : 3px 5px ;
	background-color : var(--primary) ;
	border-radius : 4px ;
	color : var(--white) ;
	display : inline-block ;
	font-size : 10px;
	font-weight : 400 ;
}
section.nmodal > .detail > .body .describe {
	border-radius : 6px ;
	background-color : var(--gray-100) ;
	padding : 12px ;
	margin : 20px 0 ;
}
section.nmodal > .detail > .body dl.field-row {
	display : grid ;
	grid-template-columns : 160px 1fr ;
	width : 100% ;
	border : solid 1px var(--gray)
}
section.nmodal > .detail > .body dl.field-row > dt {
	font-weight : 800 ;
	background-color : var(--gray-100) ;
	border-right : solid 1px var(--gray) ;
	color : #7D7E84 ;
}
section.nmodal > .detail > .body dl.field-row > dt,
section.nmodal > .detail > .body dl.field-row > dd {
	line-height : 1.6 ;
	padding: 10px 16px;
}
section.nmodal > .detail > .body dl.field-row ~ dl.field-row {
	margin-top : -1px ;
}
section.nmodal > .detail > .body table.list {
	width : 100% ;
	text-align : center ;
}
section.nmodal > .detail > .body table.list select {
	border : solid 1px var(--bs-gray-700) ;

}
section.nmodal > .detail > .body table.list tr > * {
	border-bottom : solid 1px var(--gray) ;
	padding : 12px 0 ;
}
section.nmodal > .detail > .body table.list tr.nodata > td {
	padding : 50px 0 ;
	text-align : center ;
}
section.nmodal > .detail > .body table.list tr.hidden > td {
	display : none
}

section.nmodal > .detail > .store {
	padding : 32px 20px
}
section.nmodal > .detail > .store > .store-wrap {
	position : sticky ;
	top : -20px ;
}
section.nmodal > .detail > .store .office {
	line-height : 88px
}
section.nmodal > .detail > .store dl.field-row {
	padding : 12px 0 ;
	line-height : 20px ;
	display : grid ;
	grid-template-columns : 100px 1fr ;
	width : 100% ;
}
section.nmodal > .detail > .store dl.field-row > dt {
	font-weight : 800 ;
}
section.nmodal > .detail > .store dl.field-row ~ dl.field-row {
	border-top : solid 1px var(--gray) ;
}

#goods-cont ul > li a {
	display : block ;
	padding : 20px ;
}
#goods-cont ul > li a big {
	font-size : 18px ;
	font-weight : 800 ;
}
#goods-cont ul > li a .summary {
	font-size : 14px ;
	font-weight : 800 ;
}
#goods-cont ul > li a .image {
	background-position : center ;
	background-size : cover ;
	aspect-ratio : 2/1 ;
	border-radius : 6px ;
	width : 100% ;
	background-color : var(--gray-100) ;
	display : block ;
	margin-bottom : 10px ;
}
.search-results {
	position : absolute ;
	z-index: 1010;
    width: 100%;
    height: 100%;
	border-bottom : var(--gray) ;
	background-color : var(--white) ;
}
.search-results .recent-list {
    height: auto;
}
.search-results .recent-list li {
    margin: 0;
    padding: 0 1.5rem;
}
.search-results ul > li {
	padding : 12px 16px ;
	cursor : pointer ;
	font-size : 12px ;
	transition : ease-out .2s ;
}
.search-results ul > li:hover {
    background-color: rgb(254 242 242);
}
.search-results ul > li ~ li {
	border-top : solid 1px var(--gray-100) ;
}
.search-results ul > li strong {
    display: block;
    font-size: 1.4rem;
}
.search-results ul > li strong .badge {
    margin-right: 0.5rem;
    padding: 0.2rem 0.6rem;
    font-size: 1.1rem;
    vertical-align: text-bottom;
    line-height: 1.2;
}
.search-results ul > li small {
    display: block;
    font-size: 1.4rem;
}
.search-results ul > li span {
    /* display: block; */
    font-size: 1.4rem;
}
.search-results ul > li > div ~ div {
	margin-top : 3px ;
}
.search-results ul > li .sticker {
	color: rgb(192 43 43 / 1 );
	background-color: rgb(237 246 248 / 1);
	display : inline-block ;
	vertical-align : middle;
	padding : 2px 0 ;
	width : 45px ;
	text-align : center ;
}
.search-results .none-results {
    display: block;
    height: 100%;
    padding: 6rem;
    text-align: center;
    font-size: 1.4rem;
}
.search-results .total {
    padding: 1.6rem;
    font-size: 1.8rem;
}
.search-results .total em {
    font-weight: 700;
}
.search-results .total em:first-child {
    color: var(--primary-color);
}

.buttons button {
    font-weight: 500;
    font-size: 1.3rem;
	color : #737373
}
.buttons button img {
    height: 100%;
	/* filter: brightness(0) saturate(100%) invert(51%) sepia(6%) saturate(176%) hue-rotate(182deg) brightness(88%) contrast(85%); */
}
/* .buttons button.on {
	color : var(--primary-color);
} */
.buttons button.on img {
    filter: var(--filter-primary-color);
}
.btns-group.on #btn-hide-markers .icon img {
    filter: brightness(0) invert(1);
}

@media only screen and (max-width: 480px) {
	section.nmodal {
		padding : 0 ;
	}
	section.nmodal > .detail {
		width: 100% ;
		border-radius : 0 ;
		grid-template-columns: 1fr ;
	}
	section.nmodal > .detail > header {
		grid-column: span 1;
        position: sticky;
        top: 0;
		background-color : var(--white) ;
	}
	section.nmodal > .detail > .body .lands > .tab {
		top : 49px ;
	}
	section.nmodal > .detail > .body dl.field-row {
		grid-template-columns: minmax(120px,30%) 1fr;
	}
	section.nmodal > .detail > .body dl.field-row > dt,
	section.nmodal > .detail > .body dl.field-row > dd {
		letter-spacing : -.5px ;
		padding: 10px ;
	}
	section.nmodal > .detail > .body table.list tr > *:first-child {
		text-align : left ;
	}
	section.nmodal > .detail > .body table.list tr > *:last-child {
		text-align : right ;
	}
}




/**************** 2025/12/08 임시 css yhb */
body.view-area-pyung .marker .area .m2,
body:not(.view-area-pyung) .marker .area .pyung,
body.view-price-danga .marker .amount .total,
body:not(.view-price-danga) .marker .amount .danga,
body.view-price-danga.view-area-pyung .marker .amount .danga .m2,
body.view-price-danga:not(.view-area-pyung) .marker .amount .danga .pyung {
	display : none ;
}
body.view-area-pyung .integrated-marker .area .m2,
body:not(.view-area-pyung) .integrated-marker .area .pyung,
body.view-price-danga .integrated-marker .amount .total,
body:not(.view-price-danga) .integrated-marker .amount .danga,
body.view-price-danga.view-area-pyung .integrated-marker .amount .danga .m2,
body.view-price-danga:not(.view-area-pyung) .integrated-marker .amount .danga .pyung {
	display : none ;
}

/* summary 기본 숨김 - 단위/금액기준 버튼 클릭 시에만 표시 */
/* .map-container .integrated-marker .view-data .summary { display: none; }
.map-container .integrated-marker .view-data .summary .area { display: none; }
.map-container .integrated-marker .view-data .summary .amount { display: none; } */
/* body.view-area-pyung .map-container .integrated-marker .view-data .summary,
body.view-price-danga .map-container .integrated-marker .view-data .summary { display: flex; }
body.view-area-pyung .map-container .integrated-marker .view-data .summary .area { display: flex; }
body.view-price-danga .map-container .integrated-marker .view-data .summary .amount { display: flex; } */

.map-container .controller .btns-group {
    overflow: visible;
}
.map-container .controller .btns-group.on {
    background-color: var(--primary-color);
}
.map-container .controller .btns-group.on .btn .toggle > span {
    color: #fff;
}
.map-container .controller .btns-group .btn {
	position : relative ;
    min-width: 4.7rem;
}
.map-container .controller .btns-group.btns-pin .btn.on {
    background-color: var(--primary-color);
}
.map-container .controller .btns-group.btns-pin .btn.on .toggle {
    border-color: var(--primary-color);
}
.map-container .controller .btns-group.btns-pin .btn.on .toggle > span {
    color: #fff;
}
.map-container .controller .btns-group.btns-pin .dropdown {
	position : absolute ;
	top : 0 ;
	right : 4.3rem;
	background-color : var(--white) ;
	box-shadow : var(--shadow) ;
	border-radius : 6px ;
	z-index : 1000 ;
	padding : 10px ;
	color : var(--bs-gray-700) ;
}
.map-container .controller .btns-group button.btn:not(.on) .dropdown {
	display : none ;
}
.map-container .controller .btns-group .dropdown ul > li {
	word-break : keep-all ;
	white-space: pre;
	padding : 6px 12px ;
	cursor : pointer ;
	font-size : 14px ;
	border-radius : 3px ;
}
.map-container .controller .btns-group .dropdown ul > li ~ li {
	margin-top : 2px ;
}
/* .map-container .controller .btns-group .dropdown ul > li:hover {
	background-color : var(--bs-gray-200) ;
} */
.map-container .controller .btns-group .dropdown ul > li.on {
	background-color : var(--bs-gray-200) ;
	color : var(--primary-color);
	font-weight : 500 ;
}
.map-container .controller .btns-group .btn.no-padding {
	padding : 0 ;
}
.map-container .controller .btns-group .btn .toggle {
	display : flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
	font-size : 1.4rem;
	width : 100%;
    padding: 0.2rem;
}
.map-container .controller .btns-group .btn .toggle.h52 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52px;
}
.map-container .controller .btns-group.btns-pin .btn .toggle {
    border: 1px solid #D9D9D9;
    border-radius: 0.6rem;
}
.map-container .controller .btns-group .btn .toggle ~ .name {
	display : none ;
}
.map-container .controller .btns-group .btn .toggle > span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
	border-radius : 0.4rem;
	cursor : pointer;
	width : 100% ;
    height: 50%;
    font-size: 1.3rem;
}
/* .map-container .controller .btns-group .btn .toggle > span:hover {
	color : var(--black);
    background-color: oklch(96.7% 0.003 264.542);
} */
body.view-area-pyung .map-container .controller .btns-group .btn .toggle > span.status-pyung,
body:not(.view-area-pyung) .map-container .controller .btns-group .btn .toggle > span.status-m2,
body.view-price-danga .map-container .controller .btns-group .btn .toggle > span.status-danga,
body:not(.view-price-danga) .map-container .controller .btns-group .btn .toggle > span.status-total,
body.show-year .map-container .controller .btns-group .btn .toggle > span.status-year {
	color : var(--white) ;
	background-color : var(--primary-color);
}
/* body.show-year .map-container .controller .btns-group .btn .toggle > span.status-year {
	color : var(--white) ;
	background-color : var(--primary-color) ;
} */

/* 연도 토글: summary 표시 및 date 기본 노출 */
body.show-year .map-container .integrated-marker .view-data .summary { display: flex; }
body.show-year .view-data .summary .date { display: block; }
/* 다른 모드 활성 시 date 숨김 (상호 배타 안전망) */
/* body.view-area-pyung .map-container .integrated-marker .view-data .summary .date,
body.view-price-danga .map-container .integrated-marker .view-data .summary .date { display: none; } */
/* 매물 핀: 단가 데이터 없으면 단가 모드에서 summary 숨김 */
body.view-price-danga .map-container .integrated-marker .view-data.view-sale .summary:not([data-has-price]) { display: none; }


.d-flex {
	display : flex ;
}
.mr-1 {
	margin-right : 4px ;
}
.mr-4 {
	margin-right : 16px ;
}
.detail-opened .panel-header .btn-mo-close {
    display: none !important;
}
/* ===================== s : home ===================== */
.home-container {
    position: fixed;
    left: 0;
    top: 14.8rem;
    z-index: 50;
    width: 100%;
    height: calc(100% - 14.8rem);
    overflow-y: auto;
    background-color: #fff;
    -ms-overflow-style: none;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}
.home-container:hover {
    scrollbar-color: rgba(0,0,0,0.3) transparent;
}
.home-container::-webkit-scrollbar {
    width: 5px;
}
.home-container::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 10px;
}
.home-container:hover::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
}
.home-container > section {
    padding: 4rem 1.6rem;
}
.sc-home {
    background-color: #F4F4F4;
}
.sc-home .sc-title {
    text-align: center;
    font-weight: 400;
    font-size: 2.6rem;
    color: #424242;
}
.sc-home .sc-title em {
    font-weight: 700;
     color: #424242;
}
.sc-home .sc-title em.highlight {
    color: var(--primary-color);
}
.sc-home .category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    margin-top: 3rem;
}
.sc-home .category-list .category-item {
    flex: 1 1 calc(50% - 0.8rem);
    padding: 1.6rem;
    border-radius: 0.8rem;
    border: 0.1rem solid #F0F0F0;
    text-align: left;
    background-color: #fff;
}
.sc-home .category-list .category-item strong {
    font-weight: 700;
    font-size: 1.8rem;
    color: #424242;
}
.sc-home .category-list .category-item p {
    margin-top: 0.4rem;
    line-height: 1.2;
    font-weight: 500;
    font-size: 1.4rem;
    color: #737373;
}
.sc-home .category-list .category-item.apt {
    padding-left: 9.4rem;
    flex: 1 1 100%;
    background-color: var(--primary-color);
    background-image: url(../images/ico_home_apt.png);
    background-repeat: no-repeat;
    background-position: center left 1.6rem;
    background-size: 7rem 7rem;   
}
.sc-home .category-list .category-item.apt strong,
.sc-home .category-list .category-item.apt p {
    color: #fff;
}
/* ===================== e : home ===================== */
.banner-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem 2rem 12rem;
    background-color: #EDDBD6;
    background-image: url(../images/intro/img_pain_point.png);
    background-repeat: no-repeat;
    background-size: 10rem 10rem;
    background-position: left 2rem center;
}
.banner-wrap .info {
    text-align: center;
}
.banner-wrap .info strong {
    font-weight: 700;
    font-size: 1.6rem;
    color: #673121;
}
.banner-wrap .info p {
    margin-top: 0.6rem;
    font-size: 1.2rem;
    color: #737373;
}
.banner-wrap  button {
    margin-top: 2rem;
    text-decoration: underline;
    font-size: 1.3rem;
    color: #424242;
}
/* ===================== s : intro ===================== */
.intro-container {
    position: fixed;
    left: 0;
    top: 14.8rem;
    z-index: 100;
    width: 100%;
    height: calc(100% - 14.8rem);
    overflow-y: auto;
    background-color: #fff;
    -ms-overflow-style: none; /* IE, Edge */
    scrollbar-width: thin;    /* Firefox: 스크롤바를 가늘게 */
    scrollbar-color: transparent transparent;
}
/* 스크롤 중이거나 마우스 호버 시에만 색상 부여 (Firefox) */
.intro-container:hover {
    scrollbar-color: rgba(0,0,0,0.3) transparent;
}
/* Chrome, Safari, Code */
.intro-container::-webkit-scrollbar {
    width: 5px;
}
.intro-container::-webkit-scrollbar-thumb {
    background-color: transparent; /* 평소 투명 */
    border-radius: 10px;
}
.intro-container:hover::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2); /* 호버 시에만 살짝 보임 */
}
.intro-container > section:not(.sc-intro, .sc-benefits) {
    padding: 6rem 1.6rem;
}
.intro-container .sc-title {
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
    font-size: 2.6rem;
    color: #2B2A29;
}
.intro-container .sc-title em {
    color: var(--primary-color)
}
.intro-logo {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 5.6rem;
    background-color: #fff;
}
.intro-logo .mo-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3em;
    height: 3rem;
    background-image: url(../images/ico_close_x_b.svg);
    background-repeat: no-repeat;
    background-size: 1.5rem;
    background-position: center;
}
.sc-intro {
    padding: 6rem 0 28rem;
    background-color: #AD3C36;
    background-image: url(../images/intro/img_intro_search.png);
    background-repeat: no-repeat;
    background-size: 38rem;
    background-position: bottom;
}
.sc-intro .sc-title {
    color: #fff;
}
.sc-intro .desc {
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
}
.sc-pain-point {
    background-color: #FAFAFA;
}
.sc-pain-point .desc {
    text-align: center;
    font-size: 1.3rem;
    color: #737373;
}
.sc-pain-point .pain-point-list {
    margin-top: 13.4rem;
    position: relative;
    padding: 5rem 3.1rem 3.7rem;
    border-radius: 2rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
}
.sc-pain-point .pain-point-list::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -12.2rem;
    transform: translateX(-50%);
    width: 15rem;
    height: 15rem;
    background-image: url(../images/intro/img_pain_point.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center
}
.sc-pain-point .pain-point-list li + li {
    margin-top: 1.6rem;
}
.sc-pain-point .pain-point-list li p {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 1.6rem;
    color: #333;
}
.sc-pain-point .pain-point-list li p:last-child {
    font-size: 1.3rem;
    color: #737373;
}
.sc-pain-point .pain-point-list li p span {
    font-size: 1.2rem;
    color: var(--primary-color);
}
.sc-features {}
.sc-features > span {
    display: block;
    padding-bottom: 0.8rem;
    text-align: center;
    font-size: 1.2rem;
    color: #767676;
}
.sc-features .features-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.sc-features .features-list li {
    padding: 2rem;
    border-radius: 1.2rem;
    border: 0.1rem solid rgba(173, 60, 54, 0.50);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
}
.sc-features .features-list li span {
    display: block;
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--primary-color);
}
.sc-features .features-list li p {
    padding-top: 0.4rem;
    font-size: 1.4rem;
    color: #595959;
}
.sc-benefits {}
.sc-benefits .benefits-list {}
.sc-benefits .benefits-list li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 1.6rem;
}
.sc-benefits .benefits-list li:nth-child(odd) {
    background-color: rgba(173, 60, 54, 0.10);
}
.sc-benefits .benefits-list li > span {
    padding: 0.4rem 1rem;
    border-radius: 1.5rem;
    font-size: 1rem;
    color: #fff;
    background-color: var(--primary-color);
}
.sc-benefits .benefits-list li h3 {
    padding-top: 1.2rem;
    line-height: 1.2;
    text-align: center;
    font-weight: 700;
    font-size: 2.6rem;
    color: #424242;
}
.sc-benefits .benefits-list li h3 span {
    color: var(--primary-color);
}
.sc-benefits .benefits-list li img {
    margin: 2.4rem 0;
    width: 16rem;
    height: 16rem;
}
.sc-benefits .benefits-list li p {
    text-align: center;
    font-size: 1.4rem;
    color: #595959;
}
.sc-qna {}
.sc-qna .qna-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.sc-qna .qna-list li {
    width: 100%;
    padding: 2rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(173, 60, 54, 0.50);
    background: #FFF;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
}
.sc-qna .qna-list li button {
    width: 100%;
    text-align: left;
}
.sc-qna .qna-list li button p {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.6rem;
    color: #595959;
}
.sc-qna .qna-list li button p::before {
    content: 'Q.';
    padding-right: 0.6rem;
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--primary-color);
}
.sc-qna .qna-list li button p .icon-open {
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    margin-left: auto;
    background-image: url(../images/intro/icon_more.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.sc-qna .qna-list li button.active .icon-open {

}
.sc-qna .qna-list li .answer-cont {
    /* max-height: 0; */
    overflow: hidden;
}
.sc-qna .qna-list li .answer-cont p {
    padding-top: 1.2rem;
    padding-left: 2rem;
    font-size: 1.3rem;
    color: #737373;
    text-indent: -2rem;
}
.sc-qna .qna-list li .answer-cont p::before {
    content: 'A.';
    padding-right: 0.6rem;
    font-weight: 600;
    font-size: 1.4rem;
    color: #8C8C8C;
}
.intro-footer {
    padding: 3.2rem 1.6rem 6rem;
    background-color: #FAFAFA;
}
.intro-footer .link-policy {
    display: flex;
    align-items: center;
}
.intro-footer .link-policy a {
    font-size: 1.4rem;
    color: #8C8C8C;
}
.intro-footer .link-policy a:first-child::after {
    content: '';
    display: inline-block;
    width: 0.1rem;
    height: 1.3rem;
    margin: 0 0.6rem;
    background-color: #E5E5E5;
}
.intro-footer .company-info {
    padding-top: 2.4rem;
}
.intro-footer .company-info li {
    font-size: 1.4rem;
    color: #8C8C8C;
}
.intro-footer .company-info li span::after {
    content: '';
    display: inline-block;
    width: 0.1rem;
    height: 1.3rem;
    margin: 0 0.6rem;
    vertical-align: middle;
    background-color: #E5E5E5;
}
.intro-footer .copy {
    padding-top: 2.4rem;
    font-size: 1.2rem;
    color: #8C8C8C;
}
.intro-footer .txt {
    padding-top: 0.6rem;
    color: #8C8C8C;
}
/* ===================== e : intro ===================== */

/* ======================== s: menu ======================== */
.menu-container {}
.menu-container.mypage,
.menu-container.wish {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
}
.menu-container .login-area {
    padding: 2rem;
    border-bottom: 0.1rem solid #E5E5E5;
}
.menu-container .login-area .profile-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.6rem 2rem;
    border-radius: 1.6rem;
    border: 0.1rem solid #E5E5E5;
    background-color: #F7F7F7;
}
.menu-container .login-area .profile {
    display: flex;  
    overflow: hidden;  
}
.menu-container .login-area .profile .img {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
}
.menu-container .login-area .profile .info {
    display: flex;
    flex-direction: column;
    width: calc(100% - 58px);
    margin-left: 1rem;
    font-weight: 500;
    font-size: 1.6rem;
}
.menu-container .login-area .profile .info em {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #333;
}
.menu-container .login-area .profile .info span {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #8C8C8C;
}
.menu-container .login-area .profile-wrap .btn-account {
    flex-shrink: 0;
}
.menu-container .login-area .profile-wrap .btn-account svg {
    color: #C9C9C9;
}
.menu-container .menu-header {
    display: flex;
    position: relative;
    height: 5.8rem;
    line-height: 5.8rem;
    border-bottom: 0.1rem solid #E5E5E5;
}
.menu-container .menu-header .btn-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 1.2rem;
    top: 50%;
    width: 3.5rem;
    height: 3.5rem;
    transform: translateY(-50%);
}
.menu-container .menu-header .menu-title {
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 1.8rem;
    color: #424242;
}
.menu-container .menu-info {
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
    color: #424242;
}
.menu-container .menu-desc {
    text-align: center;
    font-size: 1.3rem;
    color: #8C8C8C;
}
.menu-container .menu-group {
    padding: 1.6rem 2rem;
}
.menu-container .menu-group:not(:last-child) {
    border-bottom: 0.1rem solid #E5E5E5;
}
.menu-container .menu-group .sub-title {
    padding-bottom: 1rem;
    font-weight: 700;
    font-size: 1.6rem;
}

.menu-container .menu-group .menu-list .menu-item:last-child {
    border-bottom: none;
}
.menu-container .menu-group .menu-list .menu-item button {
    display: flex;
    align-items: center;
    width: 100%;
    height: 4.9rem;
    font-weight: 500;
    font-size: 1.6rem;
}
.menu-container .menu-group .menu-list .menu-item button svg:nth-child(1) {
    margin-right: 0.5rem;
    color: #424242;
}
.menu-container .menu-group .menu-list .menu-item button svg:last-child {
    margin-left: auto;
    color: #C9C9C9;
}
.menu-container .menu-group {}
.menu-container .menu-group {}
.menu-container .menu-group .custom-input {
    position: relative;
}
.menu-container .menu-group .custom-input .btn-edit {
    position: absolute;
    right: 1.2rem;
    top: 3.5rem;
    z-index: 1;
    font-size: 1.4rem;
    color: #8c8c8c;
}
.menu-container .menu-group .custom-input:has(.btn-edit) input {
    padding-right: 5rem;
}
.menu-container.mypage .account-actions {
    margin: 2.8rem 0;
    text-align: center;
}
.menu-container.mypage .account-actions a:not(:last-child)::after {
    content: '|';
    margin: 0 1rem;
    font-size: 1.4rem;
    color: #8C8C8C
}
.menu-container.mypage .account-actions span {
    font-size: 1.4rem;
    color: #8C8C8C;
}
.menu-container.mypage .sns-login-area {
    padding: 2.4rem 1.5rem;
}
.menu-container.mypage .sns-login-area .sns-login-group {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.8rem;
}
.menu-container.mypage .sns-login-area .sns-login-group .sns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 4.5rem;
    padding: 0 1.4rem;
    border-radius: 0.6rem;
}
.menu-container.mypage .sns-login-area .sns-login-group .sns.toss {
    border: 0.1rem solid #F0F0F0;
}
.menu-container.mypage .sns-login-area .sns-login-group .sns.kakao {
    background-color: #FEE500;
}
.menu-container.mypage .sns-login-area .sns-login-group .sns.naver {
    background-color: #03C75A;
}
.menu-container.mypage .sns-login-area .sns-login-group .sns.google {
    border: 0.1rem solid #F0F0F0;
}
.menu-container.mypage .sns-login-area .sns-login-group .sns img {}
.menu-container.mypage .sns-login-area .sns-login-group .sns.toss img {
    height: 2.2rem;
}
.menu-container.mypage .sns-login-area .sns-login-group .sns.kakao img {
    height: 1.8rem;
}
.menu-container.mypage .sns-login-area .sns-login-group .sns.naver img {
    height: 1.8rem;
}
.menu-container.mypage .sns-login-area .sns-login-group .sns.google img {
    height: 2rem;
}
.menu-container.mypage .sns-login-area .sns-login-group .sns span {
    font-weight: 500;
    font-size: 1.3rem;
    color: #424242;
}
.menu-container.mypage .sns-login-area .sns-login-group .sns.naver span {
    color: #fff;
}
.menu-container.mypage .change-password-wrap {
    padding: 2.4rem 1.5rem;
}
.menu-container.mypage .change-password-wrap .menu-info {
    margin-bottom: 1.6rem;
    text-align: left;
}
.menu-container.mypage .change-password-wrap .password-group {
    margin-top: 2.3rem;
    padding-top: 2.3rem;
    border-top: 0.1rem solid #E5E5E5;
}
.menu-container.mypage .member-out-wrap {
    padding: 2.4rem 1.5rem;
}
.menu-container.mypage .member-out-wrap .menu-info {
    text-align: left;
    margin-bottom: 1.6rem;
}
.menu-container.mypage .member-out-wrap ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.menu-container.mypage .member-out-wrap ul li {
    position: relative;
    padding-left: 1rem;
    font-weight: 500;
    font-size: 1.4rem;
    color: #8c8c8c;
}
.menu-container.mypage .member-out-wrap ul li::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    background-color: #8c8c8c;
}
.menu-container.mypage .member-out-wrap .chk-withdraw-agree label {
    width: 100%;
    margin-top: 1.6rem;
    padding: 1.2rem;
    border: 0.1rem solid #D9D9D9;
    border-radius: 0.6rem;
    background-color: #F7F7F7;
}
.menu-container.wish {}
.menu-container.wish .wish-wrap .tab-panel {
    padding: 1.2rem 1.5rem;
}
.menu-container.wish .wish-wrap .wish-count {
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    border-bottom: 0.1rem solid #C9C9C9;
    font-size: 1.4rem;
    color: #424242;
}
.menu-container.wish .wish-wrap .wish-count span {
    font-weight: 500;
    color: var(--primary-color);
}
/* ======================== e: menu ======================== */

/* ======================= s: review ======================= */
.menu-container.review {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
}
.review-content {
    position: relative;
    height: calc(100vh - 11.8rem);
    overflow-y: auto;
}
.review-content li {
    position: relative;
}
.review-content li.empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    width: 100%;
    padding: 6rem 2rem;
    font-weight: 500;
    font-size: 1.4rem;
    color: #8C8C8C;
}
.review-content.txt ul {}
.review-content.txt li {}
.review-content.txt li button {
    display: block;
    width: 100%;
    padding: 1.6rem 2rem;
    border-bottom: 1px solid #f5f5f7;
}
.review-content.txt li button:hover {
    background-color: rgba(var(--primary-rgb), 0.1);
}
.review-content .user-info {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 5.4rem;
}
.review-content .user-info .avatar {
    position: absolute;
    left: 0;
    top: 0;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    background-color: #ddd;
}
.review-content .user-info .info {
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem;
}
.review-content .user-info .info .id {
    font-weight: 500;
    font-size: 1.5rem;
}
.review-content .user-info .info > span {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-left: 0.6rem;
    padding: 0.4rem;
    border-radius: 0.4rem;
    border: 0.1rem solid var(--primary-color);
    line-height: 1;
    font-weight: 500;
    font-size: 1.2rem;
}
.review-content .user-info .info > span svg {
    color: var(--primary-color);
}
.review-content .user-info .info .cert {}
.review-content .user-info .info .location {}
.review-content .user-info .nickname {
    text-align: left;
    font-size: 1.2rem;
    color: #8b95a1;
}
.review-content .user-info .nickname em {
    font-weight: 700;
}
.review-content .post-utils {
    position: absolute;
    right: 2rem;
    top: 1.6rem;
}
.review-content .post-utils .btn-more {}
.review-content .post-utils .btn-more-menu {
    position: absolute;
    top: 2.4rem;
    right: 0;
    width: max-content;
    padding: 0.4rem 0;
    border-radius: 0.8rem;
    background-color: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
}
.review-content .post-utils .btn-more-menu  .btn-report {
    padding: 0.8rem 1.2rem;
    font-size: 1.2rem;
}
.review-content .post-utils .btn-more-menu  .btn-report:hover {
    font-weight: 700;
    color: var(--active-color);
}
.review-content.txt li .review-info {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 1.4rem;
}
.review-content.txt li .review-info .txt {
    width: 100%;
    height: 4.4rem;
    text-align: left;
    font-size: 1.4rem;
    color: #424242;
}
.review-content.txt li .review-info:has(.img) .txt {
    width: calc(100% - 8rem);
}
.review-content.txt li .review-info .txt p {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}
.review-content.txt li .review-info .img {
    flex-shrink: 0;
    width: 7rem;
    height: 7rem;
    border-radius: 0.8rem;
    background-color: #efefef;
    overflow: hidden;
}
.review-content.txt li .review-info .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-content.txt li .state-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.6rem;
    font-weight: 500;
    font-size: 1.2rem;
}
.review-content.txt li .state-info .count-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.review-content.txt li .state-info .count-group .watch,
.review-content.txt li .state-info .count-group .like {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: #717680;
}
.review-content.txt li .state-info .count-group .watch svg,
.review-content.txt li .state-info .count-group .like svg {
    margin-right: 0.4rem;
    color: #D1D5DB;
}
.review-content.txt li .state-info .ratings {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.review-content.txt li .state-info .ratings span {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.review-content.txt li .state-info .ratings span svg {
    color: #F5A623;
}

.review-content.img {
    padding: 1.6rem 2rem;
}
.review-content.img ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}
.review-content.img li:not(.empty) {
    width: calc(50% - 0.4rem);
    height: 19.8rem;
    border-radius: 0.8rem;
    overflow: hidden;
}
.review-content.img li button {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #ddd;
}
.review-content.img li button .img {
    height: 100%;
}
.review-content.img li button .img::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}
.review-content.img li button .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-content.img li button .watch {
    position: absolute;
    left: 0.8rem;
    top: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.3rem 0.6rem;
    border-radius: 1.4rem;
    font-weight: 500;
    font-size: 1rem;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
}
.review-content.img li button .addr {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    padding: 1rem;
    color: #fff;
}
.review-content.img li button .addr .location {
    display: flex;
    gap: 0.2rem;
    font-weight: 500;
    font-size: 1.1rem;
}
.review-content.img li button .addr .location svg {
    color: #fff;
}
.review-content.img li button .addr .tit {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
    font-size: 1.5rem;
}
.btn-review {
    position: absolute;
    right: 1.6rem;
    bottom: 1.6rem;
    padding: 0.8rem 1.2rem;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 1.6rem;
    background-color: var(--primary-color);
    color: #fff;
}
/* 매물 상세(.listing-detail)에서 스크롤해도 패널 우하단에 고정 */
/* trade-show: .side-detail-layer(transform 없음) → fixed가 뷰포트 기준 → 두 번째 패널 오른쪽 끝 계산 */
.side-detail-layer .listing-detail .btn-review {
    position: fixed;
    bottom: 1.6rem;
    right: calc(100vw - var(--navbar-width) - (var(--sidepanel-width) * 2) + 1.6rem);
    z-index: 1100;
}
/* actual-trades: .sidebar-panel(transform 있음) 안 → fixed가 패널 기준 → 패널 우하단 */
#side-actual-trades-overlay .listing-detail .btn-review {
    position: fixed;
    bottom: 1.6rem;
    right: 1.6rem;
    z-index: 1100;
}
@media (max-width: 1024px) {
    /* 모바일은 패널이 전체폭이므로 화면 우하단 */
    .side-detail-layer .listing-detail .btn-review,
    #side-actual-trades-overlay .listing-detail .btn-review {
        right: 1.6rem;
    }
}


.menu-container.review-detail {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
}
.review-detail .review-content {
    height: calc(100vh - 5.8rem);
    padding: 1.6rem 2rem;
}
.review-detail .review-content:has(.input-comment) {
    height: calc(100vh - 13rem);
}
.review-detail .review-content .user-info {}
.review-detail .review-content .user-info .avatar {}
.review-detail .review-content .user-info .info {
    flex-direction: column;
    align-items: flex-start;
}
.review-detail .review-content .user-info .info .id {}
.review-detail .review-content .user-info .info p {
    display: flex;
}
.review-detail .review-content .user-info .info p span {
    font-size: 1.2rem;
}
.review-detail .review-content .user-info .info p span::after {
    content: '/';
    margin: 0 0.4rem;
}
.review-detail .review-content .user-info .info p span:last-child::after {
    content: '';
    margin: 0;
}
.review-detail .review-content .review-summary {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 1rem;
}
.review-detail .review-content .review-summary .ratings-wrap {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.review-detail .review-content .review-summary .ratings-wrap .total {
    font-weight: 600;
    font-size: 1.6rem;
}
.review-detail .review-content .review-summary .ratings {
    position: relative;
    display: inline-block;
    width: 10rem;
    height: 2rem;
    background-image: url('../images/ico_star_empty.svg');
    background-repeat: repeat-x;
    background-size: 2rem 2rem;
}

.review-detail .review-content .review-summary .ratings .rating {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-image: url('../images/ico_star_full.svg');
    background-repeat: repeat-x;
    background-size: 2rem 2rem;
    overflow: hidden;
}
.review-detail .review-content .review-summary .date {
    font-size: 1.2rem;
    color: #8b95a1;
}
.review-detail .review-content .review-img-swiper {
    height: 31.4rem;
    margin-top: 4rem;
}
.review-detail .review-content .review-img-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.review-detail .review-content .review-img-swiper .swiper-slide img {
    height: 100%;
    object-fit: contain;
}
.review-detail .review-content .review-img-swiper .btn {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
}
.review-detail .review-content .review-img-swiper .btn svg {
    color: #ddd;
}
.review-detail .review-content .review-img-swiper .btn.next {
    left: auto;
    right: 0;
}
.review-detail .review-content .review-img-swiper .next.swiper-button-disabled {
    display: none;
}
.review-detail .review-content .review-img-swiper .prev.swiper-button-disabled {
    display: none;
}
.review-detail .review-content .review-view {
    margin: 2rem 0 4rem;
}
.review-detail .review-content .review-view strong {
    display: block;
    margin: 1rem 0 0.6rem;
    font-weight: 600;
    font-size: 1.6rem;
}
.review-detail .review-content .review-view p {
    font-size: 1.4rem;
}
.review-detail .review-like {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.review-detail .review-like p {
    font-weight: 500;
    font-size: 1.2rem;
    color: #707070;
}
.review-detail .review-like .btn-like {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.3rem 1.2rem;
    border: 0.1rem solid #ddd;
    border-radius: 1.5rem;
    font-size: 1.4rem;
}
.review-detail .review-like .btn-like svg {
    width: 2rem;
    height: 2rem;
}
.review-detail .review-like .btn-like.active,
.review-detail .review-like .btn-like.active svg {
    border-color: var(--active-color);
    font-weight: 600;
    color: var(--active-color);
}
.review-detail .view-comment {
    margin: 2rem -2rem 0;
    padding: 1rem 2rem;
    border-top: 0.4rem solid #D9D9D9;
}
.review-detail .view-comment .filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 0.1rem solid #eee;
    color: #bcbfc4;
}
.review-detail .view-comment .filter  button {
    font-weight: 500;
    font-size: 1.4rem;
    color: #bcbfc4;
}
.review-detail .view-comment .filter  button.active {
    font-weight: 500;
    color: #121212;
}
.review-detail .view-comment .comment-list {}
.review-detail .view-comment .comment-list li {
    position: relative;
    padding: 2rem 0;
}
.review-detail .view-comment .comment-list li + li {
    border-top: 0.1rem solid #E5E5E5;
}
.review-detail .view-comment .comment-list li .user-info .info p {
    font-size: 1.4rem;
}
.review-detail .view-comment .comment-list li .comment {
    min-height: 5rem;
    margin-top: 3rem;
    font-size: 1.4rem;
}
.review-detail .view-comment .comment-list li .none-comment {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 1.4rem;
    gap: 1rem;
    padding: 4rem;
    color: #ccc;
}
.review-detail .view-comment .comment-list li .btn-group-edit {
    display: flex;
    justify-content: flex-end;
    gap: 0.7rem;
    margin-top: 3rem;
    font-size: 1.4rem;
}
.review-detail .view-comment .comment-list li .btn-group {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.review-detail .view-comment .comment-list li .btn-group button {
    padding: 0.3rem;
    font-size: 1.4rem;
    color: #8c8c8c;
}
.review-detail .view-comment .comment-list li .state {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.review-detail .view-comment .comment-list li .count {}
.review-detail .view-comment .comment-list li .time {
    font-size: 1.2rem;
}
.review-detail .review-content .input-comment {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: fixed;
    left: 0;
    bottom: 0.9rem;
    width: 100%;
    padding: 1rem;
    border-top: 0.1rem solid #D9D9D9;
    background-color: #fff;
}
.review-detail .review-content .input-comment .custom-input {
    width: 100%;
}
.review-detail .review-content .input-comment .btn-send:hover {
    color: var(--primary-color);
}
/* ======================= e: review ======================= */

/* ======================= s: review-write ======================= */
.review-write-form {}
.review-write-form .address-search-wrap {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}
.review-write-form .address-search-wrap .custom-input {
    flex: 1;
}
.review-write-form .address-search-wrap .btn-outline {
    flex-shrink: 0;
    width: 10rem;
}
.review-write-form .select-wrap {
    margin-top: 1.6rem;
}
.review-write-form .btn-filled {
    margin-top: 4rem;
}
.review-write-form .addr-info {
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 0.8rem;
    border: 0.1rem solid #E5E5E5;
    font-size: 1.4rem;
    color: #424242;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
}
.review-write-form .addr-info .tit {
    display: block;
    padding-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.5rem;
}
.review-write-form .addr-info p {
    font-weight: 500;
    font-size: 1.3rem;
    color: #8c8c8c;
}
.review-write-form .row-area {
    margin-bottom: 2.8rem;
}
.review-write-form .row-area h3 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}
.review-write-form .row-area .custom-textarea textarea {
    font-size: 1.4rem;
}
.review-write-form .row-area .img-upload-wrap {
    display: flex;
    gap: 0.6rem;
}
.review-write-form .row-area .img-upload-wrap .img-preview-list {
    display: flex;
    gap: 0.6rem;
}
.review-write-form .row-area .img-upload-wrap .img-preview-list li {
    position: relative;
    width: 10rem;
    height: 10rem;
    border-radius: 1rem;
    border: 0.1rem solid #eee;
    overflow: hidden;
}
.review-write-form .row-area .img-upload-wrap .img-preview-list li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-write-form .row-area .img-upload-wrap .img-preview-list li .btn-delete {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    cursor: pointer;
}
.review-write-form .row-area .img-upload-wrap .img-preview-list li .btn-delete svg {
    color: rgba(0, 0, 0, 0.8);
}
.review-write-form .rating-area {
    display: flex;
    flex-direction: column;
    align-items: center;;
    margin-top: 2rem;
}
.review-write-form .rating-area h3 {
    font-weight: 600;
    font-size: 1.6rem;
}
.review-write-form .rating-area .rating-btns {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
}
.review-write-form .rating-area .rating-btns .star {
    position: relative;
    display: inline-block;
    width: 4rem;
    height: 4rem;
}
.review-write-form .rating-area .rating-btns .star .star-img {
    width: 100%;
    height: auto;
}
.review-write-form .rating-area .rating-btns .star .star-btns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}
.review-write-form .rating-area .rating-btns .star .star-btns .btn {
    flex: 1;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
}
/* ======================= e: review-write ======================= */

/* ======================== s: report ======================== */
.report-form-group {
    margin-bottom: 2rem;
}
.report-form-group .report-detail {
    margin-top: 1rem;
}
/* ======================== e: report ======================== */

/* ======================== s: login ======================== */
.login {}
.login .tab-btns {
    display: flex;
    align-items: center;
    gap: 0;
    height: 5rem;
    padding: 0;
    background: none;
}
.login .tab-btns .tab {
    flex: 1;
    height: 100%;
    padding: 0;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    font-weight: 500;
    font-size: 1.8rem;
    box-shadow: none;
}
.login .tab-btns .tab.active {
    font-weight: 700;
    color: #444;
    border-bottom-color: #444;
    border-bottom-width: 0.2rem;
}
.login .form-login {
    padding: 2rem 0;
}
.login .form-login .btn-login {
    width: 100%;
    height: 4rem;
    margin-top: 2rem;
    border-radius: 0.8rem;
    font-weight: 500;
    font-size: 1.6rem;
    color: #fff;
    background-color: var(--primary-color);
}
.login .form-login .find-auth-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    font-size: 1.4rem;
}
.login .form-login .find-auth-btns button:not(:last-child)::after {
    content: '|';
    margin: 0 0.5rem;
    color: #808080;
}
.login .form-login .btn-social-login {
    width: 100%;
    height: 4rem;
    margin-top: 3rem;
    border-radius: 0.8rem;
    border: 0.1rem solid #d9d9d9;
    font-weight: 500;
    font-size: 1.6rem;
    color: #8c8c8c;
}
.login .join-btn-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10rem;
}
.login .join-btn-area p {
    font-size: 1.4rem;
    color: #8C8C8C;
}
.login .join-btn-area .btn-join {
    font-weight: 600;
    font-size: 1.6rem;
    text-decoration: underline;
    color: #333;
}
/* ======================== e: login ======================== */
/* ======================== s: 개인 회원가입 ======================== */
.verif-confirm {
    margin-top: 6rem;
}
.verif-confirm .otp-wrap {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}
.verif-confirm .otp-wrap .custom-input {
    flex: 2;
}
.verif-confirm .otp-wrap button {
    flex: 1;
}
.verif-confirm .otp-wrap .timer {
    min-width: 4.4rem;
    text-align: center;
    font-weight: 500;
    font-size: 1.4rem;
    color: #F5222D;
}
.verif-confirm p {
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.4rem;
    color: #8C8C8C;
}
.verif-confirm .error-msg {
    margin-top: 0.5rem;
    margin-bottom: 0;
    text-align: left;
    color: red;
    font-size: 1.4rem;
}
/* .agree-area {
    margin-top: 1.5rem;
} */
.agree-area .all-check label {
    padding: 1rem;
    width: 100%;
    margin-bottom: 0.5rem;
    border-radius: 0.7rem;
    background: #f7f7f7;
}
.agree-area .sub-checks .check-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem 0;
}
.agree-area .checkbox-item input[type="checkbox"]:checked ~ .label-text {
    color: var(--primary-color);
}
.join-success-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.join-success-wrap::before {
    content: '';
    display: inline-block;
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.4rem;
    background-image: url(../images/ico_join_check.svg);
    background-repeat: no-repeat;
    background-size: inherit;
    background-position: center;
}
.join-success-wrap h2 {
    font-weight: 900;
    font-size: 1.8rem;
    color: #424242;
}
.join-success-wrap p {
    margin-top: 0.5rem;
    text-align: center;
    font-weight: 500;
    font-size: 1.4rem;
    color: #8C8C8C;
}
.social-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.social-wrap h3 {
    font-weight: 600;
    font-size: 1.5rem;
    color: #424242;
}
.social-wrap p {
    font-size: 1.3rem;
    color: #8C8C8C;
}
.social-wrap .social-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.8rem;
}
.social-wrap .social-group .social-item {}
.social-wrap .social-group .social-item button {}
.social-wrap .social-group .social-item span {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    color: #8C8C8C;
}
.btn-start {
    text-align: center;
    font-size: 1.4rem;
    color: #999;
}
.interest-area {
    margin-top: 1.5rem;
}
.interest-area .tit {
    font-weight: 500;
    font-size: 1.4rem;
    color: #8C8C8C;
}
.interest-area .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 0.8rem;
}
.interest-area .checkbox-group .checkbox-item {
    flex: 1 1 49%;
}
/* ======================== e: 개인 회원가입 ======================== */
/* ======================== s: 기가입 회원안내 ======================== */
.existing-member-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}
.existing-member-area img {
    margin: 0 auto;
}
.existing-member-area h2 {
    margin-top: 2.6rem;
    font-weight: 700;
    font-size: 1.6rem;
    color: #121212;
}
.existing-member-area p {
    font-weight: 500;
    font-size: 1.4rem;
    color: #808080;
}
.existing-member-area .info-box {
    width: 80%;
    margin: 4.8rem 0;
    padding: 1rem 2rem;
    text-align: center;
    border-radius: 0.8rem;
    border: 0.1rem solid #E5E5E5;
    background-color: #F7F7F7;
}
.existing-member-area .info-box span {
    display: block;
    font-size: 1.2rem;
    color: #999;
}
.existing-member-area .info-box strong {
    margin-top: 0.6rem;
    font-weight: 700;
    font-size: 1.4rem;
    color: #212121;
}
.existing-member-area .btn-link {
    margin-top: 0.8rem;
    text-align: center;
    font-size: 1.4rem;
    color: #808080;
}
/* ======================== e: 기가입 회원안내 ======================== */
/* ======================== s: 문의하기 ======================== */
.inquiry {}
.inquiry .txt {
    font-size: 1.2rem;
    color: #8c8c8c;
}
.inquiry .custom-input {
    margin-bottom: 1rem;
}
.inquiry .btn-base {
    margin-top: 4rem;
}
/* ======================== e: 문의하기 ======================== */

/* 관심 설정 부동산  */

/* 비밀번호 초기화 */
.reset-pw-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.reset-pw-container .title {
    margin: 2rem 0;
    font-weight: 700;
    font-size: 3.4rem
}
/* 단가 기준 면적 팝업 */
.danga-area-sel {
    
}
.danga-area-sel .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    border-bottom: 0.1rem solid #F7F7F7;
}
.danga-area-sel .type-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.danga-area-sel .type-group > span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
    font-size: 1.3rem;
}
.danga-area-sel .type-group > span::before {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: 0.3rem;
    border-radius: 50%;
}
.danga-area-sel .type-group .apt::before {
    background-color:  #FF8888;
}
.danga-area-sel .type-group .mult-house::before {
    background-color:  #FFBB99;
}
.danga-area-sel .type-group .officetel::before {
    background-color:  #FFAACC;
}
.danga-area-sel .type-group .office::before {
    background-color:  #9999EE;
}
.danga-area-sel .type-group .single-house::before {
    background-color:  #88CC99;
}
.danga-area-sel .type-group .building::before {
    background-color: #99BBFF;
}
.danga-area-sel .type-group .factory::before {
    background-color:  #77BBDD;
}  
.danga-area-sel .type-group .land::before {
    background-color:  #D4B86A;
}
.danga-area-sel .btn-group {
    padding: 0.2rem;
    border-radius: 0.6rem;
    background-color: #F0F0F0;
}
.danga-area-sel .btn-group button {
    width: 4rem;
    height: 2.5rem;
    line-height: 2.5rem;
    border-radius: 0.6rem;
    font-weight: 500;
    font-size: 1.3rem;
    color: #8C8C8C;
}
.danga-area-sel .btn-group .no-btn {
    width: 8.3rem;
}
.danga-area-sel .btn-group button.on {
    color: #000;
    background-color: #fff;
}
.danga-area-sel .radio-group {
    flex-direction: row;
    gap: 4rem;
    width: 100%;
    margin-top: 0;
}
/* ======================== s: media query ======================== */
@media (max-width: 1024px) {
    .navbar {
        top: auto;
        bottom: 0;
        height: auto;
        width: 100%;
        padding: 1.2rem 0.6rem;
        border-right: 0;
        border-top: 1px solid #d9d9d9;
    }
    .navbar .menu-list {
        flex-direction: row;
        justify-content: space-around;
    }
    /* .navbar .menu-list .menu-item.menu {order:1;}
    .navbar .menu-list .menu-item.review {order:2;}
    .navbar .menu-list .menu-item.home {order:3;}
    .navbar .menu-list .menu-item.map {order:4;} */
    /* .map-search-area, .filter-wrap, .toggle-listing {
        display: none;
    } */
    .map-search-area {
        left: 1rem;
        top: 1rem;
        width: calc(100% - 13.8rem);
    }
    .map-search-area .btn-searchbar {
        width: 100%;
        height: 3.8rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .filter-wrap {
        left: 1rem;
        top: 5.5rem;
        width: auto;
        padding-right: 1rem;
    }
    .filter-wrap .filter {
        gap: 0.3rem;
    }
    .filter-wrap .filter-dropdown {
        position: unset;
    }
    .filter-wrap .filter-dropdown > button {
        height: 3.4rem;
        white-space: nowrap;
        font-size: 1.4rem;
    }
    .filter-wrap .filter-dropdown:first-child > button {
        flex-shrink: 0;
    }
    .filter-wrap .filter-panel {
        position: fixed;
        left: 50%;
        top: 10rem;
        transform: translateX(-50%);
        min-width: auto;
        width: 96%;
        max-height: calc(100% - 20rem);
        padding: 2rem 1.6rem;
        overflow: auto;
        border-radius: 0.8rem;
        box-shadow: 0 0 1rem 0.1rem rgba(0, 0, 0, 0.3);
        background-color: #fff;
        transition: none;
    }
    .toggle-listing {
        right: 1rem;
        top: 1rem;
    }
    .modal-container .modal {
        min-width: 90%;
        max-width: 90%;
    }
    /* .navbar {
        display: none;
    }
    .mo-navbar {
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 100;
        width: 100%;
        height: 6rem;
        padding: 0 3rem;
        border-top: 1px solid #D9D9D9;
        background: #fff;
    }
    .mo-navbar > ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
    }
    .mo-navbar > ul > li .icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    .mo-navbar > ul > li .icon svg {
        width: 2rem;
        height: 2rem;
    }
    .mo-navbar > ul > li .icon span {
        font-weight: 500;
        font-size: 1.2rem;
    }
    .mo-navbar > ul > li.active .icon {
        color: var(--primary-color);
    }
    .mo-navbar ul li.ham {
        position: relative;
    }
    .mo-navbar .submenu {
        display: flex;
        flex-direction: column;
        position: absolute;
        left: -1.5rem;
        bottom: 5rem;
        width: 15rem;
        background: #fff;
        padding: 0.5rem 0;
        border-radius: 1.6rem;
        box-shadow: 0.2rem 0.2rem 0.7rem 0 rgba(0,0,0,0.1);
        opacity: 0;
        transform: translateX(-120%);
        transition: all 0.2s ease;
    }
    .mo-navbar .submenu.show {
        opacity: 1;
        transform: translateX(0);
    }
    .mo-navbar .submenu li a {
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }
    .mo-navbar .submenu li.active .icon {
        color: var(--primary-color);
    } */
    /* .mo-navbar .submenu .apt.active .icon {
        color: var(--secondary-color);
    }
    .mo-navbar .submenu .house.active .icon {
        color: #1A237E;
    }
    .mo-navbar .submenu .villa.active .icon {
        color: #2962FF;
    }
    .mo-navbar .submenu .office.active .icon {
        color: #00A86B;
    }
    .mo-navbar .submenu .land.active .icon {
        color: #FB8C00;
    } */
    /* .mo-navbar .submenu .land.active .icon span {
        font-weight: 700;
    }
    .mo-navbar .submenu li:hover a {
        background-color: #eeeeee;
    } */

    /* .navbar ul li .tooltip {
        left: 50%;
        top: -200%;
        margin-left: 0;
    }
    .navbar ul li .tooltip.hover {
        display: none;
    }
    .navbar ul li .tooltip.clicked {
        transform: translateY(20%) translateX(0);
    }
    .navbar ul li.active .tooltip.clicked.show {
        transform: translateY(0) translateX(-50%);
    } */
    .map-container .controller {
        gap: 0.8rem;
        top: 10rem;
        right: 1rem;
        transform: none;
    }
    .view-data .category {
        margin-bottom: 0;
    }
    .zoom-btns {
        display: none;
    }
    .sidebar-panel {
        top: 0;
        left: 0;
        max-width: 100%;
        height: calc(100% - 6rem);
        transform: translateY(0);
    }
    .sidebar-panel.open {
        transform: translateY(100%);
    }
    .menu-container .menu-home {
        height: calc(100vh - 21.7rem);
        overflow-y: auto;
    }
    .menu-container .menu-account {
        height: calc(100% - 6.7rem);
        overflow-y: auto;
    }
    .menu-container.wish .wish-wrap .custom-tab-panel {
        height: calc(100vh - 15.3rem);
        overflow-y: auto;
    }
    .listing-images-area {
        padding: 1rem 1rem 0;
    }
    .btn-toggle {
        bottom: auto;
        top: -3.6rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    .side-detail-layer {
        left: 0 !important;
        z-index: 100;
        width: 100%;
    }
    .review-content {
        height: calc(100vh - 18.8rem);
    }
    .review-detail .review-content {
        height: calc(100vh - 12.7rem);
    }
    .review-detail .review-content:has(.input-comment) {
        height: calc(100vh - 19rem);
    }
}
/* ======================== e: media query ======================== */

/* ======================== 검색결과 패널 ======================== */
.panel-header .search-results-wrap {
	position: absolute;
	left: 0;
	top: 14.8rem;
	z-index: 108;
	width: 100%;
	height: calc(100vh - 14.8rem);
	overflow-y: auto;
	background-color: #fff;
}

/* ======================== 검색 자동완성 ======================== */
.panel-header .search-autocomplete {
	position: absolute;
	left: 0;
	top: 14.8rem;
	z-index: 110;
	width: 100%;
	height: 60vh;
	overflow-y: auto;
	background-color: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
	border-top: 1px solid var(--gray-100, #f0f0f0);
}
.search-autocomplete ul {
	width: 100%;
}
.search-autocomplete ul > li {
	padding: 12px 16px;
	cursor: pointer;
	font-size: 12px;
	transition: ease-out .2s;
}
.search-autocomplete ul > li:hover {
	background-color: rgb(254 242 242);
}
.search-autocomplete ul > li ~ li {
	border-top: solid 1px var(--gray-100);
}
.search-autocomplete ul > li strong {
	display: block;
	font-size: 13px;
	color: var(--black);
}
.search-autocomplete ul > li small {
	display: block;
	margin-top: 2px;
	color: var(--gray-500, #888);
	font-size: 11px;
}
.search-autocomplete ul > li span {
	display: block;
	margin-top: 2px;
	color: var(--gray-400, #aaa);
	font-size: 11px;
}
.search-autocomplete .badge {
	padding: 0.2rem 0.6rem;
	font-size: 1.1rem;
	line-height: 1.2;
	vertical-align: middle;
}
.search-autocomplete .none-results {
	padding: 16px;
	font-size: 13px;
	color: var(--gray-500, #888);
	text-align: center;
}
.search-hl {
	color: var(--primary, #C02B2B);
	font-style: normal;
	font-weight: 700;
}
.ac-section + .ac-section {
	border-top: 1px solid var(--gray-100);
}
.ac-section-title {
	padding: 8px 16px 4px;
	font-size: 11px;
	font-weight: 700;
	color: var(--gray-400, #aaa);
	letter-spacing: 0.5px;
}
.ac-item-main {
	display: flex;
	align-items: center;
	gap: 4px;
}
.ac-item-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 3px;
}
.ac-price {
	font-style: normal;
	font-weight: 700;
	color: var(--primary, #C02B2B);
	font-size: 12px;
}
.ac-item-meta > span {
	font-size: 11px;
	color: var(--gray-400, #aaa);
}
/* ======================== e: 검색 자동완성 ======================== */
