/* 未確定: LINE予約URL / X応募URL / CSV公開URLは js/common.js の SAMPLE 値を書き換える */
:root {
  --bg: #f5f5f3;
  --bg-soft: #f8f8f6;
  --surface: #ffffff;
  --surface-soft: #f2f2ef;
  --text: #1f1f1c;
  --subtext: #5f5f58;
  --line: #e4e2dd;
  --accent: #06c755;
  --accent-dark: #0b0b0b;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --header-height: 72px;
  --bottom-cta-height: 68px;
  --page-width: 1120px;
  --content-width: 760px;
  --anim: 0.24s ease;
  --fade-distance: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 245, 243, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(228, 226, 221, 0.9);
}

.header-inner {
  height: var(--header-height);
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-logo-link {
  flex: 0 0 auto;
}

.header-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.menu-button {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin-left: auto;
  background: var(--text);
  transition: transform var(--anim), opacity var(--anim);
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.global-nav {
  display: none;
}

.global-nav.is-open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 16px;
  right: 16px;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0 0;
}

.global-nav.is-open a {
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 600;
}

.site-main {
  padding-bottom: calc(var(--bottom-cta-height) + 28px);
}

.page-shell {
  width: min(100% - 32px, var(--page-width));
  margin: 0 auto;
}

.narrow-shell {
  max-width: var(--content-width);
}

.section {
  padding: 52px 0;
}

.section-heading {
  margin-bottom: 20px;
}

.row-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.section-title,
.page-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-align: center;
}

.left-title {
  text-align: left;
}

.page-kicker,
.hero-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--subtext);
}

.page-title {
  margin-bottom: 10px;
}

.page-description,
.hero-subtitle,
.body-text,
.concept-text p,
.price-note,
.shop-info dd,
.shop-info dt,
.selected-date-label,
.news-text,
.schedule-time,
.schedule-name,
.campaign-title,
.campaign-description,
.cta-reinforce-copy {
  font-size: 15px;
}

.page-description,
.hero-subtitle,
.price-note,
.shop-info dt,
.news-date,
.schedule-time,
.campaign-description,
.cta-reinforce-copy {
  color: var(--subtext);
}

.section-link {
  flex-shrink: 0;
  color: #0a7a43;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  padding: 0 0 16px;
}

.hero-media {
  position: relative;
}

.hero-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-content {
  margin-top: 24px;
}

.hero-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-button {
  display: inline-flex;
  min-height: 52px;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: opacity var(--anim), transform var(--anim);
}

.cta-button:hover,
.cta-button:focus-visible {
  opacity: 0.92;
}

.cta-button:active,
.bottom-cta-line:active {
  transform: scale(0.98);
}

.cta-line {
  background: var(--accent);
  color: #fff;
}

.cta-secondary {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
}

.cta-dark {
  background: var(--accent-dark);
  color: #fff;
}

.section-concept {
  padding-top: 16px;
}

.concept-text {
  display: grid;
  gap: 18px;
}

.concept-text p {
  margin: 0;
}

.room-sub-bg {
  width: min(100% - 32px, var(--page-width));
  max-width: var(--page-width);
  height: 220px;
  margin-left: auto;
  margin-right: auto;
  background-image: url("../img/room_sub.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 18px 42px rgba(31, 31, 28, 0.12),
    0 4px 12px rgba(31, 31, 28, 0.06);
}

.cta-reinforce-section {
  padding-top: 32px;
  padding-bottom: 32px;
  text-align: center;
}

.cta-reinforce-copy {
  margin: 0 0 14px;
}

.split-card,
.price-box,
.shop-card,
.recruit-copy-box,
.today-schedule-item,
.therapist-card,
.schedule-item,
.campaign-card,
.news-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.detail-visual-section {
  padding-top: 0;
}

.split-card {
  overflow: hidden;
}

.split-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.split-card-body {
  padding: 20px;
}

.today-schedule-list {
  display: grid;
  gap: 14px;
}

.today-schedule-item {
  padding: 16px;
  border: 1px solid rgba(228, 226, 221, 0.5);
}

.today-schedule-name {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 6px;
}

.today-schedule-meta {
  margin: 0;
  color: var(--subtext);
}

.card-scroll-wrap {
  overflow: hidden;
}

.card-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 16px 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.card-scroll::-webkit-scrollbar {
  display: none;
}

.card-scroll .therapist-card {
  flex: 0 0 54%;
  max-width: 190px;
}

.therapist-card {
  overflow: hidden;
  scroll-snap-align: start;
}

.therapist-card-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #d4d4cf;
}

