@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;
  --colorDarkBlue: #12004c;
  --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;

  --nav-top-position: 0px;
  --mv-height: 0px;
  --header-height: 56px
}

.anton {
  font-family: "Anton", sans-serif;
  font-weight: var(--fwNormal);
  font-style: normal;
  letter-spacing: 0.05em;
}

.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;
}

a:visited {
	text-decoration: none;
	color: white;
}

a:active {
	text-decoration: none;
	color: white;
}

a:hover {
  opacity: 0.9;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

/* html {
  scroll-behavior: smooth;
} */

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;
  background: url(../images/bg.jpg) no-repeat center top / cover;
  background-attachment: fixed;
  line-height: 1.5;
  color: var(--colorBlack);
  letter-spacing: .02em;
}

header {
  position: relative;
  z-index: 1000;
}

.menu-open header, .menu-open header.fixed {
  background: rgba(48,40,100,1);
}

header.fixed {
  width: min(768px, 100%);
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  animation: headerSlideDown 0.3s forwards;
  background: rgba(48,40,100,0.4);
}


@keyframes headerSlideDown {
  from {
    transform: translateX(-50%) translateY(-100%);
  }
  to {
    transform: translateX(-50%) translateY(0);
  }
}

header.returning {
  position: relative;
  transform: translateY(-100%);
  animation: headerReturnSlide 0.5s ease-out forwards;
}

@keyframes headerReturnSlide {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: 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 .header_inner_block h1 {
  font-family: "Shippori Mincho", serif;
  font-style: normal;
  font-size: var(--size-16);
  color: white;
}

header .header_inner_block h1 a {
  height: var(--size-32);
  display: flex;
  align-items: center;
}

header .header_inner_block h1 .logo {
  width: 95px;
  margin: 0 5px;
  display: inline-block;
}

.header_nav {
  margin-left: auto;
}

.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: auto;
  height: var(--size-32);
}

.header_nav ul li svg {
  fill: white;
}

header.fixed .header_inner_block h1 .catch_text {
  display: none;
}

header.fixed .header_inner_block h1 .logo {
  width: 95px;
}

.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%);
  height: fit-content;
  margin: 0 auto 0 0;
  order: 2;
  background: white;
}

.left_side_contents {
  width: 232px;
  order: 1;
  margin: 0 var(--size-24) 0 0;
  align-self: flex-start;
}

.left_side_contents .banner_list li {
  margin-bottom: var(--size-16);
}

.left_side_contents .banner_list li:last-child {
  margin-bottom: 0;
}

.global_nav_block {
  width: 232px;
  border: solid 1px white;
  border-radius: var(--size-16);
  overflow: hidden;
  padding: var(--size-24) 0;
  position: sticky;
  top: 0;
  transition: transform 0.3s ease, top 0.3s ease;
  order: 3;
  align-self: flex-start;
  z-index: 1001;
}

.global_nav_block.nav-fixed {
  top: var(--size-56);
}

.global_nav_block::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(97, 107, 182, 0.9) 0%, rgba(13, 19, 61, 0.9) 20%, rgba(7, 11, 3, 0.9) 90%);
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: .8;
}

.global_nav_block ul {
  font-optical-sizing: auto;
  font-style: normal;
}

.global_nav_block ul li a {
  width: 200px;
  height: var(--size-48);
  margin: 0 auto var(--size-16);
  border-radius: var(--size-32);
  border: solid 1px white;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 2;
  font-size: var(--size-14);
  will-change: transform;
  font-weight: var(--fwSemiBold);
}

.global_nav_block ul li a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(97, 107, 182, 0.9) 0%, rgba(13, 19, 61, 0.9) 20%, rgba(7, 11, 3, 0.9) 90%);
  opacity: 0.8;
  position: absolute;
  top: 0;
  z-index: -1;
}

.global_nav_block ul li:last-child a {
  margin-bottom: 0;
}

.global_nav_block ul li a.station {
  color: var(--colorImportantPink);
  font-weight: var(--fwSemiBold);
}

.global_nav_block ul li a span {
  position: absolute;
}

.global_nav_block ul li a.station span {
  width: 20px;
  left: 20px;
}

.global_nav_block ul li a.shop {
  color: var(--colorBlue);
  font-weight: var(--fwSemiBold);
}

.global_nav_block ul li a.shop span {
  width: 20px;
  left: 19px;
}

.global_nav_block ul li a.ranking {
  color: var(--colorYellow);
}

.global_nav_block ul li a.ranking span {
  width: 27px;
  left: var(--size-16);
}

.global_nav_block ul li a.japan,
.global_nav_block ul li a.area,
.global_nav_block ul li a.home {
  color: var(--colorGreen);
}


.global_nav_block ul li a.japan span {
  width: 24px;
  left: var(--size-16);
}

.global_nav_block ul li a.area span {
  width: 30px;
  left: var(--size-16);
}

.global_nav_block ul li a.home span {
  width: 26px;
  left: var(--size-16);
}

.global_nav_block ul li a.mail span {
  width: 24px;
  left: var(--size-16);
}

.global_nav_block ul li a.request span {
  width: 28px;
  left: var(--size-16);
}

.global_nav_block .logo {
  width: 146px;
  margin: var(--size-32) auto;
}

.pc_nav_header {
  padding: var(--size-16);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: var(--colorDarkBlue);
  font-size: var(--size-12);
  font-optical-sizing: auto;
}

.pc_nav_header h2 {
  font-weight: var(--fwSemiBold);
}

.page-top {
  margin: 0 auto;
  display: block;
  opacity: 1;
  visibility: visible;
}

.page-top-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  background: rgba(255, 255, 255, .9);
}

.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(--colorDarkBlue);
  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;
}

.page-top-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--size-56);
  height: var(--size-56);
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  margin-top: var(--size-24);
}

.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(--colorDarkBlue);
  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;
}

.section_title {
  height: var(--size-64);
  background: var(--colorImportantPink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--size-18);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: var(--fwSemiBold);
}

footer {
  width: min(768px, 100%);
  margin: 0 auto;
  padding: var(--size-24) var(--size-16);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.footer_float_nav_margin {
  margin-bottom: var(--size-80);
}

.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: white;
}

