/* ------------------------------------------------------------------------------------------------------------------ */
/* 予約履歴 */

.custom-reservations-history-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;
    padding-right: 20px;
    padding-left: 20px;
}

.custom-reservations-history-page,
.custom-reservations-history-page * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.custom-reservations-history-page-content {
    height: 100%;
    overflow-y: auto;
}

.crh-reservation-details-for-share-error-message {
    text-align: center;
    font-size: 1rem;
    color: #AAAAAC;
    margin: 40px 0;
}

.custom-reservations-history-message {
    font-size: 1rem;
    color: #AAAAAC;
    text-align: center;
    margin-top: 40px;
}


.custom-reservations-history-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.custom-reservations-history-card {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    border-bottom: solid 1px #AAAAAC;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.custom-reservations-history-card-content {
    position: relative;
}

.custom-reservations-history-card-status {
    margin-bottom: 10px;
}

.custom-reservations-history-past-label {
    width: 150px;
    background-color: #AAAAAC;
    border-radius: 50px;
    color: #fff;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.custom-reservations-history-therapist-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    gap: 10px;
}

.custom-reservations-history-therapist-info img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.custom-reservations-history-therapist-name {
    font-size: 1rem;
    color: #535353;
    max-width: 150px;
    min-width: 150px;
    white-space: nowrap;
    overflow: hidden;
}

.custom-reservations-history-card-time {
    font-size: 0.875rem;
    color: #535353;
    text-align: center;
    margin-bottom: 10px;
}


.custom-reservations-history-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.custom-reservations-history-view-details-button,
.custom-reservations-history-view-review-button {
    height: 40px;
    font-size: 1rem;
    background: #fff;
    color: #7D40A0;
    border-radius: 24px;
    width: 100%;
    position: relative;
    text-align: center;
    border: solid 1px #7D40A0;
    padding: 5px;
    max-width: 282px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-reservations-history-view-details-button::before,
.custom-reservations-history-view-review-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-reservations-history-review-button {
    height: 40px;
    font-size: 1rem;
    background: #E9528E;
    color: #fff;
    border-radius: 24px;
    width: 100%;
    position: relative;
    text-align: center;
    max-width: 282px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-reservations-history-review-button::before{
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    right: 20px;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: translatey(-50%) rotate(-135deg);
    transform: translatey(-50%) rotate(-135deg);
}

.custom-reservations-history-review-button::after {
    content: 'ポイントGET！';
    position: absolute;
    top: -13px;
    right: 50%;
    transform: translateX(50%);
    background: #fff;
    color: #E9528E;
    border: solid 1px #E9528E;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 10px;
    white-space: pre;
}

.custom-reservations-history-review-button--lite::after {
    display: none;
}

.custom-reservations-history-page-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #E9528E;
    text-align: center;
    margin-top: 40px;
}


.custom-reservations-history-badge {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 5px;
    border-radius: 24px;
    font-size: 0.875rem;
    border: 1px solid transparent;
}

.custom-reservations-history-badge--cancelled {
    background: #fff;
    color: #AAAAAC;
    border-color: #AAAAAC;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* ステップバー */

.custom-reservations-history-stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    counter-reset: step;
    position: relative;
}

.custom-reservations-history-step {
    position: relative;
    text-align: center;
    flex: 1;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ステップ間の横線 */
.custom-reservations-history-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(50% + 24px);
    width: calc(100% - 48px);
    height: 1px;
    background-color: #D7AEEF;
    z-index: 0;
}

/* 丸の基本スタイル（未完了＆完了） */
.custom-reservations-history-step::before {
    counter-increment: step;
    content: counter(step);
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    text-align: center;
    margin-bottom: 5px;
    border-radius: 50%;
    background-color: #D7AEEF;
    font-weight: 500;
    font-size: 1.125rem;
    color: #fff;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    animation: crl-step-in 0.5s forwards;
    z-index: 1;
}

/* アクティブの丸だけ背景色変更 */
.custom-reservations-history-step.active::before {
    background-color: #7D40A0;
    color: #fff;
    transform: scale(1);
    opacity: 1;
}

/* 完了ステップ（✓なし、表示ON） */
.custom-reservations-history-step.completed::before {
    transform: scale(1);
    opacity: 1;
}

/* アクティブ以外のラベル（共通） */
.custom-reservations-history-step .step-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #D7AEEF;
    transition: color 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    animation: crl-label-in 0.5s forwards 0.3s;
}

/* アクティブのラベルだけ色変更 */
.custom-reservations-history-step.active .step-label {
    color: #7D40A0;
    transform: translateY(0);
    opacity: 1;
}

