@charset "utf-8";
/* CSS Document */

:root {
  /* 固定?color */
  --colorBlack: #0c0c0c;
  --colorWhitePink: #ffeaf6;
  --colorGray: #c0c2d2;
  --colorLightGray: #dadbe2;
  --colorOtherGray: #d6d7e1;
  --colorDateColor: #a5a8b1;
  --colorRed: #eb0e0e;
  --colorImportantPink: #ff008c;
  --colorPink: #ff4a74;
  --colorLightPink: #fa5cb3;
  --colorOrange: #ff9459;
  --colorGreen: #2fc91d;
  --colorBlue: #3199fa;
  --colorYellow: #ffb830;
  --colorDarkBlue01: #02051d;
  --colorDarkBlue02: #070c32;
  --colorDarkRed: #aa1768;

  /* font-weight */
  --fwNormal: 400;
  --fwSemiBold: 600;
  /* --fwBold: 900; */

  /* size */
  --size-4: 4px;
  --size-8: 8px;
  --size-10-5: 10.5px;
  --size-12: 12px;
  --size-14: 14px;
  --size-16: 16px;
  --size-18: 18px;
  --size-24: 24px;
  --size-32: 32px;
  --size-40: 40px;
  --size-48: 48px;
  --size-56: 56px;
  --size-64: 64px;
  --size-72: 72px;
  --size-80: 80px;
  --size-88: 88px;
  --size-96: 96px;
  --size-104: 104px;
  --size-112: 112px;
  --size-120: 120px;
  --size-128: 128px;

  --header-height: 56px
}

.noto_serif {
  font-family: "YakuHanJP", "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.anton {
  font-family: "Anton", sans-serif;
  font-style: normal;
}

.poppins {
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

* {
  box-sizing: border-box;
  flex-wrap: wrap;
}

/*リンク*/
a {
  -webkit-tap-highlight-color: transparent;
  transition: all 0.3s ease;
}

a:link {
	text-decoration: none;
	color: white;
	text-decoration: none;
}

a:visited {
	text-decoration: none;
	color: white;
}

a:hover {
	opacity: 0.75;
}

a:active {
	text-decoration: none;
	color: white;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

/* html {
  scroll-behavior: smooth;
} */

span.hadj {
  position: relative;
  top: -1px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border: 1px solid var(--colorDateColor);
}

body {
  padding: 0;
	margin: 0;
  word-wrap: break-word;
  word-break: break-all;
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--fwNormal);
  font-style: normal;
  line-height: 1.5;
  color: var(--colorBlack);
  letter-spacing: .02em;
}

header {
  background: var(--shopColor01);
  position: relative;
  z-index: 1000;
}

header.fixed {
  width: min(768px, 100%);
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  animation: headerSlideDown 0.3s forwards;
  z-index: 1000;
  background: var(--shopBgColor);
}

@keyframes headerSlideDown {
  from {
    transform: translateX(-50%) translateY(-100%);
  }
  to {
    transform: translateX(-50%) translateY(0);
  }
}

.header_inner_block {
  width: min(1280px, 100%);
  height: var(--size-56);
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

header.fixed .header_inner_block {
  padding: 0 var(--size-16);
}

.header_inner_block h1 {
  color: white;
  font-size: var(--size-18);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: var(--fwSemiBold);
  order: 2;
  line-height: 1;
  padding: 0 var(--size-8);
}

.header_inner_block .logo {
  width: 172px;
  height: var(--size-40);
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: var(--size-24);
  order: 1;
  margin-right: 82px;
}

.header_inner_block .logo svg {
  width: 90px;
  fill: var(--shopColor01);
}

header.fixed .logo {
  display: none;
}

.header_nav {
  margin-left: auto;
  order: 3;
}

.header_nav ul {
  display: flex;
  flex-wrap: nowrap;
}

.header_nav ul li {
  margin-right: var(--size-16);
}

.header_nav ul li:last-child {
  margin-right: 0;
}

.header_nav ul li img, .header_nav ul li svg {
  width: 28px;
}

.header_nav ul li svg {
  fill: white;
}

.section_title {
  height: var(--size-72);
  background: var(--shopColor01);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--size-18);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: var(--fwSemiBold);
}

.section_title.acop_btn {
  background: white;
  color: var(--shopColor01);
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border-top: solid 1px var(--colorLightGray);
}

.acop_btn.acop_btn--active {
  background: var(--shopColor01);
  color: white;
  border: none;
}

/* パンくずリスト */
.bread_crumb_list.shop_detail_page {
  border-bottom: solid 1px var(--colorGray);
}

.bread_crumb_list ol {
  min-height: var(--size-24);
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  font-size: var(--size-10-5);
  padding: 2px 0;
}

.bread_crumb_list ol li {
  display: flex;
  align-items: center;
}

.bread_crumb_list ol li a {
  color: var(--colorBlack);
}

.bread_crumb_list ol li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: var(--size-12);
  height: var(--size-12);
  margin: 0 var(--size-4);
  background-color: #0c0c0c;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M3 2L7 5L3 8' stroke='%23000' stroke-width='1' 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' viewBox='0 0 10 10'%3E%3Cpath d='M3 2L7 5L3 8' stroke='%23000' stroke-width='1' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center / contain no-repeat;
  flex-shrink: 0;
}

.pager {
  height: var(--size-56);
  color: var(--colorBlack);
  font-size: var(--size-12);
  background: white;
}

.pager ul {
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.pager li {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% / 3);
  text-align: center;
}

.pager li:nth-child(2) {
  border-left: solid 1px var(--colorLightGray);
  border-right: solid 1px var(--colorLightGray);
}

.pager a, .pager span {
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.pager a {
  color: var(--colorBlack);
}

.pager a.disabled, .pager a[aria-disabled="true"] {
    color: var(--colorOtherGray);
    cursor: default;
    pointer-events: none;
}

.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(--shopColor01);
  border: solid 1px var(--shopColor01);
  border-radius: var(--size-16);
  display: inline-block;
  font-weight: var(--fwSemiBold);
}

.contents_wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.main_contents {
  width: min(768px, 100%);
  margin: 0 auto 0 0;
  order: 2;
}

/* サイドコンテナ― */
.left_side_contents {
  width: 232px;
  order: 1;
  margin: var(--size-24) var(--size-24) 0 0;
  align-self: flex-start;
}

.left_side_contents .shop_data_info {
  padding: var(--size-8);
  border: solid 1px var(--colorLightGray);
  margin-bottom: var(--size-16);
  display: flex;
  gap: var(--size-8);
}


.left_side_contents .shop_data_info .shop_visual {
  aspect-ratio: 1;
  overflow: hidden;
}

.left_side_contents .banner_list li {
  margin-bottom: var(--size-16);
}

.left_side_contents .shop_data_info .data_info_box {
  width: calc(100% - var(--size-72));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 1px 0;
}

.left_side_contents .shop_data_info .data_info_box .tel_number {
  font-weight: var(--fwSemiBold);
  display: flex;
  align-items: center;
  gap: var(--size-4);
}

.left_side_contents .shop_data_info .data_info_box .tel_number img {
  width: var(--size-14);
  transform: scaleX(-1);
}

.left_side_contents .shop_data_info .data_info_box .sp_view_label {
  width: 100%;
  height: var(--size-24);
  background: var(--shopColor01);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-4);
  font-size: var(--size-10-5);
  border-radius: 999px;
  font-weight: var(--fwSemiBold);
}

.left_side_contents .shop_data_info .data_info_box .sp_view_label::after {
  content: "▶▶▶";
  font-weight: normal;
}

.left_side_contents .shop_data_info .shop_qr {
  width: var(--size-64);
  aspect-ratio: 1;
  overflow: hidden;
  border: solid 1px var(--colorLightGray);
}

.left_side_contents .banner_list li a {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}


.left_side_contents .banner_list li a span {
  width: 100%;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 9.2%;
  color: #fd0200;
  font-weight: var(--fwSemiBold);
  font-size: 18px;
  overflow: hidden;
}

.left_side_contents .banner_list li:last-child {
  margin-bottom: 0;
}

.left_side_contents .sidebar_coupon_img {
  position: relative;
  overflow: hidden;
}

.left_side_contents .sidebar_coupon_img img {
  width: 100%;
  height: auto;
  display: block;
}

.left_side_contents .sidebar_coupon_img figcaption {
  position: absolute;
  left: 0;
  bottom: 9.2%;
  width: 100%;
  height: 47.5%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--size-20);
  font-weight: var(--fwSemiBold);
  color: #fe0005;
  text-align: center;
  padding: 0 var(--size-8);
  overflow: hidden;
  z-index: 1;
}

.global_nav_block {
  width: 232px;
  border: solid 1px var(--shopColor01);
  overflow: hidden;
  position: sticky;
  top: var(--size-80);
  transition: transform 0.3s ease, top 0.3s ease;
  order: 3;
  align-self: flex-start;
  padding-bottom: var(--size-16);
  border-radius: var(--size-8);
  z-index: 1001;
}

.global_nav_block ul {
  padding: var(--size-16) var(--size-16) 0;
  font-optical-sizing: auto;
  font-style: normal;
  /* font-weight: 700; */
}

.global_nav_block ul li a {
  width: 100%;
  height: var(--size-32);
  margin: 0 auto var(--size-8);
  border-radius: var(--size-4);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 2;
  /* font-weight: var(--fwSemiBold); */
  background: var(--shopColor01);
  font-size: var(--size-12);
}

.global_nav_block .shop_nav_list li.nav-disabled a {
  background: var(--colorLightGray);
  pointer-events: none;
  opacity: 0.5;
}

.pc_nav_toggle_wrapper {
  padding: var(--size-16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  background: var(--shopColor01);
  font-size: var(--size-12);
  font-optical-sizing: auto;
  font-style: normal;
}

.pc_nav_toggle_wrapper h2 {
  font-weight: var(--fwSemiBold);
}

/* トグルボタンのスタイル */
.pc-toggle-button {
  position: relative;
  display: block;
  width: 72px;
  height: 16px;
  border-radius: 8px;
  background: var(--shopColor02);
  cursor: pointer;
  font-size: 0;
  transition: background 0.3s ease;
}

.pc-toggle-button.is-on {
  background: var(--colorImportantPink);
}

.pc-toggle-button::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.pc-toggle-button.is-on::before {
  transform: translateX(52px);
}

.global_nav_block .shop_nav_list[data-nav="shop"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--size-8);
}

.global_nav_block .shop_nav_list.hidden {
  display: none !important;
}

.global_nav_block .route_nav_list.hidden {
  display: none !important;
}

/* 初期状態でroute_nav_listを非表示に設定 */
.global_nav_block .route_nav_list[data-nav="route"] {
  display: none !important;
}

/* 確実にroute_nav_listが表示されるように */
.global_nav_block .route_nav_list:not(.hidden) {
  display: block !important;
}

.page-top {
  margin: 0 auto;
  display: block;
  opacity: 1;
  visibility: visible;
}

.page-top-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 66px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  margin-top: var(--size-16);
}

.page-top-arrow {
  position: relative;
  display: inline-block;
  height: var(--size-14);
}

.page-top-arrow::before,
.page-top-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: var(--size-16);
  border-radius: var(--size-96);
  background: var(--colorGray);
  transform-origin: 50% 1px;
}

.page-top-arrow::before {
  transform: rotate(45deg);
}

.page-top-arrow::after {
  transform: rotate(-45deg);
}

.page-top.show {
  opacity: 1;
  visibility: visible;
}

footer {
  width: min(768px, 100%);
  margin: 0 auto var(--size-128);
  padding: var(--size-40) var(--size-16);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--colorBlack);
}

footer.recruit_footer {
  margin-bottom: var(--size-88);
}

.footer_nav {
  width: 100%;
  margin-bottom: var(--size-16);
}

.footer_nav ul {
  display: flex;
  justify-content: center;
}

.footer_nav ul li {
  margin: 0 auto var(--size-8);
}

.footer_nav ul li a {
  font-size: var(--size-10-5);
  color: var(--colorBlack);
}

footer .copyright {
  width: 100%;
  text-align: center;
  font-size: var(--size-10-5);
}

.detail_page_nav {
  width: 100%;
  font-size: var(--size-12);
}

.detail_page_nav ul {
  width: 316px;
  margin: 0 auto var(--size-4);
  display: flex;
}

.detail_page_nav ul li {
  margin-bottom: var(--size-12);
  padding-left: var(--size-4);
}

.detail_page_nav ul li a {
  color: var(--colorBlack);
}

.detail_page_nav ul li:nth-child(4n+1),
.detail_page_nav ul li:nth-child(4n+2) {
  width: var(--size-72);
}

.detail_page_nav ul li:nth-child(4n+3) {
  width: 100px;
}

.detail_page_nav ul li:nth-child(4n) {
  width: var(--size-72);
}

.fixed_contact {
  width: min(375px, 100%);
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--size-16);
  /* padding-bottom: var(--size-24); */
  z-index: 100;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 1;
}

.fixed_contact.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.fixed_contact.is-hidden {
  transform: translateX(-50%) translateY(100%);
  opacity: 0;
}

.fixed_contact .contact_list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  font-size: var(--size-12);
}

.fixed_contact .contact_list li a {
  width: var(--size-104);
  height: var(--size-104);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 50%;
  background-image: linear-gradient(0deg, var(--gradientColor01) 0%, var(--gradientColor02) 20%, var(--gradientColor03) 90%);
  padding-bottom: var(--size-8);
}

.fixed_contact .contact_list li:first-child a {
  letter-spacing: 0.1em;
}