footer .copyright {
  width: 100%;
  text-align: center;
  font-size: var(--size-10-5);
}

/* お店検索 */
.search_shop_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;
}

.search_shop_container.normal {
  padding-bottom: var(--size-12);
}

.search_shop_container.top_search {
  background: none;
  position: fixed;
  z-index: 1000;
  top: var(--size-56);
}

.search_shop_container.fixed {
  position: fixed;
  top: var(--size-56);
  z-index: 1000;
  background: rgba(48, 40, 100, 0.4);
  padding-bottom: var(--size-12);
}

.search_shop_container.top_search.fixed {
  background: rgba(48, 40, 100, 0.4);
}

.search_shop_container.detail {
  padding-bottom: var(--size-12);
}

.search_shop_container.initial-visible {
  padding-bottom: 0;
}

.search_shop_container.fixed.initial-visible {
  padding-bottom: var(--size-12);
}

/* 非表示状態 */
.search_shop_container.hidden {
  opacity: 0;
  height: 0 !important;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.menu-open #search-button-shop, .menu-open #login-button {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.search_shop {
  width: min(480px, 100%);
  height: var(--size-56);
  padding: 0 var(--size-16);
  border-radius: var(--size-4);
  background: white;
  display: block;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* 検索結果ドロップダウン */
.shop-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 検索結果項目 */
.shop-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
}

.shop-item:hover {
  background-color: #f8f9fa;
}

.shop-item:last-child {
  border-bottom: none;
}

.shop-item .name {
  flex: 1;
  font-weight: 500;
  color: #2c3e50;
}

/* 検索結果なし */
.no-results {
  padding: 16px;
  text-align: center;
  color: #6c757d;
  font-size: 14px;
  font-style: italic;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder {
  color: var(--colorLightGray);
}

.shop_filter_box {
  transition: all 0.3s ease;
}

/* fixedクラスがある場合の調整 */
.search_shop_container.fixed .shop-search-results {
    z-index: 10001; /* fixedの場合はさらに高く */
}

.search_shop_container.top_search .shop-search-results {
    z-index: 10001; /* top_searchの場合もさらに高く */
}

/* 通常のfixed状態 */
.shop_filter_box.fixed {
  width: 100%;
  position: fixed;
  top: var(--size-56);
  left: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
}

/* 並び替えアコーディオン */
.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;
}

.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:last-child a {
  border-bottom: none;
}

.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);
}

.mv_block {
  height: 825px;
  position: relative;
}

.mv_block figure {
  width: 100%;
}

.mv_block figure img {
  aspect-ratio: 768 / 825;
  object-fit: cover;
}

.mv_block .logo_block {
  width: 434px;
  height: auto;
  position: absolute;
  top: 312px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mv_block .logo_block .catch {
  font-family: "Shippori Mincho", serif;
  font-style: normal;
  font-size: 30px;
  color: white;
  display: block;
  margin-left: auto;
  letter-spacing: 0.1em;
}

.mv_block .logo_block .logo {
  width: 434px;
  display: block;
}

.mv_nav_block {
  display: none
}

.mv_nav_clone {
  display: none;
}

.mv_block .advertisement_banner {
  width: 100%;
  padding: var(--size-16) 0;
  background: rgb(148 154 226 / 20%);
  position: absolute;
  bottom: 0;
}

.mv_block .advertisement_banner img {
  width: 640px;
  margin: 0 auto;
}

/* ロゴアニメーションのスタイル */
.logo_block {
  overflow: hidden;
}

.logo_block .catch,
.logo_block .logo {
  display: block;
  opacity: 0; /* 初期状態は透明 */
  transform: translateY(30px);
  animation-duration: 1.2s;
  animation-fill-mode: forwards; /* アニメーション終了後も状態を維持 */
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.logo_block .catch {
  animation-name: slideUpFade;
  animation-delay: 0.3s;
}

.logo_block .logo {
  animation-name: slideUpFade;
  animation-delay: 0.8s;
}

@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* メインビジュアルの画像も少しだけアニメーション */
.mv_block figure img {
  animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.mv_block .logo_block .area-version {
  width: 208px;
  font-family: "Shippori Mincho", serif;
  font-size: 27px;
  color: white;
  background: var(--colorImportantPink);
  text-align: center;
  letter-spacing: -0.01em;
  margin: var(--size-16) auto 0;
  padding: 2px var(--size-48);
  border-radius: 999px;
  opacity: 0;
  animation: fadeInOnly 1.5s ease-out forwards;
  animation-delay: 1.25s;
}

@keyframes fadeInOnly {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.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;
  object-position: top;
}

.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-8);
  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 span.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 {
  display: flex;
  flex-direction: column;
  font-size: var(--size-10-5);
  padding-right: var(--size-14);
}

.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.event {
  background: var(--colorOrange);
}
.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);
}

/* common_page */
.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 a {
  color: var(--colorBlack);
}