/* 完了ステップのラベル表示ON */
.custom-reservations-history-step.completed .step-label {
    transform: translateY(0);
    opacity: 1;
}

/* 完了ステップの横線色 */
.custom-reservations-history-step.completed::after {
    background-color: #D7AEEF;
}

/* キャンセル表示用 */
.custom-reservations-history-stepper.cancelled {
    justify-content: center;
    align-items: center;
}

.custom-reservations-history-stepper.cancelled .cancelled-label {
    font-size: 0.875rem;
    color: #D7AEEF;
}

/* アニメーション */
@keyframes crl-step-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes crl-label-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 遷移調整 */
.custom-reservations-history-step::before,
.custom-reservations-history-step .step-label {
    transition: all 0.3s ease;
}




/* ------------------------------------------------------------------------------------------------------------------ */
/* 口コミ投稿 */


.crh-post-review-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;
    padding-right: 20px;
    padding-left: 20px;
}

.crh-post-review-page-error {
    margin-top: 40px;
    color: #AAAAAC;
    font-size: 0.875rem;
    text-align: center;
}

.crh-post-review-page-error-btn {
    position: relative;
    border: solid 1px #7D40A0;
    border-radius: 30px;
    font-size: 1rem;
    color: #7D40A0;
    text-align: center;
    width: 282px;
    height: 40px;
    padding: 5px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crh-post-review-page-error-btn::before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    right: 10px;
    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);
}


.crh-post-review-page-main-content {
    overflow-y: auto;
    flex:1;
}

.crh-post-review-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    left: 0;
    padding-left: 20px;
    padding-right: 20px;
}

.crh-post-review-page-back-btn {
    width: 50px;
    font-size: 0.875rem;
    color: #535353;
    cursor: pointer;
    border: none;
}

#post-review {
    width: 90px;
    padding: 5px;
    background-color: #E9528E;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 0.875rem;
    cursor: pointer;
    position: relative;
}

#post-review::before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    right: 10px;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: translatey(-50%) rotate(-135deg);
    transform: translatey(-50%) rotate(-135deg);
}

.crh-post-review-page-therapist-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}