.therapist-card-body {
  padding: 12px;
}

.therapist-name {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 800;
}

.therapist-age {
  margin: 0;
  color: var(--subtext);
  font-size: 13px;
}

.therapist-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.therapist-grid .therapist-card {
  max-width: none;
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-item {
  padding: 18px 20px;
}

.news-date {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
}

.news-text {
  margin: 0;
}

.news-recruit-link {
  display: inline-block;
  margin-top: 8px;
  color: #0a7a43;
  font-weight: 700;
}

.campaign-grid {
  display: grid;
  gap: 16px;
  justify-content: center;
  grid-template-columns: minmax(0, 560px);
}

.campaign-card {
  width: 100%;
  padding: 18px 20px;
}

.campaign-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.campaign-description {
  margin: 0;
}

.price-box,
.shop-card,
.recruit-copy-box {
  padding: 22px 20px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.price-label {
  font-size: 18px;
  font-weight: 800;
}

.price-value {
  font-size: 24px;
  font-weight: 800;
}

/* pricing cards */
.pricing-grid {
  display: grid;
  gap: 14px;
}

.pricing-card {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.pricing-card-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}

.pricing-list {
  display: grid;
  gap: 10px;
}

.pricing-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.pricing-item-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.pricing-item-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.shop-info {
  margin: 0;
  display: grid;
  gap: 14px;
}

.shop-info-row {
  display: grid;
  gap: 4px;
}

.shop-info dt,
.shop-info dd {
  margin: 0;
}

.page-hero {
  padding: 24px 0 8px;
}

.simple-page-hero {
  background: transparent;
}

.date-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.date-tabs::-webkit-scrollbar {
  display: none;
}

.date-tab {
  border: none;
  background: var(--surface);
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 12px 16px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  color: var(--text);
}

.date-tab.is-active {
  background: #0a7a43;
  color: #fff;
}

.selected-date-label {
  margin-bottom: 16px;
  font-weight: 700;
}

.schedule-list {
  display: grid;
  gap: 14px;
}

.schedule-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  align-items: center;
}

.schedule-image {
  width: 84px;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  object-fit: cover;
  background: #d4d4cf;
  flex-shrink: 0;
}

.schedule-item-body {
  min-width: 0;
}

.schedule-name {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}

.empty-message {
  margin: 0;
  color: var(--subtext);
  font-size: 15px;
}

.recruit-hero {
  padding: 24px 0 0;
}

.recruit-hero-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.recruit-main-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.site-footer {
  padding: 40px 0 92px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-nav a {
  font-weight: 700;
  color: var(--subtext);
}

.footer-copy {
  margin: 24px 0 0;
  color: var(--subtext);
  font-size: 14px;
}

.bottom-fixed-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 12px;
  z-index: 110;
}

.bottom-cta-line {
  display: flex;
  min-height: var(--bottom-cta-height);
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(10, 122, 67, 0.18);
  transition: opacity var(--anim), transform var(--anim);
}

/* animation */
.fade-up {
  opacity: 0.001;
  transform: translateY(var(--fade-distance));
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .header-inner {
    padding: 0 32px;
  }

  .menu-button {
    display: none;
  }

  .global-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    margin-left: auto;
    flex: 1 1 auto;
  }

  .global-nav a {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    font-weight: 700;
    color: var(--subtext);
    white-space: nowrap;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-image {
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg);
  }

  .hero-content {
    margin-top: 28px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .cta-button {
    width: auto;
    min-width: 220px;
  }

  .room-sub-bg {
    height: clamp(260px, 26vw, 360px);
    background-position: center center;
  }

  .split-card {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .split-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .today-schedule-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-scroll {
    padding-left: max(32px, calc((100vw - var(--page-width)) / 2 + 32px));
    padding-right: max(32px, calc((100vw - var(--page-width)) / 2 + 32px));
  }

  .card-scroll .therapist-card {
    flex-basis: 190px;
    max-width: 190px;
  }

  .campaign-grid {
    grid-template-columns: minmax(0, 560px);
    justify-content: center;
  }

  .news-list {
    gap: 18px;
  }

  .therapist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-nav {
    display: flex;
    gap: 24px;
  }

  .bottom-fixed-cta {
    left: auto;
    right: 24px;
    width: 320px;
  }
}

@media (max-width: 380px) {
  .page-shell {
    width: min(100% - 24px, var(--page-width));
  }

  .hero-title {
    font-size: 28px;
  }

  .section-title,
  .page-title {
    font-size: 20px;
  }

  .therapist-grid {
    gap: 12px;
  }

  .card-scroll .therapist-card {
    flex-basis: 62%;
  }
}

/* ===== LINE CTA ===== */
.shop-line-cta {
  margin-top: 20px;
}

/* ===== MAP ===== */
.shop-map {
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
}

.shop-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

@media (max-width: 767px) {
  .room-sub-bg {
    width: 100%;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 767px) {
  body[data-page="top"] .bottom-fixed-cta-double {
    opacity: 0;
    transform: translateY(24px);
    pointer-events: none;
    transition: opacity 0.32s ease, transform 0.32s ease;
  }

  body[data-page="top"] .bottom-fixed-cta-double.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ===== Design refine v16 ===== */
/* 目的:
   - 背景グラデーションを強める
   - ヘッダーを高級感ある半透明ピル型へ
   - ロゴ右の「癒し処 匠」の文字間を詰める
   - ハンバーガーを横長の上品なボタンへ
   - LINE導線などボタン全体の質感を統一
   - フッターの過剰な縦幅を抑える
*/

:root {
  --luxury-deep: #2a2118;
  --luxury-deeper: #15110d;
  --luxury-cream: #f7efe1;
  --luxury-gold: #b99558;
  --luxury-gold-soft: rgba(185, 149, 88, 0.42);
  --luxury-green-1: #08c45e;
  --luxury-green-2: #039645;
  --luxury-green-3: #05733a;
}

body {
  background:
    radial-gradient(circle at 12% -5%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.42) 24%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 92% 10%, rgba(196, 143, 70, 0.30) 0%, rgba(196, 143, 70, 0.14) 28%, rgba(196, 143, 70, 0) 48%),
    radial-gradient(circle at 0% 86%, rgba(105, 72, 35, 0.13) 0%, rgba(105, 72, 35, 0) 42%),
    linear-gradient(150deg, #fffaf1 0%, #f2e5cf 38%, #e2d0ae 72%, #c9b489 100%);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", "Times New Roman", serif;
}

/* Header */
.site-header {
  position: sticky;
  top: 12px;
  z-index: 100;
  background: transparent;
  border-bottom: none;
  padding: 0 12px;
  pointer-events: none;
}

.header-inner {
  position: relative;
  height: 64px;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 10px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  pointer-events: auto;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.90), rgba(246,239,226,0.74));
  border: 1px solid rgba(207, 186, 149, 0.70);
  border-radius: 999px;
  box-shadow:
    0 14px 34px rgba(31, 31, 28, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 0 1 auto;
}

.header-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.header-brand-text {
  display: inline-block;
  color: var(--luxury-deep);
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.035em; /* 前回より詰める */
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(255,255,255,0.55);
}

/* Hamburger button */
.menu-button {
  position: relative;
  width: 98px;
  height: 44px;
  border: 1px solid rgba(185, 149, 88, 0.42);
  border-radius: 15px;
  background:
    linear-gradient(135deg, #433321 0%, #21170f 48%, #0f0d0a 100%);
  box-shadow:
    0 10px 22px rgba(31, 31, 28, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -1px 0 rgba(0,0,0,0.26);
  display: block;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
  transition: transform var(--anim), box-shadow var(--anim), opacity var(--anim);
  overflow: hidden;
}

.menu-button:hover,
.menu-button:focus-visible {
  box-shadow:
    0 12px 26px rgba(31, 31, 28, 0.26),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.26);
  opacity: 0.98;
}

.menu-button:active {
  transform: scale(0.97);
}

.menu-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

.menu-button::after {
  content: "MENU";
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #f6ead7;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
}

.menu-button.is-open::after {
  content: "CLOSE";
  right: 11px;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.menu-button span {
  position: absolute;
  left: 16px;
  display: block;
  width: 27px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: #f6ead7;
  box-shadow: 0 0 8px rgba(246, 234, 215, 0.16);
  transition: transform var(--anim), opacity var(--anim), top var(--anim), width var(--anim);
}

.menu-button span:nth-child(1) {
  top: 13px;
}

.menu-button span:nth-child(2) {
  top: 21px;
  width: 22px;
}

.menu-button span:nth-child(3) {
  top: 29px;
  width: 27px;
}

.menu-button.is-open span:nth-child(1) {
  top: 21px;
  width: 27px;
  transform: rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  top: 21px;
  width: 27px;
  transform: rotate(-45deg);
}

/* Open menu */
.global-nav.is-open {
  display: flex;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(245,236,220,0.88));
  border: 1px solid rgba(190, 165, 121, 0.60);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(31, 31, 28, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.global-nav.is-open a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 12px 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.86), rgba(239,229,210,0.76));
  border: 1px solid rgba(206, 186, 150, 0.70);
  border-radius: 16px;
  color: var(--luxury-deep);
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.70);
  transition: background var(--anim), transform var(--anim), border-color var(--anim), box-shadow var(--anim);
}

.global-nav.is-open a:active {
  transform: scale(0.98);
}

/* Buttons */
.cta-button,
.bottom-cta-line,
.date-tab {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Noto Sans JP", sans-serif;
}

.cta-button {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(185, 149, 88, 0.30);
  box-shadow:
    0 12px 26px rgba(31, 31, 28, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

.cta-button::before,
.bottom-cta-line::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
}

.cta-line,
.bottom-cta-line {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--luxury-green-1) 0%, var(--luxury-green-2) 52%, var(--luxury-green-3) 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 14px 30px rgba(3, 150, 69, 0.26),
    inset 0 1px 0 rgba(255,255,255,0.22);
  text-shadow: 0 1px 0 rgba(0,0,0,0.12);
}

.cta-secondary {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(241,232,214,0.86));
  color: var(--luxury-deep);
  border-color: rgba(185,149,88,0.32);
}

.cta-dark {
  background:
    linear-gradient(135deg, #3d3021 0%, #18130e 100%);
  color: #f7ead8;
  border-color: rgba(185,149,88,0.38);
}

.date-tab {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(241,232,214,0.86));
  border: 1px solid rgba(185,149,88,0.26);
  box-shadow: 0 8px 18px rgba(31,31,28,0.08);
}

.date-tab.is-active {
  background:
    linear-gradient(135deg, #3d3021 0%, #18130e 100%);
  color: #f7ead8;
  border-color: rgba(185,149,88,0.38);
}

/* Footer compact */
.site-main {
  padding-bottom: 32px;
}

body[data-page="top"] .site-main,
body[data-page="therapist"] .site-main,
body[data-page="schedule"] .site-main {
  padding-bottom: calc(var(--bottom-cta-height) + 24px);
}

.site-footer {
  padding: 24px 0 calc(24px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(228, 226, 221, 0.78);
}

body[data-page="top"] .site-footer,
body[data-page="therapist"] .site-footer,
body[data-page="schedule"] .site-footer {
  padding-bottom: calc(var(--bottom-cta-height) + 20px + env(safe-area-inset-bottom));
}

.footer-nav {
  gap: 6px;
}

.footer-nav a {
  font-size: 14px;
  line-height: 1.45;
}

.footer-copy {
  margin: 18px 0 0;
  font-size: 13px;
}

/* Desktop */
@media (min-width: 768px) {
  .site-header {
    top: 16px;
    padding: 0 24px;
  }

  .header-inner {
    height: 68px;
    padding: 0 18px 0 22px;
  }

  .header-logo {
    width: 48px;
    height: 48px;
  }

  .header-brand-text {
    font-size: 18px;
    letter-spacing: 0.035em;
  }

  .menu-button {
    display: none;
  }

  .global-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
    flex: 1 1 auto;
  }

  .global-nav a {
    padding: 9px 14px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    color: var(--subtext);
    white-space: nowrap;
    transition: background var(--anim), color var(--anim), border-color var(--anim);
  }

  .global-nav a:hover,
  .global-nav a:focus-visible {
    color: var(--luxury-deep);
    background: rgba(31, 31, 28, 0.055);
    border-color: rgba(176, 144, 92, 0.20);
  }

  .site-footer {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  body[data-page="top"] .site-footer,
  body[data-page="therapist"] .site-footer,
  body[data-page="schedule"] .site-footer {
    padding-bottom: 40px;
  }
}

@media (max-width: 380px) {
  .header-brand-text {
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  .header-logo {
    width: 40px;
    height: 40px;
  }

  .menu-button {
    width: 88px;
  }

  .menu-button::after {
    right: 10px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .menu-button span {
    left: 13px;
  }
}


/* ===== Recruit page compact bottom v17 ===== */
/*
  求人ページは下部固定CTAがないため、固定CTAぶんの逃げ余白をさらに削る。
  TOP / セラピスト / 出勤は固定CTAがあるため従来どおり残す。
*/
body[data-page="recruit"] .site-main {
  padding-bottom: 8px;
}

body[data-page="recruit"] .site-footer {
  padding-top: 18px;
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
}

body[data-page="recruit"] .footer-nav {
  gap: 4px;
}

body[data-page="recruit"] .footer-nav a {
  font-size: 13px;
  line-height: 1.35;
}

body[data-page="recruit"] .footer-copy {
  margin-top: 12px;
  font-size: 12px;
}

@media (min-width: 768px) {
  body[data-page="recruit"] .site-footer {
    padding-top: 22px;
    padding-bottom: 24px;
  }
}


/* ===== Header corner blur fix v18 ===== */
/*
  iOS Safari系で backdrop-filter が角丸の外側まで滲んで
  ヘッダー角にモザイク状の見え方が出る問題を修正。
  背景ぼかしは疑似要素側に分離し、角丸内だけに閉じ込める。
*/
.header-inner {
  background: transparent !important;
  isolation: isolate;
}

.header-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.93), rgba(246,239,226,0.78));
  border: 1px solid rgba(207, 186, 149, 0.60);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.82),
    inset 0 -1px 0 rgba(145, 118, 76, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateZ(0);
}

/* 親側のborder/blur由来の滲みを消す */
.header-inner {
  border-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* ヘッダー本体の影は親側に残す */
.header-inner {
  box-shadow:
    0 14px 34px rgba(31, 31, 28, 0.14),
    0 1px 0 rgba(255,255,255,0.48) !important;
}

/* メニュー本体も角丸外に滲みにくい描画へ */
.global-nav.is-open {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(245,236,220,0.90)) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}


/* ===== Luxury card design v19 ===== */
/*
  全体のカードUIを、半透明・金縁・柔らかい影の方向に統一。
  ヘッダーやボタンの高級感に合わせる。
*/

:root {
  --card-glass: rgba(255, 255, 255, 0.78);
  --card-glass-strong: rgba(255, 255, 255, 0.88);
  --card-cream: rgba(249, 242, 228, 0.72);
  --card-gold-line: rgba(185, 149, 88, 0.28);
  --card-gold-line-strong: rgba(185, 149, 88, 0.42);
  --card-shadow-luxury:
    0 18px 42px rgba(31, 31, 28, 0.11),
    0 4px 12px rgba(31, 31, 28, 0.05);
}

/* 共通カード */
.split-card,
.price-box,
.shop-card,
.recruit-copy-box,
.today-schedule-item,
.therapist-card,
.schedule-item,
.campaign-card,
.news-item {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, var(--card-glass-strong) 0%, var(--card-cream) 100%);
  border: 1px solid var(--card-gold-line);
  box-shadow: var(--card-shadow-luxury);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.split-card::before,
.price-box::before,
.shop-card::before,
.recruit-copy-box::before,
.today-schedule-item::before,
.therapist-card::before,
.schedule-item::before,
.campaign-card::before,
.news-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 0%, rgba(255,255,255,0.62) 0%, rgba(255,255,255,0) 34%),
    linear-gradient(180deg, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0) 42%);
}

