/* 店舗詳細（キャスト有り版） */
.shop_data_content .shop_box {
  display: flex;
  background: white;
  color: var(--colorBlack);
  border-bottom: solid 1px var(--colorLightGray);
  padding: var(--size-16) var(--size-24);
}

.shop_data_content .shop_box .shop_img {
  aspect-ratio: 1;
  overflow: hidden;
  margin-right: var(--size-16);
  cursor: zoom-in;
}

.shop_data_content .shop_box .shop_img img {
  width: var(--size-88);
  height: var(--size-88);
  aspect-ratio: 1;
  object-fit: cover;
}

.shop_data_content .shop_box .data_box {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: var(--size-14);
  overflow: hidden;
  position: relative;
}

.shop_data_content .shop_box .data_box .data_header {
  display: flex;
  align-items: center;
  margin-bottom: var(--size-4);
}

.shop_data_content .shop_box .data_box .data_header span {
  font-size: var(--size-10-5);
  height: var(--size-18);
  color: white;
  padding: 0 var(--size-4);
  margin-right: var(--size-8);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--size-8);
  background: var(--colorGreen);
}

.shop_data_content .shop_box .data_box .data_header time {
  color: var(--colorDateColor);
  font-size: var(--size-10-5);
}

.shop_data_content .shop_box .data_box .shop_name {
  color: var(--colorBlack);
  margin-bottom: auto;
  font-weight: var(--fwSemiBold);
}

.shop_data_content .shop_box .data_box .shop_data {
  display: flex;
  flex-direction: column;
  font-size: var(--size-10-5);
  padding-right: var(--size-14);
}

.shop_data_content .shop_box .data_box .shop_data .price {
  color: var(--colorImportantPink);
  font-weight: var(--fwSemiBold);
}

/* セラピストレコメンド */
.recommend_block .recommend_list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.recommend_block .recommend_list li {
  flex: 0 1 calc((100% - 4px) / 3);
  max-width: calc((100% - 4px) / 3);
  aspect-ratio: 3 / 4;
  position: relative;
  margin-right: 2px;
  overflow: hidden;
}

.recommend_block .recommend_list li:last-child {
  margin-right: 0;
}

.recommend_block .recommend_list li figure {
  width: 100%;
  height: 100%;
}

.recommend_block .recommend_list li figure img {
  object-fit: cover;
}

.recommend_block .recommend_list li .name {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--size-14);
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, .8);
  color: var(--colorBlack);
  overflow: hidden;
  padding: var(--size-8);
}

/* 画像ポップアップ */
.image-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10003;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.image-popup.is-active {
  display: block;
  opacity: 1;
}

.image-popup__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--size-16);
}

.image-popup__image {
  width: min(480px, 100%);
  height: auto;
  position: relative;
  z-index: 1;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  cursor: default;
}

.image-popup.is-active .image-popup__image {
  transform: scale(1);
}

.image-popup__close {
  margin-top: 16px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
}

.image-popup.is-active .image-popup__close {
  opacity: 1;
  transform: translateY(0);
}

.image-popup__close:hover {
  background-color: #fff;
}

/* プロフィール */
.profile_block .therapist_summary_box {
  display: flex;
  padding: var(--size-24) var(--size-16);
}

.profile_block .therapist_summary_box .therapist_img {
  width: var(--size-72);
  height: var(--size-72);
  overflow: hidden;
  margin-right: var(--size-16);
  border-radius: 50%;
}

.profile_block .therapist_summary_box .therapist_img img {
  object-fit: cover;
}

.profile_block .therapist_summary_box .therapist_data {
  height: var(--size-72);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  padding: var(--size-4) 0;
  font-weight: var(--fwNormal);
}

.profile_block .therapist_summary_box .therapist_data .name {
  font-size: var(--size-16);
  font-weight: var(--fwSemiBold);
  display: flex;
  align-items: center;
}

.profile_block .therapist_summary_box .therapist_data .name.rank_number01::before {
  content: "";
  width: var(--size-24);
  height: var(--size-18);
  background: url(../images/icon_ranking_01.svg) no-repeat center top / 100% auto;
  margin-right: var(--size-4);
}