.fixed_contact .contact_list li a svg, .fixed_contact .contact_list li a img {
  margin-bottom: var(--size-8);
  width: auto;
  height: 41px;
  fill: white;
}

/* .fixed_contact .contact_list li a svg, .fixed_contact .contact_list li:first-child a img {
  height: 39px;
  margin-bottom: 10px;
} */

.fixed_contact .contact_list li a span {
  width: 100%;
  text-align: center;
  font-weight: var(--fwSemiBold);
}

/* セラピストパネル */
.therapist_panel {
  width: min(768px, 100%);
  background: white;
  color: var(--colorBlack) !important;
  border-bottom: solid 1px var(--colorLightGray);
}

.therapist_panel .panel_inner_box {
  display: flex;
  flex-wrap: nowrap;
  padding: var(--size-16);
  color: var(--colorBlack);
}

.therapist_panel:last-child {
  border: none;
}

.therapist_panel.is-last-visible {
  border-bottom: none;
}

.therapist_panel .therapist_img {
  width: 152px;
  overflow: hidden;
  margin-right: var(--size-16);
}

.therapist_panel .therapist_img img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.therapist_panel .data_box {
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.therapist_panel .data_box .therapist_name {
  font-size: var(--size-18);
  font-weight: var(--fwSemiBold);
  display: flex;
  align-items: center;
}

.therapist_panel .data_box .therapist_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);
}

.therapist_panel .data_box .therapist_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);
}

.therapist_panel .data_box .comment, .therapist_panel .data_box .therapist_data {
  font-size: var(--size-12);
  display: block;
}

.therapist_panel .data_box .icon_list_top {
  display: flex;
  gap: var(--size-4);
  margin-bottom: var(--size-8);
}

.therapist_panel .data_box .icon_list_top li {
  padding: 2px var(--size-4);
  background: var(--colorDateColor);
  color: white;
  font-size: var(--size-12);
  border-radius: var(--size-4);
}

.therapist_panel .data_box .event_text {
  width: fit-content;
  padding: 2px var(--size-4);
  font-size: var(--size-12);
  color: white;
  background: var(--colorOrange);
  margin-bottom: var(--size-8);
  border-radius: var(--size-4);
}

.therapist_panel .data_box .icon_list_bottom {
  display: flex;
  gap: var(--size-4);
  margin-bottom: var(--size-8);
}

.therapist_panel .data_box .icon_list_bottom li {
  width: fit-content;
  padding: 2px var(--size-8);
  font-size: var(--size-12);
  color: white;
  border-radius: var(--size-4);
  background: #ff74b3;
}

.therapist_panel .data_box .icon_list_bottom li.recommend {
  background: var(--colorYellow);
}

.therapist_panel .data_box .icon_list_bottom li.newface {
  background: var(--colorGreen);
}

.therapist_panel .data_box .debut {
  font-size: var(--size-12);
  color: var(--colorRed);
  display: block;
  border-radius: var(--size-4);
  margin-bottom: var(--size-8);
}

.therapist_panel .data_box .schedule {
  padding: var(--size-4) 0;
  font-size: var(--size-16);
  color: white;
  background: var(--colorPink);
  display: block;
  text-align: center;
  margin-top: auto;
  border-radius: var(--size-4);
}

.therapist_panel .data_box .schedule.other_day {
  background: var(--colorDateColor);
}

.therapist_panel .data_box .icon_list li:last-child {
  margin-right: 0;
}

.therapist_panel .reserve_btn {
  padding: 0 var(--size-16) var(--size-16);
}

.therapist_panel .reserve_btn a {
  height: var(--size-56);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: var(--size-16);
  color: var(--shopColor01);
  font-weight: var(--fwSemiBold);
  border-radius: var(--size-4);
  border: solid 1px var(--shopColor01);
}

.therapist_panel .reserve_btn a:hover {
  opacity: .7;
}

.therapist_panel .reserve_btn a svg {
  width: var(--size-24);
  margin-right: var(--size-8);
  fill: var(--shopColor01);
}

/* 有料版トップページ */
.mv_block {
  position: relative;
}

.mv_block .qr_code_box {
  position: absolute;
  right: var(--size-8);
  bottom: var(--size-8);
  background: rgba(255, 255, 255, .7);
  z-index: 10;
  padding: var(--size-8);
}

.mv_block .qr_code_box .qr_code_note {
  display: block;
  font-size: var(--size-10-5);
  text-align: center;
  font-weight: var(--fwSemiBold);
  margin-bottom: var(--size-4);
}

.mv_block .qr_code_box .qr_code {
  width: var(--size-104);
  display: flex;
  justify-content: center;
  align-items: center;
}

.mv_block .mv {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  overflow: hidden;
}

.mv_block .mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-position: inherit;
  background-repeat: inherit;
  background-size: inherit;
  filter: blur(8px);
  z-index: -1;
}

.mv_block .mv img {
  width: min(480px, 100%);
  margin: 0 auto;
  object-fit: cover;
}

.quick_access_nav .quick_nav_list {
  width: 100%;
  height: var(--size-72);
  display: flex;
  background: var(--shopColor03);
  justify-content: space-between;
  margin-bottom: 2px;
}

.quick_access_nav .quick_nav_list li {
  width: calc(100% / 3 - 1px);
  background: var(--shopColor01);
  position: relative;
}

.quick_access_nav .quick_nav_list li::after {
  content: "";
  width: 100%;
  /* height: var(--size-4); */
  background: var(--shopColor03);
  position: absolute;
  left: 0;
  bottom: 0;
}

.quick_access_nav .quick_nav_list li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quick_access_nav .quick_nav_list li a .icon_photo {
  width: 29px;
  margin: 13px 0 var(--size-4);
}
.quick_access_nav .quick_nav_list li a .icon_map {
  width: 29px;
  margin: 13px 0 var(--size-4);
}
.quick_access_nav .quick_nav_list li a .icon_review {
  width: 28px;
  margin: var(--size-12) 0 var(--size-4);
}

.quick_access_nav .quick_nav_list li a span,
.quick_access_nav .quick_nav_list li a time {
  font-size: 10.5px;
  font-weight: var(--fwSemiBold);
}

.shop_data_content {
    display: none;
  }

.shop_data_content .shop_box {
  display: flex;
  background: white;
  color: var(--colorBlack);
  border-bottom: solid 1px var(--colorLightGray);
  padding: var(--size-16);
}

.shop_data_content .shop_box .shop_img {
  aspect-ratio: 1;
  overflow: hidden;
  margin-right: var(--size-16);
}

.shop_data_content .shop_box .shop_img img {
  width: var(--size-88);
  height: var(--size-88);
  aspect-ratio: 1;
  object-fit: cover;
  cursor: zoom-in;
}

/* 画像ポップアップ */
.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-color: rgba(0, 0, 0, 0.8);
  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: 16px;
}

.image-popup__image {
  max-width: 480px;
  width: 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;
}

.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::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-style: solid;
  border-width: 0 0 var(--size-14) var(--size-14);
  border-color: transparent transparent var(--colorLightGray) transparent;
  pointer-events: none;
}


.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_inner_box {
  padding-bottom: var(--size-16);
  border-bottom: solid 1px var(--colorLightGray);
}

.recommend_block .section_title {
  background: var(--shopColor01);
}

.recommend_block .recommend_list {
  display: flex;
  flex-wrap: wrap;
}

.recommend_block .recommend_list li {
  width: 152px;
  aspect-ratio: 3 / 4;
  position: relative;
  margin: 0 2px 1px 0;
  overflow: hidden;
}

.recommend_block .recommend_list li:nth-child(5n) {
  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-12);
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, .8);
  color: var(--colorBlack);
  overflow: hidden;
  padding: var(--size-8);
}

.recommend_block .recommend_list li a.more_therapist {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--colorGray);
  font-size: var(--size-12);
}

.recommend_block .recommend_list li a.more_therapist .arrow {
  width: var(--size-40);
  height: var(--size-40);
  border-radius: 50%;
  border: solid 2px var(--colorGray);
  margin-bottom: var(--size-8);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.recommend_block .recommend_list li a.more_therapist .arrow::after {
  content: '';
  width: var(--size-12);
  height: var(--size-12);
  border-right: 2px solid var(--colorGray);
  border-bottom: 2px solid var(--colorGray);
  transform: rotate(-45deg);
  position: absolute;
  margin-left: -4px;
}

.accordion_content {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease-in-out;
}

.accordion_content.is-open {
  height: auto;
}

.shop_info_block .section_title.acop_btn {
  border-top: none !important;
}

.shop_info_block .info_inner_box,
.room_info_block .info_inner_box {
  padding: 0 var(--size-16);
}

.shop_info_block .info_inner_box dl,
.room_info_block .info_inner_box dl {
  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;
}

.shop_info_block .info_inner_box dl:last-child,
.room_info_block .info_inner_box dl:last-child {
  border: none;
}

.shop_info_block .info_inner_box dl dt,
.room_info_block .info_inner_box dl dt {
  /* color: var(--shopColor01); */
  font-weight: var(--fwSemiBold);
}

.shop_info_block .info_inner_box dl dd,
.room_info_block .info_inner_box dl dd {
  text-align: right;
}

.shop_info_block .info_inner_box dl dd span,
.room_info_block .info_inner_box dl dd span {
  display: block;
}

.room_info_block .info_inner_box dl dd img.room_img {
  width: min(480px, 100%);
  margin: var(--size-16) 0 0 auto;
}

.shop_info_block .info_inner_box dl dd .sns_icon_list {
  display: flex;
  justify-content: flex-end;
  gap: var(--size-8);
}

.shop_info_block .info_inner_box dl dd .sns_icon_list li img {
  width: var(--size-32);
}

.shop_info_block .info_inner_box dl dd .credit_card_list li {
  font-size: var(--size-14);
  padding: 0 var(--size-8);
  margin: var(--size-4) 0 0 var(--size-4);
  border-radius: var(--size-16);
  display: inline-block;
  color: white;
  background: var(--colorDateColor);
}

.shop_info_block .info_inner_box dl dd .credit_card_list li:first-child {
  margin-left: 0;
}

.shop_info_block .info_inner_box dl dd a,
.room_info_block .info_inner_box dl dd a {
  color: var(--shopColor01);
  font-weight: var(--fwSemiBold);
}

.shop_info_block .info_inner_box dl dd a i,
.room_info_block .info_inner_box dl dd a i {
  margin-right: var(--size-4);
}

.shop_info_block .info_inner_box dl dd a:hover,
.room_info_block .info_inner_box dl dd a:hover {
  text-decoration: underline;
  opacity: 1;
}

.system_block .system_inner_box {
  padding: var(--size-16);
}

.system_block .system_inner_box table {
  width: 100%;
  margin-bottom: var(--size-24);
  color: var(--blackColor);
  border-collapse: collapse;
  font-size:var(--size-14);
  text-align: center;
}

.system_block .system_inner_box table caption {
  vertical-align: middle;
  padding-bottom: var(--size-16);
  font-size: var(--size-14);
  font-weight: var(--fwSemiBold);
}

.system_block .system_inner_box table caption .course {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.system_block .system_inner_box table caption .course .course_name {
  display: flex;
  flex-shrink: 0;
  color: var(--shopColor01);
  font-weight: var(--fwSemiBold);
  margin-bottom: 0;
}

.system_block .system_inner_box table caption .course .course_note {
  font-weight: normal;
  margin-right: auto;
  line-height: 1.28;
}

.system_block .system_inner_box table:last-child {
  margin-bottom: 0;
}

/* 料金システム内の注意事項（テーブル構成・本文セルは左寄せ） */
.system_block .system_inner_box table td.notice_cell {
  font-size: var(--size-14);
  text-align: left;
}

.system_block .system_inner_box table tr th {
  vertical-align: middle;
  padding: var(--size-16);
}

.system_block .system_inner_box table tr td {
  width: 50%;
  height: var(--size-56);
  vertical-align: middle;
  border: solid 1px var(--colorLightGray);
  padding: var(--size-16);
}

.coupon_block .coupon_inner_box .coupon_box {
  display: flex;
  border-bottom: solid 1px var(--colorLightGray);
  padding: var(--size-16);
  color: var(--colorBlack);
}

.coupon_block .coupon_inner_box .coupon_box:last-child {
  border-bottom: none;
}

.coupon_block .coupon_inner_box .coupon_box .coupon_img {
  aspect-ratio: 1;
  overflow: hidden;
  margin-right: var(--size-16);
}

.coupon_block .coupon_inner_box .coupon_box .coupon_img img {
  width: var(--size-88);
  height: var(--size-88);
  object-fit: cover;
}

.coupon_block .coupon_inner_box .coupon_box .coupon_title {
  width: calc(100% - var(--size-104));
  font-size:var(--size-14);
  line-height: 1.2;
  font-weight: var(--fwSemiBold);
}

.accordion_close_btn {
  width: 100%;
  padding: var(--size-16);
  background: #dbdae2;
  color: white;
  border: none;
  font-size: var(--size-14);
  text-align: center;
  cursor: pointer;
  font-weight: var(--fwSemiBold);
  line-height: 1;
}

.external_site_block .external_site_inner_box {
  padding: 0 var(--size-16);
  background: white;
}

.external_site_block .external_site_inner_box dl {
  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;
}

.external_site_block .external_site_inner_box dl:last-child {
  border: none;
}

.external_site_block .external_site_inner_box dl dt {
  height: var(--size-16);
  padding-left: var(--size-8);
  border-left: solid 2px var(--colorBlack);
  font-weight: var(--fwNormal);
  line-height: 1;
}

.external_site_block .external_site_inner_box dl dd {
  text-align: right;
}

.external_site_block .external_site_inner_box dl dt a,
.external_site_block .external_site_inner_box dl dd a {
  color: var(--blackColor);
}

.ranking_panel {
  height: calc(104px + 1px);
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  background: white;
  border-bottom: solid 1px var(--colorLightGray);
  gap: var(--size-16);
  padding-left: var(--size-16);
  position: relative;
}

.ranking_panel:last-child {
  height: var(--size-104);
  border-bottom: none;
}

.ranking_panel .rank_number_box {
  flex: 1;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  height: var(--size-104);
  position: relative;
  overflow: hidden;
  z-index: 2;
  will-change: transform;
  gap: var(--size-24);
  margin-left: auto;
  padding: var(--size-16) 0;
}

.ranking_panel .rank_number_box .rank_text_box {
  flex: 1;
  display: flex;
  justify-content: center;
  background: var(--shopColor01);
  font-size: 20px;
}

.ranking_panel .rank_number_box .rank_text_box .rank_text01,
.ranking_panel .rank_number_box .rank_text_box .rank_text02 {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  background: var(--shopColor01);
  color: white;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  padding: 3px var(--size-4) 1px;
}

.ranking_panel .rank_number_box .rank_number {
  height: var(--size-104);
  line-height: 1;
  position: relative;
  z-index: 2;
}

.ranking_panel .rank_number_box .rank_number .number_prefix {
  font-size: var(--size-48);
  color: var(--shopColor01);
  font-family: "Poppins", sans-serif;
  font-style: italic;
  line-height: 1;
  margin-top: auto;
   display: inline-block;
}

.ranking_panel .rank_number_box .rank_number .number_value {
  width: 64px;
  font-size: 110px;
  color: var(--shopColor02);
  font-family: "Poppins", sans-serif;
  font-style: italic;
  text-align: right;
  position: relative;
  right: 0;
  display: inline-block;
}

.ranking_panel .rank_panel_bg {
  width: 112px;
  height: var(--size-104);
  background: radial-gradient(circle at left, var(--shopColor02) 70%, white 70%);
  position: absolute;
  overflow: hidden;
  z-index: 1;
  will-change: transform;
  left: 0;
  top: 0;
}

.ranking_panel .rank_panel_bg::before {
  content: "";
  width: 180px;
  height: 180px;
  position: absolute;
  border-radius: 50% 0 0 50%;
  background: white;
  z-index: -1;
  top: -3px;
  left: -1px;
}

.ranking_panel .rank_panel_bg::after {
  content: "";
  width: 10px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: white;
  z-index: -1;
}

.ranking_panel .data_box {
  width: 164px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--size-16) 0;
  color: var(--colorBlack);
  font-size: var(--size-12);
  position: relative;
  z-index: 2;
}

.ranking_panel .data_box .name {
  width: 100%;
  font-size: var(--size-18);
  font-weight: var(--fwSemiBold);
  overflow: hidden;
}

.ranking_panel .data_box .size {
  width: 100%;
  margin-bottom: auto;
  white-space: nowrap;
  overflow: hidden;
}

.ranking_panel .data_box .schedule {
  width: 100%;
  padding: 0 var(--size-4);
  background: var(--colorPink);
  color: white;
  text-align: center;
  border-radius: var(--size-4);
}

.ranking_panel .therapist_img {
  width: var(--size-104);
  height: var(--size-104);
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ranking_panel .therapist_img img {
  object-fit: cover;
}

.right_now_inner_box {
  transition: height 0.3s ease-out;
  overflow: hidden;
  height: auto;
  background: white;
}

.right_now_inner_box .therapist_panel {
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

.right_now_inner_box .therapist_panel.is-hidden {
  display: none;
  opacity: 0;
}

.right_now_block .more_btn_wrapper {
  padding: var(--size-16) 0;
  background: #ebebeb;
}

.right_now_block .more_btn {
  width: 45.6%;
  height: var(--size-32);
  font-size: var(--size-12);
  border-radius: var(--size-16);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--colorBlack);
  background: white;
  margin: 0 auto;
  cursor: pointer;
}

.news_block .news_inner_box .news_box {
  display: flex;
  background: white;
  color: var(--colorBlack);
  border-bottom: solid 1px var(--colorLightGray);
  padding: var(--size-16);
}

.news_block .news_inner_box .news_box:last-child {
  border-bottom: none;
}

.news_block .news_inner_box .news_box .news_img {
  aspect-ratio: 1;
  overflow: hidden;
  margin-right: var(--size-16);
}

.news_block .news_inner_box .news_box .news_img img {
  width: var(--size-88);
  height: var(--size-88);
  aspect-ratio: 1;
  object-fit: cover;
}

.news_block .news_inner_box .news_box .data_box {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size:var(--size-14);
  overflow: hidden;
  position: relative;
}

.news_block .news_inner_box .news_box .data_box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-style: solid;
  border-width: 0 0 var(--size-14) var(--size-14);
  border-color: transparent transparent var(--colorLightGray) transparent;
  pointer-events: none;
}

.news_block .news_inner_box .news_box .data_header {
  display: flex;
  align-items: center;
  margin-bottom: var(--size-8);
}

.news_block .news_inner_box .news_box .data_box .data_header span {
  width: var(--size-64);
  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-16);
  white-space: nowrap;
}

