/* =====================================================
   Hero Slideshow & Animation System
   ===================================================== */

/* --- Keyframes --- */
@keyframes hp-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes hp-fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}
@keyframes hp-fade-static-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes hp-kenburns-in {
  from { transform: scale(1.00); opacity: 1; }
  to   { transform: scale(1.13); opacity: 1; }
}
@keyframes hp-kenburns-out {
  from { transform: scale(1.13); opacity: 1; }
  to   { transform: scale(1.00); opacity: 1; }
}
@keyframes hp-zoom-static-in {
  from { transform: scale(1.00); opacity: 0; }
  to   { transform: scale(1.13); opacity: 1; }
}
@keyframes hp-slide-in {
  from { transform: translateX(-40px); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
@keyframes hp-slide-out {
  from { transform: translateX(0);    opacity: 1; }
  to   { transform: translateX(40px); opacity: 0; }
}
@keyframes hp-slide-static-in {
  from { transform: translateX(-40px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes hp-sweep-static-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes hp-sweep-pass {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
/* Cast photo entrance animations */
@keyframes hp-cast-fade {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes hp-cast-kenburns-in  { from { transform: scale(1.00); } to { transform: scale(1.13); } }
@keyframes hp-cast-kenburns-out { from { transform: scale(1.13); } to { transform: scale(1.00); } }
@keyframes hp-cast-slide {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes hp-cast-shimmer-sweep {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* --- Hero Slideshow --- */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Preset: fade */
.hero-slideshow[data-preset="fade"] .hero-slide.active {
  animation: hp-fade-in 2s ease forwards;
}
.hero-slideshow[data-preset="fade"] .hero-slide.leaving {
  animation: hp-fade-out 2s ease forwards;
  z-index: 2;
}

/* Preset: kenburns — zoom-in / zoom-out alternating via data-zoom attribute set by JS */
.hero-slideshow[data-preset="kenburns"] .hero-slide.active,
.hero-slideshow[data-preset="kenburns"] .hero-slide.active[data-zoom="in"] {
  animation: hp-kenburns-in 5s ease-in-out forwards;
  opacity: 1;
}
.hero-slideshow[data-preset="kenburns"] .hero-slide.active[data-zoom="out"] {
  animation: hp-kenburns-out 5s ease-in-out forwards;
  opacity: 1;
}
.hero-slideshow[data-preset="kenburns"] .hero-slide.leaving {
  animation: hp-fade-out 0.65s ease forwards;
  z-index: 2;
}
.hero-slideshow[data-preset="kenburns"] .hero-slide img {
  width: 100%;
  height: 100%;
}

/* Preset: slide */
.hero-slideshow[data-preset="slide"] .hero-slide.active {
  animation: hp-slide-in 0.85s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero-slideshow[data-preset="slide"] .hero-slide.leaving {
  animation: hp-slide-out 0.85s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  z-index: 2;
}

/* Preset: shimmer */
.hero-slideshow[data-preset="shimmer"] .hero-slide.active {
  animation: hp-fade-in 0.85s ease forwards;
}
.hero-slideshow[data-preset="shimmer"] .hero-slide.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: hp-sweep-pass 1.6s ease-in-out 0.35s 1 forwards;
  pointer-events: none;
  z-index: 3;
}
.hero-slideshow[data-preset="shimmer"] .hero-slide.leaving {
  animation: hp-fade-out 0.6s ease forwards;
  z-index: 2;
}

/* Single slide (no switching): keep image visible */
.hero-slideshow[data-count="1"] .hero-slide {
  position: relative;
  inset: auto;
  opacity: 1;
}
.hero-slideshow[data-count="1"][data-preset="fade"] .hero-slide {
  animation: hp-fade-static-in 2s ease forwards;
}
.hero-slideshow[data-count="1"][data-preset="kenburns"] .hero-slide,
.hero-slideshow[data-count="1"][data-preset="kenburns"] .hero-slide[data-zoom="in"] {
  animation: hp-zoom-static-in 5s ease-in-out forwards;
}
.hero-slideshow[data-count="1"][data-preset="slide"] .hero-slide {
  animation: hp-slide-static-in 0.85s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero-slideshow[data-count="1"][data-preset="shimmer"] .hero-slide {
  animation: hp-sweep-static-in 0.6s ease forwards;
}
.hero-slideshow[data-count="1"][data-preset="shimmer"] .hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: hp-sweep-pass 1.6s ease-in-out 0.35s 1 forwards;
  pointer-events: none;
  z-index: 3;
}

/* --- Cast Photo Hover Slideshow (multiple photos) --- */
/* Cross-fade transition when switching photos */
.public-cast-photo {
  transition: opacity 1s ease;
}
/* Enter animations applied per animation type when photo changes */
[data-cast-anim="fade"] .public-cast-photo-wrap[data-hover-slides] .public-cast-photo.cast-photo-enter {
  animation: hp-cast-fade 1.2s ease forwards;
}
[data-cast-anim="slide"] .public-cast-photo-wrap[data-hover-slides] .public-cast-photo.cast-photo-enter {
  animation: hp-cast-slide 1s ease forwards;
}
[data-cast-anim="fade"] .public-cast-photo-wrap:not([data-hover-slides]) .public-cast-photo {
  animation: hp-fade-static-in 2s ease forwards;
}
[data-cast-anim="slide"] .public-cast-photo-wrap:not([data-hover-slides]) .public-cast-photo {
  animation: hp-slide-static-in 1s ease forwards;
}

:root {
  --site-bg: #f8f8f6;
  --site-panel: rgba(255,255,255,0.72);
  --site-panel-strong: rgba(255,255,255,0.78);
  --site-ink: #25211b;
  --site-muted: #6e675d;
  --site-line: rgba(155, 120, 50, 0.42);
  --site-accent: #b99648;
  --site-accent-strong: #8d6a2d;
  --site-accent-soft: #f3ead1;
  --site-hero: linear-gradient(135deg, rgba(25,19,10,0.28), rgba(185,150,72,0.12));
  --site-shadow: 0 14px 34px rgba(92, 76, 42, 0.08);
  --site-font-base: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --site-font-cast: var(--site-font-base);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  padding-top: 0;
  color: var(--site-ink);
  font-family: var(--site-font-base);
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.98), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(247,242,230,0.72), transparent 22%),
    linear-gradient(115deg, rgba(210,210,210,0.16) 0%, rgba(255,255,255,0) 22%, rgba(196,196,196,0.12) 38%, rgba(255,255,255,0) 54%, rgba(215,215,215,0.14) 72%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, #ffffff 0%, var(--site-bg) 100%);
}
a { color: inherit; text-decoration: none; }
.site-shell { min-height: 100vh; }
.site-nav-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom right, rgba(255,255,255,0.95), rgba(245,243,238,0.92));
  border-bottom: 1px solid rgba(155, 120, 50, 0.6);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.site-nav-bar-inner {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
}
.site-nav-bar .nav-brand {
  display: none;
}
.site-nav-bar .nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}
.site-nav-bar .nav-phone {
  display: none;
}
.site-content, .site-footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  min-height: 66px;
}
.site-brand-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}
.site-brand-fallback {
  display: grid;
  gap: 4px;
  align-items: center;
}
.site-brand-mark {
  font-family: "Times New Roman", Georgia, serif;
  font-size: 34px;
  letter-spacing: 0.02em;
  color: #a8b3c2;
  line-height: 1;
}
.site-brand-sub {
  font-size: 12px;
  letter-spacing: 0.32em;
  color: #a8b3c2;
  font-weight: 700;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex: 0 0 auto;
  margin-left: 8px;
}
.site-nav-link {
  padding: 10px 12px;
  border-radius: 0;
  color: var(--site-muted);
  font-family: var(--site-font-base);
  font-weight: 700;
  transition: background 140ms ease, color 140ms ease;
}
.site-nav-link:hover {
  background: rgba(185,150,72,0.12);
  color: var(--site-accent-strong);
}
.site-nav-link.current {
  color: var(--site-accent-strong);
  border-bottom: 2px solid rgba(155, 120, 50, 0.48);
}
.site-header-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 0;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.98), rgba(248,245,238,0.96));
  border: 1px solid var(--site-line);
  color: var(--site-accent-strong);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(141, 106, 45, 0.08);
}
.site-cta {
  padding: 12px 18px;
  border-radius: 0;
  background: linear-gradient(135deg, #c6a45a 0%, #9b7832 100%);
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(141, 106, 45, 0.18);
}
.site-content {
  padding: 0 0 88px;
}
body[data-analytics-page-type]:not([data-analytics-page-type="home"]) .site-content {
  padding-top: 24px;
}
.site-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin-bottom: 0;
}
.site-hero-wide {
  grid-template-columns: 1fr;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.site-hero-wide .site-hero-main {
  aspect-ratio: 16 / 7;
}
.site-hero-simple {
  grid-template-columns: 1fr;
}
.site-hero-simple-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 88px;
  padding: 8px 0 2px;
}
.site-hero-main {
  min-height: 0;
  aspect-ratio: 16 / 10;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #ece7dd, #d8cfbf);
  box-shadow: 0 30px 90px rgba(78, 60, 26, 0.12);
}
.site-hero-main::after {
  content: none;
}
.site-hero-copy {
  position: absolute;
  inset: auto 34px 36px 34px;
  z-index: 1;
  color: white;
}
.site-hero-copy h1 {
  margin: 0 0 12px;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(40px, 4.8vw, 74px);
  line-height: 0.98;
  letter-spacing: 0.02em;
  max-width: 10ch;
}
.site-hero-copy p {
  margin: 0 0 20px;
  max-width: 34rem;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.88);
}
.site-page-title {
  margin: 0;
  max-width: none;
  font-family: var(--site-font-base);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
  letter-spacing: 0.08em;
  color: var(--site-accent-strong);
  font-weight: 400;
}
.site-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.site-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 0;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
  font-weight: 700;
}
.site-area-filter {
  max-width: 875px;
  margin: 0 auto 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.site-area-filter .site-pill {
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border-color: rgba(188,155,93,0.36);
  color: #6b5730;
  box-shadow: 0 8px 20px rgba(120, 98, 54, 0.08);
}
.site-area-filter .site-pill.current {
  background: rgba(188,155,93,0.96);
  border-color: rgba(188,155,93,0.72);
  color: #ffffff;
}
.site-hero-side {
  display: grid;
  gap: 18px;
  align-content: start;
}
.site-card {
  background: var(--site-panel);
  border: 1px solid var(--site-line);
  border-radius: 0;
  padding: 24px;
  box-shadow: var(--site-shadow);
  backdrop-filter: blur(4px);
}
.site-card h2, .site-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-family: var(--site-font-base);
  font-weight: 400;
}
.site-section-title {
  margin: 0 0 16px;
  font-family: var(--site-font-base);
  font-size: 32px;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--site-accent-strong);
}
.site-section-title-stacked {
  display: grid;
  gap: 4px;
  text-align: center;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
}
.site-section-title-main {
  display: block;
  font-size: 37px;
  letter-spacing: 0.05em;
  line-height: 1.12;
  font-weight: 500;
}
.site-section-title-sub {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  font-weight: 600;
}
.site-section {
  margin-bottom: 28px;
}
.site-section.site-section-events {
  margin-top: 10px;
}
.site-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}
.site-section-head-narrow {
  width: min(100%, 875px);
  margin-left: auto;
  margin-right: auto;
}
.site-section-link {
  color: var(--site-accent-strong);
  font-weight: 800;
  font-size: 14px;
}
.site-section-foot {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.site-section-foot .site-section-link {
  padding: 10px 20px;
  border: 1px solid var(--site-line);
  background: rgba(255,255,255,0.82);
  font-size: 13px;
}
.site-event-slider {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid var(--site-line);
  background: var(--site-panel-strong);
  box-shadow: var(--site-shadow);
  backdrop-filter: blur(4px);
  width: min(100%, 875px);
  margin: 0 auto;
}
.site-event-track {
  display: flex;
  transition: transform 320ms ease;
}
.site-event-slide {
  min-width: 100%;
  position: relative;
}
.site-event-slider[data-count="1"][data-preset="fade"] .site-event-slide {
  animation: hp-fade-static-in 2s ease forwards;
}
.site-event-slider[data-count="1"][data-preset="kenburns"] .site-event-slide img {
  animation: hp-zoom-static-in 5s ease-in-out forwards;
}
.site-event-slider[data-count="1"][data-preset="slide"] .site-event-slide {
  animation: hp-slide-static-in 0.85s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.site-event-slider[data-count="1"][data-preset="shimmer"] .site-event-slide {
  animation: hp-sweep-static-in 0.6s ease forwards;
}
.site-event-slider[data-count="1"][data-preset="shimmer"] .site-event-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: hp-sweep-pass 1.6s ease-in-out 0.35s 1 forwards;
  pointer-events: none;
  z-index: 3;
}
.site-event-slide a,
.site-event-slide span {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 3 / 1;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(248,244,234,0.68));
}
.site-event-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.site-event-nav {
  position: absolute;
  inset: auto 16px 16px auto;
  display: inline-flex;
  gap: 8px;
  z-index: 2;
}
.site-event-dot {
  width: 10px;
  height: 10px;
  border-radius: 0;
  border: 0;
  background: rgba(255,255,255,0.48);
  padding: 0;
  cursor: pointer;
}
.site-event-dot.active {
  background: #fff;
}
.site-cast-slider {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  width: min(100%, 875px);
  margin: 0 auto;
}
.site-cast-nav {
  position: absolute;
  inset: 50% 12px auto 12px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 3;
}
.site-cast-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(155, 120, 50, 0.35);
  background: rgba(255,255,255,0.88);
  color: var(--site-accent-strong);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 10px 22px rgba(141, 106, 45, 0.14);
}
.site-cast-track {
  display: flex;
  align-items: flex-start;
  transition: transform 320ms ease;
}
.site-cast-slide {
  min-width: 100%;
  padding-bottom: 14px;
  box-sizing: border-box;
}
.site-cast-slide-grid {
  display: grid;
  grid-template-columns: repeat(var(--site-cast-count-pc), minmax(0, 1fr));
  gap: 14px;
  justify-content: center;
  padding-bottom: 8px;
  box-sizing: border-box;
}
.site-cast-slide-grid .public-cast-card {
  width: 100%;
  max-width: 224px;
  justify-self: stretch;
  box-shadow: none;
}
.site-grid.three.public-therapist-card-grid,
.site-cast-slide-grid {
  grid-template-columns: repeat(var(--site-cast-count-pc), minmax(0, 224px));
}
.site-overlay-card {
  position: relative;
  overflow: hidden;
}
.site-overlay-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 16px 16px;
  background: linear-gradient(180deg, rgba(18,18,18,0) 0%, rgba(18,18,18,0.74) 55%, rgba(18,18,18,0.88) 100%);
  color: #fff;
  display: grid;
  gap: 6px;
}
.site-overlay-card-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}
.site-overlay-card-meta {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  font-weight: 700;
}
.site-video-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(18,18,18,0.72);
  border: 1px solid rgba(255,255,255,0.34);
  color: #fff;
  font-size: 16px;
  z-index: 2;
}
.site-grid {
  display: grid;
  gap: 18px;
}
.site-section-body-narrow {
  width: min(100%, 875px);
  margin: 0 auto;
}
.site-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.site-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.public-cast-card {
  overflow: hidden;
  padding: 0;
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 5px;
  box-shadow:
    0 8px 18px rgba(92, 76, 42, 0.10),
    0 18px 42px rgba(92, 76, 42, 0.20);
  backdrop-filter: blur(2px);
}
.public-cast-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}
.public-cast-photo-wrap[data-hover-slides] {
  display: grid;
}
.public-cast-photo-wrap[data-hover-slides] > * {
  grid-area: 1 / 1;
}
.public-cast-photo-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.public-cast-photo {
  width: 100%;
  height: auto;
  display: block;
}
.public-cast-photo-wrap[data-hover-slides] .public-cast-photo-layer {
  opacity: 0;
  transition: opacity 0.55s ease;
}
.public-cast-photo-wrap[data-hover-slides] .public-cast-photo-layer.is-active {
  opacity: 1;
}
.public-cast-sweep-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  background-size: 200% 100%;
}
.public-cast-sns-badges {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  z-index: 4;
}
.public-cast-photo-wrap:has(.public-reservation-status) .public-cast-sns-badges {
  bottom: 42px;
}
.public-cast-sns-badge {
  width: 28px;
  height: 28px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(15, 23, 42, 0.86);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(6px);
  overflow: hidden;
}
.public-cast-sns-badge .sns-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.public-cast-sns-badge.is-x { background: rgba(17, 24, 39, 0.88); }
.public-cast-sns-badge.is-bluesky { background: rgba(14, 116, 144, 0.9); }
.public-cast-sns-badge.is-zero2 { background: rgba(220, 38, 38, 0.88); }
.public-cast-sns-badge.is-free { background: rgba(95, 58, 12, 0.88); }
.public-cast-body {
  background: rgba(255,255,255,0.95);
  padding: 20px 20px 22px;
  display: grid;
  gap: 8px;
  font-family: var(--site-font-cast);
}
.public-cast-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--site-accent-strong);
  line-height: 1.25;
  text-align: center;
}
.public-cast-age {
  margin-left: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--site-accent-strong);
}
.public-cast-specs {
  display: grid;
  justify-items: center;
  gap: 2px;
  color: var(--site-accent);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}