.profile_block .therapist_summary_box .therapist_data .name.rank_number02::before {
  content: "";
  width: var(--size-24);
  height: var(--size-18);
  background: url(../images/icon_ranking_02.svg) no-repeat center top / 100% auto;
  margin-right: var(--size-4);
}

.profile_block .therapist_summary_box .therapist_data .size {
  font-size: var(--size-12);
}

.profile_block .therapist_summary_box .therapist_data .schedule {
  padding: 1px var(--size-4);
  background: var(--colorPink);
  color: white;
  text-align: center;
  font-size: var(--size-12);
  border-radius: var(--size-4);
  margin-top: auto;
}

.profile_block .therapist_summary_box .therapist_data .schedule.other_day {
  background: var(--colorDateColor);
}

.profile_block .tab_list_box {
  height: var(--size-72);
  border-bottom: solid 2px var(--colorImportantPink);
}

.profile_block .tab_list_box .tab_list {
  display: flex;
}

.profile_block .tab_list_box.free_edition {
  border-bottom: none;
  border-top: solid 1px var(--colorLightGray);
}

.profile_block .tab_list_box .tab_list li {
  width: calc(100% / 2);
  height: var(--size-72);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  /* color: #ff79b6; */
  color: var(--colorImportantPink);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: var(--fwSemiBold);
}

.profile_block .tab_list_box .tab_list li.active {
  background-color: var(--colorImportantPink);
  color: white;
}

.tab_container {
    opacity: 0;
    transition: opacity 0.3s ease;
    padding-bottom: var(--size-32);
}

.tab_container.loaded {
    opacity: 1;
}

.profile_block .tab_list_box .tab_list li svg {
  margin-bottom: var(--size-4);
}

.profile_block .tab_list_box .tab_list li svg {
    fill: var(--colorImportantPink);
    transition: fill 0.3s ease;
}

.profile_block .tab_list_box .tab_list li.active svg {
    fill: white;
}

.profile_block .tab_list_box .tab_list li:nth-child(1) svg {
  width: 28px;
}

.profile_block .tab_list_box .tab_list li:nth-child(2) svg {
  width: 30px;
}

.profile_block .tab_list_box .tab_list li:nth-child(3) svg {
  width: 29px;
}

.profile_block .tab_list_box .tab_list li:nth-child(4) svg {
  width: 28px;
}

.page_navigation.therapist_btn {
  margin: var(--size-8) 0;
}

.page_navigation.schedule_btn {
  margin-top: var(--size-8);
}

.profile_block .therapist_img_gallery {
  max-width: 375px;
  margin: 0 auto;
}

.main_viewer {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--size-16);
}

.main_viewer img {
  width: 285px;
  object-fit: cover;
  margin: 0 auto;
  padding: 0;
  transition: all 0.3s;
}

.thumbnail {
  width: 260px;
  height: 63px;
  margin: 0 auto;
  overflow: hidden;
}

.slick-slider {
    visibility: hidden;
}

.slick-initialized {
    visibility: visible;
}

.thumbnail .slick-list {
  margin: 0 -5px;
}

.thumbnail .slick-slide {
  padding: 0 5px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.thumbnail .slick-current {
  opacity: 1;
}

.thumbnail img {
  width: 47px;
  height: 63px;
  object-fit: cover;
  cursor: pointer;
}

.main_viewer .slick-prev,
.main_viewer .slick-next {
    z-index: 1;
    width: 30px;
    height: 30px;
    background: none;
}

/* デフォルトの矢印を非表示 */
.main_viewer .slick-prev:before,
.main_viewer .slick-next:before {
    display: none !important;
}

.main_viewer .slick-prev {
    left: var(--size-8);
}

.main_viewer .slick-next {
    right: var(--size-8);
}

.main_viewer .slick-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main_viewer .slick-prev:hover,
.main_viewer .slick-next:hover {
    opacity: 0.8;
    background: none;
}

.profile_block .therapist_data_box {
  padding: var(--size-16) 0 var(--size-24);
  font-size: var(--size-14);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-8);
}