.news_block .news_inner_box .news_box .data_box .data_header time {
  color: var(--colorDateColor);
  font-size: var(--size-10-5);
}

.news_block .news_inner_box .news_box .data_box .news_title,
.news_block .news_inner_box .news_box .data_box .therapist_data {
  color: var(--colorBlack);
  margin-bottom: auto;
  font-weight: var(--fwSemiBold);
  line-height: 1;
}

.news_block .news_inner_box .news_box .data_box .therapist_data span {
  display: block;
}

.news_block .news_inner_box .news_box .data_box .news_title span,
.news_block .news_inner_box .news_box .data_box .therapist_data .size {
  font-size: var(--size-10-5);
  line-height: 1.5;
}

.news_block .news_inner_box .news_box .data_box .station_box {
  font-size: var(--size-10-5);
  height: var(--size-18);
  color: white;
  background: var(--colorDateColor);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--size-4);
}

.news_block .news_inner_box .news_box .data_box .shop_data {
  font-size: var(--size-10-5);
  display: flex;
  flex-direction: column;
}

.news_block .news_inner_box .news_box .data_box .shop_data .shop_name {
  color: var(--colorImportantPink);
  font-weight: var(--fwSemiBold);
}

.news_block .news_inner_box .news_box .data_box .data_header span.new {
  background: var(--colorYellow);
}
.news_block .news_inner_box .news_box .data_box .data_header span.event {
  background: var(--colorPink);
}
.news_block .news_inner_box .news_box .data_box .data_header span.therapist {
  background: var(--colorLightPink);
}
.news_block .news_inner_box .news_box .data_box .data_header span.other {
  background: var(--colorDateColor);
}
.news_block .news_inner_box .news_box .data_box .data_header span.newface {
  background: var(--colorGreen);
}
.news_block .news_inner_box .news_box .data_box .data_header span.recommend {
  background: var(--colorYellow);
}

.latest_diary_block .diary_inner_box {
  overflow-x: auto;
  display: flex;
  flex-wrap: nowrap;
  cursor: grab;
  user-select: none;
}

.latest_diary_block .diary_inner_box:active {
  cursor: grabbing;
}

/* 画像のドラッグを防止 */
.latest_diary_block .diary_inner_box .diary_list .list_item .diary_img img,
.latest_diary_block .diary_inner_box .diary_list .list_item .diary_data_box .therapist_data .therapist_img img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}


.latest_diary_block .diary_inner_box .diary_list {
  display: flex;
  flex-wrap: nowrap;
  padding: var(--size-16);
}

.latest_diary_block .diary_inner_box .diary_list .list_item {
  width: 150px;
  margin-right: 2px;
  flex-shrink: 0;
}

.latest_diary_block .diary_inner_box .diary_list .list_item .link_block {
  color: var(--colorBlack);
}

.latest_diary_block .diary_inner_box .diary_list .list_item .diary_img {
  width: 150px;
  height: 150px;
  overflow: hidden;
}

.latest_diary_block .diary_inner_box .diary_list .list_item .diary_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.diary_data_box {
  padding: 8px 8px 0;
}

.latest_diary_block .diary_inner_box .diary_list .list_item .diary_data_box time {
  color: var(--colorDateColor);
  font-size: var(--size-10-5);
  display: block;
}

.latest_diary_block .diary_inner_box .diary_list .list_item .diary_data_box h3 {
  font-size: var(--size-14);
  margin-bottom: var(--size-8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: var(--fwSemiBold);
}

.latest_diary_block .diary_inner_box .diary_list .list_item .diary_data_box .therapist_data {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
}

.latest_diary_block .diary_inner_box .diary_list .list_item .diary_data_box .therapist_data .therapist_img {
  width: var(--size-40);
  height: var(--size-40);
  overflow: hidden;
  border-radius: 50%;
  margin-right: var(--size-4);
  flex-shrink: 0;
}

.latest_diary_block .diary_inner_box .diary_list .list_item .diary_data_box .therapist_data .therapist_img img {
  object-fit: cover;
}

.latest_diary_block .diary_inner_box .diary_list .list_item .diary_data_box .therapist_data .therapist_name {
  font-size: var(--size-12);
}

.latest_diary_block .diary_inner_box .more_btn {
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  color: var(--colorGray);
  font-size: var(--size-14);
}

.latest_diary_block .diary_inner_box .more_btn .arrow {
  width: var(--size-40);
  height: var(--size-40);
  border-radius: 50%;
  border: solid 2px var(--colorGray);
  margin-bottom: var(--size-8);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.latest_diary_block .diary_inner_box .more_btn .arrow::after {
  content: '';
  width: var(--size-12);
  height: var(--size-12);
  border-right: 2px solid var(--colorGray);
  border-bottom: 2px solid var(--colorGray);
  transform: rotate(-45deg);
  position: absolute;
  margin-left: -4px;
}

.recruit_block {
  background: var(--shopColor02);
}

.recruit_block .recruit_banner_list {
  padding: var(--size-24) 0 var(--size-8);
  display: flex;
}

.recruit_block .recruit_banner_list li {
  width: 320px;
  margin: 0 auto var(--size-16);
}

/* クーポン詳細ページ */
.coupon_detail_block .coupon_img {
  width: min(480px, 100%);
  margin: 0 auto var(--size-8);
  position: relative;
}

.coupon_detail_block .coupon_img figcaption {
  width: 100%;
  height: 228px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 9.2%;
  padding: 0 var(--size-16);
  font-size: var(--size-40);
  color: #fe0005;
  text-align: center;
  font-weight: var(--fwSemiBold);
  overflow: hidden;
}

.coupon_detail_block .coupon_img span {
  background: white;
}

.coupon_detail_block .coupon_img span img {
  aspect-ratio: 1;
}

.coupon_contents .coupon_title {
  height: var(--size-32);
  background: var(--shopColor01);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--size-14);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: var(--fwSemiBold);
}

.coupon_contents .coupon_data_box {
  padding: 0 var(--size-16);
}

.coupon_contents .coupon_data_box .coupon_info {
  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;
}

.coupon_contents .coupon_data_box .coupon_info:last-child {
  padding-bottom: 0;
}


.coupon_contents .coupon_data_box .coupon_info:last-child {
  border: none;
}

.coupon_contents .coupon_data_box .coupon_info dt {
  color: var(--shopColor01);
  font-weight: var(--fwSemiBold);
}

.coupon_contents .coupon_data_box .coupon_info dd {
  text-align: right;
}

.coupon_contents .coupon_data_box .coupon_info dd p {
  text-align: left;
  margin-top: var(--size-16);
}

/* お知らせ詳細ページ */
.news_detail_block .news_img {
  width: min(480px, 100%);
  margin: 0 auto var(--size-8);
}

.news_detail_block .news_img span {
  background: white;
}

.news_detail_block .news_img span img {
  aspect-ratio: 1;
}

.news_contents .news_title {
  height: var(--size-32);
  background: var(--shopColor01);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--size-14);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: var(--fwSemiBold);
}

.news_contents .news_data_box {
  padding: 0 var(--size-16);
}

.news_contents .news_data_box .news_info {
  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;
}

.news_contents .news_data_box .news_info:last-child {
  padding-bottom: 0;
}

.news_contents .news_data_box .news_info:last-child {
  border: none;
}

.news_contents .news_data_box .news_info dt {
  color: var(--shopColor01);
  font-weight: var(--fwSemiBold);
}

.news_contents .news_data_box .news_info dd {
  text-align: right;
}

.news_contents .news_data_box .news_info dd p {
  text-align: left;
  margin-top: var(--size-16);
}

/* セラピスト検索機能 */
.search_therapist_container {
  width: min(768px, 100%);
  position: relative;
  max-width: 100%;
  background: #ebebeb;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--size-12) var(--size-16) 0;
  opacity: 1;
  overflow: hidden;
  transition: height 0.2s ease, padding 0.2s ease, opacity 0.2s ease;
  height: auto;
}

/* 店舗検索機能 */
.search_therapist_container {
  width: min(768px, 100%);
  position: relative;
  max-width: 100%;
  background: #ebebeb;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--size-16);
  opacity: 1;
  overflow: hidden;
  transition: height 0.2s ease, padding 0.2s ease, opacity 0.2s ease;
  height: auto;
}

