@charset "utf-8";
/* CSS Document */

:root {
  --baseColor: #222222;
  --colorPink: #ff008c;
  --colorBlue: #496dd7;
  --colorGreen: #35c835;
  --colorOrange: #fc9e56;
  --colorGray: #bcbec4;
  --colorYellow: #ffea00;
  --buttonGray: #e1e4e9;
  --gradationPink: linear-gradient(0deg, rgb(255,0,140) 40%, rgb(255,120,177) 100%);
  --gradationBlue: linear-gradient(0deg, rgb(0,185,245) 40%, rgb(64,224,243) 100%);
  --gradationGreen: linear-gradient( 45deg, rgb(88,248,45) 0%, rgb(0,134,228) 75%);
  --gradationYellow: linear-gradient(0deg, rgb(255, 138, 0) 40%, rgb(241, 214, 32) 100%);
  --gradationOrange: linear-gradient( 90deg, rgb(244,229,105) 0%, rgb(255,89,89) 75%);
  --s256: clamp(128px, 27.5vw, 256px);
  --s224: clamp(112px, 35vw, 224px);
  --s176: clamp(88px, 27.5vw, 176px);
  --s140: clamp(70px, 21.88vw, 140px);
  --s136: clamp(68px, 21.25vw, 136px);
  --s128: clamp(64px, 20vw, 128px);
  --s120: clamp(60px, 18.75vw, 120px);
  --s112: clamp(56px, 17.5vw, 112px);
  --s104: clamp(52px, 16.25vw, 104px);
  --s96: clamp(48px, 15vw, 96px);
  --s88: clamp(44px, 13.75vw, 88px);
  --s80: clamp(40px, 12.5vw, 80px);
  --s72: clamp(36px, 11.25vw, 72px);
  --s64: clamp(32px, 10vw, 64px);
  --s60: clamp(30px, 9.38vw, 60px);
  --s56: clamp(28px, 8.75vw, 56px);
  --s50: clamp(25px, 7.81vw, 50px);
  --s48: clamp(24px, 7.5vw, 48px);
  --s40: clamp(20px, 6.25vw, 40px);
  --s36: clamp(18px, 5.63vw, 36px);
  --s32: clamp(16px, 5vw, 32px);
  --s30: clamp(15px, 4.69vw, 30px);
  --s24: clamp(12px, 3.75vw, 24px);
  --s20: clamp(10px, 3.13vw, 20px);
  --s18: clamp(10px, 0.125rem + 2.5vw, 18px);
  --s16: clamp(8px, 2.5vw, 16px);
  --s12: clamp(6px, 1.88vw, 12px);
  --s8: clamp(4px, 1.25vw, 8px);
  --s6: clamp(3px, 0.94vw, 6px);
  --s2: clamp(1px, 0.31vw, 2px);
}


@keyframes slide-down {
	0% {transform: translateY(-100%);}
  100% {transform: translateY(0);}
}

@keyframes floating-y_01 {
	0% {transform: translateY(-10%);}
  100% {transform: translateY(10%);}
}

@keyframes floating-y_02 {
	0% {transform: translateY(10%);}
  100% {transform: translateY(-10%);}
}

/* 通常のタップエフェクト */
@keyframes glowAndFade {
  0% {
    background: rgba(255, 255, 255, 0);
  }
  50% {
    background: rgba(255, 255, 255, 0.5);
  }
  100% {
    background: rgba(255, 255, 255, 0);
  }
}

.tap-effect {
  position: relative;
  overflow: hidden;
}

.tap-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0);
  pointer-events: none;
  z-index: 0;
}

.tap-effect.active::before {
  animation: glowAndFade .5s cubic-bezier(0.33, 0, 0.67, 1);
}

/* 検索ボタン専用のエフェクト */
@keyframes searchBtnGlow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}

/*スライドUP用*/
.fade-in {
  opacity: 0;
  transition-duration: 1500ms;
  transition-property: opacity, transform;
}
.fade-in-up {
  transform: translate(0, 75px);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* フラッシュエフェクト */
.flash-effect {
  position: relative;
  overflow: hidden;
}

.flash-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  transform: skewX(-30deg);
  transition: none;
  pointer-events: none;
  z-index: 100;
}

.flash-effect.active::before {
  left: 100%;
  transition: left 0.5s ease-in-out;
}

* {
	box-sizing: border-box;
	flex-wrap: wrap;
}

/*リンク*/
a:link {
	text-decoration: none;
	color: white;
	text-decoration: none;
}