.profile_block .therapist_data_box .name {
  font-size: var(--size-16);
  font-weight: var(--fwSemiBold);
  display: flex;
  align-items: center;
}

.profile_block .therapist_data_box .name.rank_number01::before {
  content: "";
  width: var(--size-24);
  height: var(--size-18);
  background: url(../images/icon_ranking_01.svg) no-repeat center top / 100% auto;
  margin-right: var(--size-4);
}

.profile_block .therapist_data_box .name.rank_number02::before {
  content: "";
  width: var(--size-24);
  height: var(--size-18);
  background: url(../images/icon_ranking_02.svg) no-repeat center top / 100% auto;
  margin-right: var(--size-4);
}

.profile_block .therapist_data_box .schedule {
  width: 285px;
  height: var(--size-32);
  padding: 0 var(--size-8);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--size-4);
  background: var(--colorPink);
  font-size: var(--size-16);
}

.profile_block .therapist_data_box ul {
  width: 285px;
  display: flex;
  gap: 4px;
}

.profile_block .therapist_data_box ul li {
  width: fit-content;
  padding: 2px var(--size-8);
  font-size: var(--size-12);
  color: white;
  background: #ff79b6;
  border-radius: var(--size-4);
}

.profile_block .therapist_data_box ul li.recommend {
  background: var(--colorYellow);
}

.profile_block .therapist_data_box ul li.newface {
  background: var(--colorGreen);
}

.profile_block .therapist_data_box .schedule.other_day {
  background: var(--colorDateColor);
}

.therapist_detail_info {
  padding: 0 var(--size-16);
  border-top: solid 1px var(--colorLightGray);
}

.therapist_detail_info .detail_item {
  min-height: var(--size-104);
  padding: var(--size-16) 0;
  font-size: var(--size-14);
  border-bottom: solid 1px var(--colorLightGray);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.therapist_detail_info .detail_item.comment {
  padding-bottom: 0;
}

.therapist_detail_info .detail_item dt {
  font-weight: var(--fwSemiBold);
  color: var(--colorImportantPink);
}

.therapist_detail_info .detail_item dd {
  text-align: right;
}

.therapist_detail_info .detail_item dd a {
  color: #ff79b6;
}

.therapist_detail_info .detail_item dd a:hover {
  text-decoration: underline;
}

.therapist_detail_info .detail_item:last-child {
  border: none;
}

.therapist_detail_info .detail_item.comment dt {
  color: var(--colorImportantPink);
  border-left-color: var(--colorImportantPink);
}

.therapist_detail_info .detail_item.comment dd {
  text-align: left;
  margin-top: var(--size-16);
  line-height: 1.5;
}

.therapist_detail_info .detail_item.comment dd h4 {
  margin-bottom: var(--size-16);
}

/* プロフィール出勤情報 */
.booking_calendar {
  padding: 0 var(--size-16);
}

/* 期間セレクター */
.booking_date_selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: var(--size-16);
}

.date_range_title {
  font-size: var(--size-16);
  font-weight: var(--fwSemiBold);
  text-align: center;
  color: var(--colorBlack);
}