.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 a, .pager span {
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.pager a {
  color: var(--colorBlack);
}

.pager li:nth-child(2) {
  border-left: solid 1px var(--colorOtherGray);
  border-right: solid 1px var(--colorOtherGray);
}

.pager a.disabled, .pager a[aria-disabled="true"] {
  color: var(--colorOtherGray);
  cursor: default;
  pointer-events: none;
}

/* 最寄り駅検索 */
.search_inner_block {
  height: calc(100vh - 160px);
  overflow: auto;
}
.search-container {
  height: var(--size-72);
  position: relative;
  max-width: 100%;
  background: var(--colorGray);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.search-input {
  width: min(480px, 100%);
  height: var(--size-56);
  padding: var(--size-16);
  border-radius: var(--size-4);
  display: block;
  text-align: center;
  background: white;
}

.search-input::placeholder {
  color: var(--colorLightGray);
}

.search-arrow {
  width: var(--size-14);
  aspect-ratio: 17 / 22;
  position: absolute;
  top: 50%;
  right: var(--size-24);
  top: var(--size-40);
}

.search-results {
  position: absolute;
  width: 100%;
  display: none;
  z-index: 1001;
  top: var(--size-80);
  background: var(--colorDarkBlue);
}

.station-item {
  height: var(--size-72);
  padding: var(--size-24) var(--size-16);
  cursor: pointer;
  display: flex;
  font-size: var(--size-16);
  background: white;
  border-bottom: solid 1px var(--colorLightGray);
  align-items: center;
  align-content: center;
}

.station-item:last-child {
  border-bottom: none;
}

.station-item span.name {
  width: 89%;
}

.station-item span.name .kind {
  font-size: var(--size-12);
}

.station-item span.number {
  font-size: var(--size-12);
  margin-left: auto;
}

.material-icons {
  width: 25px;
  aspect-ratio: 25 / 32;
  background: url(../images/icon_find_station.svg) no-repeat center top / 100%;
  margin-right: var(--size-16);
}

.station-item:hover {
  background-color: #ebebeb;
}

.no-results {
  padding: var(--size-16) var(--size-48);
  color: white;
  font-size: var(--size-16);
  text-align: center;
}

::-webkit-search-cancel-button {
  background-color: var(--colorBlack);
}

/* 検索モーダル */
@keyframes modalFadeIn {
  0% {
      opacity: 0;
      transform: translateY(30px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* 最寄り駅 */
.station_block {
  margin-bottom: var(--size-16);
}

.station_block:last-child {
  margin-bottom: 0;
}

.station_name_box {
  height: var(--size-72);
  padding: 0 var(--size-16);
  display: flex;
  align-items: center;
  color: white;
  background: var(--colorImportantPink);
  position: relative;
}

.station_name_box.near {
  background: var(--colorBlue);
}

.station_name_box .station_name {
  width: min(480px, 75%);
  font-size: var(--size-16);
  text-align: center;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#searchResultsSection {
  display: none;
}

.common-search-container {
  padding: var(--size-16);
  position: relative;
  max-width: 100%;
  background: #ebebeb;
  display: flex;
  justify-content: center;
  align-items: center;
}

#stationNameDisplay {
  font-size: var(--size-16);
}

#stationSearchSection {
    min-height: 300px;
}

.search-spacer {
    height: calc(100vh - var(--size-112));
}

.station_name_box .station_name span {
  font-size: var(--size-12);
  margin-left: var(--size-4);
  font-weight: var(--fwSemiBold);
}

.station_name_box .results_data {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 var(--size-16);
  font-size: var(--size-12);
  position: absolute;
  left: 0;
  top: 0;
}

.station_name_box .results_data .number {
  margin-left: auto;
}

/* 店舗データボックス */
.shop_detail_box {
  background: white;
  font-size: var(--size-14);
  position: relative;
}

.shop_detail_box.rank_in {
  background: var(--colorWhitePink);
}

.shop_detail_box .station_name {
  height: var(--size-32);
  background: var(--colorLightPink);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.shop_detail_box .shop_name {
  background: var(--colorDarkBlue);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-size: var(--size-16);
  padding: var(--size-16);
}

.shop_detail_box .shop_data_box {
  width: min(480px, 100%);
  margin: 0 auto;
  position: relative;
  padding: var(--size-16) 0;
  display: block;
}

.shop_detail_box .link_block {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.shop_detail_box .therapist_img_list {
  display: flex;
  justify-content: flex-start;
  padding: 0 var(--size-16);
  margin-bottom: var(--size-16);
  overflow: hidden;
}

.shop_detail_box .therapist_img_list .list_item {
  width: calc(100% / 3 - 3px);
  margin-right: 1.5px;
  position: relative;
  flex-shrink: 0;
}

.shop_detail_box .therapist_img_list .list_item figure img {
  height: 100%;
  object-fit: cover;
}

.shop_detail_box .therapist_img_list li:nth-child(3) {
  margin-right: 0;
}

.shop_detail_box .therapist_img_list .list_item .therapist_data {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  left: 0;
  bottom: 0;
  padding: var(--size-8);
}

.shop_detail_box .shop_data_box .shop_data01 {
  width: 100%;
  height: var(--size-80);
  padding: 0 var(--size-16);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: var(--size-16);
}

.shop_detail_box .shop_data_box .shop_data01 .shop_img {
  width: var(--size-80);
  height: var(--size-80);
  aspect-ratio: 1;
  overflow: hidden;
  border: solid 1px var(--colorOtherGray);
  margin-right: var(--size-16);
}

.shop_detail_box .shop_data_box .shop_data01 .link_list {
  width: calc(100% - 96px);
  height: var(--size-48);
  display: flex;
  flex-wrap: nowrap;
}

.shop_detail_box .shop_data_box .shop_data01 .link_list li {
  width: var(--size-48);
  aspect-ratio: 1;
  margin-right: var(--size-16);
}

.shop_detail_box .shop_data_box .shop_data01 .link_list li:last-child {
  margin-right: 0;
}

.shop_detail_box .shop_data_box .shop_data01 .link_list li a {
  position: relative;
  z-index: 10;
  pointer-events: auto;
  display: block;
}

.shop_detail_box .shop_data_box .shop_data01 .therapist_counter {
  font-size: var(--size-14);
  display: flex;
}

.shop_detail_box .shop_data_box .shop_data01 .therapist_counter data {
  color: var(--colorPink);
}

.shop_detail_box .shop_data_box .shop_data01 .therapist_counter .schedule::after {
  content: " ／ ";
}

.shop_detail_box .shop_data_box .shop_data02 dl {
  padding: var(--size-16);
  border-bottom: solid 1px var(--colorOtherGray);
  display: flex;
  flex-wrap: nowrap;
}

.shop_detail_box .shop_data_box .shop_data02 dl:first-child {
  border-top: solid 1px var(--colorOtherGray);
}

.shop_detail_box .shop_data_box .shop_data02 dl:last-child {
  border-bottom: none;
}

.shop_detail_box .shop_data_box .shop_data02 dl dt {
  width: var(--size-24);
  display: flex;
  align-items: center;
  margin-right: var(--size-16);
}

.shop_detail_box .shop_data_box .shop_data02 dl dd {
  flex: 1;
  border-bottom: solid 1px var(--colorGray);
  display: flex;
  align-items: center;
  font-size: var(--size-14);
}

.shop_detail_box .shop_data_box .shop_data02 dl dt:last-of-type,
.shop_detail_box .shop_data_box .shop_data02 dl dd:last-of-type {
  border: none;
}

.request_btn {
  padding: var(--size-24);
  font-size: var(--size-12);
  text-align: right;
}

.request_btn button {
  color: var(--colorBlue);
}

.request_btn button:hover {
  text-decoration: underline;
}


/* 報告用モーダル */
.request_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;
}

.request_modal.show {
  opacity: 1;
}

.request_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;
}

.request_modal.show .request_modal_content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.request_modal_content h3 {
  font-size: var(--size-16);
  margin-bottom: var(--size-16);
}

.request_modal_content .request_modal_text {
  line-height: 1.8;
  margin-bottom: var(--size-16);
}

.request_modal_content a {
  color: var(--colorBlack);
}

.request_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;
}

.request_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);
}