.crh-post-review-page-therapist-info img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.crh-post-review-page-therapist-and-store {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.crh-post-review-page-therapist-name{
    font-size: 1rem;
    color: #535353;
}

.crh-post-review-page-store-name {
    font-size: 0.875rem;
    color: #535353;
}

.crh-post-review-page-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.crh-post-review-page-rating {
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.crh-post-review-page-rating .star {
    color: #AAAAAC;
    transition: color 0.3s, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    transform: scale(1);
}

.crh-post-review-page-rating .star.selected {
    color: #E9528E;
    transform: scale(1.1); 
}

.crh-post-review-page-rating .star.hovered {
    color: #E9528E;
    transform: scale(1.1); 
}

.crh-post-review-page-rating .star:active {
    transform: scale(0.95);
}

.crh-post-review-page-form textarea {
    height: 30vh;
    padding: 13px;
    font-size: 0.875rem;
    border: none;
    border-radius: 25px;
    box-sizing: border-box;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-y: auto;
    background-color: #F5F5F5;
    color: #535353;
    margin-top: 20px;
    width: 100%;
}

.crh-post-review-page-form-section {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.crh-post-review-page-form-section-message {
    text-align: center;
    font-size: 0.875rem;
    color: #535353;
    margin-bottom: 20px;
}

.crh-post-review-page-form-section-category{
    margin-bottom: 40px;
}

.crh-post-review-page-form-section-category-title {
    font-size: 1rem;
    color: #7D40A0;
    text-align: center;
    border-bottom: solid 1px #7D40A0;
    width: 100%;
}

.crh-post-review-page-tags {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.crh-post-review-page-tags .tag {
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.875rem;
    min-width: 60px;
    transition: all 0.2s ease;
    border: 1px solid #AAAAAC;
    background-color: #ffffff;
    color: #AAAAAC;
}

.crh-post-review-page-tags .tag.selected {
    background-color: #7D40A0;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

#crh-post-review-page-form-textarea-char-count {
    font-size: 0.875rem;
    color: #535353;
    align-items: center;
    margin-left: auto;
    margin-right: 8px;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* 口コミ閲覧 */

.crh-view-review-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;
    padding-right: 20px;
    padding-left: 20px;
}

.crh-view-review-page-main-content {
    overflow-y: auto;
    flex:1;
}

.crh-view-review-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    left: 0;
    padding-left: 20px;
    padding-right: 20px;
}

.crh-view-review-page-back-btn {
    width: 50px;
    font-size: 0.875rem;
    color: #535353;
    cursor: pointer;
    border: none;
}

.crh-view-review-page-therapist-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}

.crh-view-review-page-therapist-info img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.crh-view-review-page-therapist-and-store {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.crh-view-review-page-therapist-name{
    font-size: 1rem;
    color: #535353;
}

.crh-view-review-page-store-name {
    font-size: 0.875rem;
    color: #535353;
}

.crh-view-review-page-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.crh-view-review-page-rating {
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.crh-view-review-page-rating .star {
    color: #AAAAAC;
    transition: color 0.3s, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    transform: scale(1);
}

.crh-view-review-page-rating .star.selected {
    color: #E9528E;
    transform: scale(1.1); 
}

.crh-view-review-page-rating .star:active {
    transform: scale(0.95);
}

.crh-view-review-page-form textarea {
    height: 30vh;
    padding: 13px;
    font-size: 0.875rem;
    border: none;
    border-radius: 25px;
    box-sizing: border-box;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-y: auto;
    background-color: #F5F5F5;
    color: #535353;
    margin-top: 20px;
    width: 100%;
}

.crh-view-review-page-form-section {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.crh-view-review-page-form-section-category{
    margin-bottom: 40px;
}

.crh-view-review-page-form-section-category-title {
    font-size: 1rem;
    color: #7D40A0;
    text-align: center;
    border-bottom: solid 1px #7D40A0;
    width: 100%;
}

.crh-view-review-page-tags {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.crh-view-review-page-tags .tag {
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.875rem;
    min-width: 60px;
    transition: all 0.2s ease;
    border: 1px solid #AAAAAC;
    background-color: #ffffff;
    color: #AAAAAC;
}

.crh-view-review-page-tags .tag.selected {
    background-color: #7D40A0;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* 予約詳細 */

.crh-reservation-details-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;
    font-weight: 500;
}

.crh-reservation-details-page, 
.crh-reservation-details-page * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.crh-reservation-details-page-content {
    height: 100%;
    overflow-y: auto;
}

.crh-reservation-details-page-top-section {
    padding-right: 20px;
    padding-left: 20px;
    background: #fff;
    padding-top: 40px;
}


.crh-reservation-details-page-bottom-section {
    padding-right: 20px;
    padding-left: 20px;
    background: #F5F5F5;
    margin-top: -91px;
    padding-top: 91px;
    padding-bottom: 5rem !important;
}


.crh-reservation-details-page-status-message {
    color: #535353;
    font-size: 0.875rem;
    margin-top: 10px;
}

.crh-reservation-details-page-therapist-info-wrapper {
    padding-right: 20px;
    padding-left: 20px;
}

.crh-reservation-details-page-therapist-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border: solid 1px #AAAAAC;
    background: #fff;
    border-radius: 10px;
    margin-top: 40px;
    padding: 20px;
    height: 211px;
    position: relative;
}

.crh-reservation-details-page-therapist-img-and-name {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: solid 1px #AAAAAC;
    margin-bottom: 20px;
}

.crh-reservation-details-page-therapist-img-and-name img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;

}

.crh-reservation-details-page-therapist-and-store {
    color: #535353;
}

.crh-reservation-details-page-therapist-name {
    font-size: 1rem;
}

.crh-reservation-details-page-store-name {
    font-size: 0.875rem;
}

.crh-reservation-details-page-therapist-btn-content {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}


.crh-reservation-details-page-therapist-info-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.875rem;
    color: #7D40A0;
}

.crh-reservation-details-page-therapist-info-button img {    
    height: 30px;
    width: auto;
}

.crh-reservation-details-page-datetime-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
    align-items: stretch;
}

.crh-reservation-details-page-start-datetime-info,
.crh-reservation-details-page-end-datetime-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.875rem;
    border-radius: 10px;
    padding: 10px 10px;
    background: #fff;
    width: 100%;
}

.crh-reservation-details-page-start-datetime-info-title,
.crh-reservation-details-page-end-datetime-info-title {
    background: #7D40A0;
    color: #fff;
    font-size: 1rem;
    width: 90%;
    max-width: 155px;
    height: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crh-reservation-details-page-start-datetime,
.crh-reservation-details-page-end-datetime {
    font-size: 1rem;
    color: #535353;
    text-align: center;
}

.crh-reservation-details-page-start-datetime-explanation {
    font-size: 0.875rem;
    color: #535353;
}

.crh-dot-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
  
.crh-dot-loader div {
    width: 4px;
    height: 4px;
    background-color: #E9528E;
    border-radius: 50%;
    animation: wave 1.2s infinite ease-in-out;
}

.crh-dot-loader div:nth-child(1) {
    animation-delay: -0.4s;
}

.crh-dot-loader div:nth-child(2) {
    animation-delay: -0.2s;
}

.crh-dot-loader div:nth-child(3) {
    animation-delay: 0s;
}

@keyframes wave {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}

.crh-reservation-details-page-meeting-place-info,
.crh-reservation-details-page-outfit-description-info,
.crh-reservation-details-page-schedule-adjusted-info,
.crh-reservation-details-page-question-info,
.crh-reservation-details-page-contact-info {
    background: #fff;
    width: 100%;
    border-radius: 0.625rem;
    margin-top: 1.25rem;
    padding: 0.625rem;    
}

.crh-reservation-details-page-meeting-place-title,
.crh-reservation-details-page-outfit-description-title,
.crh-reservation-details-page-schedule-adjusted-title,
.crh-reservation-details-page-question-title,
.crh-reservation-details-page-contact-title {
    font-size: 1rem;
    color: #7D40A0;
}

.crh-reservation-details-page-question,
.crh-reservation-details-page-outfit-description,
.crh-reservation-details-page-meeting-place,
.crh-reservation-details-page-schedule-adjusted,
.crh-reservation-details-page-contact {
    box-sizing: border-box;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow: hidden;
    font-size: 1rem;
    color: #535353;
}

.crh-reservation-details-page-contact {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.crh-reservation-details-page-receipt {
    padding: 10px;
    border-radius: 10px;
    background-color: #fff;
    margin-top: 20px;
    color: #535353;
}

.crh-receipt-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.crh-receipt-item-title {
    width: 50%;
    text-align: left;
    font-size: 1rem;
    color: #7D40A0;
    white-space: nowrap;
    overflow: hidden;
}

.crh-receipt-item-price-and-reason {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.crh--receipt-item-price {
    color: #535353;
    text-align: right;
    font-size: 1rem;
}

.crh-receipt-item-reason {    
    font-size: 0.875rem;
    color: #535353;
}

.crh-receipt-total {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #E1E1E1;
}

.crh-receipt-total-title {
    font-size: 1rem;
    color: #7D40A0;
    text-align: left;
    width: 30%;
    white-space: nowrap;
    overflow: hidden;
}

.crh-receipt-total-price-and-explanation {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.crh-receipt-total-price {
    color: #E9528E;
    text-align: right;
    font-size: 1.5rem;
}

.crh-receipt-total-explanation {    
    font-size: 0.875rem;
    color: #535353;
    text-align: left;
}

.crh-receipt-payment-method {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #E1E1E1;
}

.crh-receipt-payment-method-title {
    font-size: 1rem;
    color: #7D40A0;
    text-align: left;
    width: 30%;
    white-space: nowrap;
    overflow: hidden;
}

.crh-receipt-payment-method-detail {
    color: #535353;
    text-align: right;
    font-size: 1rem;
    width: 70%;
}


.crh-reservation-details-page-change-guidance,
.crh-reservation-details-page-cancelled-guidance {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}


.crh-reservation-details-page-change-guidance-title,
.crh-reservation-details-page-cancelled-guidance-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #535353;
    text-align: center;
}

.crh-reservation-details-page-change-guidance-info-value-pending,
.crh-reservation-details-page-change-guidance-info-value-confirm,
.crh-reservation-details-page-cancelled-guidance-info-value-confirm {
    font-size: 0.875rem;
    color: #535353;
    margin-top: 10px;
}

.crh-reservation-details-page-contact-button {
    position: relative;
    text-align: center;
    font-size: 1rem;
    background-color: #fff;
    color: #7D40A0;
    border-radius: 50px;
    width: 282px;
    height: 40px;
    border: solid 1px #7D40A0;
    transition: background-color 0.3s;
    margin: 20px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crh-reservation-details-page-contact-button::before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    right: 10px;
    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);
}

.crh-close-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 4px 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    z-index: 100;
    border-radius: 50%;
    background: #AAAAAC;
}

.crh-close-btn img {
    height: 25px;
    width: 25px;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* 予約共有(外部ユーザー) */

.crh-reservation-details-for-share-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;
    font-weight: 500;
}

.crh-reservation-details-for-share-page, 
.crh-reservation-details-for-share-page * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.crh-reservation-details-for-share-page-review-btn,
.crh-reservation-details-for-share-page-reviewed-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 4px 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 65px;
    height: 65px;
    z-index: 100;
    border-radius: 50%;
    background: #E9528E;
    color: #fff;
    font-size: 0.875rem;
}

@media screen and (min-width: 1024px) {
    .crh-reservation-details-for-share-page-review-btn {
        right: calc(13.0208333333% + 1.25rem) !important;
    }

    .crh-reservation-details-for-share-page-reviewed-btn {
        right: calc(13.0208333333% + 1.25rem) !important;
    }
}