.public-cast-measure-item {
  display: block;
  white-space: nowrap;
}
.public-cast-measure-height {
  font-size: 12px;
}
.public-cast-measure-three-size {
  font-size: 12px;
  letter-spacing: 0;
}
.public-cast-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(35px, auto);
  gap: 0;
  width: 100%;
  border-top: 0.5px solid var(--site-line);
  border-bottom: 0.5px solid var(--site-line);
  border-radius: 0;
  overflow: hidden;
  background: #fefefe;
  box-sizing: border-box;
}
.public-schedule-card-grid .public-cast-tags,
.public-reserve-card-grid .public-cast-tags,
.public-therapist-card-grid .public-cast-tags {
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
}
.site-cast-slide-grid .public-cast-tags {
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
}
.public-top-schedule-card .public-cast-tags {
  width: calc(100% + 36px);
  margin-left: -18px;
  margin-right: -18px;
}
.public-cast-tags.is-mira {
  border-color: rgba(183, 153, 102, 0.55);
  background: #fefefe;
}
.public-cast-tags .public-cast-tag:nth-child(odd) {
  border-right: 0.5px solid var(--site-line);
}
.public-cast-tags .public-cast-tag:nth-child(n+3) {
  border-top: 0.5px solid var(--site-line);
}
.public-cast-intro {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
}
.public-cast-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--site-accent-strong);
  font-size: 12px;
  font-weight: 500;
  font-family: var(--site-font-cast);
  min-height: 35px;
  min-width: 0;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
  box-sizing: border-box;
}
.public-cast-tag.is-short {
  justify-content: center;
  text-align: center;
}
.public-cast-tag.is-mid {
  justify-content: center;
  text-align: center;
}
.public-cast-tag.is-long {
  justify-content: flex-start;
  text-align: left;
  font-size: clamp(8px, 2.2vw, 10px);
  letter-spacing: -0.01em;
}
.public-cast-tag.is-empty {
  color: transparent;
}
.public-cast-tag:nth-child(n+5) {
  display: none;
}
.public-therapist-summary .public-cast-tag.is-mid,
.public-therapist-summary .public-cast-tag.is-long {
  justify-content: center;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0;
}
.public-muted {
  color: var(--site-muted);
  line-height: 1.75;
  font-size: 14px;
}
.public-schedule-item, .public-pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--site-line);
}
.public-schedule-item:last-child, .public-pricing-row:last-child { border-bottom: 0; }
.public-pricing-stack {
  display: grid;
  gap: 18px;
}
.public-pricing-section {
  border-top: 1px solid rgba(155, 120, 50, 0.55);
  border-bottom: 1px solid rgba(155, 120, 50, 0.55);
  background: linear-gradient(180deg, rgba(255,255,255,0.58), rgba(255,255,255,0.42));
}
.public-pricing-band {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(155, 120, 50, 0.4);
  color: var(--site-accent-strong);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 20px;
  line-height: 1.35;
  background: linear-gradient(180deg, rgba(255,250,240,0.9), rgba(247,239,223,0.72));
}
.public-pricing-body {
  padding: 14px 18px 16px;
  display: grid;
  gap: 10px;
}
.public-pricing-row {
  padding: 0;
  border-bottom: 0;
  align-items: baseline;
}
.public-pricing-name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}
.public-pricing-meta {
  margin-top: 3px;
  font-size: 12px;
}
.public-pricing-price {
  font-size: 16px;
  font-weight: 800;
  color: #2d2414;
  white-space: nowrap;
}
.public-pricing-group-copy {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(155, 120, 50, 0.22);
  line-height: 1.85;
}
.public-access-list {
  display: grid;
  gap: 18px;
}
.public-access-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 18px;
  align-items: stretch;
}
.public-access-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}
.public-access-copy .site-section-title {
  margin: 0;
}
.public-access-text {
  color: #5f4b35;
  line-height: 1.9;
  font-size: 14px;
}
.public-access-map {
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(174, 137, 89, 0.24);
  background: #f7efe2;
}
.public-access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}
.public-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 0;
  background: linear-gradient(to right, rgba(243,234,209,0.95), rgba(255,249,236,0.95));
  border: 1px solid rgba(155, 120, 50, 0.28);
  color: var(--site-accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-family: var(--site-font-cast);
}
.public-top-schedule-grid {
  display: grid;
  gap: 12px;
}
.public-top-schedule-cards {
  display: grid;
  grid-template-columns: repeat(var(--site-cast-count-pc), minmax(0, 224px));
  gap: 14px;
  width: min(100%, 875px);
  margin: 0 auto;
  justify-content: center;
}
.public-top-schedule-card {
  width: 100%;
  max-width: 224px;
  justify-self: stretch;
  padding: 0;
  overflow: hidden;
  border: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(248,244,235,0.64));
}
.public-top-schedule-card-media {
  position: relative;
  border-bottom: 1px solid var(--site-line);
  background: linear-gradient(180deg, #f4efe6, #ddd2bf);
}
.public-top-schedule-card-media img {
  width: 100%;
  height: auto;
  display: block;
}
.public-cast-time {
  color: var(--site-accent-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}
.public-card-reserve-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 12px;
  background: linear-gradient(135deg, var(--site-accent) 0%, var(--site-accent-strong) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  margin-top: 4px;
}
.public-top-schedule-card-body {
  padding: 16px 18px 18px;
  display: grid;
  gap: 10px;
}
.public-reservation-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  font-family: var(--site-font-base);
}
.public-cast-photo-wrap .public-reservation-status {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  min-height: 32px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(4px);
  color: var(--site-accent-strong);
  z-index: 3;
}
.public-cast-photo-wrap .public-reservation-status.next-available {
  background: rgba(255, 255, 255, 0.88);
  color: var(--site-accent-strong);
}
.public-cast-photo-wrap .public-reservation-status.sold-out {
  background: rgba(132, 27, 27, 0.82);
  color: #fff;
}
.public-top-schedule-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}
.public-top-schedule-card-name {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  font-family: var(--site-font-cast);
}
.public-top-schedule-card-copy {
  min-height: 48px;
}
.public-top-schedule-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.public-top-schedule-actions .site-pill,
.public-top-schedule-actions .site-cta {
  justify-content: center;
}
.public-top-schedule-actions .site-pill {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(155, 120, 50, 0.34);
  color: var(--site-accent-strong);
}
.public-top-schedule-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--site-line);
  border-radius: 0;
  padding: 14px 16px;
  background: rgba(255,255,255,0.34);
}
.public-top-schedule-item strong {
  font-size: 17px;
}
.public-top-card-grid {
  display: grid;
  grid-template-columns: repeat(var(--site-cast-count-pc), minmax(0, 1fr));
  gap: 16px;
}
.public-top-news-list {
  display: grid;
  gap: 0;
}
.public-top-news-item {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--site-line);
  align-items: center;
}
.public-top-news-item:last-child {
  border-bottom: 0;
}
.public-top-news-date {
  color: var(--site-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.public-top-news-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--site-accent-strong);
}
.public-top-story-card {
  display: block;
  padding: 0;
  height: 100%;
  border: none;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(249,246,238,0.62));
  box-shadow:
    0 8px 18px rgba(92, 76, 42, 0.10),
    0 18px 42px rgba(92, 76, 42, 0.20);
}
.public-photo-blog-grid .public-top-story-card {
  border: none !important;
  border-radius: 5px;
  overflow: hidden;
  box-shadow:
    0 8px 18px rgba(92, 76, 42, 0.10),
    0 18px 42px rgba(92, 76, 42, 0.20);
}
.public-photo-blog-grid {
  width: min(100%, 875px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(var(--site-cast-count-pc), minmax(0, 1fr));
  gap: 16px;
}
.public-top-story-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}
.public-top-story-card .public-muted {
  margin: 0;
}
.public-top-story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  color: var(--site-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.public-top-story-thumb {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(248,244,234,0.7));
}
.public-top-empty {
  display: grid;
  place-items: center;
  min-height: 220px;
  text-align: center;
}
.site-schedule-tabs {
  width: min(100%, 875px);
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr)) 44px;
  border: 1px solid var(--site-line);
  background: rgba(255,255,255,0.72);
}
/* 旧HTML(前週ナビあり)が残っていても崩れないよう、先頭の前週ナビは常に非表示 */
.site-schedule-tabs > .site-schedule-tab-nav:first-child {
  display: none;
}
.site-schedule-tab-nav,
.site-schedule-tab {
  min-height: 58px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--site-accent-strong);
  border-right: 1px solid var(--site-line);
}
.site-schedule-tab-nav:last-child {
  border-right: 0;
}
.site-schedule-tab {
  gap: 2px;
  padding: 8px 4px;
  font-weight: 700;
  text-align: center;
  font-family: var(--site-font-base);
}
.site-schedule-tab > * {
  display: block;
}
.site-schedule-tab strong {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}
.site-schedule-tab span {
  font-size: 15px;
  line-height: 1.2;
}
.site-schedule-tab small {
  font-size: 13px;
  color: var(--site-accent-strong);
}
.site-schedule-tab.current {
  background: linear-gradient(180deg, rgba(188,155,93,0.96), rgba(176,141,76,0.92));
  color: #fff;
}
.site-schedule-tab.current small {
  color: rgba(255,255,255,0.88);
}
.public-reserve-time-grid {
  width: min(100%, 875px);
  margin: 0 auto;
  padding: 14px 16px;
}
.public-reserve-time-grid-head {
  display: grid;
  grid-template-columns: 60px repeat(7, minmax(94px, 1fr)) 54px;
  align-items: stretch;
  border-bottom: 1px solid rgba(188,155,93,0.32);
}
.public-reserve-time-grid-corner {
  border-right: 1px solid rgba(188,155,93,0.32);
}
.site-schedule-tab.public-reserve-time-day {
  min-height: 54px;
  padding: 8px 4px;
  border-left: 1px solid rgba(188,155,93,0.32);
  border-right: 0;
}
.public-reserve-time-next-week {
  justify-content: center;
  padding: 0;
  border-radius: 0;
  border-left: 1px solid rgba(188,155,93,0.32);
  border-right: 0;
  background: rgba(188,155,93,0.96);
  border-color: rgba(188,155,93,0.7);
  color: #fff;
  font-size: 22px;
  line-height: 1;
}
.public-reserve-time-grid-body {
  display: grid;
  gap: 0;
}
.public-reserve-time-row {
  display: grid;
  grid-template-columns: 60px repeat(7, minmax(94px, 1fr)) 54px;
  align-items: stretch;
}
.public-reserve-time-label {
  font-size: 13px;
  color: var(--site-muted);
  padding: 10px 8px;
  border-top: 1px solid rgba(188,155,93,0.32);
}
.public-reserve-time-cell {
  justify-content: center;
  min-height: 46px;
  padding: 10px 0;
  border-radius: 0;
  border-left: 1px solid rgba(188,155,93,0.32);
  border-top: 1px solid rgba(188,155,93,0.32);
}
.public-reserve-time-cell-na {
  background: rgba(255,255,255,0.78);
  border-color: rgba(188,155,93,0.32);
  color: #8a8479;
}
.public-reserve-time-cell-tel {
  background: #f6e4b0;
  border-color: #c89c3d;
  color: #7d5a08;
}
.public-reserve-time-cell-available {
  background: rgba(188,155,93,0.96);
  border-color: rgba(188,155,93,0.68);
  color: #ffffff;
}
.public-reserve-time-cell-busy {
  background: #fff7df;
  border-color: #d8b04f;
  color: #b98300;
}
.public-reserve-time-tail {
  border-left: 1px solid rgba(188,155,93,0.32);
  border-top: 1px solid rgba(188,155,93,0.32);
  background: rgba(255,255,255,0.78);
}
.public-reserve-card-grid .public-chip {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
}
.public-schedule-card-grid {
  width: min(100%, 875px);
  margin: 0 auto;
  justify-content: center;
  gap: 14px;
}
.public-reserve-card-grid {
  width: min(100%, 875px);
  margin: 0 auto;
}
.public-therapist-card-grid {
  width: min(100%, 875px);
  margin: 0 auto;
  justify-content: center;
  gap: 14px;
}
.public-therapist-card-grid .public-cast-card {
  width: 100%;
  max-width: 224px;
  justify-self: stretch;
}
.site-grid.three.public-schedule-card-grid,
.site-grid.three.public-reserve-card-grid,
.site-grid.three.public-therapist-card-grid {
  grid-template-columns: repeat(var(--site-cast-count-pc), minmax(0, 1fr));
}
.site-grid.three.public-schedule-card-grid {
  grid-template-columns: repeat(var(--site-cast-count-pc), minmax(0, 224px));
}
.site-grid.three.public-therapist-card-grid {
  grid-template-columns: repeat(var(--site-cast-count-pc), minmax(0, 224px));
}
.public-schedule-card-grid .public-cast-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,244,235,0.8));
  width: 100%;
  max-width: 224px;
  justify-self: stretch;
}
.public-schedule-card-grid .public-chip {
  margin-bottom: 2px;
}
.site-panel-band {
  padding: 22px;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.66), rgba(250,246,237,0.58));
  border: 1px solid var(--site-line);
  box-shadow: var(--site-shadow);
  backdrop-filter: blur(4px);
}
.public-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}
.public-gallery {
  display: grid;
  gap: 12px;
}
.public-photo-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--site-line);
  background: rgba(255,255,255,0.74);
}
.public-photo-track {
  display: flex;
  transition: transform 320ms ease;
  touch-action: pan-y;
}
.public-photo-slide {
  min-width: 100%;
}
.public-photo-slide img {
  width: 100%;
  height: auto;
  display: block;
  background: rgba(255,255,255,0.72);
}
.public-photo-nav {
  position: absolute;
  inset: 50% 0 auto 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
}
.public-photo-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid var(--site-line);
  background: rgba(255,255,255,0.88);
  color: var(--site-accent-strong);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
}
.public-photo-dots {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.public-photo-thumb {
  padding: 0;
  border: 1px solid rgba(191, 164, 111, 0.32);
  background: rgba(255,255,255,0.72);
  cursor: pointer;
  overflow: hidden;
}
.public-photo-thumb.active {
  border-color: var(--site-accent-strong);
  box-shadow: inset 0 0 0 1px var(--site-accent-strong);
}
.public-photo-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.public-therapist-summary {
  display: grid;
  gap: 18px;
}
.public-therapist-spec-block {
  display: grid;
  gap: 8px;
}
.public-therapist-meta-line {
  color: var(--site-ink);
  font-size: 17px;
  line-height: 1.7;
}
.public-sns-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.public-sns-link {
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  background: rgba(255,255,255,0.76);
  color: var(--site-accent-strong);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  overflow: hidden;
}
.public-sns-link .sns-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.public-therapist-schedule-list {
  display: grid;
  gap: 10px;
}
.public-therapist-schedule-row {
  display: grid;
  grid-template-columns: 108px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(191, 164, 111, 0.45);
}
.public-therapist-schedule-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.public-therapist-schedule-day {
  font-weight: 700;
  color: var(--site-ink);
}
.public-therapist-schedule-time {
  color: var(--site-ink);
  font-weight: 600;
}
.site-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(24, 19, 12, 0.58);
  z-index: 80;
}
.site-modal.open {
  display: flex;
}
.site-modal-dialog {
  width: min(520px, calc(100% - 24px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--site-line);
  box-shadow: 0 20px 40px rgba(28, 20, 8, 0.18);
  padding: 18px;
}
.site-modal-close {
  display: inline-flex;
  margin-left: auto;
  border: 1px solid var(--site-line);
  background: rgba(255,255,255,0.9);
  color: var(--site-accent-strong);
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 700;
}
.site-modal-media {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 16px;
}
.site-modal-media img,
.site-modal-media video {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--site-line);
  background: rgba(255,255,255,0.76);
}
.public-hero-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.public-thumb-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.public-thumb-stack img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 0;
  border: 1px solid var(--site-line);
}
.site-footer {
  border-top: 1px solid rgba(155, 120, 50, 0.6);
  background: linear-gradient(to bottom right, rgba(255,255,255,0.88), rgba(242,242,242,0.84));
  color: var(--site-muted);
}
.site-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  text-align: center;
}
/* --- サイトマップナビ --- */
.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 36px;
}
.site-footer-nav-link {
  color: var(--site-ink);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.site-footer-nav-link:hover {
  color: var(--site-accent-strong);
}
/* --- ロゴ / 店名 --- */
.site-footer-logo {
  margin-bottom: 24px;
}
.site-footer-logo img {
  max-height: 70px;
  width: auto;
}
.site-footer-store-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--site-ink);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
/* --- TEL / 営業時間 / 受付時間 --- */
.site-footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}
.site-footer-info-line {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--site-muted);
}
.site-footer-info-line:first-child {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--site-ink);
}
/* --- SNSバッジ --- */
.site-footer-sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.site-footer-sns-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: rgba(0, 0, 0, 0.12);
  transition: opacity 0.2s;
  overflow: hidden;
}
.site-footer-sns-badge.has-icon {
  text-indent: -9999px;
  padding: 0;
}
.site-footer-sns-badge .sns-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.site-footer-sns-badge:hover {
  opacity: 0.78;
}
.site-footer-sns-badge.is-line {
  background: #06c755;
}
.site-footer-sns-badge.is-x {
  background: #000;
}
.site-footer-sns-badge.is-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.site-footer-sns-badge.is-tiktok {
  background: #010101;
}
.site-footer-sns-badge.is-bluesky {
  background: #0085ff;
}
.site-footer-sns-badge.is-zero2 {
  background: #1a1a2e;
}
.site-footer-sns-badge.is-youtube {
  background: #ff0000;
}
.site-footer-sns-badge.is-link {
  background: rgba(0, 0, 0, 0.12);
}
/* --- 外部リンクバナー --- */
.site-footer-external-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
}
.site-footer-external-tag img {
  max-width: 100%;
  height: auto;
}
/* --- コピーライト --- */
.site-footer-copyright {
  font-size: 12px;
  color: var(--site-muted);
  letter-spacing: 0.04em;
}
@media (max-width: 960px) {
  .site-modal-dialog {
    width: min(100%, calc(100% - 16px));
    padding: 18px;
  }
  .site-hero,
  .public-detail,
  .site-grid.two,
  .site-grid.three {
    grid-template-columns: 1fr;
  }
  .site-footer-inner {
    padding: 36px 16px 24px;
  }
  .site-footer-nav {
    gap: 6px 16px;
    margin-bottom: 28px;
  }
  .site-footer-nav-link {
    font-size: 12px;
  }
  .site-footer-external-tag {
    gap: 12px;
  }
  .site-footer-external-tag img {
    max-width: min(28vw, 120px);
    height: auto;
  }
  .public-top-card-grid,
  .public-photo-blog-grid {
    grid-template-columns: repeat(var(--site-cast-count-sp), minmax(0, 1fr));
    gap: 10px;
  }
  .site-hero-simple-inner {
    min-height: 64px;
    padding: 4px 0 0;
  }
  .site-page-title {
    font-size: 26px;
    letter-spacing: 0.06em;
  }
  .site-section-title {
    font-size: 24px;
  }
  .site-section-title-main {
    font-size: 27px;
  }
  .site-section-title-sub {
    font-size: 9px;
  }
  .site-schedule-tabs {
    grid-template-columns: repeat(7, minmax(0, 1fr)) 34px;
    margin-bottom: 16px;
  }
  .public-reserve-time-grid {
    padding: 12px 0;
    overflow-x: auto;
  }
  .public-reserve-time-grid-head {
    min-width: 768px;
    grid-template-columns: 54px repeat(7, minmax(92px, 1fr)) 42px;
  }
  .public-reserve-time-row {
    min-width: 726px;
    grid-template-columns: 54px repeat(7, minmax(92px, 1fr)) 42px;
  }
  .public-reserve-time-label {
    font-size: 12px;
    padding: 8px 6px;
  }
  .public-reserve-time-cell {
    min-height: 42px;
    padding: 8px 0;
    font-size: 12px;
  }
  .site-schedule-tab.public-reserve-time-day {
    min-height: 48px;
    padding: 7px 2px;
  }
  .public-reserve-time-next-week {
    font-size: 18px;
  }
  .public-therapist-schedule-row {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: start;
  }
  .public-photo-dots {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .site-schedule-tab-nav,
  .site-schedule-tab {
    min-height: 48px;
  }
  .site-schedule-tab strong {
    font-size: 16px;
  }
  .site-schedule-tab span {
    font-size: 11px;
  }
  .site-schedule-tab small {
    font-size: 10px;
  }
  .site-grid.three.public-schedule-card-grid,
  .site-grid.three.public-reserve-card-grid,
  .site-grid.three.public-therapist-card-grid {
    grid-template-columns: repeat(var(--site-cast-count-sp), minmax(0, 1fr));
    gap: 10px;
  }
  .public-schedule-card-grid .public-cast-card,
  .public-reserve-card-grid .public-cast-card,
  .public-therapist-card-grid .public-cast-card {
    width: 100%;
    max-width: none;
  }
  .public-schedule-card-grid .public-cast-body,
  .public-reserve-card-grid .public-cast-body,
  .public-therapist-card-grid .public-cast-body {
    padding: 12px 14px 14px;
    gap: 6px;
  }
  .public-schedule-card-grid .public-cast-name,
  .public-reserve-card-grid .public-cast-name,
  .public-therapist-card-grid .public-cast-name {
    font-size: 17px;
    line-height: 1.2;
  }
  .public-cast-age {
    font-size: 12px;
    margin-left: 4px;
  }
  .public-cast-specs {
    display: grid;
    justify-items: center;
    gap: 2px;
    font-size: clamp(10px, 3vw, 12px);
    line-height: 1.25;
    white-space: normal;
    overflow: visible;
  }
  .public-cast-measure-height {
    font-size: clamp(10px, 2.9vw, 11.7px);
  }
  .public-cast-measure-three-size {
    display: block;
    width: 100%;
    font-size: clamp(9px, 2.4vw, 10px);
    line-height: 1.2;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    text-align: center;
  }
  .public-cast-tags {
    grid-auto-rows: minmax(31px, auto);
  }
  .public-schedule-card-grid .public-cast-tags,
  .public-reserve-card-grid .public-cast-tags,
  .public-therapist-card-grid .public-cast-tags {
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
  }
  .site-cast-slide-grid .public-cast-tags {
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
  }
  .public-top-schedule-card .public-cast-tags {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
  }
  .public-cast-tag {
    min-height: 31px;
    padding: 2px 6px;
    font-size: clamp(9px, 2.6vw, 11px);
    line-height: 1.15;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
  }
  .public-cast-tag.is-long {
    font-size: clamp(7.2px, 1.95vw, 9.2px);
    letter-spacing: -0.02em;
  }
  .public-cast-tag.is-mid {
    justify-content: flex-start;
    text-align: left;
    font-size: clamp(7.6px, 2.05vw, 9.6px);
    letter-spacing: -0.015em;
  }
  .public-therapist-summary .public-cast-tag.is-mid,
  .public-therapist-summary .public-cast-tag.is-long {
    justify-content: center;
    text-align: center;
    font-size: clamp(9px, 2.6vw, 11px);
    letter-spacing: 0;
  }
  .public-schedule-card-grid .public-muted:last-child,
  .public-therapist-card-grid .public-muted:last-child {
    display: none;
  }
  .public-schedule-card-grid .public-chip {
    padding: 4px 8px;
    font-size: 10px;
  }
  .public-top-story-card {
    padding: 0;
  }
  .public-top-story-card h3 {
    font-size: 13px;
    line-height: 1.35;
  }
  .public-top-story-card .site-overlay-card-body {
    padding: 10px 8px 8px;
    gap: 4px;
  }
  .public-top-story-card .site-overlay-card-meta {
    font-size: 10px;
  }
  .site-video-badge {
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .public-pricing-band {
    padding: 10px 14px;
    font-size: 18px;
  }
  .public-pricing-body {
    padding: 12px 14px 14px;
    gap: 8px;
  }
  .public-pricing-name {
    font-size: 14px;
  }
  .public-pricing-price {
    font-size: 15px;
  }
  .public-pricing-group-copy {
    padding-top: 8px;
    font-size: 13px;
  }
  .public-access-card {
    grid-template-columns: 1fr;
  }
  .public-access-map,
  .public-access-map iframe {
    min-height: 240px;
  }
  .site-cast-slide-grid {
    grid-template-columns: repeat(var(--site-cast-count-sp), minmax(0, 1fr));
    gap: 10px;
  }
  .site-cast-nav {
    inset: 38% 6px auto 6px;
  }
  .site-cast-arrow {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .public-top-schedule-cards {
    grid-template-columns: repeat(var(--site-cast-count-sp), minmax(0, 1fr));
    gap: 10px;
  }
  .site-cast-slide-grid .public-cast-card,
  .public-top-schedule-card {
    width: 100%;
    max-width: none;
  }
  .public-cast-body {
    padding: 14px 14px 16px;
    gap: 8px;
  }
  .public-top-schedule-card-body {
    padding: 10px 10px 12px;
    gap: 8px;
  }
  .public-top-schedule-card-head {
    display: block;
  }
  .public-cast-name {
    font-size: 16px;
  }
  .public-top-schedule-card-name {
    font-size: 16px;
  }
  .site-cast-slide-grid .public-muted:last-child {
    display: none;
  }
  .public-top-schedule-card-copy {
    display: none;
  }
  .public-cast-time {
    font-size: 12px;
  }
  .public-card-reserve-btn {
    padding: 9px 8px;
    font-size: 12px;
  }
  .public-top-schedule-card .public-chip {
    margin-top: 6px;
    padding: 4px 8px;
    font-size: 10px;
  }
  .site-cast-slide-grid .public-chip {
    margin-top: 6px;
    padding: 4px 8px;
    font-size: 10px;
  }
  .public-top-news-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px 0;
  }
  .public-top-news-title {
    font-size: 13px;
    line-height: 1.45;
  }
  .public-top-news-date {
    font-size: 11px;
  }
  .site-section-body-narrow .site-card {
    padding: 18px;
  }
  .site-nav-bar {
    position: relative;
    top: auto;
  }
  .site-nav-bar-inner {
    gap: 4px;
    padding: 6px 12px;
    flex-wrap: wrap;
  }
  .site-nav-bar .nav-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
  }
  .site-nav-link {
    padding: 8px 4px;
    font-size: 11px;
    text-align: center;
    border-bottom: 1px solid var(--site-line);
  }
  .site-nav-link:not(:nth-child(4n)) {
    border-right: 1px solid var(--site-line);
  }
  .site-nav-link-reserve {
    display: none;
  }
  .site-hero-main {
    aspect-ratio: 9 / 5;
    border-radius: 0;
  }
  .site-hero-wide .site-hero-main {
    aspect-ratio: 9 / 5;
  }
  .site-event-slide img {
    height: 100%;
  }
  .site-event-slide a,
  .site-event-slide span {
    aspect-ratio: 404 / 161;
  }
  .site-hero-copy {
    inset: auto 18px 18px 18px;
  }
  .site-hero-copy h1 {
    font-size: clamp(28px, 9vw, 44px);
    max-width: 12ch;
  }
  .site-hero-copy p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 14px;
  }
  .site-hero-actions {
    gap: 8px;
  }
  .site-cta,
  .site-pill {
    padding: 9px 13px;
    font-size: 13px;
  }
  .site-area-filter {
    gap: 8px;
    margin-bottom: 14px;
  }
}