.request_modal_form .report_textarea::placeholder {
  color: var(--colorLightGray);
}

.submit_btn.report_submit {
  background: var(--colorImportantPink);
  display: block;
  margin: 0 auto;
}

.request_form_group {
  position: relative;
  margin-bottom: var(--size-16);
}

.request_form_group:last-child {
  margin-bottom: 0;
}

.modal_form_group .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);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* 看板娘 */
.ranking_area_select {
  padding: var(--size-16);
  background: #ebebeb;
  display: flex;
  justify-content: center;
}

.ranking_area_select .form_select {
  width: min(480px, 100%);
  text-align: center;
}


.ranking_list {
  background: white;
}

.ranking_list_box .ranking_list_item {
  width: min(375px, 100%);
  margin: 0 auto var(--size-16);
  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);
}


.ranking_list_box .ranking_list_item .therapist_img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: solid 1px var(--colorLightGray);
}

.ranking_list_box .ranking_list_item .therapist_img img {
  object-fit: cover;
}

.ranking_list_box .ranking_list_item .ranking_data_box {
  display: flex;
  padding: var(--size-16) 0;
  border-bottom: solid 1px var(--colorLightGray);
}

.ranking_list_box .ranking_list_item .ranking_data_box .shop_img {
  width: 68px;
  height: 68px;
  border: solid 1px var(--colorLightGray);
}

.ranking_list_box .ranking_list_item .ranking_data_box .shop_img img {
  aspect-ratio: 1;
  object-fit: cover;
}

.ranking_list_box .ranking_list_item .ranking_data_box .data_box {
  height: 68px;
  flex: 1;
  padding: 0 var(--size-16);
  display: flex;
  align-items: center;
  align-content: center;
}

.ranking_list_box .ranking_list_item .ranking_data_box .data_box .therapist_name {
  width: 100%;
  font-size: var(--size-16);
  font-weight: var(--fwSemiBold);
}

.ranking_list_box .ranking_list_item .ranking_data_box .data_box .therapist_data {
  width: 100%;
  font-size: var(--size-14);
}

.ranking_list_box .ranking_list_item .shop_name {
  font-size: var(--size-16);
  padding-top: var(--size-16);
  text-align: center;
  font-weight: var(--fwSemiBold);
  display: block;
}

/* 店舗詳細ページ */
.shop_detail .shop_img {
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.shop_detail .shop_img::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;
}

.shop_detail .shop_img figure {
  width: min(480px, 100%);
}

.shop_detail .map_button_block {
  height: var(--size-72);
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
}

.shop_detail .map_button_block .map_btn {
  /* width: 85.3334%; */
  width: 343px;
  height: var(--size-56);
  background: var(--colorPink);
  color: white;
  border-radius: var(--size-4);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.shop_detail .map_button_block .map_btn::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--colorDarkRed);
  position: absolute;
  left: 0;
  bottom: 0;
}

.shop_detail .map_button_block .map_btn img {
  width: 22px;
}

.shop_detail .shop_data_block .data_inner_box {
  padding: 0 var(--size-16);
  background: white;
}

.shop_detail .shop_data_block .data_inner_box dl {
  min-height: var(--size-104);
  padding: var(--size-16) 0;
  font-size: var(--size-14);
  border-bottom: solid 1px var(--colorGray);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shop_detail .shop_data_block .data_inner_box dl a {
  color: var(--colorImportantPink);
  font-weight: var(--fwSemiBold);
}

.shop_detail .shop_data_block .data_inner_box dl a i {
  margin-right: var(--size-4);
}

.shop_detail .shop_data_block .data_inner_box dl dt {
  font-weight: var(--fwSemiBold);
}

.shop_detail .shop_data_block .data_inner_box dl dd {
  text-align: right;
}

.shop_detail .shop_data_block .data_inner_box dl dd span {
  display: block;
}

.shop_detail .shop_data_block .data_inner_box dl dd .sns_icon_list {
  display: flex;
  justify-content: flex-end;
  gap: var(--size-8);
}

.shop_detail .shop_data_block .data_inner_box dl dd .sns_icon_list li img {
  width: var(--size-32);
}

.shop_detail .shop_banner_block {
  padding-top: var(--size-24);
}

.shop_detail .shop_banner_block ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 var(--size-16);
}

.shop_detail .shop_banner_block ul li {
  width: 48%;
}

.shop_detail .shop_banner_block ul li:nth-child(n+3) {
  margin-top: var(--size-16);
}

.shop_detail .shop_banner_block ul li:last-child {
  margin-bottom: 0;
}

.fixed_contact {
  width: min(375px, 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_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: center;
  font-size: var(--size-12);
  font-optical-sizing: auto;
  font-style: normal;
}

.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%;
  letter-spacing: -0.1em;
  padding-bottom: var(--size-8);
  margin: 0 var(--size-16);
  color: #fff;
}

.fixed_contact .contact_list li a {
  background-image: linear-gradient(0deg, rgba(255, 144, 205, 0.9) 0%, rgba(255, 0, 140, 0.9) 33%, rgba(255, 0, 140, 0.9) 99%);
}

.fixed_contact .contact_list li:first-child a {
  letter-spacing: 0.1em;
}

.fixed_contact .contact_list li a span {
  width: 100%;
  text-align: center;
}

