.crl-page {
    background: #fff;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 500;
}

.crl-page-content {
    height: 100%;
    overflow-y: auto;
    width: 100%;
}

.crl-page-content-title {
    font-size: 24px;
    font-weight: 500;
    color: #E9528E;
    text-align: center;
    margin-top: 40px;
}

.crl-page-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width:100%;
}

.crl-page-header-therapist-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.crl-page-header-rate-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: center;
    justify-content: space-around;
    min-height: 120px;
    margin-top: 20px;
}

.crl-page-header-five-star {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.crl-page-header-image-container {
    width: 80px;
    height: 80px;
    position: relative;
    display: inline-block;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.crl-page-header-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.crl-therapist-name {
    font-size: 16px;
    color: #535353;
}

#starRatingChart {
    width: 50% !important;
    height: auto !important;
    display: block;
}

.crl-average-rating {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 0px;
    color: #E9528E;
    flex-direction: column;
}

.crl-average-rating .average-star {
    color: #AAAAAC;
    transition: color 0.3s, transform 0.2s ease-in-out;
    position: relative;
}

.crl-average-rating .average-star.selected {
    color: #E9528E;
    transform: scale(1.1);
}

.crl-average-rating .average-star.half-selected::before {
    content: "★";
    position: absolute;
    color: #E9528E;
    width: 50%;
    overflow: hidden;
}

.crl-average-rating .average-score {
    font-size: 24px;
    color: #E9528E;
}

.crl-review-count {
    font-size: 14px;
    font-weight: normal;
    color: #535353;
}

.crl-search-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid #AAAAAC;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.crl-search-text-content {
    color: #535353;
    border-radius: 8px;
    display: flex;
    justify-content: flex-start;
    gap: 0px;
    width: 100%;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    height: 40px;
    align-items: center;
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
}

.crl-search-text-content-image {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.crl-search-text-content-image img {
    width: 100%;
    height: 100%;
}

.crl-review-search {
    font-size: 14px;
    box-sizing: border-box;
    color: #535353;
    font-size: 14px;
    margin-left: 5px;
}


.crl-sort-radio-group-section {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
}

.crl-sort-radio-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.crl-sort-radio-group input[type="radio"] {
    display: none;
}

.crl-sort-radio-group .radio-label {
    border: 1px solid #AAAAAC;
    background-color: #ffffff;
    padding: 5px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    color: #AAAAAC;
    display: inline-block;
    text-align: center;
}

.crl-sort-radio-group input[type="radio"]:checked + .radio-label {
    background-color: #7D40A0;
    color: #ffffff;
}

.crl-review {
    margin-bottom: 20px;
}

.crl-review-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.crl-star-rating {
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    gap: 0px;
}

.crl-star-rating .star {
    color: #AAAAAC;
    transition: color 0.3s, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    transform: scale(1);
}

.crl-star-rating .star.selected {
    color: #E9528E;
    transform: scale(1.1); 
}

.crl-review-created_at {
    color: #535353;
    font-size: 16px;
}

.crl-review-textarea {
    width: 100%;
    padding: 13px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 25px;
    border: none;
    background-color: #F5F5F5;
    resize: none;
    box-sizing: border-box;
    pointer-events: none;
    overflow: hidden;
    color: #535353;
    white-space: pre-wrap;
    word-wrap: break-word;
    margin-top: 5px;
}

.crl-no-review-message {
    color: #AAAAAC;
    font-size: 16px;
    text-align: center;
    padding-top: 20px;
}