.search_therapist_container.fixed {
  background: rgba(214, 215, 225, 0.4);
  position: fixed !important;
  top: var(--size-56);
  z-index: 1000;
  /* トランジションプロパティを削除して親から継承 */
}

.search_therapist_container.initial-visible {
  padding-bottom: 0;
}

.search_therapist_container.fixed.initial-visible {
  padding-bottom: var(--size-12);
}

/* 非表示状態 */
.search_therapist_container.hidden {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}

.search_sort_box {
  transition: all 0.3s ease;
}

.menu-open #search-button-therapist {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.search_therapist {
  width: min(480px, 100%);
  height: var(--size-56);
  padding: var(--size-16) 0;
  border-radius: var(--size-4);
  display: block;
  text-align: center;
  background: white;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form_select.search_therapist {
  width: min(480px, 100%);
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder {
  color: var(--colorLightGray);
}


/* 並び替えアコーディオン */
.sort_container {
  padding: var(--size-16);
  position: relative;
  background: #ebebeb;
  transition: margin-top 0.3s ease, transform 0.3s ease;
}

.sort_container a {
  color: var(--blackColor);
}

.sort_container .sort_status {
  width: min(480px, 100%);
  height: var(--size-56);
  margin: 0 auto;
  padding: 0 var(--size-16);
  border-radius: var(--size-4);
  display: flex;
  justify-content: center;
  align-items: center;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23dadbe2' stroke-width='1' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat;
  background-position: right var(--size-12) center;
  background-size: var(--size-24);
  color: var(--colorBlack);
  cursor: pointer;
  font-weight: var(--fwSemiBold);
}

.sort_container .sort_status.acop_btn--active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M12 10l-4-4-4 4' stroke='%23dadbe2' stroke-width='1' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat;
  background-position: right var(--size-12) center;
  background-size: var(--size-24);
}

.sort_container .sort_inner_block {
  width: min(480px, 100%);
  margin: 0 auto;
  padding: 0 var(--size-24);
  background: white;
  color: var(--colorBlack);
  border-bottom-left-radius: var(--size-4);
  border-bottom-right-radius: var(--size-4);
}

.sort_container .sort_inner_block ul li a {
  width: 100%;
  padding: var(--size-16) 0;
  border-bottom: solid 1px var(--colorLightGray);
  display: flex;
  justify-content: center;
  align-items: center;
}

.sort_container .sort_inner_block ul li a.other_link {
  color: var(--shopColor01);
}

.sort_container .sort_inner_block ul li:last-child a {
  border-bottom: none;
}

.sort_container .sort_status .count, .sort_container .sort_inner_block ul li a .count {
  color: var(--shopColor01);
  margin-left: var(--size-4);
}

.sort_container .sort_inner_block ul li.active a {
  padding-right: var(--size-32);
}

.sort_container .sort_inner_block ul li.active a::before {
  content: "";
  width: var(--size-24);
  background: url(../images/icon_check.svg) no-repeat center top / 100% auto;
  aspect-ratio: 171 / 125;
  display: block;
  margin-right: var(--size-8);
}

/* プロフィール */
.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);
  line-height: 1.2;
}

.profile_block .therapist_summary_box .therapist_data .name {
  font-size: var(--size-18);
  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.schedule.other_day {
  background: var(--colorDateColor);
}

.profile_block .tab_list_box {
  height: var(--size-72);
  border-bottom: solid 2px var(--shopColor02);
}

.profile_block .tab_list_box .tab_list {
  display: flex;
}

.profile_block .tab_list_box .tab_list li {
  width: calc(100% / 4);
  height: var(--size-72);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: var(--shopColor01);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: var(--fwSemiBold);
}

.profile_block .tab_list_box .tab_list li.active,
.profile_block .tab_list_box .tab_list li:hover {
  background-color: var(--shopColor01);
  color: white;
}

.tab_container {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.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(--shopColor01);
    transition: fill 0.3s ease;
}

.profile_block .tab_list_box .tab_list li.active svg,
.profile_block .tab_list_box .tab_list li:hover 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-18);
  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);
  background: var(--colorOrange);
  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: #ff74b3;
  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 {
  height: var(--size-32);
  background: var(--colorPink);
  font-size: var(--size-16);
}

.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(--shopColor01);
}

.therapist_detail_info .detail_item dd {
  text-align: right;
}

.therapist_detail_info .detail_item dd a {
  color: var(--shopColor01);
}

.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(--shopColor01);
  border-left-color: var(--shopColor01);
}

.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);
}

.therapist_detail_info .detail_item dd .sns_icon_list {
  display: flex;
  justify-content: flex-end;
  gap: var(--size-8);
}

.therapist_detail_info .detail_item dd .sns_icon_list li img {
  width: var(--size-32);
}

/* プロフィール出勤情報 */
#schedule_box .booking_calendar {
  transition: opacity 0.15s ease;
}

.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(--shopColor01);
    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(--shopColor01);
}

/* 左矢印 - 通常時 */
.arrow_icon.arrow_left {
  width: var(--size-12);
  height: var(--size-12);
  background-color: var(--shopColor01);
  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='%23c5be1f' 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='%23c5be1f' 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(--shopColor01);
  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='%23c5be1f' 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='%23c5be1f' 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");
}

/* 日付ボタン - 無効状態 */
.prev_date_btn.disabled,
.next_date_btn.disabled,
.prev_date_btn:disabled,
.next_date_btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.prev_date_btn.disabled:hover,
.next_date_btn.disabled:hover,
.prev_date_btn:disabled:hover,
.next_date_btn:disabled:hover {
  background: white;
}

/* セラピスト予約状況 */
.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: var(--shopColor02);
}

.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 {
  cursor: pointer;
  background-color: white;
  position: relative;
}

.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: var(--shopColor01);
}

.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;
  flex-direction: column;
}

.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: var(--shopColor01);
  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);
}

/* 写メ日記 */
.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);
  /* font-weight: var(--fwSemiBold); */
  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);
  /* font-weight: var(--fwSemiBold); */
  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 {
  background: var(--shopColor01);
  display: block;
  margin: 0 auto;
}

.modal_form_group {
  position: relative;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* 口コミ一覧ページ */
.review_block .section_title {
  position: relative;
}

.review_block .section_title .review_count {
  font-size: var(--size-12);
  position: absolute;
  right: var(--size-16);
  bottom: var(--size-8);
  /* font-weight: var(--fwNormal); */
}

.review_block .review_item {
  display: flex;
  border-bottom: 1px solid var(--colorLightGray);
  padding: var(--size-24) var(--size-16);
  background: white;
}

.review_block .review_item .review_link {
  width: 100%;
  height: 100%;
  display: flex;
  color: var(--colorBlack);
  margin-bottom: var(--size-16);
}

.review_block .review_item:last-child {
  border: none;
}

.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_block .review_item .review_img {
  width: 100px;
  height: 148px;
  overflow: hidden;
  margin-right: var(--size-16);
}

.review_block .review_item .review_img img {
  height: 148px;
  object-fit: cover;
}

.review_block .review_contents {
  width: calc(100% - 116px);
}

.review_block .review_date {
  font-size: var(--size-10-5);
  color: var(--colorDateColor);
  display: block;
}

.review_block .therapist_data .name {
  display: block;
  font-size: var(--size-18);
  font-weight: var(--fwSemiBold);
}

.review_block .therapist_data .age_size {
  display: block;
  font-size:var(--size-12);
}

.review_block .review_text p {
  font-size:var(--size-14);
  line-height: 1.28;
}

.review_block .review_item .reply {
  width: 100%;
  padding: var(--size-16);
  background: #f8f8f8;
  font-size: var(--size-14);
  border-radius: var(--size-8);
}

.review_block .review_item .reply h3 {
  font-size: var(--size-14);
  margin-bottom: var(--size-8);
  color: var(--shopColor01);
  font-weight: var(--fwSemiBold);
}

.review_block .review_item .reply p {
  line-height: 1.28;
}

/* レビューアイテム内の星評価 */
.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%;
}

.form_submit_btn:hover {
  background: var(--shopColor03);
}

/* 口コミ投稿ガイドライン */
.guidelines_inner_box {
  padding: var(--size-32) var(--size-32) 0;
}

.guidelines_header {
  height: var(--size-64);
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--shopColor01);
}

.guidelines_site_name {
  font-size: var(--size-16);
}

.guidelines_title {
  font-size: var(--size-16);
  color: white;
  font-weight: var(--fwSemiBold);
}

.guidelines_description {
  padding: var(--size-12);
  margin-bottom: var(--size-16);
  border-radius: var(--size-4);
  font-size: var(--size-14);
  background: #f8f8f8;
}

.guidelines_item {
  margin-bottom: var(--size-24);
}

.item_title {
  font-size: var(--size-16);
  margin-bottom: var(--size-16);
  font-weight: var(--fwSemiBold);
  color: var(--shopColor01);
}

.notice_list li,
.prohibited_list li {
  font-size: var(--size-14);
  padding-left: 1em;
  position: relative;
  margin-bottom: var(--size-8);
}

.notice_list li::before,
.prohibited_list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: -7px;
  font-size: var(--size-24);
}

.notice_list li:last-child,
.prohibited_list li:last-child {
  margin-bottom: 0;
}

.office_notice {
  padding-top: var(--size-16);
}

.office_notice .notice_title {
  font-size: var(--size-14);
  font-weight: var(--fwSemiBold);
  color: var(--shopColor01);
  margin-bottom: var(--size-12);
}

.office_notice p {
  font-size: var(--size-14);
  margin-bottom: var(--size-8);
}

.office_notice p:last-child {
  margin-bottom: 0;
}

.notice_title {
  font-size: var(--size-16);
  margin-bottom: var(--size-12);
  font-weight: var(--fwSemiBold);
}

.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(--shopColor01);
  border-radius: var(--size-4);
  border: solid 1px var(--shopColor01);
}

.review_btn_wrapper a:hover {
  opacity: .7;
}


/* フォームセクション */
.form_section {
  /* margin-bottom: var(--size-16); */
}

/* フォームグループ */
.form_group {
  margin-bottom: var(--size-24);
}

.form_label {
  display: block;
  font-size: var(--size-14);
  color: var(--colorBlack);
  margin-bottom: var(--size-16);
}

/* フォーム入力要素 */
.form_input,
.form_select,
.form_textarea {
  width: 100%;
  height: var(--size-56);
  padding: var(--size-12);
  border: 1px solid var(--colorLightGray);
  border-radius: var(--size-4);
  font-size: var(--size-16);
  background: white;
}

.form_textarea::placeholder {
  color: var(--colorLightGray);
}

/* 表示値 */
.form_display_value {
  height: var(--size-56);
  padding: var(--size-16) var(--size-12);
  background: #f8f8f8;
  border-radius: var(--size-4);
  font-size: var(--size-16);
}

/* テキストエリア */
.form_textarea {
  height: 280px;
  resize: vertical;
}

/* セレクトボックス */
.form_select {
  appearance: none;
  padding-right: var(--size-32);
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23dadbe2' stroke-width='1' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat;
  background-position: right var(--size-12) center;
  background-size: var(--size-24);
  transition: background-image 0.2s ease;
  color: var(--colorLightGray);
}

.color_change option {
  color: var(--colorBlack);
}

.color_change.has-value {
  color: var(--colorBlack);
}

/* 入力カウンター */
.form_input_container,
.form_textarea_container {
  position: relative;
}

.char_count {
  position: absolute;
  bottom: var(--size-8);
  right: var(--size-12);
  font-size: var(--size-12);
  color: var(--colorGray);
}

.form_textarea_container .char_count {
  bottom: var(--size-8);
}

.form_note {
  margin-top: var(--size-8);
  font-size: var(--size-12);
  color: var(--colorGray);
  line-height: 1.4;
}

/* WEB予約・予約コース選択 */
.reserve_course .reserve_inner_block {
  padding: 0;
}

/* 選択セラピスト情報 */
.selected_therapist {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--size-4);
  padding: var(--size-8) 0;
  margin-bottom: var(--size-24);
}

.selected_therapist .therapist_img {
  flex-shrink: 0;
  width: var(--size-72);
  height: var(--size-72);
  border-radius: 50%;
  overflow: hidden;
  margin-right: var(--size-16);
}

.selected_therapist .therapist_img img {
  object-fit: cover;
}

.therapist_details {
  flex: 1;
}

.therapist_details .info_box {
  display: flex;
  align-items: center;
  margin-bottom: var(--size-8);
  font-size: var(--size-12);
}

.therapist_details .info_box:last-child {
  margin-bottom: 0;
}

.therapist_details .info_box .label {
  width: var(--size-104);
  font-weight: var(--fwSemiBold);
}

/* コース選択セクション */
.course_category {
  margin-bottom: var(--size-24);
}

.course_category:last-child {
  margin: 0;
}

.course_selection {
  padding: var(--size-32) var(--size-16) 0;
}

.course_title {
  font-size: var(--size-18);
  font-weight: var(--fwSemiBold);
  margin: 0 0 var(--size-24) 0;
  color: var(--colorBlack);
  position: relative;
  padding-left: var(--size-8);
  border-left: solid 4px var(--colorBlack);
}

.time_title, .category_title, .select_title {
  font-size: var(--size-16);
  font-weight: var(--fwSemiBold);
  margin: 0 0 var(--size-16) 0;
  padding: 0 var(--size-16);
  color: var(--shopColor01);
}

.category_title {
  display: flex;
  align-items: center;
}

.category_title .required_mark {
  position: relative;
  top: 1px;
}

.time_group {
  display: flex;
  align-items: center;
  margin-bottom: var(--size-16);
  border-radius: var(--size-4);
}