a:visited {
	text-decoration: none;
	color: white;
}

a:hover {
	color: white;
}

a:active {
	text-decoration: none;
	color: white;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

/* html {
  scroll-behavior: smooth;
} */

body {
  padding: 0;
	margin: 0;
  word-wrap: break-word;
  word-break: break-all;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: var(--baseColor);
  background: url(../images/common/bg.webp) no-repeat center top / cover;
  background-attachment: fixed;
  line-height:1;
}

.anton {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.wrapper {
  width: clamp(320px, 100%, 640px);
  margin: 0 auto;
  padding: 0;
  background: rgba(255, 255, 255, 1.0);
  box-shadow: 0px 0px 32px 0px rgba(188, 190, 196, 0.9);
}

header {
  width: min(640px, 100%);
  margin: 0 auto;
  padding: 16px 24px;
  height: 136px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  background: white;
}

.top_header {
  background: none;
}

.header_block {
  display: flex;
}

.logo {
  width: 229px;
}

.registrations_box {
  width: 100px;
  height: 94px;
  margin-left: 16px;
  font-weight: 800;
}

.registrations_box .area_name {
  height: 32px;
  background: var(--colorPink);
  color: white;
  font-size: 20px;
  text-align: center;
  line-height: 32px;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 2px;
}

.registrations_box .registrations {
  height: 32px;
  letter-spacing: 0.05em;
  font-size: 18px;
  display: block;
  background: white;
  text-align: center;
}

.registrations_box .registrations > data {
  color: var(--colorPink);
  font-size: 40px;
  position: relative;
  top: 2px;
}

.top_header .registrations_box {
  width: 176px;
  height: 64px;
  position: absolute;
  top: 132px;
  left: 24px;
  margin-left: 0;
}

.top_header .registrations_box .area_name {
  margin-bottom: 0;
}

.top_header .registrations_box .registrations > data {
  font-size: 30px;
}

.find_shop_btn {
  width: 88px;
  aspect-ratio: 1;
  background: var(--colorGray);
  border-radius: 50%;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.find_shop_btn img {
  width: 48px;
}

.find_shop_btn a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_header .find_shop_btn {
  display: none;
}

.side_banner_block {
  width: 420px;
  position: fixed;
  right: 50%;
  top: 96px;
  margin-right: 400px;
}

.side_banner_block ul li {
  margin-bottom: 32px;
}

.side_banner_block ul li img {
  box-shadow: 0px 0px 32px 0px rgba(188, 190, 196, 0.9);
}

.hamburger {
  width: 88px;
  aspect-ratio: 1;
  background: var(--colorGray);
  border-radius: 50%;
  margin-left: auto;
  position: fixed;
  top: 24px;
  right: 50%;
  margin-right: -296px;
  display: none;
  z-index: 9999;
}

.hamburger.top_hamburger {
  background: rgba(255, 255, 255, .9);
}

.hamburger.top_hamburger span {
  background: var(--colorGray);
}

.hamburger span {
  display: block;
  width: 54px;
  height: 6px;
  border-radius: 5px;
  background: white;
  z-index: 9999;
  position: absolute;
  left: 50%;
  opacity: 1;
  -webkit-transform: translate(-50%, 0%) rotate(0deg);
  -ms-transform: translate(-50%, 0%) rotate(0deg);
  transform: translate(-50%, 0%) rotate(0deg);
  transition: all 0.3s;
}

.hamburger.active span {
  transition: all 0.3s;
}

.hamburger span:first-child {
  top: 28.4%;
}

.hamburger span:nth-child(2) {
  top: 46.59%;
}

.hamburger span:last-child {
  top: 63.63%;
}

.hamburger.active span:first-child {
  top: 46.59%;
  left: 19.32%;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
  display: none;
}

.hamburger.active span:last-child {
  top: 46.59%;
  left: 19.32%;
  transform: rotate(45deg);
}

.global_nav_block {
  width: 420px;
  height: 770px;
  padding: 56px 0;
  background: white;
  position: fixed;
  left: 50%;
  top: 96px;
  margin-left: 400px;
  box-shadow: 0px 0px 32px 0px rgba(188, 190, 196, 0.9);
  z-index: 1000;
}

.global_nav_block .find_shop_btn {
  display: none;
}

.global_nav_block .logo {
  width: 229px;
  display: block;
  margin: 0 auto;
}

.global_nav_block .global_nav {
  padding-left: 32px;
  margin-bottom: 48px;
}

.global_nav_block .global_nav ul {
  border-top: solid 1px var(--colorGray);
}

.global_nav_block .global_nav ul li {
  border-bottom: solid 1px var(--colorGray);
  font-size: 20px;
  text-transform: uppercase;
}

.global_nav_block .global_nav ul li a {
  padding: 24px 20px;
  color: var(--baseColor);
  display: block;
}

.global_nav_block .global_nav ul li a span {
  color: var(--colorPink);
}

.gNav_inner_box {
  margin-bottom: 24px;
}


.gNav_inner_box .registrations_box {
  display: none;
}

.page_top {
  width: 80px;
  aspect-ratio: 1;
  display: block;
  position: fixed;
  cursor: pointer;
  top: 756px;
  right: 50%;
  margin-right: -520px;
  z-index: 1000;
}

.contents_title {
  width: 100%;
  height: 88px;
  background: var(--colorGreen);
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.bread_crumb_list {
  background: white;
  font-size: 18px;
  font-weight: 400;
  color: var(--baseColor);
  position: relative;
  z-index: 1;
}

.bread_crumb_list ol {
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--colorGray);
  border-bottom: 1px solid var(--colorGray);
  padding: 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bread_crumb_list ol.nb {
  border-bottom: none;
}

.bread_crumb_list ol li a {
  color: var(--baseColor);
}

footer {
  padding: 0 24px;
}

footer.floating_margin {
  padding-bottom: 88px;
  margin-bottom: 112px;
}

footer .footer_inner_block {
  border-top: solid 1px var(--colorGray);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 176px;
}

footer.nb .footer_inner_block {
  border: none;
}

footer .footer_inner_block .copyright {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  display: block;
  color: var(--colorGray);
  font-weight: 400;
  text-transform: uppercase;
}

/*top*/
.head_mv_contents {
  padding: 0;
  margin-top: -136px;
}

.head_mv_contents .search_btn_list {
  display: flex;
  justify-content: space-between;
  margin: -120px 0 96px;
  padding: 0 24px;
}

.search_btn-icon {
  border-radius: 50%;
  width: 176px;
  aspect-ratio: 1;
  overflow: hidden;
  font-weight: 800;
  animation: floating-y_01 2.5s ease-in-out infinite alternate-reverse;
}

.search_btn-icon a {
  padding: 16px;
  color: white;
  font-size: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.search_btn-icon a::before {
  margin-bottom: 12px;
}

.search_btn-icon a span {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.83;
}

.search_btn-icon a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
}

.search_btn-icon.active a::after {
  animation: searchBtnGlow 1s cubic-bezier(0.33, 0, 0.67, 1);
}

.search_btn-station {
  background-image: var(--gradationPink);
}
.search_btn-station a::before {
  content: "";
  width: 56px;
  aspect-ratio: 56 / 70;
  background: url(../images/common/icon_station.webp) no-repeat center top / 100%;
}
.search_btn-shop {
  background-image: var(--gradationBlue);
  animation: floating-y_02 2.5s ease-in-out infinite alternate-reverse;
}
.search_btn-shop a::before {
  content: "";
  width: 57px;
  aspect-ratio: 57 / 71;
  background: url(../images/common/icon_shop.webp) no-repeat center top / 100%;
}
.search_btn-call {
  background-image: var(--gradationYellow);
}
.search_btn-call a::before {
  content: "";
  width: 70px;
  aspect-ratio: 70 / 71;
  background: url(../images/common/icon_call.webp) no-repeat center top / 100%;
}

.head_mv_contents .catchphrase {
  font-size: 32px;
  letter-spacing: 0.3em;
  text-align: center;
  margin-bottom: 128px;
}

.head_mv_contents .catchphrase span {
  color: var(--colorPink);
}

.sns_btn a {
  width: 432px;
  aspect-ratio: 432 / 88;
  background: url(../images/common/sns_btn.webp) no-repeat center top / 100%;
  color: white;
  font-size: 24px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.head_mv_contents .sns_btn a {
  margin: 0 auto 96px;
}

.button_description .description_list_box {
  width: 100%;
  height: 128px;
  display: flex;
  margin-bottom: 96px;
  padding-right: 64px;
}

.button_description .description_list_box:last-child {
  margin-bottom: 0;
}

.button_description .inner_block {
  padding: 96px 0;
}

.button_description .description_list_box dt {
  width: 128px;
  aspect-ratio: 1;
  margin-right: 24px;
  margin-left: auto;
}

.button_description .description_list_box dd {
  width: 360px;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.75;
}

.button_description .description_list_box dd span {
  color: var(--colorPink);
}

.report_form_host .inner_block, .contact_form_users .inner_block {
  font-size: 24px;
  line-height: 1.75;
  padding: 96px 0 96px 96px;
}

.report_form_host ul, .contact_form_users ul {
  color: var(--colorPink);
  margin-bottom: 60px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top_news_list .inner_block {
  padding: 96px 24px;
  font-weight: 400;
}

.top_news_list .inner_block ul {
  width: 100%;
  border-top: solid 1px var(--colorGray);
}

.top_news_list .inner_block ul li {
  padding: 24px 8px;
  border-bottom: solid 1px var(--colorGray);
  font-size: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top_news_list .inner_block ul li a {
  color: var(--baseColor);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top_news_list .inner_block ul li time {
  margin-right: 16px;
  font-size: 20px;
}

/*news_detail*/
.news_detail .news_block {
  font-weight: 400;
  padding-bottom: 96px;
}

.news_detail .news_block h3 {
  font-size: 32px;
  padding: 24px;
  border-bottom: solid 1px var(--colorGray);
  text-align: center;
  margin-bottom: 64px;
}

.news_detail .news_block time {
  width: 100%;
  font-size: 20px;
  display: inline-block;
  padding: 0 24px;
  margin-bottom: 24px;
}

.news_detail .news_block .text_box {
  font-size: 24px;
  padding: 0 24px;
  line-height: 1.68;
  margin-bottom: 96px;
}

.news_detail .news_block .text_box a {
  color: var(--colorBlue);
}

.news_detail .news_block .back_btn a {
  width: 176px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--buttonGray);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--baseColor);
  margin: 0 auto;
  font-weight: 600;
}



/******************************条件変更共通******************************************/
.change_conditions_block {
  font-size: 24px;
  text-align: center;
  width: 100%;
}

.change_conditions_block.fixed {
  width: min(640px, 100%);
  position: fixed;
  top: 0;
  inset-inline: 0;
  margin: auto;
  z-index: 100;
  animation: slide-down .9s ease
}

.wrapper:has(.change_conditions_block.fixed) {
  padding-top: 120px;
}

.change_conditions_block .change_inner_box {
  padding: 24px;
  background: var(--colorGray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.select_label {
  width: 452px;
  position: relative;
  display: inline-block;
}

.select_label.w100 {
  width: 100%;
}

.select_label::after {
  content: '';
  width: 14px;
  height: 14px;
  border-top: solid 3px var(--colorGray);
  border-right: solid 3px var(--colorGray);
  position: absolute;
  top: 50%;
  right: 24px;
  margin-top: -7px;
  transform: rotate(45deg);
}

.select_label select {
  display: inline-block;
  margin: 0;
  background: #fff;
  border-color: #fff;
  border-radius: 16px;
  appearance: none;
  width: 100%;
  height: 72px;
  color: black;
  line-height: 100%;
  text-align: left;
  padding: 0 24px;
}

select:focus {
  outline: 2px solid var(--baseColor);
}

.select_label select option {
  font-size: 18px;
}

.change_conditions_block .change_btn {
  width: 125px;
  height: 72px;
  border-radius: 8px;
  background: var(--colorGreen);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1.1;
}

.change_conditions_block .change_btn::before {
  content: "";
  width: 38px;
  aspect-ratio: 38 / 45;
  background: url(../images/common/icon_conditions.png) no-repeat center top / 100%;
  display: block;
  margin-right: 8px;
}

.display_number {
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #838c9b;
  font-size: 18px;
  font-weight: 400;
}
/********************************************************************/
.station_block {
  /* padding-bottom: 24px; */
  background: #e1e4e9;
}

.station_block:last-of-type {
  padding-bottom: 0;
}

.station_name_box {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  color: white;
  font-size: 18px;
  background: var(--colorGray);
  position: relative;
}

.station_name_box.nearest {
  background: var(--colorGreen);
  height: 72px;
}

.station_name_box .station_name {
  width: 70%;
  font-size: 24px;
  text-align: center;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.station_name_box .station_name span {
  font-size: 18px;
  font-weight: 500;
  margin-left: 8px;
}

.station_name_box .results_data {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 24px;
  font-size: 18px;
  font-weight: 500;
  position: absolute;
  left: 0;
  top: 0;
}

.station_name_box .results_data .number {
  margin-left: auto;
}

.shop_detail_box {
  background: white;
  position: relative;
  margin: 0;
  padding: 0;
}

.shop_detail_box.subscribe {
  background: #ffeaf2;
}

.shop_detail_box:last-child {
  margin-bottom: 0;
}

.shop_detail_box .shop_name {
  font-size: 32px;
  color: white;
  background: var(--colorPink);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 28px 0;
}

.shop_detail_box .shop_name span {
  width: 95%;
  text-align: center;
  margin: 0 auto;
}

.shop_detail_box .shop_name.new_shop span {
  width: min(448px, 70%);
}

.shop_detail_box .shop_name.new_shop::before {
  content: "NEW";
  width: 72px;
  height: 40px;
  color: var(--colorPink);
  background: var(--colorYellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  position: absolute;
  right: 24px;
  top: 24px;
}

.shop_detail_box .shop_data {
  padding: 24px 0 64px;
  display: flex;
  position: relative;
  color: inherit;
}

.shop_detail_box .shop_data a.link_block {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  z-index: 1;
}

.shop_data .therapist_list {
  width: 100%;
  display: flex;
  margin-bottom: 24px;
}

.shop_data .therapist_list li {
  width: calc(100% / 3);
  position: relative;
}

.shop_data .therapist_list li img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.shop_data .therapist_list li:nth-child(n+4) {
  display: none;
}

.shop_data .therapist_list.variable li:nth-child(n+4) {
  display: block;
}

.shop_data .therapist_list li .therapist_data {
  width: 100%;
  background: rgba(255, 255, 255, .7);
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 8px 16px 8px;
  font-size: 18px;
  text-align: center;
  font-weight: 400;
}

.shop_data .therapist_list li .therapist_data .name_age,
.shop_data .therapist_list li .therapist_data .tall_cup {
  border-bottom: solid 1px var(--baseColor);
  padding: 8px 0;
  display: block;
  overflow: hidden;
}

.shop_data .therapist_list li .therapist_data .tall_cup {
  border: none;
}

.shop_data .therapist_list li .therapist_data .name_age > span {
  font-size: 20px;
}

.shop_detail_box .shop_data .left_box {
  width: 224px;
  padding: 0 24px;
}

.shop_detail_box .shop_data .right_box {
  width: calc(100% - 224px);
  padding-right: 24px;
}

.shop_detail_box .shop_data .shop_img {
  width: 176px;
  border: solid 1px #e1e4e9;
  margin-bottom: 24px;
}
.shop_detail_box .shop_data .shop_img img {
  aspect-ratio: 1;
  overflow: hidden;
  object-fit: cover;
}

.link_icon {
  height: 80px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.link_icon a {
  width: 80px;
  display: block;
}

.label_box {
  height: 56px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.label_box span {
  width: 176px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 18px;
  font-weight: 400;
}

.label_box span.status {
  order: 1;
}

.label_box span.rank {
  order: 2;
  position: relative;
}

.label_box span.rank::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-right: 10px solid white;
  border-left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.label_box span.sales {
  background: var(--colorPink);
}
.label_box span.closed {
  background: var(--colorGray);
}
.label_box span.rank01 {
  background: #daba77;
}
.label_box span.rank02 {
  color: #666;
  background: #e1e4e9;
}
.label_box span.rank03 {
  background: #e1ac8c;
}
.label_box span.rank00 {
  background: #999999;
}

.shop_detail_box .shop_data dl {
  display: flex;
  border-top: solid 1px var(--colorGray);
}

.shop_detail_box .shop_data dl dt {
  width: 48px;
  height: 62px;
  border-bottom: solid 1px var(--colorGray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shop_detail_box .shop_data dl dt i {
  width: 32px;
}

.shop_detail_box .shop_data dl dd {
  width: calc(100% - 48px);
  height: 62px;
  font-size: 20px;
  font-weight: 400;
  border-bottom: solid 1px var(--colorGray);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/*search_therapist*/
.therapist_detail_box {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 88px;
  position: relative;
}

.therapist_detail_box:last-child {
  margin-bottom: 0;
}

.therapist_detail_box a.link_block {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}


.therapist_detail_box .therapist_img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
}

.therapist_detail_box .therapist_img img {
  object-fit: cover;
}

.therapist_detail_box .new_face {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--colorYellow);
  color: var(--colorPink);
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 16px;
  right: 16px;
  letter-spacing: -0.05em;
}

.therapist_detail_box .data_box {
  width: 100%;
  height: 284px;
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  background: rgba(255, 255, 255, .8);
  font-size: 24px;
}

.therapist_detail_box .data_box .data_list {
  width: 100%;
  height: 196px;
  margin: 0 auto;
  text-align: center;
  font-weight: 400;
  padding: 8px 56px;
}

.therapist_detail_box .data_box .data_list li {
  width: 100%;
  border-bottom: solid 1px var(--colorGray);
  padding: 16px 0;
}

.therapist_detail_box .data_box .data_list li span {
  font-size: 36px;
}

.therapist_detail_box .data_box .data_list li:last-child {
  border: none;
}

.therapist_detail_box .data_box .shop_img {
  width: 88px;
  aspect-ratio: 1;
}

.therapist_detail_box .data_box .status {
  width: calc(100% - 88px);
  height: 88px;
  background: var(--colorPink);
  color: var(--colorYellow);
  display: flex;
  justify-content: center;
  align-items: center;
}

.therapist_detail_box .data_box .status time {
  margin-left: 24px;
}

.pager_block {
  background: #e1e4e9;
}

.page-back_btn {
  width: 67.5%;
  aspect-ratio: 432 / 88;
  margin: 96px auto;
  color: var(--baseColor);
  font-size: 24px;
  background: var(--buttonGray);
  display: block;
  border-radius: 44px;
  padding: 32px 0;
  display: block;
  text-align: center;
}

/*search_call*/
.ranking_img_block {
  width: 100%;
  padding: 60px 0;
}

.slider {
  width: 400px;
  height: 400px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow:
      0 0 40px 25px rgba(255, 231, 73, 0.5),
      0 0 40px 25px rgba(255, 231, 73, 0.5);
}


.ranking_img {
  width: 100%;
  background: url(../images/common/call_rank_bg.webp) no-repeat center center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px 0;
  overflow: hidden;
}

.ranking_img figure {
  width: 400px;
  height: 400px;
  box-shadow:
      0 0 6vw 2vw rgb(255 231 74 / 68%),
      0 0 2vw 0 rgb(255 231 73);
}

.shiny_effect {
    display: block;
    position: relative;
    margin: 0 auto;
    font-weight: bold;
    max-width: 400px;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    transition: 300ms;
}

.shiny_effect::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: white;
    transition: 300ms;
    animation: shinyshiny 2.5s ease-in-out infinite;
}

/* .shiny_effect:hover {
    text-decoration: none;
    color: #fff;
    box-shadow: none;
    -webkit-transform: translateY(3px);
} */

@-webkit-keyframes shinyshiny {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}


.ranking_table {
  width: 100%;
  border-collapse: collapse;
}

.ranking_table th,
.ranking_table td {
  border: 1px solid var(--colorGray);
  border-top: none;
}

/* .ranking_table tr:last-child td {
  border-bottom: none;
} */

.ranking_table th:first-child, .ranking_table td:first-child {
  border-left: none;
}

.ranking_table th {
  height: 40px;
  font-size: 18px;
}

.ranking_table td {
  height: 80px;
  font-size: 32px;
}

.ranking_table thead tr th.rank_column {
  background-color: black;
  color: #ffffff;
  width: 12.5%;
  text-align: center;
  vertical-align: middle;
}

.ranking_table thead tr th.store_name-column {
  background-color: #ff008c;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  width: 75%;
  border-right: none;
}

.ranking_table tbody td.rank_column {
  width: 12.5%;
  text-align: center;
  vertical-align: middle;
}

.ranking_table tbody td.rank_column:nth-child(2) {
  color: var(--colorGray);
}

.ranking_table tbody td.store_name-column {
  width: 75%;
  text-align: left;
  padding: 0 16px;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-right: none;
  max-width: 0;
}

.ranking_table tbody td.store_name-column a {
  color: var(--baseColor);
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* 偶数行の全セルの背景色を設定 */
.ranking_table tbody tr:nth-child(even) td {
  background-color: #fff6fb;
}

/* トップ3の店舗名の文字色を設定 */
.ranking_table tbody tr:nth-child(-n+3) .store_name-column,
.ranking_table tbody tr:nth-child(-n+3) .store_name-column a {
  color: #ff008c;
}

/* 1位の今週欄の背景色 */
.ranking_table tbody tr:nth-child(1) td:first-child {
  background-color: #daba77;
}

/* 2位の今週欄の背景色 */
.ranking_table tbody tr:nth-child(2) td:first-child {
  background-color: #e1e4e9;
}

/* 3位の今週欄の背景色 */
.ranking_table tbody tr:nth-child(3) td:first-child {
  background-color: #e1ac8c;
}

/* 11位以降の店舗名のフォントサイズを24pxに設定 */
.ranking_table tbody tr:nth-child(n+11) .store_name-column {
  font-size: 24px;
}

/*shop_detail.html*/
/* .shop_detail_box.detail_page .shop_name {
  color: var(--baseColor);
  border-top: solid 1px var(--colorGray);
  border-bottom: solid 1px var(--colorGray);
  background: none;
} */

.shop_detail_box.detail_page .shop_img {
  padding: 64px 0;
}

.shop_detail_box.detail_page .shop_img figure {
  width: 400px;
  aspect-ratio: 1;
  overflow: hidden;
  border: solid 1px var(--colorGray);
  margin: 0 auto;
}

.shop_detail_box.detail_page .shop_data {
  border: none;
  width: 100%;
  padding: 64px 0;
}

.shop_detail_box.detail_page .shop_data .therapist_list {
  margin-bottom: 64px;
}

.shop_detail_box.detail_page .label_box {
  width: 100%;
  height: auto;
  margin-bottom: 64px;
  justify-content: center;
}

.shop_detail_box.detail_page .label_box span {
  margin: 0 8px;
}

.shop_detail_box.detail_page .shop_data dl {
  width: calc(100% - 96px);
  margin: 0 auto;
}

.shop_detail_box.detail_page .shop_data dl dt {
  width: 64px;
  height: 72px;
}

.shop_detail_box.detail_page .shop_data dl dt i {
  width: 48px;
}

.shop_detail_box.detail_page .shop_data dl dd {
  width: calc(100% - 64px);
  height: 72px;
  font-size: 24px;
}

.shop_detail_box.detail_page .shop_data .sns_btn {
  margin: 64px auto 0;
}

.shop_detail ul.site_list {
  padding: 64px 0;
}

.shop_detail ul.site_list li a {
  width: 78.75%;
  height: 104px;
  margin: 0 auto 24px;
  border: 1px solid var(--colorGray);
  font-size: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  overflow: hidden;
}

.shop_detail ul.site_list li a img {
  object-fit: cover;
}

.shop_detail ul.site_list li a::after {
  content: '';
  width: 14px;
  height: 14px;
  border-top: solid 3px var(--colorGray);
  border-right: solid 3px var(--colorGray);
  position: absolute;
  top: 50%;
  right: 24px;
  margin-top: -7px;
  transform: rotate(45deg);
  z-index: 1;
}

.shop_detail ul.site_list li:last-child a {
  margin-bottom: 0;
}

.shop_detail .improvement_request {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 88px;
  border-top: solid 1px var(--colorGray);
  border-bottom: solid 1px var(--colorGray);
}

.shop_detail .improvement_request img {
  width: 64px;
}

.floating_nav_block {
  width: min(640px, 100%);
  height: 200px;
  position: fixed;
  bottom: -100%;
  margin: auto;
  padding: 0 40px 24px;
  transition: ease-in 0.5s;
}

.floating_nav_block.slide_up {
  width: min(640px, 100%);
  height: 200px;
  position: fixed;
  bottom: 0;
  margin: auto;
  padding: 0 40px 24px;
  transition: ease-out 0.5s;
  z-index: 10;
}

.floating_nav_block ul {
  display: flex;
  justify-content: space-between;
}

.floating_nav_block ul li {
  width: 176px;
  aspect-ratio: 1;
}

.floating_nav_block::before {
  content: "";
  width: 100%;
  height: 112px;
  background: rgba(255, 255, 255, .95);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.tel-hover {
  position: relative;
}

.phone_tooltip {
  display: none;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  margin-bottom: 10px;
  z-index: 1000;
}

.phone_tooltip::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

.tel_hover:hover .phone_tooltip {
  display: block;
}

/*contact improvement call*/
.shop_name_block {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border-bottom: 1px solid var(--colorGray);
}

.improvement .shop_name_block {
  border: none;
  margin-bottom: 0;
}

.form_block {
  margin-bottom: 96px;
  position: relative;
}

.form_text {
  text-align: center;
  margin-bottom: 24px;
  font-size: 24px;
}

.form_text.contact_text {
  padding-top: 130px;
}

.form_text.closed_text {
  padding: 126px 0;
  margin-bottom: 0;
}

.form_text.correction_text {
  padding-top: 78px;
}

.form_text.call_text {
  padding: 72px 0;
  margin-bottom: 0;
}

.form_text.find_text {
  padding-top: 174px;
}

.form_text p {
  display: inline-block;
  text-align: left;
  line-height: 1.75;
  margin-bottom: 72px;
}

.form_text p:last-child {
  margin-bottom: 0;
}

.form_text p.catchphrase {
  display: none;
}

.form_text p.tel_number {
  width: 100%;
  letter-spacing: 0.3em;
  text-align: center;
  font-size: 32px;
}

.form_text p.tel_number i {
  display: inline-block;
  width: 40px;
  margin-right: 10px;
  position: relative;
  top: 10px;
}

.form_text p span {
  color: var(--colorPink);
}

form.contact_form, .call_btn_block {
  display: flex;
  justify-content: space-around;
  padding: 0 56px;
}

form.contact_form input, form.contact_form textarea {
  width: 100%;
  height: 72px;
  border: solid 2px var(--colorGray);
  padding: 24px;
  margin: 0 auto 130px;
  font-size: 24px;
}

.find_shop form.contact_form input {
  margin-bottom: 174px;
}

.contact_form input.correction {
  margin-bottom: 78px;
}

::placeholder {
  color: var(--colorGray);
}

.form_block .button_wrapper {
  width: 448px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.find_shop .form_block .button_wrapper {
  justify-content: center;
}

.form_block .button_wrapper button, .form_block .button_wrapper a {
  width: 176px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--buttonGray);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--baseColor);
}

.form_block .button_wrapper button.send_btn,
.form_block .button_wrapper a.tel_btn {
  color: white;
  background: var(--colorPink);
}

.select_tab_block {
  height: 104px;
  background: var(--colorGray);
  padding: 0 50px;
  display: flex;
  color: white;
  font-size: 24px;
  position: relative;
}

.select_tab_block::after {
  content: "";
  width: 4px;
  height: 24px;
  background: white;
  position: absolute;
  inset: 0;
  margin: auto;
}

.select_tab_block button {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.select_tab_block button.is-active {
  color: var(--colorPink);
}

.tab_contents {
  display: none;
}

.tab_contents.is-show {
  display: block;
}

/*search*/
.search_inner_block {
  height: calc(100vh - 296px);
  overflow: auto;
}
.search-container {
  position: relative;
  max-width: 100%;
  background: #e1e4e9;
  padding: 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-input {
  width: 70.625%;
  height: 72px;
  padding: 24px;
  font-size: 24px;
  border: 2px solid var(--colorGray);
  background: white;
  border-radius: 36px;
  display: block;
}

.search-arrow {
  width: 14px;
  aspect-ratio: 17 / 22;
  position: absolute;
  top: 50%;
  right: 24px;
  top: 40px;
}

.search-results {
  position: absolute;
  width: 100%;
  background: white;
  display: none;
  z-index: 99;
  top: 120px;
  color: var(--baseColor);
}

.station-item {
  padding: 40px 24px;
  cursor: pointer;
  border-bottom: 1px solid var(--colorGray);
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--baseColor) !important;
  background: white;
}

.station-item span {
  width: 73%;
}

.station-item span small {
  font-size: 18px;
}

.station-item span.scount {
  width: 15%;
  text-align: right;
  font-size: 18px;
}

.material-icons {
  width: 17px;
  aspect-ratio: 17 / 21;
  background: url(../images/common/icon_search_station.png) no-repeat center top / 100%;
  margin-right: 24px;
}

.station-item::after {
  content: "";
  width: 14px;
  height: 14px;
  border-top: solid 3px var(--colorGray);
  border-right: solid 3px var(--colorGray);
  transform: rotate(45deg);
  margin-left: auto;
}

.station-item:hover {
  background-color: #f5f5f5;
}

.no-results {
  padding: 10px 16px;
  color: #666;
  font-size: 20px;
}

::-webkit-search-cancel-button {
  background-color: #222222;
}

input:focus {
  outline: 2px solid var(--baseColor);
}

/* 検索モーダル */
@keyframes modalFadeIn {
  0% {
      opacity: 0;
      transform: translateY(30px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.modal_block {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  position: fixed;
  top: 0;
  left: 0;
  z-index: calc(infinity);
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  pointer-events: none;
}

.modal_block.is-show {
  visibility: visible;
  background: rgba(0, 0, 0, .75);
  pointer-events: auto;
}

.modal_inner_block {
  width: min(640px, 100%);
  height: 100vh;
  background: rgba(0, 0, 0, .9);
  margin: 0 auto;
  padding: 24px 24px calc(24px + 120px);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
  display: flex;
  flex-direction: column;
}

.modal_block.is-show .modal_inner_block {
  animation: modalFadeIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.modal_content_box {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal_btn_wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: rgba(0, 0, 0, .9);
}

.modal_close_btn {
  width: 100%;
  height: 72px;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: auto;
}