.fixed_contact .contact_list li a span.icon img {
  margin-bottom: var(--size-8);
  width: auto;
  height: 41px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.shop_detail_page footer {
  padding-bottom: 152px;
}

.detail_page_nav {
  width: 100%;
  font-size: var(--size-12);
}

.detail_page_nav ul {
  width: 300px;
  margin: 0 auto var(--size-4);
  display: flex;
}

.detail_page_nav ul li {
  text-transform: uppercase;
  margin-bottom: var(--size-12);
}

.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-56);
}

/* プライバシーポリシー */
.policy_inner_box {
  padding: var(--size-32) var(--size-16);
}

.policy_header {
  height: var(--size-64);
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--colorImportantPink);
}
.policy_title {
  font-size: var(--size-16);
  color: white;
  font-weight: var(--fwSemiBold);
}

.policy_description {
  margin-bottom: var(--size-32);
  font-size: var(--size-12);
  text-align: center;
}

.policy_description p {
  display: inline-block;
  text-align: left;
  background: #f8f8f8;
  padding: var(--size-16);
  border-radius: var(--size-4);
}

.policy_item {
  margin-bottom: var(--size-24);
}

.policy_item p {
  font-size: var(--size-14);
  margin-bottom: var(--size-8);
}

.policy_item:last-child,
.policy_item p:last-child {
  margin-bottom: 0;
}

.policy_list {
  padding-left: 0;
  list-style-type: none;
  margin: 0 0 var(--size-8) 0;
}

.policy_list li {
  font-size: var(--size-14);
  padding-left: 1em;
  position: relative;
  margin-bottom: var(--size-8);
}

.policy_list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: -7px;
  font-size: var(--size-24);
}

.policy_list li:last-child {
  margin-bottom: 0;
}

/* 利用規約 */
.terms_inner_box {
  padding: var(--size-32) var(--size-16);
}

.terms_header {
  height: var(--size-64);
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--colorImportantPink);
}

.terms_site_name {
  font-size: var(--size-16);
}

.terms_title {
  font-size: var(--size-16);
  color: white;
  font-weight: var(--fwSemiBold);
}

.terms_description {
  margin-bottom: var(--size-32);
  font-size: var(--size-12);
  text-align: center;
}

.terms_description p {
  display: inline-block;
  text-align: left;
  background: #f8f8f8;
  padding: var(--size-16);
  border-radius: var(--size-4);
}

.terms_item {
  margin-bottom: var(--size-24);
}

.terms_item p {
  font-size: var(--size-14);
  margin-bottom: var(--size-8);
}

.terms_item:last-child, .terms_item p:last-child {
  margin-bottom: 0;
}

.item_title {
  font-size: var(--size-14);
  margin-bottom: var(--size-16);
  font-weight: var(--fwSemiBold);
  color: var(--colorImportantPink);
}

.terms_list {
  padding-left: 0;
  list-style-type: none;
  margin: 0 0 var(--size-8) 0;
}

.terms_list li {
  font-size: var(--size-14);
  padding-left: 1em;
  position: relative;
  margin-bottom: var(--size-8);
}

.terms_list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: -7px;
  font-size: var(--size-24);
}

.terms_list li:last-child {
  margin-bottom: 0;
}

/* 運営会社 */
.company_header {
  height: var(--size-64);
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--colorImportantPink);
}

.company_inner_box {
  padding: var(--size-32) var(--size-16);
}

.company_table {
  width: 100%;
  border-collapse: collapse;
}

.company_table th,
.company_table td {
  border: solid 1px var(--colorLightGray);
  padding: var(--size-16);
  vertical-align: middle;
}

.company_table th {
  width: 25%;
  background: #f8f8f8;
  font-size: var(--size-14);
  height: var(--size-56);
  font-weight: var(--fwNormal);
}

.company_table td {
  font-size: var(--size-14);
}

.company_note {
  color: var(--colorRed);
  margin-top: var(--size-8);
  font-size: var(--size-12);
}

.company_note.support_note {
  color: var(--colorBlack);
  text-decoration: none;
}

.company_link a {
  display: block;
  margin-top: var(--size-8);
  color: var(--colorBlue);
  font-size: var(--size-12);
}

.company_link a:hover {
  text-decoration: underline var(--colorBlue);
}

/* 有料掲載について */
.plan_header {
  height: var(--size-64);
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--colorImportantPink);
}

.plan_description {
  margin-bottom: var(--size-32);
  font-size: var(--size-12);
  text-align: center;
}

.plan_description p {
  display: inline-block;
  text-align: left;
  background: #f8f8f8;
  padding: var(--size-16);
  border-radius: var(--size-4);
}

.plan_inner_box {
  padding: var(--size-32) var(--size-16);
}

.plan_box {
  margin-bottom: var(--size-24);
}

.plan_box:last-child {
  margin-bottom: 0;
}

.plan_box h3 {
  color: var(--colorImportantPink);
  font-weight: var(--fwSemiBold);
  font-size: var(--size-16);
  margin-bottom: var(--size-16);
  padding-left: var(--size-16);
}

.plan_table {
  width: 100%;
  border-collapse: collapse;
}

.plan_table th,
.plan_table td {
  border: solid 1px var(--colorLightGray);
  padding: var(--size-16);
  vertical-align: middle;
}

.plan_table th {
  width: 25%;
  background: #f8f8f8;
  font-size: var(--size-14);
  height: var(--size-56);
  font-weight: var(--fwNormal);
}

.plan_table td {
  font-size: var(--size-14);
}

.plan_box .plan_note {
  padding: 0 16px;
}

.plan_box .plan_note p {
  font-size: var(--size-14);
  margin-bottom: var(--size-16);
}

.plan_box .system_note p:last-child {
  margin-bottom: 0;
}

.plan_box .plan_note p span {
  font-size: var(--size-12);
}

.plan_footer {
  padding: var(--size-8) var(--size-16) 0;
  display: flex;
  justify-content: center;
}

.plan_footer .back_btn {
  width: min(440px, 100%);
  height: var(--size-64);
  background: none;
  border: 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);
}

/* よくある質問 */
.faq_header {
  height: var(--size-64);
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--colorImportantPink);
}

.faq_title {
  font-size: var(--size-16);
  color: white;
  font-weight: var(--fwSemiBold);
}

.faq_inner {
  padding: var(--size-32) var(--size-16);
}

.faq_container {
  border: solid 1px var(--colorLightGray);
  border-radius: 4px;
  overflow: hidden;
}