/* ===== Sticky Footer Bar ===== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.97);
  border-top: 0;
  box-shadow: 0 -1px 2px rgba(155, 120, 50, 0.05);
  height: 62px;
}
.sticky-bar-btns {
  display: flex;
  flex: 1;
  min-width: 0;
}
.sticky-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 3px;
  padding: 6px 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #8b7355;
  border: none;
  background: none;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.sticky-bar-btn:hover,
.sticky-bar-btn:active {
  background: rgba(184, 163, 128, 0.1);
}
.sticky-bar-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  max-width: 22px;
  max-height: 22px;
  flex-shrink: 0;
}
.sticky-bar-tel .sticky-bar-icon {
  color: #8b7355;
}
.sticky-bar-line {
  color: #06C755;
}
.sticky-bar-line .sticky-bar-icon {
  border-radius: 4px;
}
.sticky-bar-reserve .sticky-bar-icon {
  color: #8b7355;
}
.sticky-bar-menu {
  width: 62px;
  flex: 0 0 62px;
  border-left: 1px solid #e0d6c8;
}

/* ===== Slide-out Menu ===== */
.slide-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.slide-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.slide-menu {
  position: fixed;
  top: 0;
  right: -280px;
  bottom: 0;
  z-index: 201;
  width: 280px;
  background: #fff;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.12);
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 60px 0 80px;
}
.slide-menu.open {
  right: 0;
}
.slide-menu-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #8b7355;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.slide-menu-links {
  display: flex;
  flex-direction: column;
}
.slide-nav-link {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #5a4a3a;
  text-decoration: none;
  border-bottom: 1px solid #f0ebe3;
  transition: background 0.15s;
}
.slide-nav-link:hover {
  background: rgba(184, 163, 128, 0.08);
}
.slide-nav-phone {
  display: block;
  margin: 20px 24px 0;
  padding: 12px 16px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #8b7355;
  text-decoration: none;
  border: 1px solid #e0d6c8;
  border-radius: 8px;
  transition: background 0.15s;
}
.slide-nav-phone:hover {
  background: rgba(184, 163, 128, 0.08);
}

