.custom-therapist-ranking-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-therapist-ranking-page,
.custom-therapist-ranking-page * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.custom-therapist-ranking-content {
    height: 100%;
    overflow-y: auto;
}

.custom-therapist-ranking-content-title {
    font-size: 24px;
    font-weight: 500;
    color: #E9528E;
    text-align: center;
    margin-top: 40px;
}

.custom-therapist-ranking-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-therapist-ranking-tabs::-webkit-scrollbar {
    display: none;
}
  

.custom-therapist-ranking-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-therapist-ranking-tab-button.active {
    background-color: #7D40A0;
    color: #ffffff;
}

.custom-therapist-ranking-period {
    font-size: 14px;
    text-align: center;
    color: #535353;
    margin-top: 20px;
}


.custom-therapist-ranking-grid {
    display: flex;
    flex-direction: column;
}

.custom-therapist-ranking-tab-content {
    margin-top: 40px;
}

.custom-therapist-ranking-card-horizontal {
    display: flex;
    position: relative;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    align-items: flex-start;
    width: 100%;
    border-bottom: 2px solid #AAAAAC;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.custom-therapist-ranking-card-image {
    position: relative;
}

.custom-therapist-ranking-avatar {
    position: relative;
    width: 100%;
    max-width: 185px;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    object-fit: cover;
}

.custom-therapist-ranking-heart-wrapper {
    position: absolute;
    right: 5px;
    bottom: 5px;
    background-color: rgba(240, 240, 240, 0.8);
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    z-index: 10;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-therapist-heart-img {
    width: 24px;
    height: auto;
}

.custom-therapist-matching-toast {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E9528E;
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.custom-therapist-matching-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

.custom-therapist-ranking-card-content {
    flex: 1;
}

.custom-therapist-ranking-position {
    font-weight: 500;
    padding: 2px;
    font-size: 16px;
    background: #9E6CBB;
    border-radius: 50px;
    width: 60px;
    text-align: center;
    color: #fff;
}

.custom-therapist-ranking-position-first {
    background: #E9528E;
}

.custom-therapist-ranking-store-name {
    font-size: 16px;
    color: #535353;
    white-space: nowrap;
    overflow: hidden;
    margin-top: 5px;
}

.custom-therapist-ranking-name {
    font-size: 24px;
    color: #535353;
    white-space: nowrap;
    overflow: hidden;
    font-weight: 500;
    margin-top: 5px;
}

.custom-therapist-ranking-age {
    font-size: 16px;
    font-weight: normal;
    color: #535353;
    white-space: nowrap;
    overflow: hidden;
    margin-right: 10px;
}

.custom-therapist-ranking-info {
    font-size: 16px;
    font-weight: normal;
    color: #535353;
    white-space: nowrap;
    overflow: hidden;
    margin-top: 5px;
    margin-bottom: 20px;
}

.custom-therapist-ranking-rating {
    font-size: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.custom-therapist-ranking-review-count {
    font-size: 16px;
    color: #AAAAAC;
}

.custom-therapist-star {
    color: #AAAAAC;
    font-size: 24px;
}

.custom-therapist-star.selected {
    color: #E9528E;
}

.custom-therapist-star.half-selected {
    background: linear-gradient(to right, #E9528E 50%, #AAAAAC 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-therapist-ranking-button {
    padding: 5px;
    font-size: 16px;
    background: #ffffff;
    color: #7D40A0;
    border: 1px solid #7D40A0;
    border-radius: 24px;
    max-width: 184px;
    height: 40px;
    position: relative;
    text-align: center;
    margin-top: 25px;
}

.custom-therapist-ranking-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-therapist-ranking-no-ranking-message {
    text-align: center;
    font-size: 16px;
    color: #AAAAAC;
    margin-top: 40px;
}