.faq_item {
  border-bottom: 1px solid var(--colorLightGray);
}

.faq_item:last-child {
  border-bottom: none;
}

.faq_question {
  padding: var(--size-16);
  cursor: pointer;
  font-weight: normal;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--colorBlack);
  font-size: var(--size-14);
  flex-wrap: nowrap;
}

.faq_question_text {
  flex: 1;
  margin-right: var(--size-24);
}

/* Q/A アイコン */
.faq_icon {
  width: var(--size-32);
  height: var(--size-32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--size-16);
  flex-shrink: 0;
  color: white;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: var(--fwSemiBold);
}

.faq_question .faq_icon {
  background: #2b8aef;
}

.faq_answer .faq_icon {
  background: var(--colorImportantPink);
  color: white;
  border: solid 1px var(--colorImportantPink);
}

/* 矢印アイコン */
.faq_arrow {
  position: absolute;
  right: var(--size-16);
  width: var(--size-12);
  height: var(--size-12);
  border-right: 2px solid var(--colorLightGray);
  border-bottom: 2px solid var(--colorLightGray);
  transform: rotate(45deg);
}

/* アコーディオンアニメーション */
.faq_answer {
  padding: 0 var(--size-16);
  height: 0;
  overflow: hidden;
  transition: height 0.2s ease-out;
  will-change: height;
}

.faq_answer_inner {
  display: flex;
  padding: var(--size-16) 0;
}

.faq_text {
  margin: 0;
  font-size: var(--size-14);
  flex: 1;
}

.faq_text span {
  font-size: var(--size-12);
}

details summary::-webkit-details-marker {
  display: none;
}

.faq_item {
  transition: background-color 0.3s ease;
}

details[open] .faq_question {
  background: #f8f8f8;
  transition: background-color 0.2s ease;
}

.faq_list {
  margin: var(--size-8) 0;
}

.faq_list_item {
  margin-bottom: var(--size-16);
}

.faq_list_item span {
  font-size: var(--size-12);
}

.faq_list_item:last-child {
  margin-bottom: 0;
}

a.faq_link {
  color: var(--colorImportantPink);
  text-decoration: none;
  word-break: break-all;
}

a.faq_link:hover {
  text-decoration: underline;
}

/* フッター */
.faq_footer {
  padding: var(--size-32) var(--size-16) 0;
  display: flex;
  justify-content: center;
}

.faq_footer .back_btn {
  width: min(440px, 100%);
  height: var(--size-64);
  background: none;
  border: 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);
}

/* フォームセクション */
.form_section_title {
  font-size: var(--size-16);
  color: var(--colorBlack);
  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);
}

.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;
}

/* フォーム入力要素 */
.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;
}

textarea::placeholder {
    color: var(--colorLightGray);
}

/* 表示値 */
.form_display_value {
  padding: 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);
}

.form_select optgroup {
  color: var(--colorBlack);
  font-weight: var(--fwSemiBold);
}

.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_note {
  margin-top: var(--size-8);
  font-size: var(--size-12);
  color: var(--colorGray);
  line-height: 1.4;
}

/* お問い合わせ */
.contact_inner_box {
  padding: var(--size-32) var(--size-16);
}

.contact_form_notice {
  margin-bottom: var(--size-32);
  font-size: var(--size-12);
  text-align: center;
}

.contact_form_notice p {
  display: inline-block;
  text-align: left;
  background: #f8f8f8;
  padding: var(--size-16);
  border-radius: var(--size-4);
}

.contact_form_notice p:last-child {
  margin-bottom: 0;
}

.contact_footer {
  padding: var(--size-8) var(--size-16) 0;
  display: flex;
  justify-content: center;
}

/* 掲載申し込みフォーム */
.registration_block {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.registration_inner_box {
  padding: var(--size-32) var(--size-16);
  position: relative;
}

.button_container {
  display: flex;
  justify-content: space-between;
  gap: var(--size-16);
  margin-bottom: var(--size-32);
}

.button {
  height: var(--size-56);
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  border-radius: 4px;
  flex: 1;
  font-weight: var(--fwSemiBold);
  line-height: 1.1;
}

.button br {
  display: none;
}

.button span {
  font-size: var(--size-12);
}

a.button_plan {
  background-color: var(--colorImportantPink);
  color: white;
  border: solid 1px var(--colorImportantPink);
}

a.button_banner {
  background-color: white;
  color: var(--colorImportantPink);
  border: solid 1px var(--colorImportantPink);
}

a.button_faq {
  background-color: white;
  color: var(--colorImportantPink);
  border: solid 1px var(--colorImportantPink);
}

a.button_faq.banner_btn {
  width: 360px;
  flex: initial;
  margin: 0 auto;
}

.registration_form_block {
  padding: 0 var(--size-16) var(--size-16);
}

/* フォームセクション */
.registration_form > .form_section {
  margin-bottom: var(--size-24);
}

.registration_form > .form_section:last-child {
  margin-bottom: 0;
}

.registration_form > .form_section .form_section_title {
  font-size: var(--size-16);
  color: var(--colorImportantPink);
  margin-bottom: var(--size-16);
  padding-left: var(--size-16);
  font-weight: var(--fwSemiBold);
}

.registration_form > .form_section .form_section_title span {
  font-size: var(--size-12);
  margin-left: var(--size-4);
  font-weight: normal;
  color: var(--colorBlack);
}

/* フォームグループ */
.registration_form > .form_section .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);
}

.registration_form > .form_section .form_group .form_group_item {
  margin-bottom: var(--size-24);
}

.registration_form > .form_section .form_group .form_group_item:last-child {
  margin-bottom: 0;
}

.registration_form > .form_section .form_group .form_label {
  height: auto;
  border-left: none;
  display: block;
  font-size: var(--size-14);
  padding-left: 0;
  line-height: inherit;
}

.form_label_notice {
  font-size: var(--size-12);
  margin-left: var(--size-8);
}

.sub_label {
  font-size: var(--size-14);
  margin: var(--size-12) 0 var(--size-4) 0;
  font-weight: normal;
}

/* テキストエリア */
.form_textarea.registration_textarea {
  height: 150px;
}

