.custom-store-list-page {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: 'Noto Sans JP', sans-serif;
    background: #fff;
    font-weight: 500;
}

.custom-store-list-page,
.custom-store-list-page * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.custom-store-list-content {
    height: 100%;
    overflow-y: auto;
}

.custom-store-list-content-title {
    font-size: 24px;
    font-weight: 500;
    color: #E9528E;
    text-align: center;
    margin-top: 40px;
}


.custom-store-list-tabs {
    display: flex;
    flex-direction: row;
    gap: 5px;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    margin: 40px auto 0px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.custom-store-list-tabs::-webkit-scrollbar {
    display: none;
}

.custom-store-list-tab-button {
    padding: 3px 10px;
    border: 1px solid #AAAAAC;
    background-color: #ffffff;
    color: #AAAAAC;
    font-size: 12px;
    border-radius: 20px;
    cursor: pointer;
    width: 60px;
    transition: all 0.2s ease-in-out;
}

.custom-store-list-tab-button.active {
    background-color: #7D40A0;
    color: #ffffff;
}

.custom-store-list-grid {
    display: flex;
    flex-direction: column;
}

.custom-store-list-tab-content {
    max-width: 600px;
    margin: 40px auto 0 auto;
}

.custom-store-list-card-horizontal {
    display: flex;
    position: relative;
    text-decoration: none;
    color: inherit;
    align-items: flex-start;
    width: 100%;
    border-bottom: 2px solid #AAAAAC;
    flex-direction: column;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.custom-store-list-page .swiper-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.custom-store-list-page .swiper-wrapper {
    width: 100%;
    display: flex;
}

.custom-store-list-page .swiper-slide {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    overflow: hidden;
    border-radius: 12px;
}

.custom-store-list-page .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.custom-store-list-page .swiper-slide a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.custom-store-list-page .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-store-list-page .swiper-pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
    z-index: 1;
}

.custom-store-list-page .swiper-pagination-bullet {
    background: #AAAAAC;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.custom-store-list-page .swiper-pagination-bullet-active {
    opacity: 1;
    background: #E9528E;
}

.custom-store-list-image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #e0e0e0;
    color: #666;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-align: center;
}

.custom-store-list-card-header {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: row;
    margin-bottom: 20px;
}

.custom-store-list-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.custom-store-list-name {
    font-size: 24px;
    color: #535353;
    white-space: nowrap;
    overflow: hidden;
    font-weight: 500;
}

.custom-store-list-info {
    position: relative;
    width: 100%;
    height: 60px;
    border: 1px solid #AAAAAC;
    border-radius: 8px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    background-color: #fff;
    padding-top: 10px;
    color: #535353;
}

.custom-store-list-info::before {
    content: attr(data-label);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 5px 0px;
    font-size: 12px;
    color: #7D40A0;
    font-weight: 600;
    border: 1px solid #AAAAAC;
    border-radius: 12px;
    width: 70px;
}

.custom-store-list-card-btn-content {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.custom-store-list-card-info-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.custom-store-list-button {
    height: 40px;
    font-size: 16px;
    background: #fff;
    color: #7D40A0;
    border-radius: 24px;
    width: 100%;
    position: relative;
    text-align: center;
    border: solid 1px #7D40A0;
    padding: 5px;
}

.custom-store-list-button::before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    right: 20px;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid #7D40A0;
    border-left: 1px solid #7D40A0;
    -webkit-transform: translatey(-50%) rotate(-135deg);
    transform: translatey(-50%) rotate(-135deg);
}

.custom-store-list-no-message {
    text-align: center;
    font-size: 16px;
    color: #AAAAAC;
    margin-top: 40px;
}

.csl-up-button {
    position: fixed;
    bottom: 80px;
    right: 5px;
    padding: 4px 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    z-index: 100;
    border-radius: 50%;
    background: #9E6CBB;
}