.split-card > *,
.price-box > *,
.shop-card > *,
.recruit-copy-box > *,
.today-schedule-item > *,
.therapist-card > *,
.schedule-item > *,
.campaign-card > *,
.news-item > * {
  position: relative;
  z-index: 1;
}

/* セラピストカード */
.therapist-card {
  border-radius: 22px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.therapist-card-image {
  border-bottom: 1px solid rgba(185, 149, 88, 0.20);
  filter: saturate(0.96) contrast(1.03);
}

.therapist-card-body {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.52), rgba(249,242,228,0.30));
}

.therapist-name {
  letter-spacing: 0.04em;
  color: var(--luxury-deep);
}

.therapist-age {
  color: rgba(42, 33, 24, 0.62);
}

/* 出勤カード */
.today-schedule-item,
.schedule-item {
  border-radius: 20px;
}

.today-schedule-item {
  padding: 18px;
}

.today-schedule-name,
.schedule-name {
  color: var(--luxury-deep);
  letter-spacing: 0.04em;
}

.today-schedule-meta,
.schedule-time {
  color: rgba(42, 33, 24, 0.64);
}

.schedule-image {
  border: 1px solid rgba(185, 149, 88, 0.26);
  box-shadow: 0 6px 14px rgba(31, 31, 28, 0.08);
}