.prev_date_btn, .next_date_btn {
    background: white;
    border: 1px solid var(--colorImportantPink);
    width: var(--size-32);
    height: var(--size-32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.prev_date_btn:hover, .next_date_btn:hover {
    background: var(--colorImportantPink);
}

/* 左矢印 - 通常時 */
.arrow_icon.arrow_left {
  width: var(--size-12);
  height: var(--size-12);
  background-color: var(--colorImportantPink);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 10 10'%3E%3Cpath d='M7 2L3 5L7 8' stroke='%23ff008c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 10 10'%3E%3Cpath d='M7 2L3 5L7 8' stroke='%23ff008c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  display: inline-block;
}

/* 右矢印 - 通常時 */
.arrow_icon.arrow_right {
  width: var(--size-12);
  height: var(--size-12);
  background-color: var(--colorImportantPink);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 10 10'%3E%3Cpath d='M3 2L7 5L3 8' stroke='%23ff008c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 10 10'%3E%3Cpath d='M3 2L7 5L3 8' stroke='%23ff008c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  display: inline-block;
}

/* 左矢印 - ホバー時 */
.prev_date_btn:hover .arrow_left {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 10 10'%3E%3Cpath d='M7 2L3 5L7 8' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

/* 右矢印 - ホバー時 */
.next_date_btn:hover .arrow_right {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 10 10'%3E%3Cpath d='M3 2L7 5L3 8' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

/* セラピスト予約状況 */
#schedule_box .booking_calendar {
    transition: opacity 0.3s ease;
}

.booking_status_info {
  margin-bottom: 20px;
  font-size: var(--size-12);
  text-align: center;
}

.therapist_count, .available_count {
  color: var(--colorRed);
}

/* 予約時間テーブル */
.booking_table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  table-layout: fixed;
}

.booking_table th {
  height: var(--size-48);
  background: #c7c9d7;
  text-align: center;
  font-weight: var(--fwSemiBold);
  font-size: var(--size-10-5);
  vertical-align: middle;
  border: solid 1px var(--colorLightGray);
}

/* 追従ヘッダー用のスタイル */
.sticky-header {
  position: fixed;
  top: var(--size-56);
  z-index: 1000;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}

.sticky-header.show {
  opacity: 1;
  pointer-events: auto;
}

.sticky-header th {
  height: var(--size-48);
  background: #c7c9d7;
  text-align: center;
  font-weight: var(--fwNormal);
  font-size: var(--size-10-5);
  vertical-align: middle;
  border: solid 1px var(--colorLightGray);
  line-height: 1.2;
}

.day_name {
  font-size: var(--size-10-5);
}

.day_sat {
  color: #0084ff;
}

.day_sun {
  color: var(--colorRed);
}

.time_column {
  width: 60px;
  background-color: #ffcae2;
}

.time_slot {
  font-weight: var(--fwNormal);
  font-size: var(--size-10-5);
}

.booking_table td {
  height: var(--size-48);
  text-align: center;
  vertical-align: middle;
  border: solid 1px var(--colorLightGray);
}

/* ○（予約可能） */
.bookable {
  background-color: white;
  position: relative;
  color: var(--colorRed);
  font-weight: var(--fwSemiBold);
}

.bookable .booking_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--colorRed) !important;
  font-weight: var(--fwSemiBold)
}

/* ×（予約不可） */
.not_bookable {
  background: #f8f8f8;
  color: #9d9d9d;
  font-weight: var(--fwBold);
}

/* -（出勤時間外） */
.out_of_hours {
  background-color: white;
  color: #9d9d9d;
  font-weight: var(--fwSemiBold);
}

/* TEL（電話予約） */
.tel_only {
  background: #fffbe7;
  font-weight: var(--fwSemiBold);
  font-size: var(--size-12);
}

/* 休み */
.day_off {
  background: #f8f8f8;
  color: #9d9d9d;
  font-size: var(--size-12)
}

/* 口コミリスト */
.profile_reviews .review_list {
  padding: 0;
}

/* 各口コミアイテム */
.profile_reviews .section_title {
  background: #ff79b6;
}

.profile_reviews .review_list .review_item {
  border-bottom: 1px solid var(--colorLightGray);
  padding: var(--size-16) var(--size-16) 0;
}

.profile_reviews .review_list .review_item:last-child {
  border: none;
}

