.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #f76c41;
    z-index: 1000;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.splash .img {
    width: clamp(200px, 400/820*100vw, 600px);
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.splash .img img {
    width: 100%;
    object-fit: cover;
    animation: fly 3s ease-in-out infinite;
}
.splash p {
    font-size: clamp(20px, 32/820*100vw, 42px);
    font-weight: 900;
    font-family: 'Pretendard';
    padding-top: calc(20/42*1em);
    padding-bottom: calc(30/42*1em);
}
.splash .progress {
    width: clamp(80px, 100/820*100vw, 200px);
    display: flex; align-items: center; justify-content: center;
}
.splash .progress img {
    width: 100%;
}
@keyframes fly {
    0% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(-10%);
    }
    100% {
        transform: translateY(0%);
    }
}

.main {
    position: relative;
    height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.main .cont {
    flex-grow: 1;
    position: relative;
}
.banner {
    position: relative;
    width: 100%;
    /* overflow: hidden; */
    background: #f7ece2;
}
.banner .flx {
    display: flex; align-items: center;
    position: relative;
    padding: 35px 0;
}
.banner .img1 {
    width: 129px;
}
.banner .txt {
    display: flex; align-items: center;
}
.banner .txt > b {
    font-family: 'GmarketSansBold';
    font-size: 50px;
    letter-spacing: -0.05em;
    color: #ff5522;
    padding-left: calc(70/50*1em);
    padding-right: calc(140/50*1em);
}
.banner .txt .desc {
    display: flex; flex-direction: column;
    gap: 10px;
    font-size: 16px;
    font-family: 'Pretendard';
    letter-spacing: -0.05em;
    color: #727272;
    line-height: calc(23/16*1em);
}
.banner .txt .desc .pWrap {
    display: flex; align-items: flex-start;
    gap: calc(3/16*1em);
}
.banner .txt .desc .pWrap b {
    color: #000;
}
.banner .img2 {
    position: absolute;
    right: 0;
    top: 0;
    width: calc(226/1920*100vw);
    max-width: 226px;
    transform: translateY(5%);
}
.banner .img2 img {
    width: 100%;
}
@media screen and (max-width: 1440px) {
    .banner .flx {
        justify-content: space-between;
    }
    .banner .img2 {
        position: static;
        width: 200px;
    }
    .banner .txt .desc {
        flex-grow: 1;
    }
    .banner .txt > b {
        font-size: clamp(40px, 40/1280*100vw, 50px);
        padding-right: calc(70/40*1em);
        padding-left: calc(30/40*1em);
        flex-shrink: 0;
    }
}
@media screen and (max-width: 1280px) {
    .banner .txt > b {
        font-size: clamp(30px, 30/1025*100vw, 40px);
    }
    .banner .txt .desc {
        word-break: keep-all;
    }
    .banner .img1 {
        width: clamp(80px, 80/1024*100vw, 100px);
    }
    .banner .img2 {
        width: clamp(150px, 150/1024*100vw, 200px);
    }
}
@media screen and (max-width: 1024px) {
    .banner .flx {
        justify-content: center;
    }
    .banner .txt {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .banner .txt > b {
        padding-right: 0;
        padding-left: 0;
        padding-bottom: calc(10/20*1em);
    }
    .banner .txt .desc {
        font-size: clamp(14px, 14/1024*100vw, 16px);
        align-items: center;
        text-align: center;
        gap: calc(5/14*1em);
    }
    .banner .img1 {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .banner .img2 {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}
@media screen and (max-width: 820px) {
    .banner {display: none;}
}



.find-store-wrap.pc-only {
    padding: 30px;
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid #eee;
    margin-top: 45px;
    position: relative;
    z-index: 10;
}
.find-store-wrap.pc-only .inner {
    display: flex; max-width: 1040px; margin: 0 auto;
    
}
.find-store-wrap.pc-only .inner .userArea {
    flex-grow: 1;
}
.find-store-wrap.pc-only .inner .userArea > * {
    padding: 20px 0;
    margin-right: 20px;
    box-sizing: border-box;
}
.find-store-wrap.pc-only .inner .userArea form {
    position: relative;
    z-index: 1;
}
.find-store-wrap.pc-only .inner .userArea .form {
    display: flex; flex-direction: column;
    font-size: 16px;
    font-family: 'Pretendard';
    letter-spacing: -0.05em;
}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap {
    display: flex; align-items: center; flex-wrap: wrap;
    position: relative; gap: calc(20/16*1em) calc(5/16*1em);
}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap:nth-child(1) {
    z-index: 1;
}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap+.inputWrap {
    margin-top: calc(20/16*1em);
}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap dl {
    display: flex; align-items: center;
}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap dl dt {
    color: #000;
    font-size: inherit;
    width: calc(70/16*1em);
    padding: calc(10/16*1em) calc(5/16*1em);
    box-sizing: border-box;
    text-align: center;
}
.find-store-wrap.pc-only .inner .userArea .form dl:has(.middle) {
    flex-grow: 1;
}
.find-store-wrap.pc-only .inner .userArea .form dl:has(.middle) dd {
    flex-grow: 1;
}
.find-store-wrap.pc-only .inner .userArea .form dl:has(.middle) dd > div {
    max-width: 100% !important;
}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap .txtBox p {
    display: none;
} 

.find-store-wrap.pc-only .inner .userArea .form .inputWrap .selectBox {font-size: inherit; cursor: pointer; position: relative; display: flex; align-items: center; width: 100%; max-width: 180px; border: 1px solid #ccc; box-sizing: border-box; border-radius: calc(5/16*1em); padding: calc(10/16*1em); color: #727272;} 
.find-store-wrap.pc-only .inner .userArea .form .inputWrap .selectBox input {color: inherit; background: none; cursor: pointer; width: 100%; border: none; padding: 0; font-size: inherit; font-family: inherit; letter-spacing: inherit;}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap .selectBox i {display: flex; align-items: center; justify-content: center; font-size: calc(16/18*1em); transition: .4s;}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap .selectBox.active i {transform: scaleY(-1);}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap .selectBox .optWrap {position: absolute; left: 0; top: 100%; padding-bottom: 10px; width: 100%; text-align: center; cursor: pointer; padding-top: 2px; display: none;}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap .selectBox .optWrap ul {max-height: 300px; overflow-y: auto;  width: 100%; background: #fff; padding: 5px 0; border-radius: calc(7/16*1em); border: 1px solid #ccc;}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap .selectBox .optWrap ul::-webkit-scrollbar {width: 2px;}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap .selectBox .optWrap ul::-webkit-scrollbar-thumb {background: #f6ad3c; border-radius: 10px;}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap .selectBox .optWrap ul li span {font-size: calc(14/16*1em); padding: calc(11/14*1em) 0; width: 100%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: .2s;}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap .selectBox .optWrap ul li:hover span {background: #ff5522; color: #fff;}

.find-store-wrap.pc-only .inner .userArea .form .inputWrap dl:nth-child(1) {
    z-index: 6;
}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap dl:nth-child(2) {
    z-index: 5;
}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap dl:nth-child(3) {
    z-index: 4;
}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap dl:nth-child(4) {
    z-index: 3;
}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap dl:nth-child(5) {
    z-index: 2;
}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap dl:nth-child(6) {
    z-index: 1;
}

.find-store-wrap.pc-only .inner .userArea .form .inputWrap dl:has(.txtBox) {
    flex-grow: 1;
}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap dl:has(.txtBox) dd {
    flex-grow: 1;
}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap .txtBox {
    position: relative;
}
.find-store-wrap.pc-only .inner .userArea .form .inputWrap .txtBox input {
    font-size: inherit;
    padding: calc(10/16*1em);
    font-family: inherit;
    letter-spacing: inherit;
    color: #727272;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: calc(5/16*1em);
    width: 100%;
}




.find-store-wrap.pc-only .inner .sortingArea {
    border-top: 1px solid #eee;
    display: flex; flex-wrap: wrap;
    gap: calc(10/16*1em);
    font-size: 16px;
    font-family: 'Pretendard';
    letter-spacing: -0.05em;
    color: #727272;
    font-weight: 500;
    position: relative;
    max-width: 845px; margin-left:auto;
}
.find-store-wrap.pc-only .inner .sortingArea > b {
    display: none;
}
.find-store-wrap.pc-only .inner .sortingArea .sortItem {
    display: flex; align-items: center; justify-content: space-between;
    gap: calc(2/16*1em);
    padding: calc(5/16*1em);
    box-sizing: border-box;
    border-radius: calc(30/16*1em);
    border: 1px solid #ff5522;
    background: #fff;
    width: calc(160/16*1em);
    transition: all .2s;
    cursor: pointer;
}
.find-store-wrap.pc-only .inner .sortingArea .sortItem._all {
    justify-content: center;
    text-align: center;
}
.find-store-wrap.pc-only .inner .sortingArea .sortItem .img {
    width: calc(32/16*1em);
    height: calc(32/16*1em);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    filter: grayscale(1);
    box-sizing: border-box;
}
.find-store-wrap.pc-only .inner .sortingArea .sortItem span {
    padding: 0 calc(10/16*1em);
    box-sizing: border-box;
}
.find-store-wrap.pc-only .inner .sortingArea .sortItem.active {
    background: #ff5522;
    color: #fff;
}
@media screen and (min-width: 821px) {
    .find-store-wrap.pc-only .inner .sortingArea .sortItem:hover {
        background: #ff5522;
        color: #fff;
    }
}
.find-store-wrap.pc-only .inner .sortingArea .sortItem.active .img,
.find-store-wrap.pc-only .inner .sortingArea .sortItem:hover .img {
    filter: grayscale(0);
}
.find-store-wrap.pc-only .inner .sortingArea .txt {
    position: absolute;
    top: 97%;
    left: 0;
    width: 100%;
    font-family: 'Pretendard';
    font-size: 14px;letter-spacing: -0.03em;
    color: #727272;
    box-sizing: border-box;
    display: flex; align-items: flex-start;
    line-height: calc(16/14*1em);
}

.find-store-wrap.pc-only .inner .btnWrap {
    display: flex; align-items: stretch;
}
.find-store-wrap.pc-only .inner .btnWrap .btn._search {
    width: calc(112/16*1em);
    height: auto;
    font-size: 16px;
    font-family: 'Pretendard';
    font-weight: 500;
    letter-spacing: -0.05em;
    border-radius: calc(16/16*1em);
    border: none;
    background: #ff5522;
    color: #fff;
    margin: 20px auto 20px;
    cursor: pointer;
}
.find-store-wrap.pc-only .inner .btnWrap .btn._reset {
    background: #eee;
    color: #727272;
    display: none;
}


@media screen and (min-width: 821px) {
    .find-store-wrap.pc-only {
        display: block;
    }
}

@media screen and (max-width: 1280px) {
    .find-store-wrap.pc-only .inner .userArea .form {
        font-size: clamp(14px, 14/1024*100vw, 16px);
    }
    .find-store-wrap.pc-only .inner .sortingArea {
        font-size: clamp(14px, 14/1024*100vw, 16px);
    }
    .find-store-wrap.pc-only .inner .btn._search {
        font-size: clamp(14px, 14/1024*100vw, 16px);
    }
}
@media screen and (max-width: 1024px) {
    .find-store-wrap.pc-only .inner .userArea .form .inputWrap .selectBox {
        max-width: clamp(80px, 80/820*100vw, 180px);
    }
    .find-store-wrap.pc-only .inner .userArea .form .inputWrap dl dt {
        flex-shrink: 0;
    }
}
@media screen and (max-width: 820px) {
    .cont > .wrap.findWrap {
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex; flex-direction: column;
    }

    body.find-store-open .find-store-wrap.pc-only {
        opacity: 1;
        visibility: visible;
    }
    body.result-open.find-store-open .find-store-wrap.pc-only {
        opacity: 0;
        visibility: hidden;
    }
    .find-store-wrap.pc-only {
        opacity: 0;
        visibility: hidden;
        transition: all .75s .2s;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
        display: flex; flex-direction: column;
        background: #fff;
        margin-top: 0;
        border-radius: 0;
        box-sizing: border-box;
        padding: 0;
    }
    .find-store-wrap.pc-only .form {
        position: relative;
    }
    .find-store-wrap.pc-only .inner {
        flex-direction: column;
    }
    .find-store-wrap.pc-only .inner .userArea > * {
        padding: 0;
        margin-right: 0;
    }
    .find-store-wrap.pc-only .inner .userArea .form .inputWrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: var(--padding);
        box-sizing: border-box;
        border-bottom: 1px solid #eee;
        transition: all .75s .2s;
        width: 100%;
    }
    .find-store-wrap.pc-only .inner .userArea .form .inputWrap dl {
        width: 100%;
        display: flex; align-items: center;
        gap: 10px;
        position: relative;
    }

    .find-store-wrap.pc-only .inner .userArea .form .inputWrap dl dt {
        display: none;
    }
    .find-store-wrap.pc-only .inner .userArea .form .inputWrap dl dd {
        width: 100%;
    }
    .find-store-wrap.pc-only .inner .userArea .form .inputWrap .selectBox {
        width: 100%;
        max-width: 100%;
    }
    .find-store-wrap.pc-only .inner .userArea .form .inputWrap dl:nth-child(n + 5) {
        grid-column: span 2;
    }
    .find-store-wrap.pc-only .inner .userArea .form .inputWrap .selectBox {
        font-weight: 300;
        font-size: clamp(14px, 16/480*100vw, 18px);
        font-family: 'Pretendard';
        letter-spacing: -0.05em;
        color: #727272;
        cursor: pointer;
        position: relative;
        display: flex; align-items: center;
        width: 100%; border: 1px solid #ccc; background: #eeeeee; box-sizing: border-box; border-radius: calc(7/16*1em); padding: calc(11/16*1em) calc(10/16*1em);
    }
    .find-store-wrap.pc-only .inner .userArea .form .inputWrap .txtBox p {
        margin-top: calc(3/16*1em);
        display: block;
        font-size: clamp(12px, 13/480*100vw, 15px);
        font-family: 'Pretendard';
        letter-spacing: -0.05em;
        font-weight: 300;
        color: #727272;
        word-break: keep-all;
        line-height: 1.3;
    }
    .find-store-wrap.pc-only .inner .userArea .form .inputWrap .txtBox input {
        font-weight: 300;
        font-size: clamp(14px, 16/480*100vw, 18px);
        font-family: 'Pretendard';
        letter-spacing: -0.05em;
        color: #000;
        cursor: pointer;
        position: relative;
        display: flex; align-items: center;
        width: 100%; border: 1px solid #ccc; background: #fff; box-sizing: border-box; border-radius: calc(7/16*1em); padding: calc(11/16*1em) calc(10/16*1em);
    }
    .find-store-wrap.pc-only .inner .sortingArea {
        padding: var(--padding);
        padding-bottom: 0;
        transition: all .75s .2s;
        display: flex; align-items: center;
        flex-wrap: wrap; font-size: clamp(14px, 16/480*100vw, 18px);
        gap: calc(10/16*1em);
        padding-bottom: calc(90/16*1em);
        font-size: clamp(14px, 16/480*100vw, 18px);
        border-top: none
    }
    .find-store-wrap.pc-only .inner .sortingArea b {
        display: block;
        width: 100%;
        font-family: 'Pretendard';
        letter-spacing: -0.025em;
        font-size: inherit;
        font-weight: 600;
        color: #000;
    }
    .find-store-wrap.pc-only .inner .sortingArea .sortItem {
        flex-direction: row-reverse;
        justify-content: flex-start;
        padding: calc(5/16*1em) calc(10/16*1em);
        box-sizing: border-box;
        height: calc(38/16*1em);
        border: 2px solid #eee;
        background: #eee;
        color: #ff5522;
        font-weight: 500;
        border-radius: calc(32/16*1em);
        width: auto;
        filter: grayscale(1);
    }
    .find-store-wrap.pc-only .inner .sortingArea .sortItem.active {
        background: #ff5522;
        border-color: #ff5522;
        color: #ff5522;
        filter: grayscale(0);
    }
    .find-store-wrap.pc-only .inner .sortingArea .sortItem span {
        opacity: .8;
        padding: 0;
        padding-top: calc(2/16*1em);
    }
    .find-store-wrap.pc-only .inner .sortingArea .sortItem.active span {
        opacity: 1;
    }
    .find-store-wrap.pc-only .inner .sortingArea .sortItem .img {
        width: calc(25/16*1em);
        height: calc(25/16*1em);
        display: flex; align-items: center; justify-content: center;
        padding-bottom: calc(2/16*1em);
        background: none;
        border: none;
    }
    .find-store-wrap.pc-only .inner .sortingArea .sortItem.active {
        background: #fff;
    }
    .find-store-wrap.pc-only .inner .sortingArea .txt {
        display: none;
    }
    .find-store-wrap.pc-only .inner .btnWrap {
        box-shadow: 0 -1px 2px #fff8f6;
        display: grid; align-items: center; grid-template-columns: 1fr 1fr; transition: all .75s .2s;
        gap: calc(10/16*1em);
        padding: calc(10/20*1em) var(--padding);
        font-size: clamp(14px, 20/480*100vw, 25px);
    }
    .find-store-wrap.pc-only .inner .btnWrap .btn {
        font-size: inherit;
        font-family: 'Pretendard';
        font-weight: bold;
        letter-spacing: -0.05em;
        border-radius: calc(8/20*1em);
        border: none;
        padding: calc(20/20*1em) calc(15/20*1em);
    }
    .find-store-wrap.pc-only .inner .btnWrap .btn._search {
        margin: 0;
        width: auto;
        font-size: inherit;
        font-weight: bold;
        border: none;
        border-radius: calc(8/20*1em);
    }
    .find-store-wrap.pc-only .inner .btnWrap .btn._reset {
        display: block;
    }
}

.mapArea {
    position: relative;
    height: 100%;
    display: flex; flex-direction: column;
}
.mapArea .map_banner {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: calc(15/16*1em) var(--padding);
    box-sizing: border-box;
    z-index: 2;
    transition: all .75s .2s;
    font-family: 'Pretendard';
    letter-spacing: -0.05em;
    font-weight: 700;
    font-size: clamp(14px, 16/480*100vw, 18px);
    color: #fff;
    background: #ff5522;
    line-height: calc(22/16*1em);
    word-break: keep-all;
}
body.result-open .mapArea .map_banner {
    opacity: 1;
    visibility: visible;
}
.mapArea .mapArea_inner {
    flex-grow: 1;
    position: relative;
}

#mapWrapper {
    width: 100%;
    height: 100%;
}
.marker-content {
    width: 36px;
}
.marker-content img {
    width: 100%;
    filter: grayscale(1);
}
.marker-content span {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(25%);
    width: 100%;
    height: 100%;
    z-index: 1;
    color: #000;
    font-size: 16px;
    font-family: 'GmarketSansBold';
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    justify-content: center;
}
#map {
    width: 100%;
    height: 100%;
    min-height: 100%;
}
#map > div:nth-child(2), #map > div:nth-child(3) {
    display: none;
}
.active .marker-content img {
    filter: grayscale(0);
}

/* active 클래스가 적용된 클러스터와 마커의 스타일 강화 */
.marker-content.active {
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
}

.marker-content.active img {
    filter: grayscale(0) brightness(1.2);
}

.resultWrap {
    opacity: 0;
    visibility: hidden;
    transition: all .75s .2s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    box-sizing: border-box;
    z-index: 1;
    overflow: hidden;
    padding: 15px 6px 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
}
body.result-open .resultWrap {
    opacity: 1;
    visibility: visible;
}
.resultWrap .innerBox {
    width: 100%;
    flex-grow: 1;
    min-height: 0;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 0 8px 8px
}
.resultWrap .innerBox::-webkit-scrollbar {width: 6px;}
.resultWrap .innerBox::-webkit-scrollbar-thumb {background: #545454; border-radius: 3px;}

.resultWrap .innerBox .resultItem {
    border-radius: calc(8/480*100vw);
    border: 1px solid #eee;
    padding: 25px calc(20/480*100vw);
    font-size: clamp(20px, 28/480*100vw, 28px);
    cursor: pointer;
}
.resultWrap .innerBox .resultItem + .resultItem {
    margin-top: calc(20/28*1em);
}
.resultWrap .innerBox .resultItem .title {
    display: flex; align-items: center;
    gap: calc(2/28*1em);
    padding-bottom: calc(15/28*1em);
}
.resultWrap .innerBox .resultItem .title b {
    font-size: inherit;
    font-family: 'Pretendard';
    letter-spacing: -0.05em;
    font-weight: 700;
}
.resultWrap .innerBox .resultItem .title span {
    font-size: clamp(14px, 24/28*1em, 24px);
    display: flex; align-items: center;
}
.resultWrap .innerBox .resultItem .title span em {
    font-size: clamp(14px, 20/24*1em, 20px);
    font-family: 'Pretendard';
    letter-spacing: -0.05em;
    font-weight: 500;
}
.resultWrap .innerBox .resultItem .type2,
.resultWrap .innerBox .resultItem .location {
    font-size: clamp(14px, 22/28*1em, 22px);
    font-family: 'Pretendard';
    letter-spacing: -0.05em;
    font-weight: 500;
    color: #000;
    padding-bottom: calc(35/28*1em);
}
.resultWrap .innerBox .resultItem .info {
    display: flex; flex-direction: column;
    gap: calc(10/17*1em);
    font-size: clamp(14px, 17/28*1em, 20px);
}
.resultWrap .innerBox .resultItem .info > * {
    display: flex; align-items: flex-start;
    gap: calc(5/17*1em);
    font-family: 'Pretendard';
    letter-spacing: -0.05em;
    line-height: calc(22/17*1em);
    color: #50555b;
}
.resultWrap .innerBox .resultItem .info ._icon {
    line-height: calc(30/17*1em);
}
.resultWrap .innerBox .resultItem .info ._txt {
    width: 100%; display: flex; align-items: center; flex-wrap: wrap;
    padding-right: calc(10/17*1em); word-break: keep-all;
}
.resultWrap .innerBox .resultItem .info ._txt > *:not(p),
.resultWrap .innerBox .resultItem .info ._txt > p > *:not(em) {
    font-size: clamp(12px, 13/17*1em, 13px);
    font-weight: 400;
    color: #fff;
    cursor: pointer;
    transition: .4s;
    background: #ff5522;
    color: #fff;
    display: inline-block;
    padding: calc(5/13*1em) calc(10/13*1em);
    border-radius: calc(8/13*1em);
    margin-left: calc(7/17*1em);
}
.resultWrap .innerBox .resultItem .labelWrap {
    display: flex; align-items: center;
    gap: calc(10/20*1em);
    padding-top: calc(10/20*1em);
    font-family: 'Pretendard';
    letter-spacing: -0.05em;
    font-weight: 600;
    font-size: clamp(14px, 20/28*1em, 20px);
}
.resultWrap .innerBox .resultItem .labelWrap .label {
    flex: 1;
    border-radius: calc(13/20*1em);
    padding: calc(10/20*1em) calc(20/20*1em);
    background: #d1d1d1;
    box-sizing: border-box;
    text-align: center;
}
@media screen and (max-width: 360px) {
    .resultWrap .innerBox .resultItem .labelWrap {
        flex-direction: column; padding-top: calc(30/20*1em);
    }
    .resultWrap .innerBox .resultItem .labelWrap .label {
        width: 100%;
    }
}

.resultWrap .paging {width: 100%; z-index: 1; background: #fff; border-top: 1px solid #cacaca; display: flex; align-items: center; justify-content: center; padding: calc(16/20*1em); font-size: clamp(14px, 20/480*100vw, 20px); box-sizing: border-box;}
.resultWrap .paging.mo {display: none; padding-top: calc(30/20*1em);}
.resultWrap .paging > div {display: flex; align-items: center; gap: calc(20/20*1em);}
.resultWrap .paging > .num {padding: 0 calc(35/20*1em);}
.resultWrap .paging a {width: calc(28/20*1em); height: calc(28/20*1em); display: flex; align-items: center; justify-content: center; color: #000; font-family: 'Pretendard'; font-size: clamp(14px, 18/20*1em, 18px); letter-spacing: -0.03em; background: transparent; border-radius: 50%;}
.resultWrap .paging a.act {color: #fff; background: #50555b; font-weight: bold;}
/* .resultWrap .paging .arr a {padding: calc(10/20*1em);} */

@media screen and (min-width: 821px) {
    .main {
        height: auto;
    }
    .mapArea {
        max-width: 1440px; margin: 0 auto;
        margin-top: 20px;
        margin-bottom: 150px;
        position: relative;
    }
    .mapArea .map_banner {
        opacity: 1;
        visibility: visible;
        border-radius: 4px;
        position: relative;
        text-align: center;
    }
    .mapArea .mapArea_inner {
        height: calc(740/1440*100vw);
        max-height: 740px;
        background: #aaa;
        position: relative;
    }
    .mapArea .obj {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 25%);
        width: 114px;
        z-index: 1;
    }
    .resultWrap {
        opacity: 1;
        visibility: visible;
        max-width: 350px;
        height: calc(100% - 20px);
        top: 10px;
        left: 10px;
        background: #fff;
        border-radius: 20px;
        padding: 20px 6px 0;
        border: 1px solid #ff5522;
    }
    .resultWrap .innerBox {
        padding: 0 30px 20px;
    }
    .resultWrap .innerBox .resultItem {
        border: none;
        padding: 30px 0px;
        font-size: 16px;
        border-radius: 0;
    }
    .resultWrap .innerBox .resultItem + .resultItem {
        border-top: 1px solid #eee;
    }
    .resultWrap .innerBox .resultItem .title {
        padding-bottom: calc(14/16*1em);
    }
    .resultWrap .innerBox .resultItem .title span {
        font-size: inherit;
        font-weight: 700;
    }
    .resultWrap .innerBox .resultItem .title span em {
        font-size: inherit;
        font-weight: 700;
    }
    .resultWrap .innerBox .resultItem .type2,
    .resultWrap .innerBox .resultItem .location {
        font-size: inherit;
        color: #727272;
    }
    .resultWrap .innerBox .resultItem .info > * {
        color: #000;
        font-weight: 500;
        line-height: calc(20/14*1em);
    }
    .resultWrap .innerBox .resultItem .info ._txt > *:not(p),
    .resultWrap .innerBox .resultItem .info ._txt > p > *:not(em) {
        font-size: calc(10/14*1em);
        padding: calc(1/12*1em) calc(10/12*1em);
        line-height: 1.5em;
    }
    .resultWrap .innerBox .resultItem .labelWrap {
        font-size: calc(14/16*1em);
        padding-top: calc(20/14*1em);
    }
    .resultWrap .innerBox .resultItem .labelWrap .label {
        padding: calc(7/14*1em) calc(10/14*1em);
    }
    .resultWrap .paging {
        font-size: 14px;
        padding: calc(15/14*1em);
    }
    .resultWrap .paging a {
        width: calc(27/14*1em);
        height: calc(27/14*1em);
        color: #aaa;
    }
    .resultWrap .paging a.act {
        background: #ff5522;
    }
    .resultWrap .paging > .num {
        padding: 0 5px;
        gap: calc(10/20*1em);
    }
    .resultWrap .paging .arr {
        gap: 0;
    }
}
@media screen and (max-width: 1280px) {
    .resultWrap .innerBox {
        padding: 0 20px 20px;
    }
}
@media screen and (max-width: 1024px) {
    .mapArea {
        margin-bottom: 100px;
    }
    .mapArea .map_banner {
        font-size: clamp(14px, 14/821*100vw, 16px);
    }
    .resultWrap {
        max-width: 285px;
    }
    .resultWrap .innerBox .resultItem {
        font-size: clamp(16px, 16/821*100vw, 16px);
    }
    .resultWrap .innerBox {
        padding: 0 10px 10px;
    }
    .resultWrap .innerBox .resultItem .labelWrap {
        /* flex-direction: column; */
    }
    .resultWrap .innerBox .resultItem .labelWrap .label {
        width: 100%;
    }
    .resultWrap .innerBox .resultItem .info ._txt span {
        font-size: clamp(12px, 12/821*100vw, 14px);
    }
    .resultWrap .innerBox .resultItem .info ._txt {
        padding-right: 0;
    }
    .resultWrap .paging {
        font-size: clamp(12px, 12/821*100vw, 13px);
    }
    .mapArea .obj {
        width: 90px;
    }
}
@media screen and (max-width: 820px) {
    .mapArea {
        padding-bottom: 0;
    }
    .mapArea .obj {display: none;}
    .cont .wrap:has(.mapArea) {
        height: 100%;
        width: 100%;
    }
    .direct-open .resultWrap._default {
        display: none;
    }
    .resultWrap {
        width: 100%;
        max-width: 100%;
    }
    .resultWrap .innerBox .resultItem .labelWrap {
        padding-top: calc(20/20*1em);
    }
    .resultWrap .paging {
        border-top: none;
    }
    /* .resultWrap .paging.pc {display: none;} */
    /* .resultWrap .paging.mo {display: flex;} */
}
@media screen and (min-width: 501px) and (max-width: 820px) {
    .mapArea .map_banner {
        font-size: clamp(16px, 16/501*100vw, 18px);
    }
    .resultWrap .innerBox .resultItem {
        font-size: clamp(20px, 20/501*100vw, 24px);
    }
    .resultWrap .paging {
        font-size: clamp(20px, 20/501*100vw, 24px);
    }
    .resultWrap .paging a {
        font-size: clamp(14px, 18/20*1em, 24px);
    }
}
@media screen and (min-width: 480px) and (max-width: 500px) {
    .mapArea .map_banner {
        font-size: clamp(16px, 16/480*100vw, 22px);
    }
    .resultWrap .innerBox .resultItem {
        font-size: clamp(28px, 28/480*100vw, 35px);
    }
    .resultWrap .innerBox .resultItem .title span em {
        font-size: clamp(20px, 20/480*100vw, 25px);
    }
    .resultWrap .innerBox .resultItem .type2,
    .resultWrap .innerBox .resultItem .location {
        font-size: clamp(22px, 22/480*100vw, 28px);
    }
    .resultWrap .innerBox .resultItem .info > * {
        font-size: clamp(17px, 17/480*100vw, 20px);
    }
    .resultWrap .innerBox .resultItem .info ._txt span {
        font-size: clamp(13px, 13/480*100vw, 15px);
    }
    .resultWrap .innerBox .resultItem .labelWrap {
        font-size: clamp(20px, 20/480*100vw, 25px);
    }
    .resultWrap .innerBox .resultItem .labelWrap .label {
        padding: calc(10/20*1em) calc(20/20*1em);
    }
    .resultWrap .paging {
        font-size: clamp(20px, 20/480*100vw, 27px);
    }
}
@media screen and (min-width: 0px) and (max-width: 479px) {
    .resultWrap .innerBox .resultItem .info ._txt span {
        padding: calc(1/13*1em) calc(10/13*1em);
    }
    .resultWrap .paging > .num {
        padding: 0 calc(20/20*1em);
    }
    .resultWrap .paging > div {
        gap: calc(10/20*1em);
    }
    .resultWrap .paging {
        font-size: clamp(14px, 20/479*100vw, 20px);
    }
}

.resultWrap_popup {
    position: absolute;
    bottom: 25px;
    top: auto;
    right: calc(148/1440*100%);
    left: auto;
    z-index: 1000;
    max-height: 560px;
    height: 100%;
    width: 350px;
    box-sizing: border-box;
    display: none;
}
.resultWrap_popup .resultWrap {
    padding-top: 40px;
    left: 0;
    top: 0;
    position: relative;
    height: 100%;
}
.resultWrap_popup .resultWrap .resultItem {
    cursor: default;
}
.resultWrap_popup .resultWrap .close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
@media screen and (max-width: 1280px) {
    .resultWrap_popup {
        max-height: calc(100% - 80px);
        right: 10px;
        bottom: 10px;
    }
}
@media screen and (max-width: 1024px) {
    .resultWrap_popup {
        width: 285px;
    }
}
@media screen and (max-width: 820px) {
    .resultWrap_popup {
        right: 0;
        left: 0;
        bottom: 0;
        top: 0;
        width: 100%;
        height: 100%;
        max-height: 100%;
        opacity: 0;
        visibility: hidden;
        display: block;
        pointer-events: none;
        transition: all .75s .2s;
    }
    .result-open.direct-open .resultWrap_popup {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .resultWrap_popup .resultWrap {
        opacity: 1;
        visibility: visible;
    }
    .direct-open .resultWrap_popup .resultWrap {
        padding-top: 16px !important;
    }
    .resultWrap_popup .resultWrap .close {
        display: none;
    }
}