/* お知らせ・キャンペーン */
.news-item,
.campaign-card {
  border-radius: 20px;
  padding: 20px 22px;
}

.news-item {
  border-left: 4px solid rgba(185, 149, 88, 0.46);
}

.news-date {
  color: rgba(42, 33, 24, 0.58);
  letter-spacing: 0.05em;
}

.news-text,
.campaign-description {
  color: rgba(42, 33, 24, 0.76);
}

.campaign-card {
  border-color: var(--card-gold-line-strong);
}

.campaign-title {
  color: var(--luxury-deep);
  letter-spacing: 0.04em;
}

.campaign-title::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  margin-top: 10px;
  background: linear-gradient(90deg, rgba(185,149,88,0.75), rgba(185,149,88,0));
}

/* 料金カード */
.price-box {
  border-radius: 24px;
  padding: 24px 20px;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.72), rgba(240,229,207,0.58));
  border: 1px solid rgba(185, 149, 88, 0.26);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.64),
    0 8px 22px rgba(31,31,28,0.06);
}

.pricing-card-title {
  color: var(--luxury-deep);
  letter-spacing: 0.05em;
}

.pricing-item {
  padding: 2px 0;
}

.pricing-item-price {
  color: var(--luxury-deep);
}

/* 店舗情報 */
.shop-card {
  border-radius: 24px;
}