.course_group {
  padding: var(--size-16);
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  margin-bottom: var(--size-24);
  border-radius: var(--size-4);
}

.course_group:last-child {
  margin-bottom: 0;
}

.hour_label {
  font-size: var(--size-16);
}

.select_option {
  margin-top: var(--size-24);
}

/* 時間選択のスタイル - 2列3行グリッド */
.time_options {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2列 */
  gap: var(--size-8);
}

.time_option {
  height: var(--size-56);
  display: flex;
  align-items: center;
  border: 1px solid var(--colorLightGray);
  border-radius: var(--size-4);
  padding: 0 var(--size-16);
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
}

.time_option:hover {
  border-color: var(--colorBlue);
}

.time_option.selected {
  border: solid 1px var(--colorBlue);
}

.time_option.selected .radio_circle {
  border-color: var(--colorLightGray);
  background: white;
}

.time_option.selected .radio_circle::after {
  background: var(--colorBlue);
}

.time_option .radio_circle {
  width: var(--size-24);
  height: var(--size-24);
  border: 2px solid var(--colorLightGray);
  border-radius: 50%;
  margin-right: var(--size-16);
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
  background: white;
}

.time_option .radio_circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--size-12);
  height: var(--size-12);
  background-color: var(--colorLightGray);
  border-radius: 50%;
}

.time_option input[type="radio"] {
  display: none;
}

.time_value {
  font-size: var(--size-16);
  color: var(--colorBlack);
}

.time_header, .course_header {
  margin-bottom: var(--size-16);
}

.course_header.standard_course {
  margin-top: var(--size-24);
}

.course_name {
  font-size: var(--size-14);
  margin: 0 0 var(--size-8) 0;
}

.time_description, .course_description {
  font-size: var(--size-12);
  color: var(--colorDateColor);
  margin: 0;
}

.time_description, .course_description .optional {
  color: var(--colorBlue);
}

.course_options {
  display: flex;
  flex-direction: column;
  gap: var(--size-8);
}

.course_option {
  width: 100%;
  min-height: var(--size-56);
  display: flex;
  align-items: center;
  border: 1px solid var(--colorLightGray);
  border-radius: var(--size-4);
  padding: var(--size-16);
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: white;
}

.course_option:hover {
  border: solid 1px var(--shopColor01);
}

.course_option.selected {
  border: solid 1px var(--shopColor01);
}

.course_option input[type="radio"] {
  display: none;
}

.radio_circle {
  width: var(--size-24);
  height: var(--size-24);
  border: 2px solid var(--colorLightGray);
  border-radius: 50%;
  margin-right: var(--size-16);
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
  background-color: white;
}

.radio_circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--size-12);
  height: var(--size-12);
  background-color: var(--colorLightGray);
  border-radius: 50%;
}

.course_option.selected .radio_circle {
  border-color: var(--colorLightGray);
  background-color: white;
}

.course_option.selected .radio_circle::after {
  background-color: var(--shopColor01);
}

.option_content {
  width: 100%;
  flex: 1;
  text-align: right;
}

.option_content .duration {
  font-size: var(--size-16);
  color: var(--colorBlack);
}

.duration::after {
  content: "／";
  margin: 0 var(--size-8);
}

.option_content .price {
  font-size: var(--size-16);
}

/* チェックボックス用のスタイル */
.option_checkbox {
  width: 100%;
  min-height: var(--size-56);
  display: flex;
  align-items: center;
  border: 1px solid var(--colorLightGray);
  border-radius: var(--size-4);
  padding: var(--size-16);
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: white;
}

.option_checkbox:hover {
  border: solid 1px var(--shopColor01);
}

.option_checkbox.selected {
  border: solid 1px var(--shopColor01);
}

.option_checkbox input[type="checkbox"] {
  display: none;
}

.checkbox_mark {
  width: var(--size-24);
  height: var(--size-24);
  border: 2px solid var(--colorLightGray);
  border-radius: var(--size-4);
  margin-right: var(--size-16);
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
  background-color: white;
}

.checkbox_mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: var(--size-12);
  height: var(--size-8);
  border: 2px solid var(--shopColor01);
  border-top: none;
  border-right: none;
  transform: translate(-50%, -60%) rotate(-45deg) scale(0);
  animation: checkSoft 0.1s ease-out;
}

.option_checkbox.selected .checkbox_mark {
  border-color: var(--shopColor01);
  background-color: white;
}

.option_checkbox.selected .checkbox_mark::after {
  transform: translate(-50%, -60%) rotate(-45deg) scale(1);
}

.option_name {
  font-size: var(--size-16);
  color: var(--colorBlack);
  flex: 1;
  margin-right: var(--size-16);
}

.option_checkbox .option_content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
}

.option_checkbox .price {
  font-size: var(--size-16);
}

/* クーポン用のレイアウト調整 */
.coupon_option .option_content {
  width: 100%;
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--size-8);
}

.coupon_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.coupon_name {
  font-size: var(--size-16);
  color: var(--shopColor01);
}

.coupon_condition {
  font-size: var(--size-12);
  padding: 2px 4px;
  border: solid 1px var(--colorLightGray);
  border-radius: 4px;
}

.coupon_description {
  font-size: var(--size-14);
  color: var(--colorBlack);
  line-height: 1.5;
  text-align: left;
}

.next_button.no_coupon {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.next_button.no_coupon:hover {
  opacity: 1;
}

.next_button {
    opacity: 1.0;
}

/* ボタンエリア */
.button_area {
  padding: var(--size-24) var(--size-16) 0;
  margin-top: var(--size-8);
}

/* リンクボタンのスタイル */
.next_button {
  width: min(440px, 100%);
  height: var(--size-64);
  background: var(--shopColor01);
  color: white;
  border: none;
  border-radius: var(--size-4);
  padding: var(--size-16);
  margin: 0 auto;
  font-size: var(--size-18);
  font-weight: var(--fwSemiBold);
  cursor: pointer;
  transition: background-color opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--size-16);
  position: relative;
  text-decoration: none;
  text-align: center;
}

.next_button.disabled {
  background-color: var(--colorLightGray);
  cursor: not-allowed;
  pointer-events: none;
}

.back_button {
  width: min(440px, 100%);
  height: var(--size-64);
  background: none;
  font-size: var(--size-18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--size-16);
  margin: 0 auto;
  position: relative;
  color: var(--colorBlack) !important;
  border-radius: var(--size-4);
  border: solid 1px var(--colorLightGray);
}

.select_day_time {
  margin-bottom: var(--size-24);
}

.select_wrap {
  display: flex;
  gap: var(--size-8);
}


.date_time_select {
  flex: 1;
  height: var(--size-56);
  padding: 0 var(--size-16);
  border: 1px solid var(--colorLightGray);
  border-radius: var(--size-4);
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23dadbe2' stroke-width='1' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat;
  background-position: right var(--size-12) center;
  background-size: var(--size-24);
  transition: 0.2s ease;
  font-size: var(--size-16);
  appearance: none;
  cursor: pointer;
  text-align: center;
  color: var(--colorLightGray);
}

.minute_select, .therapist_select {
  width: 100%;
  height: var(--size-56);
  margin: 0 auto;
  padding: 0 var(--size-16);
  border: 1px solid var(--colorLightGray);
  border-radius: var(--size-4);
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23dadbe2' stroke-width='1' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat;
  background-position: right var(--size-12) center;
  background-size: var(--size-24);
  transition: 0.2s ease;
  font-size: var(--size-16);
  appearance: none;
  cursor: pointer;
  text-align: center;
  color: var(--colorLightGray);
}

.therapist_select optgroup {
  color: var(--shopColor01);
  font-size: var(--size-14);
}

.therapist_select optgroup option {
  font-size: var(--size-16);
}

.therapist_thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--size-8);
}

.thumbnail_item {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.therapist_checkbox {
  position: absolute;
  top: 6px;
  right: 6px;
  width: var(--size-32);
  height: var(--size-32);
  z-index: 10;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: white;
  border: 1px solid var(--colorLightGray);
  border-radius: var(--size-4);
  transition: all 0.2s ease;
}

.therapist_checkbox:checked {
  border-color: var(--shopColor01);
}

.therapist_checkbox:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(-45deg) scale(1);
  width: var(--size-12);
  height: var(--size-8);
  border: 2px solid var(--shopColor01);
  border-top: none;
  border-right: none;
  animation: checkSoft 0.1s ease-out;

}

@keyframes checkSoft {
    0% {
        opacity: 0;
        transform: translate(-50%, -60%) rotate(-45deg) scale(0.3);
    }
    60% {
        opacity: 0.8;
        transform: translate(-50%, -60%) rotate(-45deg) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -60%) rotate(-45deg) scale(1);
    }
}

.thumbnail_label {
  display: block;
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
  overflow: hidden;
}

.thumbnail_label .therapist_img {
  width: 100%;
  display: block;
  transition: transform 0.2s ease;
}

.thumbnail_label .therapist_img img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.thumbnail_label .therapist_img:hover {
  transform: scale(1.05);
}

.thumbnail_label .therapist_name {
  width: 100%;
  height: var(--size-32);
  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;
}

/* チェック状態のスタイル */
.therapist_checkbox:checked + .thumbnail_label {
  border-color: var(--shopColor01);
}

.therapist_checkbox:checked + .thumbnail_label .therapist_img {
  opacity: 0.8;
}

.free_thumbnail .therapist_checkbox:checked + .thumbnail_label .therapist_img {
  opacity: 1;
}

/* 値が選択されている場合は通常の文字色を使用 */
.minute_select.has-value {
  color: var(--colorBlack);
}

.minute_select:focus {
  border-color: var(--shopColor01);
  outline: none;
}

.minute_select option {
  color: var(--colorBlack) !important;
}

/* Firefox特有のスタイル */
@-moz-document url-prefix() {
  .minute_select option {
    color: var(--colorBlack) !important;
  }
}

/* Webkit系ブラウザ(Chrome, Safari)向け */
@media screen and (-webkit-min-device-pixel-ratio:0) {
  .minute_select option {
    color: var(--colorBlack) !important;
  }
}

/* IE/Edgeのスタイル */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .minute_select option {
    color: var(--colorBlack) !important;
  }
}

/* 予約確認ページのスタイル */
.reserve_confirm .reserve_inner_block {
  padding: 0;
}

.reservation_details {
  background: white;
  padding: var(--size-8) 0 var(--size-24);
}

.reservation_details .info_box {
  width: min(480px, 100%);
  display: flex;
  border-bottom: 1px solid var(--colorLightGray);
  padding: var(--size-16);
  margin: 0 auto;
}

/* 予約カード */
.reservation_details .info_box:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.customer_info_form {
  padding: 0 var(--size-16);
}

.info_label {
  width: var(--size-88);
  font-size: var(--size-14);
  font-weight: var(--fwSemiBold);
  color: var(--colorBlack);
}

.info_value {
  flex: 1;
  font-size: var(--size-14);
  color: var(--colorBlack);
}

.therapist_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.therapist_thumbnail {
  width: var(--size-96);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin: var(--size-16) auto 0;
  border-radius: var(--size-4);
}

.therapist_thumbnail img {
  object-fit: cover;
}

.action_button {
  padding: 0 var(--size-16);
}

.customer_info_form .form_section_title {
  font-size: var(--size-16);
  color: var(--shopColor01);
  margin-bottom: var(--size-16);
  font-weight: var(--fwSemiBold);
  padding-left: var(--size-16);
}

.customer_info_form .form_group {
  padding: var(--size-16);
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  border-radius: var(--size-4);
  margin-bottom: var(--size-16);
}

.customer_info_form .form_group .form_group_item {
  margin-bottom: var(--size-24);
}

.customer_info_form .form_group .form_group_item:last-child {
  margin-bottom: 0;
}

.required_mark {
  font-size: var(--size-10-5);
  background: var(--colorRed);
  margin-left: var(--size-4);
  color: white;
  padding: 1px var(--size-4);
  border-radius: var(--size-4);
  display: inline-block;
}

.optional_mark {
  color: var(--colorBlue);
}

.input_note {
  font-size: var(--size-12);
  color: var(--colorDateColor);
  margin: var(--size-4) 0 0 0;
}

.reserve_form_notice {
  border-radius: var(--size-4);
  text-align: center;
}

.reserve_form_notice p {
  display: inline-block;
  text-align: left;
  font-size: var(--size-12);
  color: var(--colorRed);
  margin: 0;
  font-weight: var(--fwSemiBold);
}

.submit_button_area {
  padding: var(--size-24) var(--size-16) 0;
  margin-top: var(--size-8);
}

.submit_button_area .submit_button {
  width: min(440px, 100%);
  height: var(--size-64);
  background: var(--shopColor01);
  color: white;
  border: none;
  border-radius: var(--size-4);
  padding: var(--size-16);
  margin: 0 auto;
  font-size: var(--size-18);
  font-weight: var(--fwSemiBold);
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--size-16);
  position: relative;
  text-decoration: none;
  text-align: center;
}

.submit_button_area .submit_button.disabled {
  background-color: var(--colorLightGray);
  cursor: not-allowed;
  pointer-events: none;
}

.form-confirmation-mode .back_button {
    display: none;
}

.customer_info_form .reservation_terms {
  padding: 16px 0;
}

.customer_info_form .reservation_terms .terms_title {
  font-size: var(--size-16);
  color: var(--shopColor01);
  margin-bottom: var(--size-16);
  font-weight: var(--fwSemiBold);
  padding-left: var(--size-16);
}