/* Body padding so content is not hidden behind sticky bar */
body {
  padding-bottom: 62px !important;
}

/* ===== Sticky Bar Responsive ===== */
@media (min-width: 769px) {
  .sticky-bar-menu {
    display: none;
  }
  .sticky-bar-btns {
    max-width: 600px;
    margin: 0 auto;
  }
  .sticky-bar {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .sticky-bar-btn span {
    font-size: 9px;
  }
  .sticky-bar-icon {
    width: 20px;
    height: 20px;
  }
}

/* ===== Recruit Page ===== */
.site-recruit-banner {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}
.site-recruit-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.site-recruit-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 16px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.site-recruit-section {
  background: var(--site-card-bg, rgba(255,255,255,0.06));
  border-radius: 12px;
  padding: 24px 28px;
}
.site-recruit-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-recruit-section-body {
  font-size: 0.95rem;
  line-height: 1.8;
  white-space: pre-wrap;
}
@media (max-width: 768px) {
  .site-recruit-banner {
    max-height: 260px;
  }
  .site-recruit-section {
    padding: 18px 16px;
  }
}

@media (max-width: 640px) {
  .public-cast-sns-badges {
    flex-wrap: nowrap;
    gap: 3px;
    right: 6px;
    bottom: 6px;
  }
  .public-cast-photo-wrap:has(.public-reservation-status) .public-cast-sns-badges {
    bottom: 38px;
  }
  .public-cast-sns-badge {
    width: 16px;
    height: 16px;
    font-size: 6px;
  }
}

/* Web予約 ご予約のきっかけ ラジオボタン */
.web-reserve-media-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  padding: 10px 0;
}
.web-reserve-media-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9em;
  cursor: pointer;
  white-space: nowrap;
}
.web-reserve-media-item input[type="radio"] {
  accent-color: var(--gold, #b8975a);
  width: 15px;
  height: 15px;
  cursor: pointer;
}