.shop-info-row {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(185,149,88,0.16);
}

.shop-info-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.shop-info dt {
  color: rgba(42, 33, 24, 0.56);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.shop-info dd {
  color: var(--luxury-deep);
}

.shop-map {
  border: 1px solid rgba(185,149,88,0.22);
  box-shadow: 0 8px 22px rgba(31,31,28,0.08);
}

/* 求人カード */
.recruit-hero-card {
  border-radius: 24px;
  border: 1px solid rgba(185,149,88,0.28);
  box-shadow: var(--card-shadow-luxury);
}

.recruit-copy-box {
  border-radius: 24px;
}

/* split visual */
.split-card {
  border-radius: 24px;
}

.split-card-image {
  filter: saturate(0.94) contrast(1.03);
}

/* スクロールカードの見え方 */
.card-scroll {
  padding-top: 8px;
  padding-bottom: 14px;
}

/* PC hover */
@media (hover: hover) {
  .therapist-card:hover,
  .campaign-card:hover,
  .news-item:hover,
  .today-schedule-item:hover,
  .schedule-item:hover {
    transform: translateY(-2px);
    border-color: rgba(185,149,88,0.46);
    box-shadow:
      0 22px 48px rgba(31, 31, 28, 0.14),
      0 6px 14px rgba(31, 31, 28, 0.06);
  }
}

@media (min-width: 768px) {
  .price-box,
  .shop-card,
  .recruit-copy-box {
    padding: 28px;
  }

  .news-item,
  .campaign-card {
    padding: 22px 24px;
  }
}


/* ===== Mobile gradient visibility v20 ===== */
/*
  PCではグラデーションが見えるが、スマホでは画面幅が狭くカードや画像に隠れて弱く見えるため、
  スマホ幅だけ背景の色差・光源・金茶のにじみを強める。
*/
@media (max-width: 767px) {
  html {
    background:
      radial-gradient(circle at 18% -4%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.48) 26%, rgba(255, 255, 255, 0) 46%),
      radial-gradient(circle at 108% 6%, rgba(185, 121, 45, 0.36) 0%, rgba(185, 121, 45, 0.20) 28%, rgba(185, 121, 45, 0) 54%),
      radial-gradient(circle at -10% 78%, rgba(120, 79, 35, 0.22) 0%, rgba(120, 79, 35, 0.12) 32%, rgba(120, 79, 35, 0) 58%),
      linear-gradient(155deg, #fff8eb 0%, #efd8af 42%, #d2b37d 100%);
  }

  body {
    background:
      radial-gradient(circle at 12% 7%, rgba(255,255,255,0.66) 0%, rgba(255,255,255,0) 38%),
      radial-gradient(circle at 95% 18%, rgba(176, 112, 42, 0.26) 0%, rgba(176, 112, 42, 0) 42%),
      linear-gradient(155deg, rgba(255,248,235,0.96) 0%, rgba(238,216,177,0.94) 46%, rgba(207,177,126,0.92) 100%);
  }

  .site-main {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 18%),
      radial-gradient(circle at 100% 34%, rgba(185,149,88,0.16) 0%, rgba(185,149,88,0) 40%);
  }

  .section,
  .page-hero,
  .recruit-hero {
    background: transparent;
  }

  .hero-content,
  .page-shell {
    position: relative;
    z-index: 1;
  }

  /* 白カードが背景を完全に隠しすぎないよう、スマホだけ少し透け感を強める */
  .split-card,
  .price-box,
  .shop-card,
  .recruit-copy-box,
  .today-schedule-item,
  .therapist-card,
  .schedule-item,
  .campaign-card,
  .news-item {
    background:
      linear-gradient(145deg, rgba(255,255,255,0.82) 0%, rgba(246,235,213,0.66) 100%);
    border-color: rgba(185,149,88,0.34);
  }

  .pricing-card {
    background:
      linear-gradient(145deg, rgba(255,255,255,0.70), rgba(235,218,188,0.62));
  }

  /* 下部固定LINEボタンの緑が強すぎて全体背景を消して見せるため、少しだけ落ち着かせる */
  .bottom-cta-line {
    box-shadow:
      0 12px 28px rgba(3, 150, 69, 0.22),
      inset 0 1px 0 rgba(255,255,255,0.22);
  }
}