.terms_container {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid var(--colorLightGray);
  padding: var(--size-12);
  background: #f8f8f8;
  border-radius: var(--size-4);
  font-size: var(--size-12);
}

.terms_container .terms_text_box {
  margin-bottom: var(--size-16);
}
.terms_container .terms_text_box:last-child {
  margin-bottom: 0;
}

.terms_container .terms_text_box p {
  margin: 8px 0;
}

.terms_container .terms_text_box h4 {
  margin-bottom: var(--size-8);
  font-weight: var(--fwSemiBold);
  color: var(--colorBlack);
}

/* 求人 */
.recruit_detail_block {
  /* padding: 0 var(--size-24); */
}

.section_title.recruit_title {
  background: linear-gradient(38deg, rgb(251, 185, 229) 0%, rgb(158, 185, 255) 100%);
  /* margin-bottom: var(--size-24); */
}

.recruit_detail_block .recruit_img {
  position: relative;
  text-align: center;
  overflow: hidden;
  margin: 0;
}

.recruit_detail_block .recruit_img span img {
  margin: 0;
}

.recruit_detail_block .recruit_label {
  width: fit-content;
  font-size: var(--size-14);
  color: #7fa3ff;
  text-align: center;
  padding: var(--size-4) var(--size-16);
  margin: 0 auto;
  border: solid 1px #7fa3ff;
  border-radius: var(--size-4);
}

.recruit_detail_block .recruit_description {
  padding: var(--size-24) var(--size-8);
  font-size: var(--size-14);
  color: var(--colorBlack);
  border-bottom: 1px solid var(--colorLightGray);
}

.recruit_detail_block .recruit_description .description_title {
  color: #f78bd1;
  font-weight: var(--fwSemiBold);
  margin-bottom: var(--size-16);
}

.recruit_detail_block .recruit_description p {
  margin-bottom: var(--size-16);
}

.recruit_detail_block .recruit_description p:last-child {
  margin-bottom: 0;
}

.recruit_detail_block .recruit_info {
  padding: 0 0 var(--size-24);
}

.recruit_detail_block .recruit_info .salary_header {
  display: flex;
  justify-content: space-between;
  gap: var(--size-8);
  margin-bottom: var(--size-16);
}

.recruit_detail_block .recruit_info .salary_table {
  width: 100%;
  margin-bottom: var(--size-16);
  font-size: var(--size-14);
}

.recruit_detail_block .contents_title {
    font-weight: var(--fwSemiBold);
    color: #fd80d1;
    font-size: var(--size-14);
    margin-bottom: var(--size-16);
}

.recruit_detail_block .recruit_info .salary_table th,
.recruit_detail_block .recruit_info .salary_table td {
  height: var(--size-64);
  text-align: center;
  vertical-align: middle;
  border: 1px solid var(--colorLightGray);
  font-weight: var(--fwNormal);
}

.recruit_detail_block .recruit_info .salary_table th {
  width: 50%;
}

.recruit_detail_block .recruit_info .salary_table td {
  font-weight: var(--fwNormal);
  color: var(--colorBlack);
}

.recruit_detail_block .recruit_info .salary_table tr:last-child th,
.recruit_detail_block .recruit_info .salary_table tr:last-child td {
  border-bottom: 1px solid var(--colorLightGray);
}

.recruit_detail_block .recruit_info .other_info {
  font-size: var(--size-14);
}

.recruit_detail_block .recruit_info .other_info p {
  margin-bottom: var(--size-16);
}

.recruit_detail_block .recruit_info .other_info p:last-child {
  margin-bottom: 0;
}

.recruit_detail_block .recruit_shop_data {
  padding: 0 var(--size-8);
}

.recruit_detail_block .recruit_detail_box {
  min-height: var(--size-104);
  padding: var(--size-16) 0;
  border-bottom: solid 1px var(--colorLightGray);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.recruit_detail_block .recruit_detail_box:first-child {
  padding-top: 0;
}

.recruit_detail_block .recruit_detail_box.work {
  border-top: solid 1px var(--colorLightGray);
  padding: var(--size-16) 0;
}


.recruit_detail_block .recruit_detail_box:last-child {
  border: none;
}

.recruit_shop_data_bottom .recruit_detail_box:last-child {
  border: none;
  padding-bottom: 0;
}

.recruit_detail_block .recruit_detail_box .recruit_data {
  font-size: var(--size-14);
  text-align: right;
}

.recruit_detail_block .recruit_detail_box .recruit_data a {
  color: #7fa3ff;
  font-weight: var(--fwSemiBold);
  display: block;
}

.recruit_detail_block .recruit_detail_box .recruit_data span {
  display: block;
}

.recruit_detail_block .recruit_detail_box .recruit_data span.data_note {
  margin-top: var(--size-8);
}

.recruit_tag_list {
  display: flex;
  justify-content: flex-end;
  gap: var(--size-8);
}

.recruit_tag_list li {
  color: #7fa3ff;
  padding: var(--size-4) var(--size-16);
  border: solid 1px #7fa3ff;
  border-radius: var(--size-4);
}

.recruit_tag_list.salary_tag {
  font-size: 14px;
  margin-bottom: var(--size-16);
}

.recruit_detail_block .recruit_detail_box .recruit_data .sns_icon_list {
  display: flex;
  justify-content: flex-end;
  gap: var(--size-8);
}

.recruit_detail_block .recruit_detail_box .recruit_data .sns_icon_list li {
  width: var(--size-32);
}

.recruit_detail_block .recruit_detail_box .recruit_data .credit_card_list li {
  font-size: var(--size-14);
  padding: 0 var(--size-8);
  margin: var(--size-4) 0 0 var(--size-4);
  border-radius: var(--size-16);
  display: inline-block;
  color: white;
  background: var(--colorDateColor);
}

.recruit_detail_block .recruit_detail_box .recruit_data .credit_card_list li:first-child {
  margin-left: 0;
}

.recruit_detail_block .work_description {
  font-size: var(--size-14);
  color: var(--colorBlack);
}

.recruit_detail_block .work_description p {
  margin-bottom: var(--size-16);
}

.recruit_detail_block .work_description p:last-child {
  margin-bottom: 0;
}

.recruit_detail_block .benefit_list {
  font-size: var(--size-14);
}

.recruit_detail_block .benefit_list li {
  margin-bottom: var(--size-8);
}


.recruit_detail_block .shop_environment {
  padding: 0 0 var(--size-24);
}


.recruit_detail_block .environment_chart {
  margin: 0 auto;
  padding: var(--size-16);
  border: 1px solid var(--colorLightGray);
}

.recruit_detail_block .chart_row {
  display: flex;
  gap: var(--size-8);
  margin-bottom: var(--size-24);
}

.recruit_detail_block .chart_row:last-child {
  margin-bottom: 0;
}

.recruit_detail_block .chart_item {
  flex: 1;
}

.recruit_detail_block .chart_title {
  position: relative;
  background: #fd80d1;
  color: white;
  padding: var(--size-4) var(--size-8);
  border-radius: var(--size-4);
  font-size: var(--size-12);
  text-align: center;
  margin-bottom: var(--size-12);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.recruit_detail_block .chart_title::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: var(--size-8) solid transparent;
  border-right: var(--size-8) solid transparent;
  border-top: var(--size-8) solid #fd80d1;
}

.recruit_detail_block .chart_scale {
  background: white;
  padding: var(--size-8) 0;
}

.recruit_detail_block .scale_line {
  position: relative;
  height: var(--size-24);
  display: flex;
  align-items: center;
  margin-bottom: var(--size-8);
}

.recruit_detail_block .scale_line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--colorLightGray);
  transform: translateY(-50%);
}

/* 両端のドット */
.recruit_detail_block .scale_line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-image:
    radial-gradient(circle at 10%, var(--colorLightGray) 4px, transparent 4px),
    radial-gradient(circle at 90%, var(--colorLightGray) 4px, transparent 4px);
  transform: translateY(-50%);
  z-index: 1;
}

.recruit_detail_block .scale_bar {
  display: flex;
  justify-content: space-between;
}

.recruit_detail_block .scale_label {
  font-size: var(--size-10-5);
  color: var(--colorBlack);
  text-align: center;
  flex: 1;
}

.recruit_detail_block .dot {
  position: absolute;
  width: var(--size-12);
  height: var(--size-12);
  background: #ccc;
  border-radius: 50%;
  z-index: 10;
  transform: translateX(-50%);
}

.recruit_detail_block .character_icon {
  position: absolute;
  width: var(--size-32);
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  z-index: 100;
  transform: translateX(-50%);
  background: url(../images/character.svg) no-repeat center center / 100% auto;
}

.recruit_detail_block .character_icon img {
  width: var(--size-24);
  height: var(--size-24);
}

/* ドットとキャラの位置調整（5段階） */
.recruit_detail_block .dot_1,
.recruit_detail_block .character_1 { left: 10%; }

.recruit_detail_block .dot_2,
.recruit_detail_block .character_2 { left: 30%; }

.recruit_detail_block .dot_3,
.recruit_detail_block .character_3 { left: 50%; }

.recruit_detail_block .dot_4,
.recruit_detail_block .character_4 { left: 70%; }

.recruit_detail_block .dot_5,
.recruit_detail_block .character_5 { left: 90%; }


.recruit_detail_block .faq_block {
  padding: 0 0 var(--size-24);
}

.recruit_detail_block .faq_tabs {
  display: flex;
  gap: var(--size-8);
  margin-bottom: 0;
}

.recruit_detail_block .faq_tab {
  flex: 1;
  padding: var(--size-16) 0;
  background: white;
  border: 1px solid var(--colorLightGray);
  border-bottom: none;
  border-radius: var(--size-8) var(--size-8) 0 0;
  color: var(--colorBlack);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
  font-size: var(--size-12);
  font-weight: var(--fwSemiBold);
}

.recruit_detail_block .faq_tab.active {
  background: white;
  color: #fd80d1;
  border: 1px solid var(--colorLightGray);
  border-bottom: none;
  position: relative;
  z-index: 10;
}

.recruit_detail_block .faq_tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: white;
  z-index: 11;
}

.recruit_detail_block .faq_tab:hover:not(.active) {
  background: #f8f8f8;
}

.recruit_detail_block .faq_content {
  background: white;
  border: 1px solid var(--colorLightGray);
  /* padding: 0 var(--size-16); */
}

.recruit_detail_block .faq_content h4 {
  font-size: var(--size-12);
  padding: var(--size-16) var(--size-12) var(--size-8);
}

.recruit_detail_block .faq_tab_content {
  display: none;
}

.recruit_detail_block .faq_tab_content.active {
  display: block;
}

.recruit_detail_block .faq_item {
  border-bottom: 1px solid var(--colorLightGray);
}

.recruit_detail_block .faq_item:last-child {
  border-bottom: none;
}

.recruit_detail_block .faq_question {
  width: 100%;
  display: flex;
  align-items: center;
  padding: var(--size-16) var(--size-8);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}

.recruit_detail_block .faq_question:hover {
  background: #f9f9f9;
}

.recruit_detail_block .question_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--size-24);
  height: var(--size-24);
  color: #fd80d1;
  font-size: var(--size-14);
  font-weight: var(--fwSemiBold);
  margin-right: var(--size-8);
  flex-shrink: 0;
}

.recruit_detail_block .question_text {
  flex: 1;
  font-size: var(--size-14);
}

.recruit_detail_block .arrow_icon {
  width: var(--size-16);
  height: var(--size-16);
  flex-shrink: 0;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recruit_detail_block .arrow_icon::before,
.recruit_detail_block .arrow_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: var(--size-8);
  height: 1.5px;
  background: var(--colorLightGray);
  transform-origin: center;
}

.recruit_detail_block .arrow_icon::before {
  left: 2px;
  transform: translateY(-50%) rotate(45deg);
}

.recruit_detail_block .arrow_icon::after {
  right: 2px;
  transform: translateY(-50%) rotate(-45deg);
}

.recruit_detail_block .faq_question.active .arrow_icon {
  transform: rotate(-180deg) !important;
}

.recruit_detail_block .faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.recruit_detail_block .faq_answer.active {
  max-height: 500px;
}

.recruit_detail_block .faq_answer p {
  margin: 0;
  font-size: var(--size-14);
  line-height: 1.6;
  color: var(--colorBlack);
  padding: var(--size-16) var(--size-40);
}

.recruit_detail_block .faq_answer p {
  margin: 0;
  font-size: var(--size-14);
  line-height: 1.6;
  color: var(--colorBlack);
}


.recruit_detail_block .application_info_block {
  padding: 0 0 var(--size-24);
}

.recruit_detail_block .application_section {
  background: white;
  margin-bottom: var(--size-16);
  padding: 0 var(--size-8);
}

.recruit_detail_block .application_section_title {
  background: #f8f8f8;
  padding: var(--size-16);
  margin: 0;
  font-size: var(--size-14);
}

.recruit_detail_block .application_item {
  padding: var(--size-16) 0;
  display: flex;
  flex-direction: column;
  border-bottom: solid 1px var(--colorLightGray);
}


.recruit_detail_block .item_label {
  font-size: var(--size-14);
  flex-shrink: 0;
  color: #fd80d1;
  font-weight: var(--fwSemiBold);
  margin-bottom: var(--size-16);
}

.recruit_detail_block .item_content {
  font-size: var(--size-14);
  text-align: right;
}

.recruit_detail_block .item_content .tel_link {
  color: #7fa3ff;
}