.profile_reviews .review_list .review_item .review_header {
  margin-bottom: var(--size-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profile_reviews .review_list .review_item .review_header .star_rating {
  margin-bottom: 0;
}

.profile_reviews .review_list .review_item .review_date {
  font-size: var(--size-10-5);
  color: var(--colorDateColor);
  display: block;
}

/* 口コミ内容 */
.profile_reviews .review_list .review_item .review_content {
    padding: 0;
}

.profile_reviews .review_list .review_item .review_text {
  font-size:var(--size-14);
  line-height: 1.28;
  padding: 0 0 var(--size-16);
}

.profile_reviews .review_list .review_item .reply {
  padding: var(--size-16);
  background: #f8f8f8;
  font-size: var(--size-14);
  margin-bottom: var(--size-16);
  border-radius: var(--size-8);
}

.profile_reviews .review_list .review_item .reply h3 {
  font-size: var(--size-14);
  margin-bottom: var(--size-8);
  color: #ff79b6;
  font-weight: var(--fwSemiBold);
}

.profile_reviews .review_list .review_item .reply p {
  line-height: 1.28;
}

/* プロフィール写メ日記 */
.diary_list .diary_item {
  padding: var(--size-16);
  border-bottom: solid 1px var(--colorLightGray);
}

.diary_list .diary_item:last-child {
  border: none;
}

.diary_list .diary_item .diary_link {
  height: 100%;
  display: flex;
  color: var(--colorBlack);
}

.diary_list .diary_item .diary_link .diary_img {
  width: var(--size-104);
  height: var(--size-104);
  overflow: hidden;
  margin-right: var(--size-16);
}

.diary_list .diary_item .diary_link .diary_img img {
  object-fit: cover;
  aspect-ratio: 1;
}

.diary_list .diary_item .diary_link .diary_content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.diary_list .diary_item .diary_link .diary_content .name {
  font-size: var(--size-12);
  margin-bottom: auto;
}

.diary_list .diary_item .diary_link .diary_content .title {
  font-weight: var(--fwSemiBold);
}

.diary_list .diary_item .diary_link .diary_content time {
  font-size: var(--size-10-5);
  color: var(--colorDateColor);
  text-align: right;
}

.review_item .review_user {
  height: 48px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 16px;
  background: #f8f8f8;
}

.review_item .user_avatar i {
  font-size: 32px;
  color: var(--colorYellow);
}

.review_item .user_info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review_item .user_info .user_name {
  font-size: 14px;
}

/* レビューアイテム内の星評価 */
.review_item .star_rating {
  margin-bottom: var(--size-16);
  font-size: var(--size-14);
  letter-spacing: 1px;
}

.review_item .star {
  color: var(--colorDateColor);
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
}

.review_item .star.full {
  color: var(--colorYellow);
}

.review_item .star.half {
  color: var(--colorLightGray);
  position: relative;
}

.review_item .star.half::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--colorYellow);
  clip-path: inset(0 50% 0 0);
  width: 100%;
  height: 100%;
}

.diary_box {
  padding: 0 var(--size-24);
}

.diary_box time {
  width: min(400px, 100%);
  font-size: var(--size-10-5);
  color: var(--colorDateColor);
  display: block;
  margin: 0 auto var(--size-8);
}

.diary_box .diary_title {
  font-size: var(--size-16);
  margin-top: var(--size-16);
  text-align: center;
  font-weight: var(--fwSemiBold);
}

.diary_box .photo_box {
  width: min(400px, 100%);
  margin: 0 auto;
}

.diary_box .text_box {
  font-size: var(--size-14);
  padding: var(--size-16) 0;
}

.diary_caution {
  padding-top: var(--size-16);
  font-size: var(--size-12);
  text-align: right;
}

.diary_caution a {
  color: var(--colorBlack);
  text-decoration: underline;
}

.diary_modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.diary_modal.show {
  opacity: 1;
}