/* ===== Koriyama area restore v21 ===== */
.shop-area-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 13px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(239,229,210,0.70));
  border: 1px solid rgba(185,149,88,0.34);
  color: var(--luxury-deep, #2a2118);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.68),
    0 6px 14px rgba(31,31,28,0.06);
}

.shop-info dd {
  color: var(--luxury-deep, #2a2118);
  font-weight: 600;
}


/* ===== Header brand 2-line restore v22 ===== */
.header-logo-link {
  gap: 10px;
}

.header-brand-block {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  line-height: 1;
  white-space: nowrap;
}

.header-brand-text {
  display: block;
  color: var(--luxury-deep, #2a2118);
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.035em;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(255,255,255,0.55);
}

.header-brand-area {
  display: block;
  color: rgba(42, 33, 24, 0.58);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

/* 旧CSSの header-brand-text 単体指定に負けないよう、2行配置を明示 */
.header-logo-link .header-brand-text {
  margin: 0;
}

@media (min-width: 768px) {
  .header-brand-text {
    font-size: 18px;
  }

  .header-brand-area {
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .header-logo-link {
    gap: 8px;
  }

  .header-brand-text {
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  .header-brand-area {
    font-size: 9px;
    letter-spacing: 0.08em;
  }
}


/* ===== Header blur completely disabled v23 ===== */
/*
  backdrop-filter がiOS/一部ブラウザで角丸外やヘッダー帯全体に
  モザイク状の滲みを出すため、ヘッダー周辺のぼかし処理を完全停止。
  半透明ガラスではなく、淡い不透明グラデーションで高級感を維持する。
*/

.site-header,
.header-inner,
.header-inner::before,
.global-nav,
.global-nav.is-open {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
}

.site-header {
  background: transparent !important;
  overflow: visible !important;
  isolation: auto !important;
}

.header-inner {
  position: relative;
  overflow: visible !important;
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.98) 0%, rgba(244, 236, 222, 0.96) 52%, rgba(232, 218, 194, 0.95) 100%) !important;
  border: 1px solid rgba(190, 165, 121, 0.62) !important;
  box-shadow:
    0 12px 28px rgba(31, 31, 28, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.86),
    inset 0 -1px 0 rgba(142, 112, 68, 0.12) !important;
  isolation: auto !important;
}

.header-inner::before {
  content: none !important;
  display: none !important;
}

.global-nav.is-open {
  background:
    linear-gradient(145deg, rgba(255, 252, 246, 0.99), rgba(242, 232, 214, 0.98)) !important;
  border: 1px solid rgba(190, 165, 121, 0.62) !important;
  box-shadow:
    0 18px 42px rgba(31, 31, 28, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.80) !important;
}

.global-nav.is-open a {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(240,229,210,0.90)) !important;
}

@media (max-width: 767px) {
  .site-header {
    top: 10px;
  }

  .header-inner {
    box-shadow:
      0 10px 24px rgba(31, 31, 28, 0.14),
      inset 0 1px 0 rgba(255,255,255,0.86),
      inset 0 -1px 0 rgba(142, 112, 68, 0.12) !important;
  }
}