.recruit_detail_block .line_button {
  display: inline-flex;
  align-items: center;
  background: #06c755;
  color: white;
  padding: var(--size-16);
  border-radius: var(--size-32);
  text-decoration: none;
  font-size: var(--size-12);
  font-weight: var(--fwSemiBold);
  margin-bottom: var(--size-8);
  transition: background 0.3s ease;
}

.recruit_detail_block .line_button:hover {
  background: #00C300;
}

.recruit_detail_block .line_icon {
  margin-right: var(--size-4);
}

.recruit_detail_block .line_id {
  font-size: var(--size-12);
}

.recruit_detail_block .flow_steps {
  margin-bottom: var(--size-12);
}

.recruit_detail_block .flow_step {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  margin-bottom: var(--size-16);
  gap: var(--size-8);
}

.recruit_detail_block .flow_step:last-child {
  margin-bottom: 0;
}

.recruit_detail_block .step_number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffb7e6;
  color: white;
  font-size: var(--size-10-5);
  font-weight: var(--fwSemiBold);
  padding: var(--size-4) var(--size-8);
  border-radius: var(--size-4);
  flex-shrink: 0;
  min-width: var(--size-48);
}

.recruit_detail_block .step_text {
  font-size: var(--size-14);
  padding-top: 2px;
  text-align: left;
}

.recruit_detail_block .flow_note {
  font-size: var(--size-12);
  margin-top: var(--size-8);
}

.recruit_detail_block .message_section {
  padding: 0 var(--size-8);
}

.recruit_detail_block .message_title {
  background: transparent;
  color: #fd80d1;
  margin-bottom: var(--size-16);
  font-size: var(--size-14);
  font-weight: var(--fwSemiBold);
}

.recruit_detail_block .message_content {
  padding: 0;
  font-size: var(--size-14);
}

.recruit_detail_block .message_content p {
  margin-bottom: var(--size-16);
}

.recruit_detail_block .message_content p:last-child {
  margin-bottom: 0;
}

.recruit_inner_box {
  padding: var(--size-16) var(--size-8) 0;
  position: relative;
}

/* 求人ページ用フロートボタン */
.fixed_recruit_contact {
  width: min(768px, 100%);
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 var(--size-16);
  padding-bottom: var(--size-24);
  z-index: 100;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 1;
}

.fixed_recruit_contact.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.fixed_recruit_contact.is-hidden {
  transform: translateX(-50%) translateY(100%);
  opacity: 0;
}

.fixed_recruit_contact .contact_list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: var(--size-8);
  font-size: var(--size-14);
  padding: 0 var(--size-16);
}

.fixed_recruit_contact .contact_list li {
  flex: 1;
}

.fixed_recruit_contact .contact_list li a {
  height: var(--size-56);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: var(--size-8);
}

.fixed_recruit_contact .contact_list li a.tel {
  background: #7fa3ff;
}
.fixed_recruit_contact .contact_list li a.line {
  background: #5af19d;
}
.fixed_recruit_contact .contact_list li a.apply {
  background: #f78bd1;
}

/* .fixed_recruit_contact .contact_list li a svg, .fixed_recruit_contact .contact_list li a img {
  margin-bottom: var(--size-8);
  height: 41px;
  fill: white;
} */

.fixed_recruit_contact .contact_list li a span {
  width: 100%;
  text-align: center;
  font-weight: var(--fwSemiBold);
}

/* お問い合わせ */
.contact_inner_box {
  padding: var(--size-32) var(--size-32) 0;
}

.contact_form_notice {
  width: 100%;
  margin-bottom: var(--size-32);
  padding: var(--size-16);
  font-size: var(--size-12);
  text-align: center;
  background: #f8f8f8;
  border-radius: var(--size-4);
}

.contact_form_notice p {
  display: inline-block;
  text-align: left;
}

.contact_form_notice p:last-child {
  margin-bottom: 0;
}

.contact_footer {
  padding: var(--size-8) var(--size-16) 0;
  display: flex;
  justify-content: center;
}

.contact_footer .submit_btn {
  width: min(440px, 100%);
  height: var(--size-64);
  background: var(--shopColor01);
  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);
}

.contact_footer .submit_btn.disabled {
  background: var(--colorLightGray);
  cursor: not-allowed;
  pointer-events: none;
}

.contact_footer .submit_btn:hover {
  opacity: 0.9;
}

/* ご利用の流れ */
.flow_inner_box {
  padding: var(--size-32) var(--size-32) 0;
}

.flow_inner_box .flow_description {
  width: 100%;
  margin-bottom: var(--size-32);
  padding: var(--size-16);
  font-size: var(--size-12);
  text-align: center;
  background: #f8f8f8;
  border-radius: var(--size-4);
}

.flow_description p {
  display: inline-block;
  text-align: left;
}

.flow_inner_box .flow_step_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
  margin-bottom: var(--size-32);
  position: relative;
}

.flow_inner_box .flow_step_nav .step_item {
  position: relative;
  z-index: 2;
}

.flow_inner_box .flow_step_nav .step_item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -26px; /* gap + 線の幅(4px) の半分 = -26px */
  transform: translateY(-50%);
  width: 28px; /* gap + 数字の境界線分(4px) */
  height: 2px;
  background: var(--colorLightGray);
  z-index: -1;
}

.flow_inner_box .flow_step_nav .step_item .step_number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size-32);
  height: var(--size-32);
  border-radius: 50%;
  background: white;
  border: solid 2px var(--shopColor01);
  color: var(--shopColor01);
  font-weight: bold;
  font-size: var(--size-16);
  font-family: Arial, sans-serif;
  padding-top: 1px;
}

.flow_item {
  margin-bottom: var(--size-24);
}

.flow_item:last-child {
  margin-bottom: 0;
}

.flow_item p {
  font-size: var(--size-14);
  margin-bottom: var(--size-8);
}

.flow_item p:last-child {
  margin-bottom: 0;
}

.item_title {
  font-size: var(--size-16);
  margin-bottom: var(--size-16);
  font-weight: var(--fwSemiBold);
  color: var(--shopColor01);
}

.flow_list {
  padding-left: 0;
  margin: 0 0 var(--size-8) 0;
}

.flow_list li {
  font-size: var(--size-14);
  padding-left: 1em;
  position: relative;
  margin-bottom: var(--size-8);
}

.flow_list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: -7px;
  font-size: var(--size-24);
}

.flow_list li:last-child {
  margin-bottom: 0;
}

/* 求人用フォーム */
.recruit_form_block .section_title {
  background: linear-gradient(38deg, rgb(251, 185, 229) 0%, rgb(158, 185, 255) 100%);
}

.recruit_form > .form_section {
  margin-bottom: var(--size-24);
}

.recruit_form > .form_section:last-child {
  margin-bottom: 0;
}

.recruit_form > .form_section .form_section_title {
  font-size: var(--size-14);
  color: #fd80d1;
  margin-bottom: var(--size-16);
  padding-left: var(--size-16);
  font-weight: var(--fwSemiBold);
}

.recruit_form > .form_section .form_section_title span {
  font-size: var(--size-12);
  margin-left: var(--size-4);
  font-weight: normal;
  color: var(--colorBlack);
}

/* 求人用 フォームグループ */
.recruit_form > .form_section .form_group {
  padding: var(--size-16);
  margin-bottom: var(--size-16);
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  border-radius: var(--size-4);
}

.recruit_form > .form_section .form_group .form_group_item {
  margin-bottom: var(--size-16);
}

.recruit_form > .form_section .form_group .form_group_item:last-child {
  margin-bottom: 0;
}

.recruit_form > .form_section .form_group .form_label {
  height: auto;
  border-left: none;
  display: flex;
  align-items: center;
  font-size: var(--size-14);
  color: var(--colorBlack);
  margin-bottom: var(--size-8);
  padding-left: 0;
  line-height: inherit;
}

.recruit_form_note {
  margin-top: var(--size-8);
  font-size: var(--size-12);
}

.recruit_form_note a {
  display: block;
  text-align: right;
  color: var(--colorBlue);
}

/* 電話番号入力グループ */
.phone_input_group {
  display: flex;
  align-items: center;
  margin-bottom: var(--size-8);
}

.form_input.phone_part {
  width: var(--size-88);
  text-align: center;
}

.phone_separator {
  margin: 0 var(--size-8);
}

form .required {
  font-size: var(--size-10-5);
  background: #ffb7e6;
  margin-left: var(--size-8);
  color: white;
  padding: 1px var(--size-4);
  border-radius: var(--size-4);
  display: inline-block;
}

.recruit_form_footer {
  padding: var(--size-16) var(--size-16) 0;
  display: flex;
  justify-content: center;
}

.recruit_form_footer .submit_btn {
  width: var(440px, 100%);
  height: var(--size-64);
  background: #fd80d1;
  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);
}

.recruit_form_footer .submit_btn:hover {
  opacity: 0.9;
}

/************* ハンバーガーメニュー ************/
.hamburger {
  width: var(--size-32);
  height: var(--size-32);
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 10001;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-right: var(--size-16);
  display: none;
}

.hamburger span {
  display: block;
  width: var(--size-32);
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
}

.hamburger span:nth-child(1) {
  top: 9px;
}

.hamburger span:nth-child(2) {
  top: 15px;
}

.hamburger span:nth-child(3) {
  top: 21px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
  top: 13px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  top: 25px;
}

.toggleButton {
  position: relative;
  display: block;
  width: 72px;
  height: 16px;
  border-radius: 8px;
  background: var(--shopColor02);
  cursor: pointer;
  font-size: 0;
  transition: background 0.3s ease;
}

.toggleButton.is-on {
  background: var(--colorImportantPink);
}

.toggleButton::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggleButton.is-on::before {
  transform: translateX(52px);
}

body.menu-open {
  overflow: hidden;
}

/* メインコンテンツのスライド用 */
.contents_wrapper {
  transition: transform 0.3s ease;
}

/* メニューが開いた時はメインコンテンツをスライド */
body.menu-open .contents_wrapper {
  transform: translateX(256px);
}

footer {
  transition: transform 0.3s ease;
}

body.menu-open footer {
  transform: translateX(256px);
}

/* 固定要素もスライドさせる */
body.menu-open .fixed_contact {
  transform: translateX(68px);
  transition: transform 0.3s ease;
}

/* モバイルナビゲーション */
.mobile_nav {
  position: fixed;
  top: var(--size-56);
  left: -256px;
  width: 256px;
  height: calc(100dvh - var(--size-56));
  background: white;
  transition: left 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
}

body.menu-open .mobile_nav {
  left: 0;
}

.mobile_nav .tel_box {
  height: var(--size-56);
  padding: var(--size-16);
  font-size: var(--size-16);
  display: flex;
  align-items: center;
}

.mobile_nav .tel_box a {
  color: var(--shopColor01);
}

.mobile_nav .tel_box a:hover {
  background: none;
  color: var(--shopColor01);
}

.mobile_nav .tel_box svg {
  width: var(--size-24);
  margin-right: var(--size-8);
  fill: var(--shopColor01);
  transform: scaleX(-1);
}

.nav_container {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease-in;
}

.nav_section {
  border-bottom: 1px solid var(--colorLightGray);
  transition: order 0.3s ease;
}

.nav_section:last-child {
  border-bottom: none;
}

/* ナビセクションの順序制御 */
.nav_container.swapped .shop_nav_section {
  order: 2;
}

.nav_container.swapped .parent_nav_section {
  order: 1;
}

/* ナビヘッダー */
.mobile_nav_header {
  padding: var(--size-16);
  background: var(--shopColor01);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-size: var(--size-14);
}

.mobile_nav_header h2 {
  font-weight: var(--fwSemiBold);
}

/* 店舗ナビのヘッダー */
.shop_nav_section .mobile_nav_header {
  background: var(--shopColor01);
}

/* 親サイトナビのヘッダー */
.parent_nav_section .mobile_nav_header {
  background: var(--shopColor01);
}

/* 入れ替えボタン */
.nav_swap_btn {
  background: none;
  border: none;
  color: white;
  font-size: var(--size-16);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  user-select: none;
}

/* ナビコンテンツ */
.nav_content {
  margin: 0;
}

.mobile_nav li a {
  height: var(--size-56);
  font-size: var(--size-14);
  border-bottom: 1px solid var(--colorLightGray);
  padding: var(--size-16);
  display: flex;
  align-items: center;
  color: var(--colorBlack);
  transition: color 0.3s ease, background-color 0.3s ease;
}

.mobile_nav li:last-child a {
  border-bottom: none;
}

.mobile_nav li.no_click a {
  text-decoration: line-through;
}

.mobile_nav a:hover {
  background: var(--colorLightGray);
  color: var(--colorBlack);
}

.parent_nav_section li a {
  font-size: var(--size-14);
  padding: var(--size-16);
}

.parent_nav_section li a:hover {
  background: var(--colorLightGray);
  color: var(--colorBlack);
}

/* オーバーレイ */
.mobile_nav_overlay {
  position: fixed;
  top: var(--size-56);
  left: 0;
  width: 100vw;
  height: calc(100dvh - var(--size-56));
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9998;
  pointer-events: none;
}

.mobile_nav_overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile_nav * {
  transition: opacity 0.3s ease;
}