.registration_form_note {
  margin-top: var(--size-8);
  font-size: var(--size-12);
}


.registration_form_note a {
  display: block;
  text-align: right;
  color: var(--colorBlue);
}

.registration_form_note a:hover {
  text-decoration: underline var(--colorBlue);
}

/* アラートボックス */
.alert_box {
  border-radius: var(--size-4);
  margin-bottom: 12px;
  font-size: var(--size-12);
}

.alert_box span {
  display: inline-block;
  margin-bottom: var(--size-4);
  color: var(--colorRed);
}

/* 電話番号入力グループ */
.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);
}

/* 郵便番号入力グループ */
.postal_code_group {
  display: flex;
  align-items: center;
  gap: var(--size-8);
}

.postal_mark {
  font-weight: var(--fwSemiBold);
}

.postal_part {
  width: var(--size-88) !important;
  text-align: center;
}

/* 名前入力グループ */
.name_input_group {
  display: flex;
  gap: var(--size-16);
}

.name_field {
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.name_field label {
  margin-right: var(--size-8);
  white-space: nowrap;
  font-size: var(--size-14);
}

input.request_count {
  width: var(--size-88);
  margin-right: var(--size-8);
  text-align: center;
}

.banner_request_note {
font-size: var(--size-12);
margin-top: -4px;
margin-bottom: var(--size-16);
}

.form_file_container {
  position: relative;
}

.form_file {
  width: var(--size-128);
  height: var(--size-32);
  position: absolute;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file_upload_button {
  width: var(--size-128);
  display: inline-block;
  padding: var(--size-4) var(--size-8);
  border: solid 1px var(--colorGray);
  border-radius: var(--size-4);
  background: #f8f8f8;
  cursor: pointer;
  font-size: var(--size-14);
  text-align: center;
}

.file_upload_status {
  margin-left: var(--size-8);
  font-size: var(--size-14);
}

.selected_files {
  margin-left: var(--size-8);
  font-size: var(--size-14);
}

/* 確認ボタン */
.verification_button {
  display: inline-block;
  color: white;
  background: var(--colorImportantPink);
  padding: var(--size-8) var(--size-12);
  border-radius: var(--size-4);
  font-size: var(--size-12);
  margin-top: var(--size-8);
  cursor: pointer;
}

.verification_button:hover {
  opacity: 0.9;
}

/* プライバシー、利用規約セクション */
.form_section.terms_section,
.form_section.privacy_terms_section {
  margin-bottom: 0;
}

.terms_container, .privacy_container {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid var(--colorLightGray);
  padding: var(--size-12);
  margin-bottom: var(--size-16);
  background: #f8f8f8;
  border-radius: var(--size-4);
  font-size: var(--size-12);
}

.faq_link_container {
  margin-bottom: var(--size-16);
}

.faq_link_container a {
  font-size: var(--size-14);
  color: var(--colorBlue);
}

.faq_link_container a:hover {
  text-decoration: underline var(--colorBlue);
}

.form_section.faq_privacy_terms_section .terms_container,
.form_section.faq_privacy_terms_section .privacy_container {
  margin-top: var(--size-24);
}

.terms_container h4, .privacy_container h3 {
  margin-bottom: var(--size-4);
  font-weight: var(--fwSemiBold);
}

.agreement {
  margin-bottom: var(--size-12);
}

.checkbox_container {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  cursor: pointer;
  font-size: var(--size-12);
  position: relative;
}

.checkbox_container input {
  position: absolute;
  opacity: 0;
}

.checkmark {
  width: var(--size-16);
  height: var(--size-16);
  background: white;
  border-radius: 2px;
  margin-right: var(--size-8);
  position: relative;
  flex-shrink: 0;
  border: 1px solid var(--colorLightGray);
}

input:checked + .checkmark {
  background-color: var(--colorImportantPink);
  border-color: var(--colorImportantPink);
}

input:checked + .checkmark:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.privacy_terms_notice {
  font-size: var(--size-12);
  color: var(--colorRed);
  margin-top: var(--size-24);
  font-weight: var(--fwSemiBold);
  text-align: center;
}

/* フッター */
.registration_footer, .banner_footer {
  padding: var(--size-8) var(--size-16) 0;
  display: flex;
  justify-content: center;
}

.submit_btn {
  width: min(440px, 100%);
  height: var(--size-64);
  background: var(--colorImportantPink);
  color: white;
  border: none;
  padding: 0 var(--size-16);
  border-radius: var(--size-4);
  cursor: pointer;
  font-size: var(--size-18);
  text-align: center;
  font-weight: var(--fwSemiBold);
}

.submit_btn.disabled {
  background: var(--colorLightGray);
  cursor: not-allowed;
  pointer-events: none;
}

.submit_btn:hover {
  opacity: 0.9;
}

.submit_btn2 {
  width: min(200px, 100%);
  height: var(--size-64);
  margin: 0 5px;
  background: var(--colorImportantPink);
  color: white;
  border: none;
  padding: 0 var(--size-16);
  border-radius: var(--size-4);
  cursor: pointer;
  font-size: var(--size-18);
  text-align: center;
  font-weight: var(--fwSemiBold);
}

.submit_btn2.correction {
  background: var(--colorDarkBlue);
}


form .required {
  font-size: var(--size-10-5);
  background: var(--colorRed);
  margin-left: var(--size-8);
  color: white;
  padding: 1px var(--size-4);
  border-radius: var(--size-4);
  display: inline-block;
}

/* オートフィル時の背景色を無効化 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: inherit !important;
    background-color: transparent !important;
}

/* Firefox用 */
input:-moz-autofill,
input:-moz-autofill:hover,
input:-moz-autofill:focus {
    background-color: transparent !important;
}

/* より汎用的な設定（すべてのinput要素に適用） */
input {
    background: white !important;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: var(--colorBlack) !important;
}

/* リンクスタイル */
.form_select a {
  color: var(--colorBlue);
  text-decoration: underline;
}

/* バナー依頼の上部テキスト */
.banner_description {
  margin-bottom: var(--size-32);
  font-size: var(--size-12);
  text-align: center;
}

.banner_description p {
  display: inline-block;
  text-align: left;
  background: #f8f8f8;
  padding: var(--size-16);
  border-radius: var(--size-4);
}

.ranking_shop_panel .shop_name {
  height: var(--size-48);
  background: var(--colorDarkBlue);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--size-16);
  font-optical-sizing: auto;
  font-style: normal;
}

/* 看板娘パネル */
.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-16);
  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;
  margin-bottom: var(--size-8);
  gap: var(--size-4);
}

