



/*--------------------------------------------------------------------------------*/
.new-store {
    display: flex;
    flex-direction: column;
}
    .new-store-title {
        display: flex;
        flex-direction: row;

        align-items: center;
        justify-content: center;
    }
        .new-store-title img {
            margin-right: 5px;
        }
        .new-store-text {
            font-weight: 900;
        }
        

    .new-store-wrapper {
        display: flex;
        flex-direction: column;

        justify-content: center;

        overflow: hidden;
    }

        .swiper-wrapper {

        }
            .new-store-wrapper .swiper-slide {
                position: relative;

                width: 100%;
                aspect-ratio: 1 / 1;

                border: 1px solid #ccc;
                border-radius: 5px;

            }
                .new-store-wrapper .swiper-slide img {
                    width: 100%;
                    height: 100%;
                }

                .new-store-name {
                    position: absolute;

                    left: 0px;
                    bottom: 15px;

                    background: #fff;
                    color: #5c9f55;

                    clip-path: polygon(0% 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
                    
                    padding: 5px 25px 5px 5px;
                    font-weight: 600;

                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;

                    max-width: 150px;
                    font-size: 16px;

                    display: flex;
                    align-items: center;
                    padding-right: 25px; /* 오른쪽 공간 확보 */
                }

                .new-store-name span {
                    padding: 5px 0 5px 5px; /* 왼쪽 패딩 유지 */
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    flex-grow: 1;
                }

  

        .new-store-wrapper .swiper-pagination {
            display: flex;

            position: relative;
            align-items: center;
            justify-content: center;
            padding: 14px 0px;

            bottom: 0px !important;
        }
            .new-store-wrapper .swiper-pagination-bullet-active {
                width: 12px;
                height: 12px;
                background-color: #5A9F4E;
            }




/*--------------------------------------------------------------------------------*/
#store-voice-more {
    background-color: #EBE4CE;

    padding-top: 5px;

    display: flex;
    flex-direction: column;
}

    .store-voice-result-more {
        position: relative;

        margin: 0 auto;
    }
        #store-voice-more-button {
            display: flex;
            flex-direction: row;
            gap: 10px;

            border-radius: 18px;
            border: 1px solid #333;
            padding: 5px 15px;

            cursor: pointer;
        }

            .store-voice-result-text {
            }
            .store-voice-result-icon {
                display: flex;
                flex-direction: column;
            }
                .store-voice-result-icon img {
                    padding-top: 8px;
                    width: 16px;
                }





/*--------------------------------------------------------------------------------*/


#btn-search-option {
    cursor: pointer;

    word-break: keep-all; /* Keep 「絞り込む」 Button */
}