.diary_modal_content {
  width: min(768px, 100%);
  background: white;
  margin: auto;
  padding: var(--size-24) var(--size-16);
  position: relative;
  box-shadow: 0 3px 16px rgba(0,0,0,0.25);
  font-size: var(--size-14);
  transform: scale(0.8) translateY(-20px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.diary_modal.show .diary_modal_content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.diary_modal_content h3 {
  font-size: var(--size-16);
  margin-bottom: var(--size-16);
}

.diary_modal_content .diary_modal_text {
  line-height: 1.8;
  margin-bottom: var(--size-16);
}

.diary_modal_content .diary_modal_email_box {
  text-align: center;
}

.diary_modal_content .diary_modal_email_box span {
  display: block;
  font-size: var(--size-16);
  margin-bottom: var(--size-8);
}

.diary_modal_content a {
  color: var(--colorBlack);
}

.diary_modal_close {
  color: var(--colorBlack);
  font-size: var(--size-24);
  position: absolute;
  right: var(--size-8);
  top: var(--size-8);
  cursor: pointer;
  line-height: 1;
}

.diary_modal_form .report_textarea {
  width: 100%;
  height: var(--size-120);
  border: solid 1px var(--colorLightGray);
  border-radius: var(--size-4);
  margin-bottom: var(--size-16);
  padding: var(--size-8);
}

.diary_modal_form .report_textarea::placeholder {
  color: var(--colorLightGray);
}

.submit_btn.report_submit {
  display: block;
  margin: 0 auto;
}

.modal_form_group {
  position: relative;
}

.page_navigation {
  padding: var(--size-24) 0;
  font-size: var(--size-12);
  text-align: center;
}

.page_navigation a {
  width: 164px;
  padding: var(--size-4) var(--size-16);
  color: var(--colorImportantPink);;
  border: solid 1px var(--colorImportantPink);
  border-radius: var(--size-16);
  display: inline-block;
  font-weight: var(--fwSemiBold);
}

/* 日付ボタン - 無効状態 */
.prev_date_btn.disabled,
.next_date_btn.disabled,
.prev_date_btn:disabled,
.next_date_btn:disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

/* .prev_date_btn.disabled:hover,
.next_date_btn.disabled:hover,
.prev_date_btn:disabled:hover,
.next_date_btn:disabled:hover {
  background: var(--colorImportantPink);
} */

/* 口コミ投稿ボタン */
.review_btn_wrapper {
  padding: var(--size-24) var(--size-16) var(--size-8);
}

.review_btn_wrapper a {
  height: var(--size-56);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: var(--size-16);
  color: var(--colorImportantPink);
  border-radius: var(--size-4);
  border: solid 1px var(--colorImportantPink);
}

.review_btn_wrapper a:hover {
  opacity: .7;
}

/* 口コミ投稿ポップアップ */
.review_popup_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10002;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review_popup_overlay.active {
  display: block;
  opacity: 1;
}

.review_popup {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  width: min(768px, 100%);
  height: 100vh;
  height: 100dvh;
  background: white;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@supports not (height: 100dvh) {
  .review_popup {
    height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }
}

.review_popup_overlay.active .review_popup {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.review_post_header {
  height: var(--size-64);
  position: relative;
  padding: var(--size-16);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: var(--fwSemiBold);
  background: #ff79b6;
}

.review_popup .close_btn {
  position: absolute;
  left: var(--size-16);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: var(--size-24);
  cursor: pointer;
}

.review_popup .review_title {
  font-size: var(--size-16);
  color: white;
}

.review_popup .review_content {
  flex: 1;
  overflow-y: auto;
  background: white;
  padding-top: var(--size-32);
}

.review_form_block {
  padding: 0 var(--size-16) var(--size-32);
}

.review_form_notice {
  margin-bottom: var(--size-32);
  font-size: var(--size-12);
  text-align: center;
}

.review_form_notice p {
  display: inline-block;
  text-align: left;
  background: #f8f8f8;
  padding: var(--size-16);
  border-radius: var(--size-4);
}

.review_popup .star_rating_display {
  margin-top: var(--size-8);
  font-size: var(--size-16);
  color: var(--colorLightGray);
}

.review_popup .star {
  cursor: pointer;
}

.review_popup .star.active {
  color: var(--colorYellow);
}

.review_footer {
  background: white;
  padding: var(--size-8) var(--size-16) 0;
  display: flex;
  align-items: center;
  gap: var(--size-32);
}

.review_popup .submit_btn {
  width: min(440px, 100%);
  height: var(--size-64);
  margin: 0 auto;
  background: #ff79b6;
  color: white;
  border: none;
  padding: 0 var(--size-16);
  border-radius: var(--size-4);
  font-size: var(--size-18);
  cursor: pointer;
  text-align: center;
  font-weight: var(--fwSemiBold);
}

.review_popup .submit_btn.review_submit {
  background: #ff79b6;
}

/* データなしメッセージ（.no_data）は assets/css/style.css に移動済み */


/* 20250427店舗詳細修正用CSS */
.shop_detail.free_edition .therapist_summary_box {
  display: flex;
  padding: var(--size-24) var(--size-16);
}

.shop_detail.free_edition .therapist_summary_box .therapist_img {
  width: var(--size-72);
  height: var(--size-72);
  overflow: hidden;
  margin-right: var(--size-16);
  border-radius: 50%;
}

.shop_detail.free_edition .therapist_summary_box .therapist_img img {
  object-fit: cover;
}

.shop_detail.free_edition .therapist_summary_box .therapist_data {
  height: var(--size-72);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  padding: var(--size-4) 0;
  font-weight: var(--fwNormal);
}

.shop_detail.free_edition .therapist_summary_box .therapist_data .name {
  font-size: var(--size-16);
  font-weight: var(--fwSemiBold);
  display: flex;
  align-items: center;
}

.shop_detail.free_edition .therapist_summary_box .therapist_data .name.rank_number01::before {
  content: "";
  width: var(--size-24);
  height: var(--size-18);
  background: url(../images/icon_ranking_01.svg) no-repeat center top / 100% auto;
  margin-right: var(--size-4);
}

.shop_detail.free_edition .therapist_summary_box .therapist_data .name.rank_number02::before {
  content: "";
  width: var(--size-24);
  height: var(--size-18);
  background: url(../images/icon_ranking_02.svg) no-repeat center top / 100% auto;
  margin-right: var(--size-4);
}

.shop_detail.free_edition .therapist_summary_box .therapist_data .size {
  font-size: var(--size-12);
}

.shop_detail.free_edition .therapist_summary_box .therapist_data .schedule {
  padding: 1px var(--size-4);
  background: var(--colorPink);
  color: white;
  text-align: center;
  font-size: var(--size-12);
  border-radius: var(--size-4);
  margin-top: auto;
}

.shop_detail.free_edition .therapist_summary_box .therapist_data .schedule.other_day {
  background: var(--colorDateColor);
}

.shop_detail.free_edition .tab_list_box {
  height: var(--size-72);
}

.shop_detail.free_edition .tab_list_box .tab_list {
  display: flex;
}

.shop_detail.free_edition .tab_list_box .tab_list li {
  width: calc(100% / 2);
  height: var(--size-72);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: var(--colorImportantPink);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: var(--fwSemiBold);
}

.shop_detail.free_edition .tab_list_box .tab_list li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--colorImportantPink);
  transition: all 0.3s ease;
}

.shop_detail.free_edition .tab_list_box .tab_list li:hover,
.shop_detail.free_edition .tab_list_box .tab_list li a:hover {
  color: white;
  background: var(--colorImportantPink);
}

.shop_detail.free_edition .tab_list_box .tab_list li.active,
.shop_detail.free_edition .tab_list_box .tab_list li:hover
 {
  background-color: var(--colorImportantPink);
  color: white;
}

.shop_detail.free_edition .tab_list_box .tab_list li svg {
  margin-bottom: var(--size-4);
}

.shop_detail.free_edition .tab_list_box .tab_list li svg {
    fill: var(--colorImportantPink);
    transition: fill 0.3s ease;
}

.shop_detail.free_edition .tab_list_box .tab_list li.active svg,
.shop_detail.free_edition .tab_list_box .tab_list li:hover svg,
.shop_detail.free_edition .tab_list_box .tab_list li a:hover svg {
    fill: white;
}

.shop_detail.free_edition .tab_list_box .tab_list li:nth-child(1) svg {
  width: 28px;
}

.shop_detail.free_edition .tab_list_box .tab_list li:nth-child(2) svg {
  width: 30px;
}

.shop_detail.free_edition .tab_list_box .tab_list li:nth-child(3) svg {
  width: 29px;
}

.shop_detail.free_edition .tab_list_box .tab_list li:nth-child(4) svg {
  width: 28px;
}