.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;
  margin-bottom: var(--size-8);
  gap: var(--size-4);
}


.therapist_panel .data_box .icon_list_bottom li {
  width: fit-content;
  padding: 2px var(--size-4);
  font-size: var(--size-12);
  color: white;
  border-radius: var(--size-4);
  background: #ff74b3;
}

.therapist_panel .data_box .icon_list_bottom .event {
  background: var(--colorOrange);
}

.therapist_panel .data_box .icon_list_bottom .newface {
  background: var(--colorGreen);
}

.therapist_panel .data_box .icon_list_bottom .recommend {
  background: var(--colorYellow);
}

.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-24);
}

.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(--colorDarkBlue);
  border-radius: var(--size-4);
  border: solid 1px var(--colorDarkBlue);
}

.therapist_panel .reserve_btn a svg {
  width: var(--size-24);
  margin-right: var(--size-8);
  fill: var(--colorDarkBlue);
}

.therapist_panel .reserve_btn a:hover {
  opacity: .7;
}

/************** ハンバーガーメニュー *************/
.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;
}

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,
body.menu-open .floating_filter_btn {
  transform: translateX(256px);
  transition: transform 0.3s ease;
}

body.menu-open .mv_nav_block.mv_nav_clone {
  transform: translateX(68px) !important;
  transition: transform 0.3s ease;
}

/* モバイルナビゲーション */
.mobile_nav {
  position: fixed;
  top: var(--size-56);
  left: -256px;
  width: 256px;
  height: calc(100dvh - var(--size-56));
  transition: left 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
  background: var(--colorDarkBlue);
}

body.menu-open .mobile_nav {
  left: 0;
}

.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;
}

/* ナビコンテンツ */
.nav_content {
  margin: 0;
}

.mobile_nav li a {
  font-size: var(--size-14);
  border-bottom: 1px solid #605f73;
  padding: var(--size-16);
  display: block;
  text-decoration: none;
  color: white;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.mobile_nav li.no_click a {
  text-decoration: line-through;
}


.mobile_nav a:hover {
  color: var(--colorGray);
  background-color: var(--colorLightGray);
}

.parent_nav_section li a {
  color: white;
  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: 56px;
  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: 999;
  pointer-events: none;
}

.mobile_nav_overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile_nav * {
  transition: opacity 0.3s ease;
}


/* 404ページ専用スタイル */
.main_contents.not_found {
  height: calc(100dvh - 56px);
  background: rgba(255, 255, 255, .95);
}
.error_404_block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--size-64) var(--size-16);
}

.error_container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.error_number {
  font-size: var(--size-112);
  font-weight: var(--fwSemiBold);
  color: var(--colorImportantPink);
  line-height: 1;
  margin-bottom: var(--size-24);
  font-family: "Poppins", sans-serif;
}

.error_title {
  font-size: var(--size-24);
  font-weight: var(--fwSemiBold);
  color: var(--colorBlack);
  margin-bottom: var(--size-24);
}

.error_message {
  font-size: var(--size-14);
  line-height: 1.6;
  margin-bottom: var(--size-48);
}

.error_actions {
  display: flex;
  flex-direction: column;
  gap: var(--size-40);
}

.home_button {
  display: inline-block;
  background: var(--colorImportantPink);
  padding: var(--size-16) 0;
  border-radius: var(--size-4);
  text-decoration: none;
  font-weight: var(--fwSemiBold);
  font-size: var(--size-16);
  transition: all 0.3s ease;
}

.home_button:hover {
  color: white;
}

.quick_links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--size-16);
  font-size: var(--size-14);
}

.quick_links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-12);
  padding: var(--size-16) 0;
  border: 2px solid var(--colorImportantPink);
  border-radius: var(--size-4);
  text-decoration: none;
  color: var(--colorBlack);
  font-weight: var(--fwSemiBold);
  transition: all 0.3s ease;
  background: white;
}

.quick_links li a:hover {
  opacity: .75;
}

.quick_links li a.station {
  color: var(--colorImportantPink);
}

.quick_links li a.shop {
  color: var(--colorBlue);
  border-color: var(--colorBlue);
}

.quick_links li a.ranking {
  color: var(--colorYellow);
  border-color: var(--colorYellow);
}

.quick_links .icon {
  width: auto;
  height: var(--size-24);
  flex-shrink: 0;
}

.quick_links .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ローディング表示 */
.loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--size-24);
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--colorLightGray);
  border-top: 4px solid var(--colorPink);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-overlay p {
  font-size: var(--size-16);
  color: var(--colorBlack);
  font-weight: var(--fwSemiBold);
}

/* 電話番号モーダル（PC用） */
.tel_modal_overlay {
  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;
}
.tel_modal_overlay.is_active {
  display: flex;
  opacity: 1;
}
.tel_modal_box {
  width: min(400px, 90%);
  background: white;
  margin: auto;
  padding: var(--size-32) var(--size-24);
  position: relative;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.25);
  text-align: center;
  transform: scale(0.8) translateY(-20px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.tel_modal_overlay.is_active .tel_modal_box {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.tel_modal_icon {
  width: var(--size-48);
  height: var(--size-48);
  margin: 0 auto var(--size-16);
  background: var(--colorImportantPink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tel_modal_icon img {
  width: var(--size-24);
  height: var(--size-24);
  filter: brightness(0) invert(1);
}
.tel_modal_msg {
  font-size: var(--size-14);
  color: var(--colorBlack);
  line-height: 1.8;
  margin-bottom: var(--size-16);
}
.tel_modal_number {
  font-size: var(--size-32);
  font-weight: var(--fwSemiBold);
  color: var(--colorImportantPink);
  letter-spacing: 0.05em;
  margin-bottom: var(--size-24);
}
.tel_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;
  background: none;
  border: none;
  padding: var(--size-4);
}
.tel_modal_close:hover {
  opacity: 0.7;
}
