
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --cream: #FFFFE2;
    --brown: #5C3D1E;
    --brown-light: #8B6040;
    --brown-dark: #3A2410;
    --warm: #F5F0D8;
    --accent: #C8A97A;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    background: var(--cream);
    color: var(--brown-dark);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    padding: 1.2rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,226,0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(92,61,30,0.1);
    transition: all 0.4s ease;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 1.6rem;
  }
  .nav-logo-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.38rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: var(--brown);
    white-space: nowrap;
  }
  .nav-logo-tel {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding-left: 1.4rem;
    border-left: 1px solid rgba(92,61,30,0.18);
  }
  .nav-logo-tel-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--brown);
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-logo-tel-num:hover { color: var(--accent); }
  .nav-logo-tel-label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    color: var(--accent);
    text-transform: uppercase;
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: var(--brown-light);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--brown);
    transition: width 0.4s ease;
  }
  .nav-links a:hover { color: var(--brown); }
  .nav-links a:hover::after { width: 100%; }


  /* ---- HAMBURGER / MOBILE NAV ---- */
  .nav-hamburger {
    display: none;
    position: fixed;
    top: 1rem; right: 1.4rem;
    z-index: 300;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px; height: 40px;
    cursor: pointer;
    background: rgba(255,255,226,0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92,61,30,0.15);
    padding: 0;
    transition: background 0.3s, border-color 0.3s;
  }
  .nav-hamburger:hover {
    background: rgba(255,255,226,1);
    border-color: rgba(92,61,30,0.3);
  }
  .nav-hamburger span {
    display: block;
    width: 18px; height: 1.5px;
    background: var(--brown);
    transition: transform 0.35s ease, opacity 0.25s ease;
    transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .mobile-nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(58,36,16,0.35);
    z-index: 150;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .mobile-nav-overlay.open { opacity: 1; }

  .mobile-nav-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 82vw);
    height: 100%;
    background: var(--cream);
    z-index: 200;
    padding: 5.5rem 2.4rem 3rem;
    transition: right 0.38s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(58,36,16,0.12);
  }
  .mobile-nav-drawer.open { right: 0; }

  .mobile-nav-links {
    list-style: none;
    display: flex; flex-direction: column;
  }
  .mobile-nav-links li {
    border-bottom: 1px solid rgba(92,61,30,0.1);
  }
  .mobile-nav-links a {
    display: block;
    padding: 1.1rem 0;
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem; font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--brown);
    text-decoration: none;
    transition: color 0.25s, padding-left 0.25s;
  }
  .mobile-nav-links a:hover { color: var(--accent); padding-left: 0.4rem; }
  .mobile-nav-links .mobile-nav-sub {
    font-size: 0.65rem; letter-spacing: 0.2em;
    color: var(--accent); text-transform: uppercase;
    display: block; margin-top: 0.2rem;
  }
  .mobile-nav-cta {
    margin-top: 2.4rem;
  }
  .mobile-nav-cta a {
    display: block; text-align: center;
    padding: 1rem;
    border: 1px solid var(--brown);
    color: var(--brown);
    font-size: 0.82rem; letter-spacing: 0.2em;
    text-decoration: none;
    transition: all 0.3s;
  }
  .mobile-nav-cta a:hover { background: var(--brown); color: var(--cream); }
  .mobile-nav-tel {
    margin-top: 1.6rem; text-align: center;
  }
  .mobile-nav-tel a {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem; font-weight: 300;
    color: var(--brown); text-decoration: none;
    letter-spacing: 0.1em;
  }
  .mobile-nav-tel-label {
    display: block; font-size: 0.6rem;
    letter-spacing: 0.2em; color: var(--accent);
    margin-top: 0.3rem;
  }

  @media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .mobile-nav-overlay { display: block; pointer-events: none; }
    .mobile-nav-overlay.open { pointer-events: auto; }
    .mobile-nav-drawer {
      visibility: visible;
      transition: right 0.38s cubic-bezier(.4,0,.2,1), visibility 0s;
    }
    .mobile-nav-drawer:not(.open) {
      visibility: hidden;
      transition: right 0.38s cubic-bezier(.4,0,.2,1), visibility 0s 0.38s;
    }
  }
  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 6rem 5rem 4rem;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; right: 0; top: 0;
    width: 55%; height: 100%;
    background: var(--warm);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0;
    animation: fadeIn 1.2s ease 0.3s forwards;
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 520px;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 1s ease 0.7s forwards;
  }
  .hero-sub {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 1.6rem;
    text-transform: uppercase;
    display: block;
  }
  .hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: var(--brown);
    margin-bottom: 2rem;
  }
  .hero-desc {
    font-size: 0.88rem;
    line-height: 2.2;
    color: var(--brown-light);
    margin-bottom: 2rem;
    max-width: 400px;
  }
  .btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 0.9rem 2.4rem;
    border: 1px solid var(--brown);
    color: var(--brown);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-decoration: none;
    transition: color 0.35s ease;
    cursor: pointer;
    background: transparent;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    z-index: 0;
  }
  .btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--brown);
    transition: left 0.35s ease;
    z-index: -1;
  }
  .btn:hover::before { left: 0; }
  .btn:hover { color: var(--cream); }

  .btn-on-dark {
    border-color: rgba(255,255,226,0.7);
    color: var(--cream);
  }
  .btn-on-dark::before { background: var(--cream); }
  .btn-on-dark:hover { color: var(--brown-dark); }

  .btn:hover {
    background: var(--brown);
    color: var(--cream);
  }

  /* HERO SLIDESHOW */
  .hero-slideshow {
    position: absolute;
    right: 0; top: 0;
    width: 55%; height: 100%;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1.4s ease 0.8s forwards;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
  }
  .hero-slide.active { opacity: 1; }
  .hero-slideshow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      var(--cream) 0%,
      rgba(255,255,226,0.55) 18%,
      rgba(255,255,226,0) 38%
    );
    z-index: 2;
    pointer-events: none;
  }
  .hero-slideshow::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, var(--cream) 0%, transparent 10%, transparent 90%, var(--cream) 100%);
    z-index: 2;
    pointer-events: none;
  }
  .hero-bg {
    z-index: 0;
  }
  .hero-content { z-index: 3; }
  .scroll_down  { z-index: 3; }
  .hero-slide-dots {
    position: absolute;
    bottom: 2.5rem; right: 3rem;
    display: flex; gap: 0.5rem;
    z-index: 4;
  }
  .hero-slide-dot {
    width: 24px; height: 2px;
    background: rgba(255,255,226,0.4);
    cursor: pointer;
    transition: background 0.4s, width 0.4s;
    border: none; padding: 0;
  }
  .hero-slide-dot.active {
    background: var(--cream);
    width: 40px;
  }

  /* SCROLL DOWN */
  .scroll_down {
    position: absolute;
    bottom: 120px;
    right: 50%;
    animation: arrowmove 1s ease-in-out infinite;
    z-index: 3;
  }
  @keyframes arrowmove {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
  }
  .scroll_down a {
    position: absolute;
    left: -24px;
    bottom: 30px;
    color: var(--brown-light);
    font-family: 'Noto Serif JP', serif;
    letter-spacing: .2em;
    text-transform: uppercase;
    width: 24px;
    height: 24px;
    text-decoration: none;
  }
  .scroll-down-text {
    display: block;
    margin-top: 70px;
    margin-left: -14px;
    font-size: 0.65rem;
    color: var(--brown-light);
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 2px;
    font-family: 'Noto Serif JP', serif;
  }
  .scroll_down .arrow {
    position: absolute;
    width: 28px;
    height: 5px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
  }
  .scroll_down .arrow:first-child {
    animation: move 3s ease-out 1s infinite;
  }
  .scroll_down .arrow:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
  }
  .scroll_down .arrow:before,
  .scroll_down .arrow:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: var(--accent);
  }
  .scroll_down .arrow:before {
    left: 0;
    transform: skew(0deg, 30deg);
  }
  .scroll_down .arrow:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
  }
  @keyframes move {
    25% { opacity: 1; }
    33% { opacity: 1; transform: translateY(30px); }
    67% { opacity: 1; transform: translateY(40px); }
    100% { opacity: 0; transform: translateY(55px) scale3d(0.5, 0.5, 0.5); }
  }

  /* SECTIONS */
  section { padding: 8rem 5rem; }

  .section-label {
    font-size: 0.68rem; letter-spacing: 0.35em;
    color: var(--accent); text-transform: uppercase;
    margin-bottom: 1.2rem;
    display: block;
  }
  .section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 300;
    color: var(--brown);
    line-height: 1.6;
    margin-bottom: 3.5rem;
  }
  .divider {
    width: 40px; height: 1px;
    background: var(--accent);
    margin-bottom: 3rem;
  }

  /* ABOUT */
  .about {
    background: var(--warm);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 7rem; align-items: center;
  }
  .about-text p {
    font-size: 0.9rem; line-height: 2.3;
    color: var(--brown-light);
    margin-bottom: 1.8rem;
  }
  .about-visual {
    display: flex; justify-content: center; align-items: center;
  }
  .about-visual img {
    width: 85%;
    filter: brightness(0) saturate(100%) invert(24%) sepia(20%) saturate(800%) hue-rotate(10deg) brightness(0.65);
    opacity: 0.65;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .about-visual img:hover { opacity: 0.9; transform: scale(1.04); }

  /* MENU */
  .menu { background: var(--cream); }
  .menu-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
  }
  .menu-card {
    border: 1px solid rgba(92,61,30,0.15);
    padding: 2.8rem 2.2rem;
    position: relative; overflow: hidden;
    transition: all 0.45s ease;
    cursor: pointer;
    background: var(--cream);
  }
  .menu-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--accent);
    transition: height 0.45s ease;
  }
  .menu-card:hover {
    background: var(--warm);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(92,61,30,0.09);
  }
  .menu-card:hover::before { height: 100%; }
  .menu-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem; font-weight: 300;
    color: rgba(92,61,30,0.1);
    display: block; margin-bottom: 1rem;
    line-height: 1;
  }
  .menu-card h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.05rem; font-weight: 400;
    color: var(--brown); margin-bottom: 1rem;
    letter-spacing: 0.05em;
  }
  .menu-card p {
    font-size: 0.82rem; line-height: 2;
    color: var(--brown-light);
    margin-bottom: 2rem;
  }
  .menu-price {
    font-size: 1.5rem;
    color: var(--brown);
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
  }
  .menu-price span { font-size: 0.78rem; color: var(--brown-light); margin-left: 4px; }
  .menu-detail-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 1.4rem;
    font-size: 0.7rem; letter-spacing: 0.18em;
    color: var(--accent);
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, color 0.3s;
    pointer-events: none;
  }
  .menu-card:hover .menu-detail-link {
    border-color: var(--accent);
  }

  /* ---- MENU MODAL ---- */
  .menu-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(58,36,16,0.55);
    backdrop-filter: blur(6px);
    z-index: 500;
    display: flex; align-items: center; justify-content: center;
    padding: 2rem;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .menu-modal-overlay.open {
    opacity: 1; pointer-events: auto;
  }
  .menu-modal {
    background: var(--cream);
    max-width: 700px; width: 100%;
    max-height: 90vh; overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s ease;
  }
  .menu-modal-overlay.open .menu-modal {
    transform: translateY(0) scale(1);
  }
  .menu-modal-img {
    width: 100%; height: 260px;
    object-fit: cover;
    display: block;
    background: var(--warm);
  }
  .menu-modal-img-placeholder {
    width: 100%; height: 260px;
    background: var(--warm);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 0.8rem;
  }
  .menu-modal-img-placeholder span {
    font-size: 0.68rem; letter-spacing: 0.2em;
    color: var(--accent); text-transform: uppercase;
  }
  .menu-modal-img-placeholder svg {
    width: 36px; height: 36px; stroke: var(--accent);
    fill: none; stroke-width: 1.2;
  }
  .menu-modal-body {
    padding: 2.8rem 3rem 3.2rem;
  }
  .menu-modal-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 3.5rem; font-weight: 300;
    color: rgba(92,61,30,0.07);
    line-height: 1; margin-bottom: 0.6rem;
  }
  .menu-modal-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem; font-weight: 300;
    color: var(--brown); letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
  }
  .menu-modal-price-row {
    display: flex; align-items: baseline; gap: 0.8rem;
    margin-bottom: 2rem; padding-bottom: 1.6rem;
    border-bottom: 1px solid rgba(92,61,30,0.1);
  }
  .menu-modal-price {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem; font-weight: 300; color: var(--brown);
  }
  .menu-modal-duration {
    font-size: 0.8rem; color: var(--accent); letter-spacing: 0.12em;
  }
  .menu-modal-desc {
    font-size: 0.88rem; line-height: 2.3;
    color: var(--brown-light); margin-bottom: 2rem;
  }
  .menu-modal-points {
    list-style: none;
    display: flex; flex-direction: column; gap: 0.9rem;
    margin-bottom: 2.4rem;
  }
  .menu-modal-points li {
    display: flex; align-items: flex-start; gap: 0.8rem;
    font-size: 0.85rem; color: var(--brown-light); line-height: 1.8;
  }
  .menu-modal-points li::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0;
    margin-top: 0.52rem;
  }
  .menu-modal-flow {
    background: var(--warm);
    padding: 1.6rem 2rem;
    margin-bottom: 2.4rem;
  }
  .menu-modal-flow-title {
    font-size: 0.68rem; letter-spacing: 0.25em; color: var(--accent);
    text-transform: uppercase; margin-bottom: 1.2rem;
  }
  .menu-modal-flow-steps {
    display: flex; gap: 0; flex-wrap: wrap;
  }
  .menu-modal-flow-step {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; color: var(--brown);
  }
  .menu-modal-flow-step-num {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--accent); color: var(--cream);
    font-size: 0.65rem; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .menu-modal-flow-arrow {
    font-size: 0.7rem; color: var(--accent); margin: 0 0.5rem;
  }
  .menu-modal-close {
    position: absolute; top: 1.2rem; right: 1.4rem;
    width: 36px; height: 36px;
    border: 1px solid rgba(92,61,30,0.2);
    background: var(--cream);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--brown-light);
    transition: all 0.3s; z-index: 10;
  }
  .menu-modal-close:hover { background: var(--brown); color: var(--cream); border-color: var(--brown); }
  .menu-modal-cta {
    text-align: center; padding-top: 0.8rem;
  }

  .flow { background: #EAE5CC; }
  .flow-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
  }
  .flow-steps {
    display: flex; flex-direction: column; gap: 0;
  }
  .flow-step {
    display: grid; grid-template-columns: 48px 1fr;
    gap: 1.4rem; align-items: flex-start;
    padding: 2rem 0;
    position: relative;
  }
  .flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 23px; top: 60px;
    width: 2px; bottom: 0;
    background: linear-gradient(to bottom, var(--accent), rgba(234, 229, 204, 1));
  }
  .flow-step-num {
    width: 48px; height: 48px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.85rem; font-weight: 400;
    color: var(--accent);
    background: var(--warm);
    flex-shrink: 0; z-index: 1;
  }
  .flow-step-body { padding-top: 0.6rem; }
  .flow-step-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem; font-weight: 400;
    color: var(--brown); margin-bottom: 0.6rem;
    letter-spacing: 0.04em;
  }
  .flow-step-desc {
    font-size: 0.82rem; line-height: 2;
    color: var(--brown-light);
  }
  .flow-photo-area {
    display: flex; flex-direction: column; gap: 1.4rem;
  }
  .flow-photo {
    width: 100%; aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
  }
  .flow-photo-placeholder {
    width: 100%; aspect-ratio: 4/3;
    background: rgba(234, 229, 204, 1);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.8rem;
    
  }
  .flow-photo-placeholder svg {
    width: 40px; height: 40px; stroke: var(--accent);
    fill: none; stroke-width: 1.2;
  }
  .flow-photo-placeholder span {
    font-size: 0.65rem; letter-spacing: 0.2em;
    color: var(--accent); text-transform: uppercase;
  }
  .flow-photo-sub {
    font-size: 0.78rem; line-height: 1.9;
    color: var(--brown-light); text-align: center;
  }

  /* FAQ */
  .faq { background: var(--warm); }
  .faq-list { display: grid; gap: 0; }
  .faq-item {
    border-bottom: 1px solid rgba(92,61,30,0.15);
    overflow: hidden;
  }
  .faq-question {
    width: 100%;
    padding: 1.8rem 0;
    display: flex; align-items: center; justify-content: space-between;
    background: transparent; border: none; cursor: pointer;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.95rem; font-weight: 400;
    color: var(--brown);
    letter-spacing: 0.04em;
    text-align: left;
    transition: color 0.3s;
  }
  .faq-question:hover { color: var(--brown-light); }
  .faq-icon {
    width: 24px; height: 24px;
    border: 1px solid rgba(92,61,30,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--accent);
    transition: transform 0.4s, background 0.3s;
    flex-shrink: 0;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--brown); color: var(--cream); }
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s ease, padding 0.4s ease;
    font-size: 0.87rem; line-height: 2.1;
    color: var(--brown-light);
  }
  .faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.8rem; }

  .cases {
    background: var(--cream);
    overflow: hidden;
  }

  .cases-orbit-wrap {
    position: relative;
    width: min(680px, 94vw);
    height: min(680px, 94vw);
    margin: 0 auto 0;
  }

  .cases-center-dot {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.35;
    z-index: 2;
    pointer-events: none;
  }

  .cases-orbit-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(92,61,30,0.13);
    pointer-events: none;
  }

  .cases-btn {
    position: absolute;
    width: 120px; height: 120px;
    border-radius: 50%;
    border: 1.5px solid rgba(92,61,30,0.22);
    background: rgba(255,255,226,0.96);
    backdrop-filter: blur(6px);
    cursor: pointer;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 5px;
    text-align: center;
    padding: 10px;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    font-family: 'Noto Sans JP', sans-serif;
    z-index: 3;
    box-shadow: 0 3px 16px rgba(92,61,30,0.08);
    will-change: transform;
  }
  .cases-btn:hover {
    background: var(--brown);
    border-color: var(--brown);
    box-shadow: 0 12px 40px rgba(92,61,30,0.32);
    transform: translate(-50%, -50%) scale(1.3) !important;
  }
  .cases-btn:hover .cases-btn-num,
  .cases-btn:hover .cases-btn-text {
    color: var(--cream);
  }
  .cases-btn.active {
    background: var(--brown);
    border-color: var(--brown);
    box-shadow: 0 10px 36px rgba(92,61,30,0.3);
  }
  .cases-btn.active .cases-btn-num,
  .cases-btn.active .cases-btn-text {
    color: var(--cream);
  }
  .cases-btn-num {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    color: var(--accent);
    text-transform: uppercase;
    display: block;
    line-height: 1;
  }
  .cases-btn-text {
    font-size: 0.7rem;
    color: var(--brown);
    line-height: 1.55;
    display: block;
    white-space: pre-line;
  }

  .cases-detail {
    max-width: 780px;
    margin: 0 auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4,0,0.2,1);
  }
  .cases-detail.visible {
    max-height: 2000px;
  }
  .cases-detail-inner {
    background: var(--warm);
    border: 1px solid rgba(92,61,30,0.12);
    padding: 3.2rem 4rem;
    position: relative;
    margin-top: 2.4rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s ease 0.1s, transform 0.45s ease 0.1s;
  }
  .cases-detail.visible .cases-detail-inner {
    opacity: 1;
    transform: translateY(0);
  }
  .cases-detail-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--accent);
  }
  .cases-detail-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 4rem; font-weight: 300;
    color: rgba(92,61,30,0.07);
    line-height: 1;
    display: block;
    margin-bottom: 0.4rem;
  }
  .cases-detail-heading {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.45rem; font-weight: 300;
    color: var(--brown);
    letter-spacing: 0.06em;
    margin-bottom: 2rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(92,61,30,0.1);
  }
  .cases-detail-body {
    font-size: 0.88rem;
    line-height: 2.3;
    color: var(--brown-light);
  }
  .cases-detail-body h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.92rem; font-weight: 400;
    color: var(--brown);
    margin: 2rem 0 0.8rem;
    letter-spacing: 0.04em;
    padding-left: 0.9rem;
    border-left: 2px solid var(--accent);
  }
  .cases-detail-body h4:first-child { margin-top: 0; }
  .cases-detail-body p { margin-bottom: 1rem; }
  .cases-detail-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
  }
  .cases-detail-body ul li {
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.4rem;
  }
  .cases-detail-body ul li::before {
    content: '';
    position: absolute; left: 0; top: 0.65em;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
  }
  .cases-close-btn {
    position: absolute;
    top: 1.4rem; right: 1.6rem;
    width: 32px; height: 32px;
    border: 1px solid rgba(92,61,30,0.2);
    background: transparent;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: var(--brown-light);
    transition: all 0.3s;
    border-radius: 50%;
  }
  .cases-close-btn:hover { background: var(--brown); color: var(--cream); border-color: var(--brown); }

  .cases-separator {
    display: none;
    align-items: center;
    gap: 1.2rem;
    max-width: 780px;
    margin: 2rem auto 0;
  }
  .cases-separator.visible {
    display: flex;
  }
  .cases-separator::before,
  .cases-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(92,61,30,0.15);
  }
  .cases-separator-icon {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    opacity: 0.7;
  }

  .case-record-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid rgba(92,61,30,0.12);
    flex-wrap: wrap;
  }
  .case-record-badge {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 1px solid rgba(92,61,30,0.18);
    background: rgba(255,255,226,0.7);
  }
  .case-record-badge-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    text-transform: uppercase;
  }
  .case-record-badge-icon {
    font-size: 1.4rem;
    margin: 2px 0;
  }
  .case-record-meta {
    flex: 1;
    min-width: 0;
  }
  .case-record-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem; font-weight: 300;
    color: var(--brown);
    letter-spacing: 0.06em;
    margin-bottom: 0.7rem;
  }
  .case-record-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .case-record-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(92,61,30,0.18);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--brown-light);
    background: rgba(255,255,226,0.6);
  }
  .case-record-tag.sport { border-color: var(--accent); color: var(--accent); }

  .case-inquiry {
    background: rgba(255,255,226,0.55);
    border-left: 3px solid rgba(92,61,30,0.2);
    padding: 1.4rem 1.8rem;
    margin-bottom: 2.4rem;
    font-size: 0.86rem;
    line-height: 2.1;
    color: var(--brown-light);
  }
  .case-inquiry-label {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    color: var(--accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.7rem;
    font-family: 'Noto Sans JP', sans-serif;
  }

  .case-timeline-label {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    color: var(--accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
  }
  .case-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2.4rem;
  }
  .case-timeline-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 0 1.2rem;
    position: relative;
  }
  .case-timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 17px; top: 38px;
    width: 1px;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(200,169,122,0.4), rgba(200,169,122,0.1));
  }
  .case-timeline-dot-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 6px;
  }
  .case-timeline-dot {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    background: var(--warm);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.62rem;
    color: var(--accent);
    flex-shrink: 0;
    z-index: 1;
  }
  .case-timeline-body {
    padding: 0.4rem 0 2rem;
  }
  .case-timeline-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.88rem; font-weight: 400;
    color: var(--brown);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
  }
  .case-timeline-days {
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    display: block;
  }
  .case-timeline-desc {
    font-size: 0.84rem;
    line-height: 2.1;
    color: var(--brown-light);
  }

  .case-summary {
    background: var(--brown);
    padding: 2rem 2.4rem;
    margin-top: 0.4rem;
  }
  .case-summary-label {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    color: rgba(200,169,122,0.85);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.9rem;
    font-family: 'Noto Sans JP', sans-serif;
  }
  .case-summary-text {
    font-size: 0.86rem;
    line-height: 2.2;
    color: rgba(255,255,226,0.82);
  }

  @media (max-width: 600px) {
    .case-record-header { flex-direction: column; gap: 1rem; }
    .case-record-badge { width: 60px; height: 60px; }
  }

  @media (max-width: 900px) {
    .cases-orbit-wrap {
      width: min(440px, 96vw);
      height: min(440px, 96vw);
    }
    .cases-btn { width: 90px; height: 90px; }
    .cases-btn-text { font-size: 0.6rem; }
    .cases-detail-inner { padding: 2.4rem 1.8rem; }
    .cases-detail-heading { font-size: 1.15rem; }
  }

  @media (max-width: 480px) {
    .cases-orbit-wrap {
      width: min(340px, 96vw);
      height: min(340px, 96vw);
    }
    .cases-btn { width: 72px; height: 72px; }
    .cases-btn-num { font-size: 0.5rem; }
    .cases-btn-text { font-size: 0.52rem; }
  }

  /* =============================================
     CASES — スマホ版アコーディオンリスト
  ============================================= */

  .cases-list-mobile { display: none; }

  @media (max-width: 640px) {
    .cases-orbit-wrap,
    .cases-separator,
    .cases-detail { display: none !important; }
    .cases-list-mobile { display: block; margin-top: 0.5rem; }
  }

  .clm-item {
    border-bottom: 1px solid rgba(92,61,30,0.1);
    overflow: hidden;
  }
  .clm-item:first-child { border-top: 1px solid rgba(92,61,30,0.1); }

  .clm-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.05rem 0.2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
  }
  .clm-trigger:active { background: rgba(92,61,30,0.04); }
  .clm-trigger.open   { background: rgba(92,61,30,0.03); }

  .clm-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.15rem; font-weight: 300;
    color: rgba(92,61,30,0.18);
    line-height: 1;
    width: 2rem; flex-shrink: 0;
    text-align: right;
    transition: color 0.25s;
  }
  .clm-trigger.open .clm-num { color: var(--accent); }

  .clm-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.95rem; font-weight: 400;
    color: var(--brown);
    letter-spacing: 0.04em;
    flex: 1;
  }

  .clm-arrow {
    width: 24px; height: 24px;
    border: 1px solid rgba(92,61,30,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.25s, border-color 0.25s;
    color: var(--brown-light);
    font-size: 0.55rem;
    line-height: 1;
  }
  .clm-trigger.open .clm-arrow {
    transform: rotate(180deg);
    background: var(--brown);
    border-color: var(--brown);
    color: var(--cream);
  }

  .clm-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
  }
  .clm-body.open { max-height: 3000px; }

  .clm-body-inner {
    margin: 0 0.2rem 1.6rem 2.9rem;
    padding: 0.2rem 0 0 1.2rem;
    border-left: 2px solid var(--accent);
  }
  .clm-body-inner h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.82rem; font-weight: 400;
    color: var(--brown);
    margin: 1.3rem 0 0.5rem;
    letter-spacing: 0.04em;
  }
  .clm-body-inner h4:first-child { margin-top: 0.6rem; }
  .clm-body-inner p {
    font-size: 0.8rem; line-height: 2.1;
    color: var(--brown-light); margin-bottom: 0.8rem;
  }
  .clm-body-inner ul { list-style: none; padding: 0; margin-bottom: 0.8rem; }
  .clm-body-inner ul li {
    font-size: 0.8rem; line-height: 2;
    color: var(--brown-light);
    padding-left: 1rem; position: relative;
  }
  .clm-body-inner ul li::before {
    content: ''; position: absolute; left: 0; top: 0.72em;
    width: 4px; height: 4px;
    border-radius: 50%; background: var(--accent);
  }

  /* ACCESS */
  .access { background: var(--warm); }
  .access-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: start;
  }
  .access-info dl { display: grid; gap: 2rem; }
  .access-info dt {
    font-size: 0.68rem; letter-spacing: 0.25em;
    color: var(--accent); text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  .access-info dd {
    font-size: 0.88rem; line-height: 2;
    color: var(--brown-light);
  }
  .map-box {
    background: var(--warm);
    border: 1px solid rgba(92,61,30,0.15);
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
  }
  .map-box iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
    display: block;
  }

  /* CONTACT */
  .contact {
    background: #6B4A28;
    text-align: center;
    padding: 9rem 5rem;
  }
  .contact .section-label { color: var(--accent); }
  .contact .section-title { color: var(--cream); margin-bottom: 1.5rem; }
  .contact > p {
    font-size: 0.88rem; color: rgba(255,255,226,0.65);
    line-height: 2.2; margin-bottom: 4rem;
  }
  .tel-block { margin-bottom: 3.5rem; }
  .tel-big {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.6rem; font-weight: 300;
    color: var(--cream);
    letter-spacing: 0.12em;
    display: block; margin-bottom: 0.6rem;
  }
  .tel-label {
    font-size: 0.7rem; letter-spacing: 0.2em;
    color: var(--accent); display: block;
  }
  .contact .btn {
    border-color: rgba(255,255,226,0.6);
    color: var(--cream);
  }
  .contact 
  .contact .btn:hover { color: var(--brown-dark); }

  /* dark背景上の汎用ボタン */
  .btn-on-dark {
    border-color: rgba(255,255,226,0.6);
    color: var(--cream);
  }
  
  .btn-on-dark:hover { color: var(--brown-dark); }

  /* FOOTER */
  footer {
    padding: 2.5rem 5rem;
    background: #4A3020;
    display: flex; align-items: center; justify-content: space-between;
  }
  footer .footer-logo {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem; letter-spacing: 0.15em;
    color: rgba(255,255,226,0.6);
  }
  footer small {
    font-size: 0.68rem;
    color: rgba(255,255,226,0.3);
    letter-spacing: 0.08em;
  }

  /* ANIMATIONS */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px) translateY(-50%); }
    to { opacity: 0.85; transform: translateX(0) translateY(-50%); }
  }
  @keyframes lineGrow {
    from { width: 0; }
    to { width: 60px; }
  }

  /* REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s ease, transform 0.85s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-d1 { transition-delay: 0.1s; }
  .reveal-d2 { transition-delay: 0.22s; }
  .reveal-d3 { transition-delay: 0.34s; }
  .reveal-d4 { transition-delay: 0.46s; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.4rem; }
    .nav-logo-tel { display: none; }
    .nav-logo-name { font-size: 1.05rem; letter-spacing: 0.1em; }
    section { padding: 4rem 1.6rem; }
    .hero { padding: 5rem 1.6rem 3rem; min-height: 100svh; }
    .hero-bg { width: 100%; clip-path: none; opacity: 0.25; }
    .hero-slideshow { width: 100%; opacity: 0.82; }
    .hero-slideshow::before {
      background: linear-gradient(
        to bottom,
        var(--cream) 0%,
        rgba(255,255,226,0.88) 22%,
        rgba(255,255,226,0.55) 50%,
        rgba(255,255,226,0.18) 72%,
        rgba(255,255,226,0) 100%
      );
    }
    .hero-slideshow::after {
      background: linear-gradient(
        to right,
        var(--cream) 0%,
        rgba(255,255,226,0.72) 30%,
        rgba(255,255,226,0) 62%
      );
    }
    .hero-slide-dots { display: none; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-desc { font-size: 0.85rem; }
    .about { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-visual { display: none; }
    .menu-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .menu-card { padding: 1.8rem 1.4rem; }
    .flow-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .access-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    footer { flex-direction: column; gap: 0.8rem; text-align: center; }
    .menu-modal { max-width: 100%; margin: 0 1rem; }
    .menu-modal-body { padding: 2rem 1.6rem 2.4rem; }
    .menu-modal-flow-steps { flex-direction: column; gap: 0.6rem; }
    .menu-modal-flow-arrow { display: none; }
    .contact { padding: 6rem 1.6rem; }
    .tel-big { font-size: 2rem; }
    .section-title { font-size: clamp(1.5rem, 5vw, 2.2rem); margin-bottom: 2.5rem; }

    #contact-form-wrap > div {
      display: flex !important;
      flex-direction: column !important;
      gap: 2rem !important;
    }
    #rsv-tab-tel form > div {
      grid-template-columns: 1fr !important;
    }
    .nav-logo-name { font-size: 1rem; letter-spacing: 0.1em; }
    .section-title { font-size: clamp(1.4rem, 4.5vw, 2rem); margin-bottom: 2rem; }
    .therapist-inner { display: flex; flex-direction: column; gap: 2.5rem; }
    .voices-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .faq-list { padding: 0; }
    .cases-btn { width: 90px; height: 90px; font-size: 0.72rem; }
    .rsv-methods { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .map-box { min-height: 260px; }
  }

  @media (max-width: 600px) {
    .menu-grid { grid-template-columns: 1fr; }
    .menu-card { padding: 1.6rem 1.2rem; }
    .rsv-steps { gap: 0; }
    .rsv-step-label { font-size: 0.58rem; }
    .rsv-method-tab { padding: 0.8rem 0.7rem; font-size: 0.68rem; letter-spacing: 0.04em; }
    .rsv-methods { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; }
    .hero { padding: 5rem 1.2rem 2.5rem; }
    .scroll_down { right: 1.5rem; bottom: 80px; }
    .therapist-inner { gap: 2rem; flex-direction: column; }
    #contact-form-wrap > div { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .cf-grid { grid-template-columns: 1fr !important; }
    .access-inner dl div { padding: 1rem 0; }
    .voices-grid { grid-template-columns: 1fr; }
    .flow-grid { gap: 2rem; }
    footer { padding: 2rem 1.2rem; }
    .therapist { padding: 4rem 1.2rem; }
    .therapist-inner { flex-direction: column; }
    .therapist-photo { width: 100%; max-width: 240px; margin: 0 auto; }
    section { padding: 3.5rem 1.2rem; }
    .contact { padding: 5rem 1.2rem; }
    .tel-big { font-size: 1.7rem; }
    .cases-orbit-wrap { width: 100%; max-width: 340px; margin: 0 auto; }
    #rsv-tab-tel > div { padding: 0 !important; }
  }

  /* ======================================================
     COURSE IMAGE AREAS
  ====================================================== */
  .course-image-wrap {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 3.5rem;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16 / 7;
    position: relative;
    background: rgba(0,0,0,0.12);
  }
  .course-image-wrap .course-image {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .course-image-placeholder {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.8rem;
    color: rgba(255,255,255,0.35);
    font-size: 0.72rem; letter-spacing: 0.1em;
  }
  .course-image-placeholder svg {
    width: 48px; height: 32px;
  }
  .course-image-wrap:not(.no-img) .course-image-placeholder { display: none; }
  .course-image-wrap.no-img .course-image { display: none; }
  .course-image-wrap--dark .course-image-placeholder {
    color: rgba(139,167,208,0.4);
  }

  /* ======================================================
     RELAX MENU TILE GRID（セクション内）
  ====================================================== */
  .relax-menu-grid {
    max-width: none;
    width: 100%;
    margin: 0 0 2.4rem;
    border-top: 1px solid rgba(92,61,30,0.14);
  }
  .relax-menu-tile {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 0;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(92,61,30,0.1);
    cursor: pointer;
    transition: background 0.2s;
    text-align: left;
    width: 100%;
  }
  .relax-menu-tile:hover {
    background: rgba(92,61,30,0.04);
  }
  .relax-tile-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.88rem;
    color: var(--brown);
    font-weight: 400;
    flex: 1;
  }
  .relax-tile-price {
    font-size: 0.78rem;
    color: var(--accent);
    letter-spacing: 0.04em;
    margin-left: auto;
  }
  .relax-tile-price em { font-style: normal; font-size: 0.65rem; color: var(--brown-light); margin-left: 0.3em; }
  .relax-tile-arrow { display: none; }

  /* ======================================================
     RELAX DETAIL MODAL（6枠グリッド + 詳細）
  ====================================================== */
  .relax-modal-wide {
    max-width: 680px;
    width: 92%;
  }
  .relax-modal-heading {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    color: var(--brown-light);
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 0.5rem;
  }
  .relax-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .relax-detail-tile {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.4rem 1.8rem;
    background: rgba(255,255,255,0.45);
    border: 1px solid rgba(92,61,30,0.1);
    cursor: pointer;
    transition: background 0.2s;
    text-align: left;
  }
  .relax-detail-tile:hover {
    background: rgba(255,255,255,0.8);
  }
  .rdt-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.95rem;
    color: var(--brown);
    font-weight: 400;
  }
  .rdt-price {
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.05em;
  }
  .relax-back-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    color: var(--brown-light);
    letter-spacing: 0.08em;
    padding: 0 0 1.6rem;
    display: block;
    transition: color 0.15s;
  }
  .relax-back-btn:hover { color: var(--brown); }

  @media (max-width: 600px) {
    .relax-menu-grid { grid-template-columns: repeat(2, 1fr); }
    .relax-detail-grid { grid-template-columns: 1fr; }
    .relax-modal-wide { width: 96%; }
  }


  /* ======================================================
     COURSE SECTIONS — 新デザインシステム (cs-*)
  ====================================================== */

  .cs-chiro  { background: #6B4A28; }
  .cs-relax  { background: var(--warm); }
  .cs-visit  { background: #5A3D22; }

  .menu-course { padding: 7rem 5rem; position: relative; }

  .cs-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .cs-inner--reverse { direction: rtl; }
  .cs-inner--reverse > * { direction: ltr; }

  .cs-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: rgba(0,0,0,0.15);
  }
  .cs-image img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.8s ease;
  }
  .cs-image:hover img { transform: scale(1.03); }
  .cs-image-ph {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.8rem;
    color: rgba(255,255,255,0.25);
    font-size: 0.65rem; letter-spacing: 0.1em;
  }
  .cs-image-ph svg { width: 40px; opacity: 0.5; }
  .cs-image:not(.no-img) .cs-image-ph { display: none; }
  .cs-image.no-img img { display: none; }

  .cs-text { display: flex; flex-direction: column; gap: 0; }

  .cs-eyebrow {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(240,236,216,0.5);
    margin-bottom: 1.2rem;
    font-family: 'Noto Sans JP', sans-serif;
  }
  .cs-eyebrow--light { color: var(--accent); }

  .cs-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.5;
    color: #F0ECD8;
    margin: 0 0 1.8rem;
  }
  .cs-title--light { color: var(--brown); }

  .cs-lead {
    font-size: 0.85rem;
    line-height: 2.2;
    color: rgba(240,236,216,0.65);
    margin-bottom: 2.8rem;
    max-width: 420px;
  }
  .cs-lead--light { color: var(--brown-light); }

  .cs-menu-list {
    border-top: 1px solid rgba(240,236,216,0.15);
    margin-bottom: 2.4rem;
  }
  .cs-relax .cs-menu-list { border-top-color: rgba(92,61,30,0.15); }

  .cs-menu-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem 1.6rem;
    align-items: baseline;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(240,236,216,0.1);
  }
  .cs-relax .cs-menu-row { border-bottom-color: rgba(92,61,30,0.1); }

  .cs-menu-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: #F0ECD8;
    white-space: nowrap;
    letter-spacing: 0.04em;
  }
  .cs-relax .cs-menu-name { color: var(--brown); }

  .cs-menu-sub {
    font-size: 0.72rem;
    color: rgba(240,236,216,0.45);
    line-height: 1.5;
    min-width: 0;
  }
  .cs-relax .cs-menu-sub { color: var(--brown-light); opacity: 0.75; }

  .cs-menu-price {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.85rem;
    color: var(--accent);
    white-space: nowrap;
    text-align: right;
  }
  .cs-menu-price em {
    font-style: normal;
    font-size: 0.65rem;
    color: rgba(200,169,122,0.65);
    margin-left: 0.3em;
  }

  .cs-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.8rem;
  }
  .cs-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  .cs-feat-mark {
    font-size: 0.7rem;
    color: var(--accent);
    margin-top: 0.25rem;
    flex-shrink: 0;
  }
  .cs-feature strong {
    display: block;
    font-size: 0.82rem;
    color: #F0ECD8;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 0.2rem;
    font-family: 'Noto Serif JP', serif;
  }
  .cs-relax .cs-feature strong { color: var(--brown); }
  .cs-feature p {
    font-size: 0.72rem;
    color: rgba(240,236,216,0.5);
    line-height: 1.7;
    margin: 0;
  }
  .cs-relax .cs-feature p { color: var(--brown-light); opacity: 0.8; }

  .cs-btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border: 1px solid rgba(240,236,216,0.55);
    background: transparent;
    color: rgba(240,236,216,0.9);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    width: fit-content;
    position: relative;
    overflow: hidden;
  }
  .cs-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(240,236,216,0.12);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }
  .cs-btn:hover::before { transform: scaleX(1); }
  .cs-btn:hover {
    border-color: rgba(240,236,216,0.9);
    color: #F0ECD8;
  }
  .cs-btn--light {
    border-color: rgba(92,61,30,0.4);
    color: var(--brown-light);
  }
  .cs-btn--light::before { background: rgba(92,61,30,0.06); }
  .cs-btn--light:hover {
    border-color: var(--brown);
    color: var(--brown);
  }
  .cs-btn-arrow { display: none; }

  .cs-relax-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
  }
  .cs-cta-wrap {
    text-align: center;
    margin-top: 2rem;
    padding-bottom: 1rem;
  }

  .course-image-wrap { display: none; }

  @media (max-width: 860px) {
    .cs-inner {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    .cs-inner--reverse { direction: ltr; }
    .cs-image { aspect-ratio: 16 / 9; }
    .menu-course { padding: 5rem 1.6rem; }
    .cs-menu-row { grid-template-columns: 1fr auto; }
    .cs-menu-sub { display: none; }
  }


  /* ======================================================
     SECTION HEADING DOMINO ANIMATION
  ====================================================== */
  h2.domino-title .domino-char {
    display: inline-block;
  }
  h2.domino-title.domino-ready .domino-char {
    opacity: 0;
  }

  .section-nav-label {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
    margin-bottom: 1.4rem;
  }
  .section-nav-en {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    color: var(--accent);
    text-transform: uppercase;
  }
  .section-nav-ja {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    color: var(--brown-light);
  }

  /* LOADING SCREEN */
  #loading-screen {
    position: fixed;
    inset: 0;
    background: #FFFFE2;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  #loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
  }
  #loading-screen.hidden {
    display: none;
  }
  .loading-svg-wrap {
    width: min(340px, 72vw);
    margin-bottom: 2.4rem;
    filter: drop-shadow(0 0 18px rgba(92,61,30,0.10));
  }
  .loading-svg-wrap svg {
    width: 100%;
    height: auto;
  }
  @keyframes drawLine {
    to { stroke-dashoffset: 0; }
  }
  .loading-domino-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.0rem;
    font-weight: 100;
    letter-spacing: 0.3em;
    color: var(--brown);
    text-align: center;
    position: relative;
    margin: 0 0 0 0;
    width: 100%;
    opacity: 0;
  }
  .loading-domino-wrap {
    display: inline-block;
  }
  .loading-domino-title .loading-letter {
    display: inline-block;
    line-height: 1em;
    opacity: 0;
  }
  .loading-bar-wrap {
    width: min(200px, 50vw);
    height: 1px;
    background: rgba(92,61,30,0.12);
    margin-top: 1.4rem;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 200ms;
  }
  .loading-bar {
    height: 100%;
    background: var(--accent);
    width: 0%;
    animation: barGrow 6127ms ease forwards 200ms;
  }
  @keyframes barGrow {
    from { width: 0%; }
    to { width: 100%; }
  }


  /* ======================================================
     RESERVATION SECTION
  ====================================================== */
  .reservation {
    background: var(--warm);
    padding: 8rem 5rem;
  }
  .reservation .section-title { margin-bottom: 0.8rem; }
  .reservation > .section-desc {
    font-size: 0.88rem; color: var(--brown-light);
    line-height: 2.1; margin-bottom: 4rem;
    max-width: 560px;
  }

  .rsv-steps {
    display: flex; align-items: center;
    gap: 0; margin-bottom: 4rem;
    max-width: 680px;
  }
  .rsv-step {
    display: flex; flex-direction: column; align-items: center;
    flex: 1; position: relative;
    cursor: default;
  }
  .rsv-step:not(:last-child)::after {
    content: '';
    position: absolute; top: 18px; left: 60%;
    width: 80%; height: 1px;
    background: rgba(92,61,30,0.2);
    transition: background 0.4s;
  }
  .rsv-step.done:not(:last-child)::after { background: var(--accent); }
  .rsv-step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(92,61,30,0.25);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.82rem; color: var(--brown-light);
    background: var(--cream);
    transition: all 0.4s;
    position: relative; z-index: 1;
  }
  .rsv-step.active .rsv-step-num {
    background: var(--brown); color: var(--cream);
    border-color: var(--brown);
    box-shadow: 0 0 0 4px rgba(92,61,30,0.08);
  }
  .rsv-step.done .rsv-step-num {
    background: var(--accent); color: var(--cream);
    border-color: var(--accent);
  }
  .rsv-step-label {
    font-size: 0.65rem; letter-spacing: 0.12em;
    color: var(--brown-light); margin-top: 0.5rem;
    text-align: center;
  }
  .rsv-step.active .rsv-step-label { color: var(--brown); font-weight: 500; }

  .rsv-panel { display: none; }
  .rsv-panel.active { display: block; }

  .rsv-calendar-wrap {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: start;
    margin-bottom: 3rem;
  }
  .calendar-box {
    border: 1px solid rgba(92,61,30,0.15);
    padding: 2rem;
    background: var(--warm);
  }
  .cal-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.6rem;
  }
  .cal-nav-btn {
    background: none; border: none; cursor: pointer;
    width: 32px; height: 32px;
    border: 1px solid rgba(92,61,30,0.2);
    color: var(--brown-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    transition: all 0.3s;
  }
  .cal-nav-btn:hover { background: var(--brown); color: var(--cream); border-color: var(--brown); }
  .cal-month-label {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem; color: var(--brown);
    letter-spacing: 0.1em;
  }
  .cal-grid {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 4px;
  }
  .cal-dow {
    text-align: center; font-size: 0.65rem;
    letter-spacing: 0.1em; color: var(--accent);
    padding-bottom: 0.6rem;
  }
  .cal-dow:first-child { color: #c0776a; }
  .cal-dow:last-child { color: #7a9cc0; }
  .cal-day {
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; color: var(--brown-light);
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.25s;
    border: 1px solid transparent;
    background: none;
    font-family: inherit;
  }
  .cal-day:hover:not(.disabled):not(.empty) {
    background: rgba(92,61,30,0.08);
    border-color: rgba(92,61,30,0.2);
  }
  .cal-day.selected {
    background: var(--brown) !important;
    color: var(--cream) !important;
    border-color: var(--brown) !important;
  }
  .cal-day.today { border-color: var(--accent); color: var(--brown); font-weight: 500; }
  .cal-day.disabled { opacity: 0.28; cursor: not-allowed; }
  .cal-day.empty { cursor: default; }
  .cal-day.sun { color: #c0776a; }
  .cal-day.sat { color: #7a9cc0; }
  .cal-day.has-slot::after {
    content: ''; display: block; width: 4px; height: 4px;
    background: var(--accent); border-radius: 50%;
    position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
  }
  .cal-day { position: relative; }

  .time-slot-box { }
  .time-slot-title {
    font-size: 0.72rem; letter-spacing: 0.22em;
    color: var(--accent); text-transform: uppercase;
    margin-bottom: 1.4rem; display: block;
  }
  .time-slots-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }
  .time-slot-btn {
    padding: 0.7rem 0.4rem;
    border: 1px solid rgba(92,61,30,0.2);
    background: var(--cream);
    font-size: 0.78rem; color: var(--brown-light);
    cursor: pointer; text-align: center;
    transition: all 0.25s;
    font-family: inherit;
    letter-spacing: 0.05em;
  }
  .time-slot-btn:hover:not(.full):not(.selected) {
    border-color: var(--brown); color: var(--brown);
    background: var(--warm);
  }
  .time-slot-btn.selected,
  .time-slot-btn.selected:hover,
  .time-slot-btn.selected:focus,
  .time-slot-btn.selected:active {
    background: var(--brown) !important;
    color: var(--cream) !important;
    border-color: var(--brown) !important;
  }
  .time-slot-btn.full {
    opacity: 0.35; cursor: not-allowed; text-decoration: line-through;
  }
  .no-date-msg {
    font-size: 0.82rem; color: var(--brown-light);
    opacity: 0.6; line-height: 2; padding: 1rem 0;
  }

  /* ---- FORM FIELDS ---- */
  .rsv-form-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.8rem 2.4rem;
    margin-bottom: 2.4rem;
  }
  .rsv-form-grid .full-width { grid-column: 1 / -1; }
  .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
  .form-label {
    font-size: 0.68rem; letter-spacing: 0.2em;
    color: var(--accent); text-transform: uppercase;
  }
  .form-label .req { color: #c0776a; margin-left: 2px; }
  .form-input, .form-select, .form-textarea {
    padding: 0.85rem 1rem;
    border: 1px solid rgba(92,61,30,0.2);
    background: var(--warm);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.88rem;
    color: var(--brown-dark);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none;
    border-radius: 0;
    width: 100%;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--brown);
    box-shadow: 0 0 0 3px rgba(92,61,30,0.06);
    background: var(--cream);
  }
  .form-input.error, .form-select.error, .form-textarea.error {
    border-color: #c0776a;
    box-shadow: 0 0 0 3px rgba(192,119,106,0.08);
  }
  .form-textarea { resize: vertical; min-height: 110px; line-height: 1.9; }
  .form-select-wrap { position: relative; }
  .form-select-wrap::after {
    content: '▾'; position: absolute;
    right: 1rem; top: 50%; transform: translateY(-50%);
    color: var(--accent); pointer-events: none; font-size: 0.8rem;
  }
  .form-error {
    font-size: 0.68rem; color: #c0776a;
    margin-top: 0.2rem; display: none;
  }
  .form-error.show { display: block; }

  /* Radio / Checkbox group */
  .radio-group, .check-group {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
  }
  .radio-label, .check-label {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border: 1px solid rgba(92,61,30,0.2);
    cursor: pointer; font-size: 0.82rem;
    color: var(--brown-light);
    transition: all 0.25s;
    background: var(--warm);
    user-select: none;
  }
  .radio-label:hover, .check-label:hover {
    border-color: var(--brown); color: var(--brown);
  }
  .radio-label input, .check-label input { display: none; }
  .radio-label.checked, .check-label.checked {
    background: var(--brown); color: var(--cream);
    border-color: var(--brown);
  }

  /* ---- CONFIRM PANEL ---- */
  .rsv-confirm-table {
    border: 1px solid rgba(92,61,30,0.15);
    margin-bottom: 3rem;
    background: var(--warm);
  }
  .rsv-confirm-row {
    display: grid; grid-template-columns: 180px 1fr;
    border-bottom: 1px solid rgba(92,61,30,0.1);
    padding: 1.1rem 1.6rem;
  }
  .rsv-confirm-row:last-child { border-bottom: none; }
  .rsv-confirm-key {
    font-size: 0.68rem; letter-spacing: 0.2em;
    color: var(--accent); text-transform: uppercase;
    padding-top: 0.1rem;
  }
  .rsv-confirm-val {
    font-size: 0.88rem; color: var(--brown);
    line-height: 1.8;
  }

  /* ---- COMPLETE PANEL ---- */
  .rsv-complete {
    text-align: center; padding: 4rem 0;
  }
  .rsv-complete-icon {
    width: 64px; height: 64px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin: 0 auto 2rem;
    color: var(--accent);
  }
  .rsv-complete h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem; font-weight: 300;
    color: var(--brown); margin-bottom: 1.2rem;
    letter-spacing: 0.08em;
  }
  .rsv-complete p {
    font-size: 0.88rem; color: var(--brown-light);
    line-height: 2.2; max-width: 440px; margin: 0 auto 2.5rem;
  }

  /* ---- NAV BUTTONS ---- */
  .rsv-btn-row {
    display: flex; align-items: center; gap: 1.2rem;
    margin-top: 2.8rem;
  }
  .rsv-btn-row .btn-ghost {
    padding: 0.9rem 2rem;
    border: 1px solid rgba(92,61,30,0.25);
    color: var(--brown-light);
    font-size: 0.78rem; letter-spacing: 0.15em;
    cursor: pointer; background: transparent;
    font-family: 'Noto Sans JP', sans-serif;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    position: relative; overflow: hidden;
    isolation: isolate;
  }
  .rsv-btn-row .btn-ghost:hover {
    border-color: var(--brown);
    color: var(--cream);
    background: var(--brown);
  }

  /* ---- RESERVATION SPLIT ---- */
  .rsv-methods {
    display: flex; gap: 1.2rem; margin-bottom: 4rem;
    border-bottom: 1px solid rgba(92,61,30,0.15);
  }
  .rsv-method-tab {
    padding: 0.9rem 2rem;
    font-size: 0.78rem; letter-spacing: 0.15em;
    color: var(--brown-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    background: none; border-top: none; border-left: none; border-right: none;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s; margin-bottom: -1px;
  }
  .rsv-method-tab.active {
    color: var(--brown); border-bottom-color: var(--brown);
  }

  /* ---- CONTACT UPDATED ---- */
  .contact-quick {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 2.5rem auto 0;
  }
  .contact-quick-item {
    display: flex; flex-direction: column; align-items: center;
    gap: 0.6rem; padding: 0.8rem 0;
  }
  .contact-quick-label {
    font-size: 0.65rem; letter-spacing: 0.2em;
    color: var(--accent);
  }
  .contact-quick-val {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem; font-weight: 300;
    color: var(--cream); letter-spacing: 0.1em;
  }

  /* ---- RESPONSIVE ---- */
  @media (max-width: 900px) {
    .reservation { padding: 4rem 1.6rem; }
    .rsv-calendar-wrap { grid-template-columns: 1fr; gap: 2rem; }
    .rsv-form-grid { grid-template-columns: 1fr; }
    .rsv-form-grid .full-width { grid-column: 1; }
    .rsv-confirm-row { grid-template-columns: 110px 1fr; padding: 0.85rem 1rem; }
    .time-slots-grid { grid-template-columns: repeat(4, 1fr); }
    .rsv-methods { gap: 0; overflow-x: auto; }
    .rsv-method-tab { padding: 0.9rem 1rem; font-size: 0.72rem; white-space: nowrap; }
    .rsv-steps { max-width: 100%; }
    .cal-day { font-size: 0.75rem; }
  }

  @media (max-width: 500px) {
    .rsv-method-tab { padding: 0.8rem 0.7rem; font-size: 0.65rem; }
    .rsv-confirm-row { grid-template-columns: 90px 1fr; font-size: 0.82rem; }
    .time-slots-grid { grid-template-columns: repeat(3, 1fr); }
  }


  /* ======================================================
     VOICES (お客様の声)
  ====================================================== */
  .voices { background: var(--warm); }
  .voices-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 2rem; margin-top: 3.5rem;
  }
  .voice-card {
    background: var(--cream);
    padding: 2.2rem 2rem;
    border: 1px solid rgba(92,61,30,0.12);
    display: flex; flex-direction: column; gap: 1.2rem;
    position: relative;
  }
  .voice-stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.1em; }
  .voice-text {
    font-size: 0.87rem; line-height: 2.1;
    color: var(--brown-light); flex: 1;
    font-style: italic;
  }
  .voice-text::before {
    content: '「'; font-style: normal;
    color: var(--accent); font-size: 1.1em;
  }
  .voice-text::after {
    content: '」'; font-style: normal;
    color: var(--accent); font-size: 1.1em;
  }
  .voice-author {
    display: flex; align-items: center; gap: 0.8rem;
    padding-top: 1rem; border-top: 1px solid rgba(92,61,30,0.1);
  }
  .voice-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--warm);
    border: 1px solid rgba(92,61,30,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--accent); flex-shrink: 0;
  }
  .voice-name { font-size: 0.78rem; color: var(--brown); letter-spacing: 0.08em; }
  .voice-detail { font-size: 0.68rem; color: var(--brown-light); margin-top: 0.15rem; }

  /* ======================================================
     VISIT (出張施術)
  ====================================================== */
  .visit { background: var(--cream); }
  .visit-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: start;
  }
  .visit-text .divider { margin: 1.2rem 0 1.8rem; }
  .visit-text p { font-size: 0.88rem; line-height: 2.2; color: var(--brown-light); margin-bottom: 1.2rem; }
  .visit-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin: 2rem 0;
  }
  .visit-feature {
    padding: 1.2rem;
    border: 1px solid rgba(92,61,30,0.15);
    background: var(--warm);
  }
  .visit-feature-icon { font-size: 1.4rem; margin-bottom: 0.5rem; }
  .visit-feature-title {
    font-size: 0.78rem; font-weight: 500;
    color: var(--brown); letter-spacing: 0.06em; margin-bottom: 0.4rem;
  }
  .visit-feature-desc { font-size: 0.72rem; color: var(--brown-light); line-height: 1.8; }
  .visit-note {
    font-size: 0.75rem; color: var(--brown-light);
    border-left: 2px solid var(--accent);
    padding-left: 1rem; line-height: 2;
    margin-top: 1.5rem;
  }
  .visit-pricing {
    border: 1px solid rgba(92,61,30,0.15);
    background: var(--warm);
  }
  .visit-pricing-head {
    padding: 1.2rem 1.8rem;
    border-bottom: 1px solid rgba(92,61,30,0.12);
    font-size: 0.68rem; letter-spacing: 0.22em;
    color: var(--accent); text-transform: uppercase;
  }
  .visit-pricing-row {
    display: grid; grid-template-columns: 1fr auto;
    padding: 1.1rem 1.8rem;
    border-bottom: 1px solid rgba(92,61,30,0.08);
    align-items: baseline; gap: 1rem;
  }
  .visit-pricing-row:last-child { border-bottom: none; }
  .visit-pricing-label { font-size: 0.85rem; color: var(--brown); }
  .visit-pricing-sub { font-size: 0.7rem; color: var(--brown-light); margin-top: 0.2rem; }
  .visit-pricing-price {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem; font-weight: 300; color: var(--brown);
  }
  .visit-pricing-price span { font-size: 0.7rem; color: var(--brown-light); margin-left: 3px; }

  /* ======================================================
     THERAPIST (施術者紹介)
  ====================================================== */
  .therapist { background: var(--warm); }
  .therapist-inner {
    display: grid; grid-template-columns: 280px 1fr;
    gap: 5rem; align-items: start;
  }
  .therapist-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--warm);
    border: 1px solid rgba(92,61,30,0.12);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .therapist-photo img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
  .therapist-photo .photo-empty-label {
    font-size: 0.68rem; letter-spacing: 0.15em;
    color: rgba(92,61,30,0.3); text-align: center; line-height: 2;
  }
  .therapist-info .section-label { margin-bottom: 0.5rem; }
  .therapist-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem; font-weight: 300;
    color: var(--brown); letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
  }
  .therapist-name-kana {
    font-size: 0.72rem; letter-spacing: 0.2em;
    color: var(--accent); margin-bottom: 1.6rem;
  }
  .therapist-bio {
    font-size: 0.88rem; line-height: 2.2;
    color: var(--brown-light); margin-bottom: 2rem;
  }
  .therapist-career { list-style: none; display: grid; gap: 0.8rem; }
  .therapist-career li {
    display: grid; grid-template-columns: 90px 1fr;
    gap: 1rem; font-size: 0.82rem;
  }
  .therapist-career li .year {
    color: var(--accent); font-family: 'Noto Serif JP', serif;
    font-size: 0.8rem; letter-spacing: 0.05em;
    padding-top: 0.05rem;
  }
  .therapist-career li .desc { color: var(--brown-light); line-height: 1.8; }
  .therapist-quals {
    display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem;
  }
  .therapist-qual {
    padding: 0.45rem 1rem;
    border: 1px solid rgba(92,61,30,0.2);
    font-size: 0.72rem; letter-spacing: 0.06em; color: var(--brown-light);
  }

  /* ======================================================
     CANCEL MODAL (予約取消し)
  ====================================================== */
  .rsv-method-tab-cancel { /* 取消しタブ */ }
  #rsv-tab-cancel { }
  .cancel-form-wrap {
    max-width: 520px; padding: 2rem 0;
  }
  .cancel-result {
    border: 1px solid rgba(92,61,30,0.15);
    background: var(--warm);
    margin: 2rem 0;
  }
  .cancel-result-row {
    display: grid; grid-template-columns: 130px 1fr;
    padding: 0.9rem 1.4rem;
    border-bottom: 1px solid rgba(92,61,30,0.08);
    font-size: 0.85rem;
  }
  .cancel-result-row:last-child { border-bottom: none; }
  .cancel-result-key { color: var(--accent); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; padding-top: 0.1rem; }
  .cancel-result-val { color: var(--brown); }
  .cancel-warn {
    font-size: 0.78rem; color: var(--brown-light); line-height: 2;
    border-left: 2px solid #c0776a;
    padding-left: 1rem; margin: 1.5rem 0;
  }
  .cancel-done {
    text-align: center; padding: 3rem 0;
  }
  .cancel-done-icon {
    width: 52px; height: 52px; border-radius: 50%;
    border: 1px solid rgba(92,61,30,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--brown-light);
    margin: 0 auto 1.5rem;
  }
  .cancel-done h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem; font-weight: 300;
    color: var(--brown); margin-bottom: 0.8rem; letter-spacing: 0.08em;
  }
  .cancel-done p { font-size: 0.85rem; color: var(--brown-light); line-height: 2; }
  .btn-danger {
    padding: 0.9rem 2rem;
    background: transparent;
    border: 1px solid #c0776a;
    color: #c0776a;
    font-size: 0.78rem; letter-spacing: 0.15em;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s;
  }
  .btn-danger:hover { background: #c0776a; color: var(--cream); }

  .therapist-inner--reverse {
    direction: rtl;
  }
  .therapist-inner--reverse > * {
    direction: ltr;
  }
  /* responsive additions */
  @media (max-width: 900px) {
    .voices-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    .therapist-inner { grid-template-columns: 1fr; gap: 2rem; }
    .therapist-photo { aspect-ratio: 4/3; max-width: 240px; }
    .therapist-inner--reverse { direction: ltr; }
    .faq-question { font-size: 0.88rem; }
  }

  @media (max-width: 600px) {
    .voices-grid { grid-template-columns: 1fr; }
  }


  /* ======================================================
     BACK TO TOP
  ====================================================== */
  #back-to-top {
    position: fixed;
    bottom: 2.4rem; right: 2.4rem;
    width: 48px; height: 48px;
    border: 1px solid rgba(92,61,30,0.3);
    background: rgba(255,255,226,0.88);
    backdrop-filter: blur(10px);
    color: var(--brown);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 200;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s, border-color 0.3s;
    pointer-events: none;
    font-size: 1rem;
  }
  #back-to-top.visible {
    opacity: 1; transform: translateY(0); pointer-events: auto;
  }
  #back-to-top:hover {
    background: var(--brown); color: var(--cream);
    border-color: var(--brown);
  }
  #back-to-top svg {
    width: 16px; height: 16px; stroke: currentColor;
    fill: none; stroke-width: 2; stroke-linecap: round;
  }

  /* ======================================================
     FOOTER NAV SECTION (サイトマップ)
  ====================================================== */
  .footer-nav-section {
    background: #4A3020;
    padding: 5rem 5rem 4rem;
    border-top: 1px solid rgba(255,255,226,0.08);
  }
  .footer-nav-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-nav-heading {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(200,169,122,0.25);
  }
  .footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }
  .footer-nav-list a {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: rgba(255,255,226,0.45);
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.6;
  }
  .footer-nav-list a:hover {
    color: rgba(255,255,226,0.85);
  }
  @media (max-width: 900px) {
    .footer-nav-section { padding: 4rem 1.6rem 3rem; }
    .footer-nav-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.6rem; }
  }
  @media (max-width: 500px) {
    .footer-nav-inner { grid-template-columns: 1fr 1fr; gap: 1.6rem 1.2rem; }
    .footer-nav-heading { font-size: 0.68rem; }
    .footer-nav-list a { font-size: 0.72rem; }
  }


  /* =====================================================
     SECTION TEXT DRAWING ANIMATION
  ===================================================== */
  #section-svg-layer {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 50;
    overflow: visible;
  }
  .section-text-bg-wrap {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .section-text-bg-wrap[data-section="reservation"] { max-width: 75%; }
  .section-text-bg-wrap[data-section="faq"]         { max-width: 62%; }
  .section-text-bg-wrap.visible {
    opacity: 1;
  }
  .section-text-bg-wrap.visible .section-text-bg path {
    animation-play-state: running !important;
  }
  .section-text-bg { display: block; width: 100%; height: auto; }
  @keyframes sectionDraw { to { stroke-dashoffset: 0; } }
  @keyframes sectionFade { from { opacity: 0; } to { opacity: 1; } }
  section { position: relative; overflow: hidden; }

  /* =============================================
     UI IMPROVEMENTS
  ============================================= */
  .reservation {
    background: var(--warm);
  }

  .rsv-steps {
    display: flex; align-items: center;
    gap: 0; margin-bottom: 3rem;
    padding: 0;
  }
  .rsv-step {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; gap: 0.5rem;
    position: relative;
  }
  .rsv-step:not(:last-child)::after {
    content: ''; position: absolute;
    top: 18px; left: 50%; width: 100%;
    height: 1px; background: rgba(92,61,30,0.15);
    z-index: 0;
  }
  .rsv-step.done:not(:last-child)::after { background: var(--accent); }
  .rsv-step-num {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(92,61,30,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; color: var(--brown-light);
    background: var(--cream); position: relative; z-index: 1;
    transition: all 0.3s;
  }
  .rsv-step.active .rsv-step-num {
    background: var(--brown); color: var(--cream);
    border-color: var(--brown);
    box-shadow: 0 4px 14px rgba(92,61,30,0.25);
  }
  .rsv-step.done .rsv-step-num {
    background: var(--accent); color: var(--cream);
    border-color: var(--accent);
  }
  .rsv-step-label {
    font-size: 0.62rem; letter-spacing: 0.12em;
    color: var(--brown-light); text-align: center;
    white-space: nowrap;
  }
  .rsv-step.active .rsv-step-label { color: var(--brown); font-weight: 500; }

  .rsv-panel {
    opacity: 0; display: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
  }
  .rsv-panel.active {
    display: block; opacity: 1;
  }

  .rsv-form-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.2rem 2rem;
  }
  .rsv-form-grid .full-width { grid-column: 1 / -1; }

  .rsv-step-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem; font-weight: 300;
    color: var(--brown); letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
  }
  .rsv-step-subtitle {
    font-size: 0.75rem; color: var(--brown-light);
    margin-bottom: 2rem; line-height: 1.9;
  }

  .rsv-methods {
    display: flex; gap: 0;
    border-bottom: 1px solid rgba(92,61,30,0.12);
    margin-bottom: 2.4rem;
  }
  .rsv-method-tab {
    padding: 0.85rem 1.6rem;
    font-size: 0.78rem; letter-spacing: 0.08em;
    background: none; border: none; cursor: pointer;
    color: var(--brown-light);
    border-bottom: 2px solid transparent;
    transition: all 0.22s; white-space: nowrap;
  }
  .rsv-method-tab.active {
    color: var(--brown);
    border-bottom-color: var(--accent);
  }
  .rsv-method-tab:hover { color: var(--brown); }

  .rsv-confirm-table {
    border: 1px solid rgba(92,61,30,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
  }
  .rsv-confirm-row {
    display: grid; grid-template-columns: 160px 1fr;
    border-bottom: 1px solid rgba(92,61,30,0.08);
  }
  .rsv-confirm-row:last-child { border-bottom: none; }
  .rsv-confirm-key {
    padding: 0.9rem 1.2rem;
    font-size: 0.72rem; letter-spacing: 0.12em;
    color: var(--accent); background: rgba(200,169,122,0.08);
    display: flex; align-items: center;
  }
  .rsv-confirm-val {
    padding: 0.9rem 1.4rem;
    font-size: 0.85rem; color: var(--brown);
    display: flex; align-items: center;
  }

  .rsv-complete {
    text-align: center; padding: 3rem 2rem;
    max-width: 480px; margin: 0 auto;
  }
  .rsv-complete-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--brown));
    color: var(--cream); font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.6rem;
    box-shadow: 0 8px 24px rgba(92,61,30,0.2);
  }
  .rsv-complete h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem; font-weight: 300;
    color: var(--brown); margin-bottom: 1rem;
    letter-spacing: 0.06em;
  }
  .rsv-complete p {
    font-size: 0.82rem; color: var(--brown-light);
    line-height: 2.1; margin-bottom: 0.8rem;
  }

  .rsv-loading {
    display: none; text-align: center;
    padding: 3rem; color: var(--brown-light);
    font-size: 0.8rem; letter-spacing: 0.15em;
  }
  .rsv-loading.show { display: block; }
  .rsv-spinner {
    width: 32px; height: 32px;
    border: 2px solid rgba(92,61,30,0.15);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  #rsv-toast {
    position: fixed; bottom: 2rem; left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--brown); color: var(--cream);
    padding: 0.9rem 2rem; font-size: 0.8rem;
    letter-spacing: 0.08em; z-index: 9999;
    transition: transform 0.3s ease; pointer-events: none;
    white-space: nowrap; border-radius: 2px;
    box-shadow: 0 8px 24px rgba(92,61,30,0.3);
  }
  #rsv-toast.show { transform: translateX(-50%) translateY(0); }
  #rsv-toast.error { background: #c0776a; }

  .rsv-change-banner {
    background: var(--cream);
    border: 1px solid var(--accent);
    padding: 1.4rem 1.8rem;
    margin-bottom: 2.4rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap;
  }
  .rsv-change-banner-info { flex: 1; }
  .rsv-change-banner-label {
    font-size: 0.62rem; letter-spacing: 0.2em;
    color: var(--accent); text-transform: uppercase;
    margin-bottom: 0.3rem;
  }
  .rsv-change-banner-text {
    font-size: 0.88rem; color: var(--brown);
    font-family: 'Noto Serif JP', serif;
  }
  .rsv-change-banner-btns { display: flex; gap: 0.6rem; flex-wrap: wrap; }

  .btn-ghost {
    display: inline-block; padding: 0.85rem 2rem;
    border: 1px solid rgba(92,61,30,0.3);
    font-size: 0.72rem; letter-spacing: 0.2em;
    color: var(--brown); cursor: pointer;
    background: transparent; transition: all 0.3s;
    font-family: 'Noto Serif JP', serif;
  }
  .btn-ghost:hover { background: var(--brown); color: var(--cream); }

  .my-bookings-list {
    display: flex; flex-direction: column; gap: 0.8rem;
    margin-bottom: 1.6rem;
  }
  .my-booking-item {
    padding: 1.1rem 1.4rem;
    background: var(--cream);
    border: 1px solid rgba(92,61,30,0.12);
    display: flex; align-items: center; gap: 1.2rem;
    flex-wrap: wrap;
  }
  .my-booking-item-date {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.9rem; color: var(--brown);
    flex: 1; min-width: 160px;
  }
  .my-booking-item-menu {
    font-size: 0.75rem; color: var(--brown-light);
    flex: 1;
  }
  .my-booking-item-btns { display: flex; gap: 0.5rem; }
  /* =============================================
     ADMIN PANEL
  ============================================= */
  #admin-overlay { display:none; position:fixed; inset:0; background:rgba(40,25,10,0.72); backdrop-filter:blur(8px); z-index:10000; align-items:center; justify-content:center; padding:1.5rem; }
  #admin-overlay.open { display:flex; }
  #admin-panel { background:var(--cream); width:100%; max-width:900px; max-height:90vh; overflow-y:auto; box-shadow:0 32px 80px rgba(40,25,10,0.35); }
  .admin-header { background:var(--brown); padding:1.4rem 2rem; display:flex; align-items:center; justify-content:space-between; }
  .admin-header h2 { font-family:'Noto Serif JP',serif; font-size:1rem; font-weight:400; letter-spacing:0.2em; color:var(--cream); }
  .admin-close { background:none; border:1px solid rgba(255,255,255,0.3); color:var(--cream); width:32px; height:32px; cursor:pointer; font-size:1rem; display:flex; align-items:center; justify-content:center; transition:background 0.2s; }
  .admin-close:hover { background:rgba(255,255,255,0.15); }
  #admin-login { padding:3rem 2.5rem; text-align:center; }
  .admin-login-form { display:flex; flex-direction:column; gap:1rem; max-width:320px; margin:0 auto; }
  .admin-login-err { font-size:0.72rem; color:#c0776a; display:none; margin-top:0.3rem; }
  .admin-login-err.show { display:block; }
  #admin-main { display:none; padding:2rem; }
  .admin-tabs { display:flex; border-bottom:1px solid rgba(92,61,30,0.15); margin-bottom:2rem; }
  .admin-tab { padding:0.8rem 1.6rem; font-size:0.78rem; letter-spacing:0.1em; background:none; border:none; cursor:pointer; color:var(--brown-light); border-bottom:2px solid transparent; transition:all 0.2s; }
  .admin-tab.active { color:var(--brown); border-bottom-color:var(--accent); }
  .admin-tab-content { display:none; }
  .admin-tab-content.active { display:block; }
  .admin-table { width:100%; border-collapse:collapse; font-size:0.78rem; }
  .admin-table th { background:var(--warm); padding:0.7rem 1rem; text-align:left; font-weight:400; letter-spacing:0.08em; color:var(--brown); border-bottom:1px solid rgba(92,61,30,0.15); }
  .admin-table td { padding:0.7rem 1rem; border-bottom:1px solid rgba(92,61,30,0.08); color:var(--brown-light); vertical-align:middle; }
  .admin-table tr:hover td { background:rgba(200,169,122,0.06); }
  .admin-table tr.cancelled td { opacity:0.4; text-decoration:line-through; }
  .admin-badge { display:inline-block; font-size:0.62rem; letter-spacing:0.1em; padding:0.18rem 0.6rem; border-radius:2px; }
  .admin-badge.web { background:rgba(92,61,30,0.1); color:var(--brown); }
  .admin-badge.tel { background:rgba(200,169,122,0.3); color:var(--brown); }
  .admin-badge.done { background:rgba(92,61,30,0.08); color:#999; }
  .admin-btn-sm { font-size:0.7rem; padding:0.3rem 0.8rem; border:1px solid rgba(92,61,30,0.25); background:none; cursor:pointer; color:var(--brown); transition:all 0.2s; }
  .admin-btn-sm:hover { background:var(--brown); color:var(--cream); border-color:var(--brown); }
  .admin-btn-sm.danger { border-color:#c0776a; color:#c0776a; }
  .admin-btn-sm.danger:hover { background:#c0776a; color:white; }
  .admin-tel-form { max-width:520px; display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
  .admin-tel-form .full { grid-column:1/-1; }
  .admin-field-label { font-size:0.7rem; letter-spacing:0.12em; color:var(--accent); margin-bottom:0.4rem; display:block; }
  .admin-empty { text-align:center; padding:3rem 0; font-size:0.82rem; color:var(--brown-light); }
  #admin-trigger { display:none !important; }

  /* =====================================================
     MENU COURSE SECTIONS
  ===================================================== */
  .menu-course {
    padding: 7rem 5rem;
    position: relative;
    overflow: hidden;
  }
  .course-header {
    margin-bottom: 4rem;
    position: relative; z-index: 1;
  }
  .course-eyebrow {
    display: block;
    font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
    font-size: 0.75rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
  }
  .course-divider {
    width: 36px; height: 1px;
    margin: 1.4rem 0 1.8rem;
  }
  .course-lead {
    font-size: 0.92rem;
    line-height: 2.2;
    max-width: 560px;
  }
  .course-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3.5rem;
    position: relative; z-index: 1;
  }
  .course-price-cards {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  .course-price-card {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    padding: 1.4rem 1.6rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    align-items: center;
    transition: background 0.25s;
  }
  .menu-course[style*="cream"] .course-price-card:hover,
  .menu-course[style*="var(--cream)"] .course-price-card:hover {
    background: var(--warm);
  }
  .course-price-card:hover { background: rgba(255,255,255,0.08); }
  .course-price-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    grid-row: 1 / 3;
  }
  .course-price-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: inherit;
    opacity: 0.95;
  }
  .course-price-sub {
    font-size: 0.72rem;
    opacity: 0.55;
    line-height: 1.6;
    grid-column: 2;
    margin-top: 0.2rem;
  }
  .course-price-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    grid-row: 1 / 3;
    white-space: nowrap;
    text-align: right;
  }
  .course-price-val span {
    display: block;
    font-size: 0.7rem;
    opacity: 0.65;
    margin-top: 2px;
    text-align: right;
  }
  .course-features {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }
  .course-feature-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
  }
  .course-feature-icon {
    font-size: 0.7rem;
    margin-top: 0.35rem;
    flex-shrink: 0;
  }
  .course-feature-title {
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.3rem;
    font-weight: 400;
  }
  .course-feature-desc {
    font-size: 0.78rem;
    line-height: 1.85;
    color: var(--brown-light);
    opacity: 0.85;
  }
  .course-relax-detail {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 0.5rem;
  }
  .course-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0;
    padding-bottom: 0.5rem;
    border: none;
    border-bottom: 1px solid rgba(92,61,30,0.25);
    background: transparent;
    color: var(--brown-light);
    font-family: 'Noto Serif JP', serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: color 0.25s, border-color 0.25s;
    touch-action: manipulation;
  }
  .course-detail-btn:hover {
    color: var(--brown);
    border-color: var(--accent);
  }
  .course-cta {
    position: relative; z-index: 1;
    text-align: center;
  }
  .relax-modal-tabs {
    display: flex;
    border-bottom: 1px solid rgba(92,61,30,0.15);
    padding: 0 1.8rem;
    gap: 0;
  }
  .relax-tab {
    padding: 1rem 1.4rem;
    border: none;
    background: transparent;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--brown-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.25s;
    touch-action: manipulation;
  }
  .relax-tab.active {
    color: var(--brown);
    border-bottom-color: var(--accent);
  }
  .relax-tab:hover { color: var(--brown); }

  @media (max-width: 900px) {
    .menu-course { padding: 4rem 1.4rem; }
    .course-body { grid-template-columns: 1fr; gap: 2rem; }
    .course-relax-detail { grid-column: 1; }
    .relax-modal-tabs { padding: 0 1rem; flex-wrap: wrap; }
    .relax-tab { font-size: 0.68rem; padding: 0.8rem 0.8rem; }
  }


  /* RELAX DETAIL HERO IMAGE */
  .relax-detail-hero { width: 100%; margin-bottom: 1.8rem; }
  .relax-detail-hero-img {
    width: 100%;
    aspect-ratio: 16/6;
    overflow: hidden;
    background: rgba(92,61,30,0.06);
    position: relative;
  }
  .relax-detail-hero-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
  .relax-detail-hero-img.no-img img { display: none; }
  .relax-detail-hero-ph {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.8rem; color: rgba(92,61,30,0.3);
  }
  .relax-detail-hero-img:not(.no-img) .relax-detail-hero-ph { display: none; }
  .relax-detail-hero-ph svg { width: 40px; height: 27px; }
  .relax-detail-hero-ph span { font-size: 0.68rem; letter-spacing: 0.12em; }

  @media (max-width: 600px) {
    .contact-quick { grid-template-columns: 1fr; max-width: 340px; }
  }

  .menu-modal-price-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin: 1.2rem 0 1.6rem;
  }
  .menu-modal-price-card {
    display: flex; flex-direction: column; gap: 0.3rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(92,61,30,0.12);
    background: rgba(92,61,30,0.03);
  }
  .menu-modal-price-label {
    font-size: 0.6rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--accent);
  }
  .menu-modal-price-card .menu-modal-price {
    font-size: 1.4rem;
  }
  .menu-modal-price-card .menu-modal-duration {
    font-size: 0.75rem; color: rgba(92,61,30,0.6);
  }
  @media (max-width: 500px) {
    .menu-modal-price-grid { grid-template-columns: 1fr; }
  }

  .rsv-under-construction {
    display: flex; flex-direction: column; align-items: center;
    padding: 4rem 2rem; text-align: center; gap: 1.2rem;
  }
  .rsv-uc-icon { font-size: 2.5rem; }
  .rsv-uc-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem; font-weight: 300; letter-spacing: 0.1em;
    color: var(--brown-dark); line-height: 1.8;
  }
  .rsv-uc-desc {
    font-size: 0.85rem; color: rgba(92,61,30,0.65);
    line-height: 1.9; letter-spacing: 0.04em;
  }
  .rsv-uc-tel {
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
    margin-top: 1rem; padding: 1.8rem 3rem;
    border: 1px solid rgba(92,61,30,0.25);
    text-decoration: none; transition: background 0.3s;
  }
  .rsv-uc-tel:hover { background: rgba(92,61,30,0.04); }
  .rsv-uc-tel-label {
    font-size: 0.65rem; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--accent);
  }
  .rsv-uc-tel-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem; font-weight: 300; letter-spacing: 0.08em;
    color: var(--brown-dark);
  }
  .rsv-uc-tel-hours {
    font-size: 0.72rem; color: rgba(92,61,30,0.55); letter-spacing: 0.06em;
  }
  .relax-hero-edit-btn {
    position: absolute; top: 0.8rem; right: 0.8rem;
    background: rgba(255,255,226,0.85); border: 1px solid rgba(92,61,30,0.2);
    color: var(--brown); padding: 0.4rem 0.7rem;
    font-size: 0.8rem; cursor: pointer; z-index: 2;
    transition: background 0.2s;
  }
  .relax-hero-edit-btn:hover { background: rgba(255,255,226,1); }
  .relax-detail-hero-img.no-img .relax-hero-edit-btn { display: none; }

  .rsv-under-construction {
    display: flex; flex-direction: column; align-items: center;
    padding: 4rem 2rem; text-align: center; gap: 1.2rem;
  }
  .rsv-uc-icon { font-size: 2.5rem; }
  .rsv-uc-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem; font-weight: 300; letter-spacing: 0.1em;
    color: var(--brown-dark); line-height: 1.8;
  }
  .rsv-uc-desc { font-size: 0.85rem; color: rgba(92,61,30,0.65); line-height: 1.9; letter-spacing: 0.04em; }
  .rsv-uc-tel {
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
    margin-top: 1rem; padding: 1.8rem 3rem;
    border: 1px solid rgba(92,61,30,0.25); text-decoration: none; transition: background 0.3s;
  }
  .rsv-uc-tel:hover { background: rgba(92,61,30,0.04); }
  .rsv-uc-tel-label { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
  .rsv-uc-tel-num { font-family: 'Noto Serif JP', serif; font-size: 2rem; font-weight: 300; letter-spacing: 0.08em; color: var(--brown-dark); }
  .rsv-uc-tel-hours { font-size: 0.72rem; color: rgba(92,61,30,0.55); letter-spacing: 0.06em; }
  .relax-hero-edit-btn {
    position: absolute; top: 0.8rem; right: 0.8rem;
    background: rgba(255,255,226,0.85); border: 1px solid rgba(92,61,30,0.2);
    color: var(--brown); padding: 0.4rem 0.7rem; font-size: 0.8rem; cursor: pointer; z-index: 2; transition: background 0.2s;
  }
  .relax-hero-edit-btn:hover { background: rgba(255,255,226,1); }
  .relax-detail-hero-img.no-img .relax-hero-edit-btn { display: none; }
  .menu-modal-price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.2rem 0 1.6rem; }
  .menu-modal-price-card { display: flex; flex-direction: column; gap: 0.3rem; padding: 1rem 1.2rem; border: 1px solid rgba(92,61,30,0.12); background: rgba(92,61,30,0.03); }
  .menu-modal-price-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
  .menu-modal-price-card .menu-modal-price { font-size: 1.4rem; }
  .menu-modal-price-card .menu-modal-duration { font-size: 0.75rem; color: rgba(92,61,30,0.6); }
  @media (max-width: 500px) { .menu-modal-price-grid { grid-template-columns: 1fr; } }
  .contact-quick { display: flex; flex-direction: column; align-items: center; gap: 2rem; margin: 2.5rem auto 0; }
  .contact-quick-item { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; padding: 0.8rem 0; }
  @media (max-width: 600px) { .contact-quick { grid-template-columns: 1fr; max-width: 340px; } }
  @media (max-width: 600px) { .scroll_down { right: 1.5rem !important; bottom: 80px !important; } }
  .relax-detail-hero { width: 100%; margin-bottom: 1.8rem; }
  .relax-detail-hero-img { width: 100%; aspect-ratio: 16/6; overflow: hidden; background: rgba(92,61,30,0.06); position: relative; }
  .relax-detail-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .relax-detail-hero-img.no-img img { display: none; }
  .relax-detail-hero-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem; color: rgba(92,61,30,0.3); }
  .relax-detail-hero-img:not(.no-img) .relax-detail-hero-ph { display: none; }
  .relax-detail-hero-ph svg { width: 40px; height: 27px; }
  .relax-detail-hero-ph span { font-size: 0.68rem; letter-spacing: 0.12em; }


  .section-eyebrow {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.0rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
  }
  .contact .section-eyebrow,
  .reservation .section-eyebrow {
    color: rgba(240,236,216,0.55);
  }
  .section-nav-label { display: none !important; }
  .menu-modal-price-single {
    display: flex; align-items: baseline; gap: 0.5rem;
    margin: 1.2rem 0 1.6rem;
  }
  .menu-modal-price-single .menu-modal-price { font-size: 1.6rem; }
  .menu-modal-price-sep { color: rgba(92,61,30,0.35); font-size: 1rem; }
  .menu-modal-price-single .menu-modal-duration { font-size: 0.85rem; color: rgba(92,61,30,0.6); }

  .menu-modal-price-row-simple {
    display: flex; align-items: baseline;
    flex-wrap: wrap; gap: 0.3rem 0.5rem;
    margin: 1.2rem 0 1.6rem;
  }
  .menu-modal-price-row-simple .menu-modal-price { font-size: 1.6rem; }
  .menu-modal-price-row-simple .menu-modal-price-sep { color: rgba(92,61,30,0.35); font-size: 1rem; }
  .menu-modal-price-row-simple .menu-modal-duration { font-size: 0.85rem; color: rgba(92,61,30,0.6); }
  .menu-modal-price-ext {
    font-size: 1.6rem; color: rgba(92,61,30,0.85);
    letter-spacing: 0.02em;
  }
  .menu-modal-price-grid, .menu-modal-price-card,
  .menu-modal-price-single { display: none !important; }

  .cs-image {
    overflow: hidden;
  }
  .cs-image::before,
  .cs-image::after {
    content: '';
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    opacity: 1;
    transition: opacity 0.45s ease;
  }
  .cs-image::before {
    background: linear-gradient(
      to right,
      #FFFFE2 0%,
      rgba(255,255,226,0.6) 15%,
      rgba(255,255,226,0)   35%,
      rgba(255,255,226,0)   65%,
      rgba(255,255,226,0.6) 85%,
      #FFFFE2 100%
    );
  }
  .cs-image::after {
    background: linear-gradient(
      to bottom,
      #FFFFE2 0%, transparent 14%, transparent 86%, #FFFFE2 100%
    );
  }
  .cs-image:hover::before,
  .cs-image:hover::after { opacity: 0; }

  .cs-relax .cs-image::before {
    background: linear-gradient(
      to right,
      #F5F0D8 0%,
      rgba(245,240,216,0.6) 15%,
      rgba(245,240,216,0)   35%,
      rgba(245,240,216,0)   65%,
      rgba(245,240,216,0.6) 85%,
      #F5F0D8 100%
    );
  }
  .cs-relax .cs-image::after {
    background: linear-gradient(
      to bottom,
      #F5F0D8 0%, transparent 14%, transparent 86%, #F5F0D8 100%
    );
  }

  .cs-chiro .cs-image::before {
    background: linear-gradient(
      to right,
      #6B4A28 0%,
      rgba(107,74,40,0.6) 15%,
      rgba(107,74,40,0)   35%,
      rgba(107,74,40,0)   65%,
      rgba(107,74,40,0.6) 85%,
      #6B4A28 100%
    );
  }
  .cs-chiro .cs-image::after {
    background: linear-gradient(
      to bottom,
      #6B4A28 0%, rgba(107,74,40,0) 14%, rgba(107,74,40,0) 86%, #6B4A28 100%
    );
  }

  .cs-visit .cs-image::before {
    background: linear-gradient(
      to right,
      #5A3D22 0%,
      rgba(90,61,34,0.6) 15%,
      rgba(90,61,34,0)   35%,
      rgba(90,61,34,0)   65%,
      rgba(90,61,34,0.6) 85%,
      #5A3D22 100%
    );
  }
  .cs-visit .cs-image::after {
    background: linear-gradient(
      to bottom,
      #5A3D22 0%, rgba(90,61,34,0) 14%, rgba(90,61,34,0) 86%, #5A3D22 100%
    );
  }

  .flow-photo-wrap {
    position: relative; overflow: hidden;
  }
  .flow-photo-wrap::before,
  .flow-photo-wrap::after {
    content: '';
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    opacity: 1;
    transition: opacity 0.45s ease;
  }
  .flow-photo-wrap::before {
    background: linear-gradient(
      to right,
      #EAE5CC 0%,
      rgba(234,229,204,0.5) 14%,
      rgba(234,229,204,0)   32%,
      rgba(234,229,204,0)   68%,
      rgba(234,229,204,0.5) 86%,
      #EAE5CC 100%
    );
  }
  .flow-photo-wrap::after {
    background: linear-gradient(
      to bottom,
      #EAE5CC 0%, transparent 14%, transparent 86%, #EAE5CC 100%
    );
  }
  .flow-photo-wrap:hover::before,
  .flow-photo-wrap:hover::after { opacity: 0; }