/* 各種予約トグルボタン */
.reservation_toggle_btn {
  width: 100%;
  height: var(--size-56);
  font-size: var(--size-14);
  border-bottom: 1px solid var(--colorLightGray);
  padding: var(--size-16);
  color: var(--shopColor01);
  border: none;
  border-top: 1px solid var(--colorLightGray);
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease;
  background: white;
  background-repeat: no-repeat;
  background-position: right var(--size-12) center;
  background-size: var(--size-24);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reservation_toggle_btn::after {
  content: "\f107";
  font: normal normal normal 14px / 1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform 0.3s ease;
  color: var(--colorGray);
}

.reservation_toggle_btn.reservation_active {
  background: var(--shopColor01);
  color: white;
}

.reservation_toggle_btn.reservation_active::after {
  content: "\f106";
  color: white;
}

.reservation_content {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
  background: white;
}

.reservation_buttons {
  display: flex;
  flex-direction: column;
}

.reservation_btn {
  height: var(--size-56);
  font-size: var(--size-14);
  border-bottom: 1px solid var(--colorLightGray);
  padding: var(--size-16);
  display: flex;
  align-items: center;
  color: var(--shopColor01);
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.reservation_btn:hover {
  background: white !important;
  color: var(--shopColor01) !important;
}

.reservation_btn:link, .reservation_btn:visited {
	color: var(--shopColor01);
}

.reservation_btn svg {
  width: var(--size-24);
  margin-right: var(--size-8);
  fill: var(--shopColor01);
}

.reservation_btn:last-child {
    border-bottom: none;
}

/* データなしメッセージ */
.no_data {
  text-align: center;
  padding: var(--size-32) var(--size-16);
  margin: var(--size-16) 0;
  background: #f8f8f8;
  border-radius: var(--size-8);
  color: var(--colorDateColor);
  font-size: var(--size-14);
  line-height: 1.6;
}

.no_data::before {
  content: "";
  display: block;
  width: var(--size-48);
  height: var(--size-48);
  margin: 0 auto var(--size-16);
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%239d9d9d"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"/></svg>') no-repeat center center;
  background-size: contain;
  opacity: 0.6;
}

/* WEB予約追加スタイル */

/* 予約サマリー表示 */
.reservation_summary {
  background: white;
  padding: var(--size-16);
  margin: var(--size-32) var(--size-16) 0;
  border-radius: var(--size-4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
}

.reservation_summary .summary_item {
  display: flex;
  align-items: center;
  padding: var(--size-8) 0;
  border-bottom: 1px solid var(--colorLightGray);
}

.reservation_summary .summary_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.reservation_summary .summary_item:first-child {
  padding-top: 0;
}

.reservation_summary .summary_label {
  width: var(--size-104);
  font-size: var(--size-12);
  font-weight: var(--fwSemiBold);
}

.reservation_summary .summary_value {
  flex: 1;
  font-size: var(--size-14);
  color: var(--colorBlack);
  text-align: right;
}

/* 合計金額表示 */
.total_price_display {
  background: var(--shopColor01);
  padding: var(--size-16);
  margin: var(--size-24) 0 0;
  border-radius: var(--size-4);
}

.total_price_display .total_price_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total_price_display .total_label {
  font-size: var(--size-14);
  color: white;
  font-weight: var(--fwSemiBold);
}

.total_price_display .total_amount {
  font-size: var(--size-24);
  font-weight: var(--fwSemiBold);
  color: white;
}

.total_price_display .price_note {
  font-size: var(--size-12);
  color: rgba(255, 255, 255, 0.8);
  margin: var(--size-8) 0 0 0;
  text-align: right;
  font-weight: var(--fwSemiBold);
}

/* 選択の説明テキスト */
.select_description {
  font-size: var(--size-12);
  color: var(--colorDateColor);
  margin: var(--size-8) var(--size-16) var(--size-16);
}

/* クーポン選択用 */
.coupon_options .coupon_option {
  flex-direction: column;
  align-items: flex-start;
  padding: var(--size-16);
}

.coupon_options .coupon_option.no_coupon {
  flex-direction: row;
  align-items: center;
}

.coupon_options .coupon_content {
  display: flex;
  align-items: flex-start;
  gap: var(--size-12);
  width: 100%;
}

.coupon_options .coupon_img {
  width: var(--size-80);
  flex-shrink: 0;
  border-radius: var(--size-4);
  overflow: hidden;
}

.coupon_options .coupon_img img {
  width: 100%;
  height: auto;
  display: block;
}

.coupon_options .coupon_info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--size-4);
}

.coupon_options .coupon_title {
  font-size: var(--size-14);
  font-weight: var(--fwSemiBold);
  color: var(--colorBlack);
}

.coupon_options .coupon_discount {
  font-size: var(--size-16);
  font-weight: var(--fwBold);
  color: var(--shopColor01);
}

.coupon_options .coupon_condition {
  font-size: var(--size-12);
  color: var(--colorDateColor);
}

.coupon_options .coupon_period {
  font-size: var(--size-12);
  color: var(--colorDateColor);
}

.coupon_ineligible {
  opacity: 0.5;
  pointer-events: none;
}

/* 確認画面 */
.confirmation_section {
  padding: var(--size-32) var(--size-16) var(--size-16);
}

.confirmation_section .confirm_title,
.customer_info_section .confirm_title,
.terms_section .confirm_title {
  font-size: var(--size-16);
  font-weight: var(--fwSemiBold);
  color: var(--shopColor01);
  margin-bottom: var(--size-16);
  padding-left: var(--size-8);
  border-left: solid 4px var(--shopColor01);
}

.confirm_table {
  background: white;
  border-radius: var(--size-4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.confirm_row {
  display: flex;
  border-bottom: 1px solid var(--colorLightGray);
}

.confirm_row:last-child {
  border-bottom: none;
}

.confirm_row .confirm_label {
  width: var(--size-104);
  padding: var(--size-16);
  background: #f8f8f8;
  font-size: var(--size-12);
  font-weight: var(--fwSemiBold);
  color: var(--colorBlack);
  flex-shrink: 0;
}

.confirm_row .confirm_value {
  flex: 1;
  padding: var(--size-16);
  font-size: var(--size-14);
  color: var(--colorBlack);
}

.confirm_row.total_row {
  background: var(--shopColor01);
}

.confirm_row.total_row .confirm_label,
.confirm_row.total_row .confirm_value {
  background: var(--shopColor01);
  color: white;
}

.confirm_row.total_row .confirm_total {
  font-size: var(--size-18);
  font-weight: var(--fwBold);
}

/* お客様情報入力 */
.customer_info_section {
  padding: var(--size-16);
}

.reserve_form .form_group {
  margin-bottom: var(--size-16);
}

.reserve_form .form_label {
  display: block;
  font-size: var(--size-14);
  font-weight: var(--fwSemiBold);
  color: var(--colorBlack);
  margin-bottom: var(--size-8);
}

.reserve_form .form_input,
.reserve_form .form_textarea {
  width: 100%;
  padding: var(--size-12) var(--size-16);
  border: 1px solid var(--colorLightGray);
  border-radius: var(--size-4);
  font-size: var(--size-16);
}

.reserve_form .form_input:focus,
.reserve_form .form_textarea:focus {
  border-color: var(--shopColor01);
  outline: none;
}

.reserve_form .form_textarea {
  min-height: 120px;
  resize: vertical;
}

/* 注意事項セクション */
.terms_section {
  padding: var(--size-16);
}

.terms_section .terms_content {
  max-height: 200px;
  overflow-y: auto;
  padding: var(--size-16);
  background: #f8f8f8;
  border: 1px solid var(--colorLightGray);
  border-radius: var(--size-4);
  font-size: var(--size-12);
  line-height: 1.8;
  margin-bottom: var(--size-16);
}

.terms_section .terms_agree {
  padding: var(--size-8) 0;
}

.checkbox_label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: var(--size-14);
}

.checkbox_label input[type="checkbox"] {
  display: none;
}

.checkbox_label .checkbox_mark {
  margin-right: var(--size-12);
}

.checkbox_label input[type="checkbox"]:checked + .checkbox_mark {
  border-color: var(--shopColor01);
}

.checkbox_label input[type="checkbox"]:checked + .checkbox_mark::after {
  transform: translate(-50%, -60%) rotate(-45deg) scale(1);
}

/* 送信ボタン */
.submit_button {
  width: min(440px, 100%);
  height: var(--size-64);
  background: var(--shopColor01);
  color: white;
  border: none;
  border-radius: var(--size-4);
  padding: var(--size-16);
  margin: 0 auto var(--size-16);
  font-size: var(--size-18);
  font-weight: var(--fwSemiBold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit_button.disabled {
  background-color: var(--colorLightGray);
  cursor: not-allowed;
}

/* 完了画面 */
.reserve_complete {
  padding: var(--size-48) var(--size-16);
  text-align: center;
}

.reserve_complete .complete_inner {
  max-width: 768px;
  margin: 0 auto;
  text-emphasis: center;
}

.reserve_complete .complete_icon {
  width: var(--size-80);
  height: var(--size-80);
  margin: 0 auto var(--size-24);
  color: var(--shopColor01);
}

.reserve_complete .complete_icon svg {
  width: 100%;
  height: 100%;
}

.reserve_complete .complete_title {
  font-size: var(--size-24);
  font-weight: var(--fwBold);
  color: var(--colorBlack);
  margin-bottom: var(--size-16);
}

.reserve_complete .complete_message {
  font-size: var(--size-14);
  line-height: 1.8;
  margin-bottom: var(--size-32);
}

.reserve_complete .complete_buttons {
  display: flex;
  justify-content: center;
}

.reserve_complete .back_to_shop {
  display: inline-block;
  padding: var(--size-16) var(--size-32);
  background: var(--shopColor01);
  color: white;
  border-radius: var(--size-4);
  font-size: var(--size-16);
  font-weight: var(--fwSemiBold);
  text-decoration: none;
}

/* 本人確認メール送信 完了画面（共有クラスと分離して個別調整用） */
.reserve_complete .mail_complete_title {
  font-size: var(--size-24);
  font-weight: var(--fwBold);
  color: var(--colorBlack);
  margin-bottom: var(--size-16);
}

.reserve_complete .mail_complete_message {
  font-size: var(--size-14);
  margin-bottom: var(--size-16);
  text-align: left;
  display: inline-block;
}

.reserve_complete .mail_complete_note {
  margin-bottom: var(--size-40);
  font-size: var(--size-12);
  color: var(--colorDateColor);
  text-align: left;
  display: inline-block;
}

/* チェックボックス付きオプション */
.checkbox_options .course_option {
  cursor: pointer;
}

.checkbox_options .course_option input[type="checkbox"] {
  display: none;
}

.checkbox_options .course_option .checkbox_mark {
  width: var(--size-24);
  height: var(--size-24);
  border: 2px solid var(--colorLightGray);
  border-radius: var(--size-4);
  margin-right: var(--size-16);
  position: relative;
  flex-shrink: 0;
  background-color: white;
}

.checkbox_options .course_option.selected .checkbox_mark {
  border-color: var(--shopColor01);
}

.checkbox_options .course_option.selected .checkbox_mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(-45deg) scale(1);
  width: var(--size-12);
  height: var(--size-8);
  border: 2px solid var(--shopColor01);
  border-top: none;
  border-right: none;
}

/* 指名ブロックの表示制御 */
.nomination_block {
  transition: all 0.3s ease;
}

/* マージン調整用のスタイル */
.mb_0 {
    margin-bottom: 0 !important;
}

/* ============================================
   セラピスト選択セレクト 検索付き（Choices.js / .search_therapist）
   ============================================ */
/* ドロップダウンが開いている間はコンテナのはみ出しを許可（overflow:hidden によるクリッピング防止） */
.search_therapist_container:has(.choices.is-open) {
    overflow: visible;
}
.search_therapist_container .choices.searchable_select {
    width: min(480px, 100%);
    margin-bottom: 0;
}
/* 閉じた状態のボックスを既存の .form_select.search_therapist に合わせる */
.search_therapist_container .choices.searchable_select .choices__inner {
    min-height: 56px;
    height: 56px;
    padding: 0 32px 0 12px;
    border: 1px solid #dadbe2;
    border-radius: 4px;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23dadbe2' stroke-width='1' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 24px;
    font-size: 16px;
    display: flex;
    align-items: center;
}
/* Choices標準の矢印は消し、サイトのシェブロンを使う */
.search_therapist_container .choices.searchable_select::after {
    display: none;
}
.search_therapist_container .choices.searchable_select .choices__list--single {
    padding: 0;
    width: 100%;
    text-align: center;
}
.search_therapist_container .choices.searchable_select .choices__list--single .choices__item {
    padding: 0;
    color: #0c0c0c;
}
.search_therapist_container .choices.searchable_select .choices__list--single .choices__placeholder {
    color: #dadbe2;
    opacity: 1;
}
/* ドロップダウン内の検索ボックス */
.search_therapist_container .choices.searchable_select .choices__list--dropdown .choices__input {
    display: block;
    width: 100%;
    padding: 12px 16px;
    margin: 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: #fff;
    font-size: 16px;
    text-align: center;
}
.search_therapist_container .choices.searchable_select .choices__list--dropdown {
    border: 1px solid #ddd;
    border-radius: 4px;
    z-index: 100;
}
.search_therapist_container .choices.searchable_select .choices__list--dropdown .choices__item {
    padding: 7px 16px;
    font-size: 16px;
    text-align: center;
    color: #0c0c0c;
}
/* 選択・ハイライト項目は青背景＋白文字（既存ネイティブ・ドロップダウンに合わせる） */
.search_therapist_container .choices.searchable_select .choices__list--dropdown .choices__item--selectable.is-highlighted,
.search_therapist_container .choices.searchable_select .choices__list--dropdown .choices__item--selectable.is-selected {
    background-color: #1967d2;
    color: #fff;
}
.search_therapist_container .choices.searchable_select .choices__list--dropdown .choices__placeholder {
    opacity: 1;
}

