@charset "utf-8";

    /* ============================================================
       DESIGN TOKENS
    ============================================================ */
    :root {
      --paper:        #f8f6f1;
      --stone-50:     #fafaf9;
      --stone-100:    #f5f5f4;
      --stone-200:    #e7e5e4;
      --stone-400:    #a8a29e;
      --stone-600:    #57534e;
      --stone-800:    #292524;
      --ink:          #1a1814;
      --accent:       #8b7355;
      --accent-light: #c4a882;
      --accent-pale:  #f0e6d3;
      --white:        #ffffff;
      --hero-bg:      #1e2535;
      --font-serif:   'Cormorant Garamond', 'Noto Serif JP', serif;
      --font-ja:      'Noto Serif JP', serif;
      --font-sans:    'Inter', 'Noto Sans JP', sans-serif;
      --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
      --transition:   0.8s var(--ease-out);
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-sans);
      background: var(--paper);
      color: var(--ink);
      line-height: 1.8;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    /* ============================================================
       SCROLL ANIMATIONS
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity var(--transition), transform var(--transition);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* ============================================================
       TYPOGRAPHY
    ============================================================ */
    h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
    .section-label {
      font-family: var(--font-sans);
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--accent);
    }
    .section-title {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 300;
      color: var(--ink);
      line-height: 1.15;
      margin-top: 0.6rem;
    }
    .section-title-ja {
      font-family: var(--font-ja);
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-weight: 300;
      color: var(--stone-600);
      margin-top: 0.3rem;
    }
    .section-lead {
      font-family: var(--font-sans);
      font-size: 0.95rem;
      color: var(--stone-600);
      line-height: 2;
      max-width: 560px;
      margin-top: 1.2rem;
    }
    .divider {
      width: 40px;
      height: 1px;
      background: var(--accent);
      margin: 2rem 0;
    }

    /* ============================================================
       LAYOUT
    ============================================================ */
    .container {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 40px;
    }
    section {
      padding: 120px 0;
    }
    @media (max-width: 768px) {
      .container { padding: 0 24px; }
      section { padding: 80px 0; }
    }

    /* ============================================================
       HEADER
    ============================================================ */
    #header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0 40px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.5s ease, box-shadow 0.5s ease;
    }
    #header.scrolled {
      background: rgba(248, 246, 241, 0.97);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 var(--stone-200);
    }
    .header-logo {
      display: flex;
      align-items: center;
    }
    .header-logo img {
      height: 44px;
      object-fit: contain;
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
      transition: filter 0.5s ease;
      filter: invert(1) brightness(2);
    }
    #header.scrolled .header-logo img {
      filter: none;
    }
    .header-logo-text {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--white);
      letter-spacing: 0.05em;
      transition: color 0.5s ease;
    }
    #header.scrolled .header-logo-text {
      color: var(--ink);
    }

    .header-nav {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .header-nav a {
      font-family: var(--font-sans);
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.85);
      transition: color 0.3s ease;
      position: relative;
    }
    .header-nav a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0; right: 0;
      height: 1px;
      background: var(--accent-light);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    .header-nav a:hover { color: var(--white); }
    .header-nav a:hover::after { transform: scaleX(1); }
    #header.scrolled .header-nav a { color: var(--stone-600); }
    #header.scrolled .header-nav a:hover { color: var(--ink); }

    .btn-reserve {
      font-family: var(--font-sans);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      color: var(--white) !important;
      background: var(--accent);
      padding: 10px 22px;
      border-radius: 2px;
      transition: background 0.3s ease, transform 0.2s ease !important;
    }
    .btn-reserve::after { display: none !important; }
    .btn-reserve:hover {
      background: var(--stone-800) !important;
      transform: translateY(-1px);
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      width: 28px;
      cursor: pointer;
      padding: 4px 0;
    }
    .hamburger span {
      display: block;
      height: 1px;
      background: var(--white);
      transition: all 0.3s ease;
      transform-origin: center;
    }
    #header.scrolled .hamburger span { background: var(--ink); }
    .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      inset: 0;
      background: var(--ink);
      z-index: 999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 36px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .mobile-menu.open { opacity: 1; pointer-events: all; }
    .mobile-menu a {
      font-family: var(--font-serif);
      font-size: 1.8rem;
      font-weight: 300;
      color: var(--accent-pale);
      letter-spacing: 0.08em;
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: var(--white); }
    .mobile-menu .mobile-reserve {
      font-family: var(--font-sans);
      font-size: 0.8rem;
      letter-spacing: 0.2em;
      color: var(--white);
      background: var(--accent);
      padding: 14px 36px;
      border-radius: 2px;
      margin-top: 8px;
    }

    @media (max-width: 960px) {
      .header-nav { display: none; }
      .hamburger { display: flex; }
      #header { padding: 0 24px; }
    }

    /* ============================================================
       HERO
    ============================================================ */
    #hero {
      position: relative;
      height: 200vh;
      min-height: 1280px;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-color: #1a1814;
      display: flex;
      flex-direction: column;
      height: 200vh;
    }
    /* Video background */
    .hero-bg-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      opacity: 0;
      animation: heroBgFadeIn 2s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;
    }

    /* 上下2段ビデオパネル */
    .hero-video-panel {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 640px;
      flex-shrink: 0;
      overflow: hidden;
    }

    .hero-video-panel video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      opacity: 0;
      animation: heroBgFadeIn 2s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;
    }

    /* 各パネルのオーバーレイ */
    .hero-panel-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(10,8,6,0.48) 0%, rgba(10,8,6,0.2) 45%, rgba(10,8,6,0.7) 100%),
        linear-gradient(to right, rgba(10,8,6,0.22) 0%, transparent 70%);
      z-index: 1;
      pointer-events: none;
    }

    /* 上段パネルの下部区切り線 */
    .hero-video-panel-top::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent 0%, rgba(196,168,130,0.4) 30%, rgba(196,168,130,0.6) 50%, rgba(196,168,130,0.4) 70%, transparent 100%);
      z-index: 3;
    }
    .hero-video-panel-bottom {
      display: block !important;
      visibility: visible !important;
      height: 100vh !important;
      min-height: 640px !important;
      overflow: hidden !important;
      pointer-events: auto !important;
    }
    @keyframes heroBgFadeIn {
      to { opacity: 1; }
    }
    /* Dark overlay for text readability */
    .hero-bg::before {
      content: none;
    }
    .hero-bg::after {
      content: none;
    }


    /* Decorative lines (bookmark motif) */
    .hero-lines {
      position: absolute;
      top: 0; right: 120px;
      width: 1px;
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 8px;
      justify-content: center;
      padding: 80px 0;
      opacity: 0.25;
      z-index: 3;
    }
    .hero-lines span {
      display: block;
      height: 1px;
      background: var(--accent-light);
      animation: lineGrow 1.5s var(--ease-out) forwards;
      transform-origin: right;
      transform: scaleX(0);
    }
    .hero-lines span:nth-child(1)  { width: 80px; animation-delay: 0.5s; }
    .hero-lines span:nth-child(2)  { width: 120px; animation-delay: 0.6s; }
    .hero-lines span:nth-child(3)  { width: 60px; animation-delay: 0.7s; }
    .hero-lines span:nth-child(4)  { width: 100px; animation-delay: 0.8s; }
    .hero-lines span:nth-child(5)  { width: 90px; animation-delay: 0.9s; }
    .hero-lines span:nth-child(6)  { width: 140px; animation-delay: 1.0s; }
    .hero-lines span:nth-child(7)  { width: 70px; animation-delay: 1.1s; }
    .hero-lines span:nth-child(8)  { width: 110px; animation-delay: 1.2s; }
    @keyframes lineGrow {
      to { transform: scaleX(1); }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      animation: heroFadeIn 1.4s var(--ease-out) 0.3s both;
    }
    @keyframes heroFadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-logo-img {
      width: 180px;
      max-width: 45vw;
      filter: invert(1) brightness(2);
      margin-bottom: 8px;
    }

    .hero-concept {
      font-family: var(--font-ja);
      font-size: clamp(0.85rem, 1.6vw, 1.05rem);
      font-weight: 300;
      color: var(--accent-pale);
      letter-spacing: 0.4em;
      text-shadow: 0 1px 8px rgba(0,0,0,0.55), 0 0 2px rgba(0,0,0,0.3);
    }
    .hero-tagline-en {
      font-family: var(--font-serif);
      font-size: clamp(0.9rem, 1.8vw, 1.15rem);
      font-weight: 300;
      font-style: italic;
      color: rgba(255,255,255,0.65);
      letter-spacing: 0.08em;
    }
    .hero-divider {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, transparent, var(--accent-light), transparent);
    }
    .hero-cta {
      display: inline-block;
      font-family: var(--font-sans);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.4);
      padding: 16px 44px;
      border-radius: 2px;
      transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    }
    .hero-cta:hover {
      background: var(--accent);
      border-color: var(--accent);
      transform: translateY(-2px);
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.45);
      font-family: var(--font-sans);
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      animation: scrollBounce 2s ease-in-out infinite;
    }
    .scroll-indicator::after {
      content: '';
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    }
    @keyframes scrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(6px); }
    }

    /* ============================================================
       CONCEPT SECTION
    ============================================================ */
    #concept {
      background: var(--paper);
      position: relative;
      overflow: hidden;
    }

    .concept-photo-wrap {
      position: relative;
      border-radius: 3px;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(0,0,0,0.14);
      margin-top: 36px;
    }
    .concept-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.9s var(--ease-out);
    }
    .concept-photo-wrap:hover img {
      transform: scale(1.04);
    }
    .concept-photo-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 20px 18px 16px;
      background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
      font-family: var(--font-serif);
      font-size: 0.7rem;
      font-style: italic;
      color: rgba(255,255,255,0.68);
      letter-spacing: 0.1em;
    }
    .concept-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
      width: min(100%, 1020px);
      margin: 0 auto;
      transform: translateX(24px);
    }
    .concept-grid > div:first-child,
    .concept-grid > .reveal.reveal-delay-2 {
      width: 100%;
    }
    .concept-quote {
      font-family: var(--font-ja);
      font-size: clamp(1.05rem, 1.8vw, 1.3rem);
      font-weight: 300;
      color: var(--ink);
      line-height: 2.2;
      letter-spacing: 0.05em;
      position: relative;
      padding-left: 28px;
    }
    .concept-quote::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--accent), transparent);
    }
    .concept-body {
      font-family: var(--font-ja);
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--stone-600);
      line-height: 2.3;
      letter-spacing: 0.02em;
    }
    @media (max-width: 768px) {
  
    .concept-photo-wrap {
      position: relative;
      border-radius: 3px;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(0,0,0,0.14);
      margin-top: 36px;
    }
    .concept-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.9s var(--ease-out);
    }
    .concept-photo-wrap:hover img {
      transform: scale(1.04);
    }
    .concept-photo-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 20px 18px 16px;
      background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
      font-family: var(--font-serif);
      font-size: 0.7rem;
      font-style: italic;
      color: rgba(255,255,255,0.68);
      letter-spacing: 0.1em;
    }
    .concept-grid { grid-template-columns: 1fr; gap: 40px; transform: none; }
    }

    /* ============================================================
       STAY SECTION
    ============================================================ */
    #stay {
      background: var(--stone-100);
    }
    .stay-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
      gap: 28px 32px;
      align-items: start;
      margin-top: 60px;
      grid-template-areas:
        'main side'
        'text specs';
    }

    .stay-main-block {
      grid-area: main;
    }

    .stay-text-block {
      grid-area: text;
      margin-top: 4px;
      align-self: stretch;
    }

    .stay-side-stack {
      grid-area: side;
      display: grid;
      grid-template-rows: repeat(3, 1fr);
      gap: 10px;
    }

    .stay-side-photo {
      position: relative;
      border-radius: 3px;
      overflow: hidden;
      aspect-ratio: 16 / 10;
      box-shadow: 0 16px 40px rgba(0,0,0,0.10);
      background: var(--stone-100);
    }

    .stay-side-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.9s var(--ease-out);
    }

    .stay-side-photo:hover img,
    .stay-visual:hover img {
      transform: scale(1.03);
    }

    .stay-specs-wrap {
      grid-area: specs;
      display: block;
      justify-content: unset;
      margin-top: 4px;
      align-self: stretch;
    }

    .stay-specs-wrap .stay-specs {
      width: 100%;
      margin-top: 0;
    }

    .stay-text-block .section-lead {
      margin-top: 0;
      max-width: 100%;
      height: 100%;
      font-family: var(--font-ja) !important;
      padding: 26px 28px;
      background: rgba(255,255,255,0.7);
      border: 1px solid var(--stone-200);
      border-radius: 3px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    }
    .stay-visual {
      aspect-ratio: 4/3;
      border-radius: 3px;
      overflow: hidden;
      position: relative;
    }
    .stay-visual-inner {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    .stay-visual-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.9s var(--ease-out);
      display: block;
    }
    .stay-visual:hover .stay-visual-inner img {
      transform: scale(1.04);
    }
    .stay-visual-inner::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.2) 100%);
      pointer-events: none;
    }
    .stay-visual-label {
      display: none;
    }
    .stay-specs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--stone-200);
      border: 1px solid var(--stone-200);
      border-radius: 3px;
      overflow: hidden;
      margin-top: 32px;
    }
    .spec-item {
      background: var(--white);
      padding: 20px 24px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .spec-label {
      font-family: var(--font-sans);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--stone-400);
    }
    .spec-value {
      font-family: var(--font-serif);
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--ink);
    }
    .spec-value-ja {
      font-family: var(--font-ja);
      font-size: 0.82rem;
      color: var(--stone-600);
      margin-top: 1px;
    }
    @media (max-width: 980px) {
      .stay-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
          'main'
          'side'
          'text'
          'specs';
        gap: 24px;
      }

      .stay-side-stack {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: none;
      }
    }

    @media (max-width: 768px) {
      .stay-grid {
        gap: 22px;
      }

      .stay-side-stack {
        grid-template-columns: 1fr;
      }

      .stay-text-block .section-lead {
        padding: 22px 20px;
      }

      .stay-specs-wrap .stay-specs {
        width: 100%;
      }
    }

    /* ============================================================
       EXPERIENCE SECTION
    ============================================================ */
    #experience {
      background: var(--paper);
    }
    .experience-intro {
      max-width: 680px;
      font-family: var(--font-ja);
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--stone-600);
      line-height: 2.3;
      margin-top: 16px;
    }
    .experience-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.34fr) minmax(320px, 0.79fr);
      gap: 24px;
      align-items: start;
      margin-top: 56px;
    }
    .experience-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 0;
      align-content: start;
    }
    .experience-card-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.7s var(--ease-out);
      display: block;
    }
    .experience-card:hover .experience-card-photo {
      transform: scale(1.06);
    }
    .experience-card {
      position: relative;
      aspect-ratio: 3/4;
      overflow: hidden;
      cursor: pointer;
      border-radius: 3px;
      background: var(--stone-200);
    }
    .experience-card-bg {
      width: 100%;
      height: 100%;
      transition: transform 0.7s var(--ease-out);
    }
    .experience-card:hover .experience-card-bg {
      transform: scale(1.06);
    }
    .exp-bg-1 { background: linear-gradient(160deg, #2d4a3e 0%, #3a6b5a 50%, #4a7d6a 100%); }
    .exp-bg-2 { background: linear-gradient(160deg, #3d3028 0%, #5a4535 50%, #6b5242 100%); }
    .exp-bg-3 { background: linear-gradient(160deg, #1e3045 0%, #2a4a65 50%, #355a78 100%); }
    .exp-bg-4 { background: linear-gradient(160deg, #2e3d28 0%, #445a38 50%, #556b48 100%); }
    .exp-bg-5 { background: linear-gradient(160deg, #3a2d22 0%, #5a4535 50%, #6b5545 100%); }
    .exp-bg-6 { background: linear-gradient(160deg, #252040 0%, #3a3060 50%, #4a4075 100%); }
    .experience-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.14) 56%, transparent 78%);
    }
    .experience-card-content {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 16px 14px;
    }
    .exp-num {
      font-family: var(--font-serif);
      font-size: 0.54rem;
      color: var(--accent-light);
      letter-spacing: 0.18em;
      margin-bottom: 4px;
    }
    .exp-title-ja {
      font-family: var(--font-ja);
      font-size: 0.82rem;
      font-weight: 400;
      color: var(--white);
      line-height: 1.35;
    }
    .exp-desc {
      font-family: var(--font-sans);
      font-size: 0.6rem;
      color: rgba(255,255,255,0.74);
      margin-top: 4px;
      line-height: 1.55;
    }
    .experience-map-panel {
      background: rgba(255,255,255,0.9);
      border: 1px solid var(--stone-200);
      border-radius: 3px;
      padding: 12px;
      box-shadow: 0 14px 36px rgba(0,0,0,0.05);
      align-self: start;
    }
    .experience-map-frame {
      position: relative;
      width: 100%;
      overflow: hidden;
      border-radius: 3px;
      background: var(--white);
      aspect-ratio: 765 / 1000;
    }
    .experience-map-frame img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
      object-position: center;
      background: #fff;
    }
    .experience-map-caption {
      margin-top: 10px;
      font-family: var(--font-ja);
      font-size: 0.72rem;
      color: var(--stone-500);
      line-height: 1.65;
      text-align: center;
    }
    @media (max-width: 1080px) {
      .experience-layout {
        grid-template-columns: minmax(0, 1fr);
      }
      .experience-map-panel {
        max-width: 720px;
        margin: 0 auto;
      }
    }
    @media (max-width: 768px) {
      .experience-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
      }
      .experience-layout {
        gap: 20px;
      }
      .experience-card-content {
        padding: 18px 14px;
      }
      .exp-title-ja {
        font-size: 0.82rem;
      }
      .exp-desc {
        font-size: 0.6rem;
      }
      .experience-map-panel {
        padding: 10px;
      }
    }
    @media (max-width: 480px) {
      .experience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    /* ============================================================
       FACILITIES SECTION
    ============================================================ */
    #facilities {
      background: var(--stone-100);
    }
    .facilities-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 60px;
    }
    .facility-item {
      background: var(--white);
      padding: 28px 20px;
      border-radius: 3px;
      text-align: center;
      border: 1px solid var(--stone-200);
      transition: border-color 0.3s ease, transform 0.3s ease;
    }
    .facility-item:hover {
      border-color: var(--accent-light);
      transform: translateY(-3px);
    }
    .facility-icon {
      font-size: 1.6rem;
      margin-bottom: 12px;
      display: block;
    }
    .facility-name {
      font-family: var(--font-ja);
      font-size: 0.82rem;
      font-weight: 400;
      color: var(--ink);
      line-height: 1.6;
    }
    .facility-name-en {
      font-family: var(--font-sans);
      font-size: 0.62rem;
      color: var(--stone-400);
      letter-spacing: 0.1em;
      margin-top: 3px;
    }
    @media (max-width: 768px) {
      .facilities-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
      .facilities-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    }

    /* ============================================================
       PLANS SECTION
    ============================================================ */
    #plans {
      background: var(--paper);
    }
    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 60px;
    }
    .plans-grid-single {
      grid-template-columns: minmax(0, 1fr);
      max-width: 560px;
      margin: 60px auto 0;
    }
    .plan-card {
      background: var(--white);
      border: 1px solid var(--stone-200);
      border-radius: 3px;
      overflow: hidden;
      transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
    }
    .plan-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    }
    .plan-card.featured {
      border-color: var(--accent);
      position: relative;
    }
    .plan-card.featured::before {
      content: none;
      display: none;
    }
    .plan-visual {
      height: 180px;
      overflow: hidden;
    }
    .plan-visual-inner {
      width: 100%;
      height: 100%;
      transition: transform 0.7s var(--ease-out);
    }
    .plan-card:hover .plan-visual-inner {
      transform: scale(1.05);
    }
    .plan-bg-1 { background: linear-gradient(135deg, #2c3e50 0%, #4a6278 100%); }
    .plan-bg-2 { background: linear-gradient(135deg, #3d2b1f 0%, #6b4c38 100%); }
    .plan-bg-3 { background: linear-gradient(135deg, #1e3a2e 0%, #3a6b5a 100%); }
    .plan-body {
      padding: 28px 24px 32px;
    }
    .plan-num {
      font-family: var(--font-sans);
      font-size: 0.58rem;
      letter-spacing: 0.2em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .plan-name {
      font-family: var(--font-ja);
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--ink);
    }
    .plan-name-en {
      font-family: var(--font-serif);
      font-size: 0.85rem;
      font-style: italic;
      color: var(--stone-400);
      margin-top: 2px;
    }
    .plan-price {
      margin-top: 20px;
      display: flex;
      align-items: baseline;
      gap: 4px;
    }
    .price-currency {
      font-family: var(--font-serif);
      font-size: 1rem;
      color: var(--stone-600);
    }
    .price-amount {
      font-family: var(--font-serif);
      font-size: 2.2rem;
      font-weight: 400;
      color: var(--ink);
      line-height: 1;
    }
    .price-unit {
      font-family: var(--font-sans);
      font-size: 0.68rem;
      color: var(--stone-400);
      letter-spacing: 0.05em;
    }
    .plan-features {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .plan-feature {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-family: var(--font-ja);
      font-size: 0.8rem;
      color: var(--stone-600);
    }
    .plan-feature::before {
      content: '—';
      color: var(--accent);
      font-size: 0.7rem;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .plan-divider {
      height: 1px;
      background: var(--stone-200);
      margin: 24px 0;
    }
    @media (max-width: 900px) {
      .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    }

    /* Booking Buttons */
    .booking-buttons {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .booking-btn {
      display: block;
      width: 100%;
      padding: 12px 16px;
      font-family: var(--font-sans);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-align: center;
      border-radius: 2px;
      transition: all 0.25s ease;
      cursor: pointer;
    }
    .booking-btn-primary {
      background: var(--accent);
      color: var(--white);
      border: 1px solid var(--accent);
    }
    .booking-btn-primary:hover {
      background: var(--stone-800);
      border-color: var(--stone-800);
    }
    .booking-btn-secondary {
      background: transparent;
      color: var(--stone-600);
      border: 1px solid var(--stone-200);
    }
    .booking-btn-secondary:hover {
      border-color: var(--accent);
      color: var(--accent);
    }


    /* Access entrance photo */
    .access-left-col {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .access-entrance-photo {
      position: relative;
      border-radius: 3px;
      overflow: hidden;
      aspect-ratio: 3/2;
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    }
    .access-entrance-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 35%;
      display: block;
      transition: transform 0.9s cubic-bezier(0.22,1,0.36,1);
    }
    .access-entrance-photo:hover img {
      transform: scale(1.04);
    }
    .access-entrance-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 16px 16px 12px;
      background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
      font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
      font-size: 0.7rem;
      font-style: italic;
      color: rgba(255,255,255,0.72);
      letter-spacing: 0.1em;
    }
    /* ============================================================
       ACCESS SECTION
    ============================================================ */
    #access {
      background: var(--stone-100);
    }
    .access-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      margin-top: 60px;
      align-items: start;
    }
    .access-map-embed {
      aspect-ratio: 4/3;
      border-radius: 3px;
      overflow: hidden;
      border: 1px solid var(--stone-200);
      background: var(--stone-200);
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    }
    .access-map-embed iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }
    .access-map-link {
      margin-top: 10px;
    }
    .access-map-link a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-sans);
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      text-decoration: none;
      border-bottom: 1px solid rgba(191, 165, 127, 0.4);
      padding-bottom: 2px;
      transition: opacity 0.2s ease, border-color 0.2s ease;
    }
    .access-map-link a:hover {
      opacity: 0.72;
      border-color: var(--accent);
    }
    .access-info {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .access-block h4 {
      font-family: var(--font-sans);
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 10px;
    }
    .access-block p {
      font-family: var(--font-ja);
      font-size: 0.88rem;
      color: var(--stone-600);
      line-height: 2;
    }
    .access-contact-line {
      display: block;
      line-height: 1.9;
      word-break: break-word;
    }
    .access-contact-line + .access-contact-line {
      margin-top: 2px;
    }
    .access-contact-line a {
      color: var(--accent);
      text-decoration: none;
    }
    .email-visible {
      display: inline-block;
      color: var(--accent) !important;
      font-weight: 500;
      text-decoration: none !important;
      word-break: break-word;
    }
    .access-block .addr-main {
      font-family: var(--font-ja);
      font-size: 1rem;
      font-weight: 400;
      color: var(--ink);
      line-height: 1.8;
    }
    @media (max-width: 768px) {
      .access-grid { grid-template-columns: 1fr; gap: 40px; }
    }

    /* ============================================================
       NEWS SECTION
    ============================================================ */
    #news {
      background: var(--paper);
    }
    .news-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 60px;
      border-top: 1px solid var(--stone-200);
    }
    .news-item {
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 40px;
      padding: 32px 0;
      border-bottom: 1px solid var(--stone-200);
      align-items: start;
      cursor: pointer;
      transition: background 0.2s ease;
    }
    .news-item:hover {
      background: rgba(139,115,85,0.03);
    }
    .news-meta {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .news-date {
      font-family: var(--font-serif);
      font-size: 0.8rem;
      color: var(--stone-400);
      letter-spacing: 0.05em;
    }
    .news-category {
      display: inline-block;
      font-family: var(--font-sans);
      font-size: 0.58rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      border: 1px solid var(--accent-light);
      padding: 3px 8px;
      border-radius: 1px;
    }
    .news-title {
      font-family: var(--font-ja);
      font-size: 1rem;
      font-weight: 400;
      color: var(--ink);
      line-height: 1.6;
      margin-bottom: 8px;
      transition: color 0.2s ease;
    }
    .news-item:hover .news-title { color: var(--accent); }
    .news-excerpt {
      font-family: var(--font-ja);
      font-size: 0.82rem;
      color: var(--stone-600);
      line-height: 2;
    }
    @media (max-width: 600px) {
      .news-item { grid-template-columns: 1fr; gap: 12px; }
    }

    /* ============================================================
       FAQ SECTION
    ============================================================ */
    #faq {
      background: var(--stone-100);
    }
    .faq-list {
      max-width: 760px;
      margin: 60px auto 0;
    }
    .faq-group-title {
      font-family: var(--font-sans);
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
      margin-top: 48px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .faq-group-title::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--stone-200);
    }
    .faq-item {
      border-bottom: 1px solid var(--stone-200);
      overflow: hidden;
    }
    .faq-question {
      width: 100%;
      text-align: left;
      padding: 22px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      font-family: var(--font-ja);
      font-size: 0.95rem;
      font-weight: 400;
      color: var(--ink);
      cursor: pointer;
      background: none;
      border: none;
      transition: color 0.2s ease;
    }
    .faq-question:hover { color: var(--accent); }
    .faq-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      position: relative;
      border: 1px solid var(--stone-300);
      border-radius: 50%;
    }
    .faq-icon::before, .faq-icon::after {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      background: var(--stone-600);
      border-radius: 1px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .faq-icon::before { width: 8px; height: 1px; transform: translate(-50%, -50%); }
    .faq-icon::after  { width: 1px; height: 8px; transform: translate(-50%, -50%); }
    .faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s var(--ease-out), padding 0.3s ease;
    }
    .faq-answer-inner {
      padding: 0 0 22px;
      font-family: var(--font-ja);
      font-size: 0.88rem;
      color: var(--stone-600);
      line-height: 2.1;
    }
    .faq-item.open .faq-answer { max-height: 300px; }

    /* ============================================================
       CONTACT SECTION
    ============================================================ */
    #contact {
      background: var(--paper);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      margin-top: 60px;
    }
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }
    .contact-info-block h4 {
      font-family: var(--font-sans);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 6px;
    }
    .contact-info-block p {
      font-family: var(--font-ja);
      font-size: 0.9rem;
      color: var(--stone-600);
      line-height: 1.9;
    }
    .contact-info-block a {
      color: var(--accent);
      text-decoration: underline;
      text-decoration-color: var(--accent-light);
      text-underline-offset: 3px;
    }
    .contact-info-block .email-visible,
    .footer-contact .email-visible,
    .footer-nav-col .email-visible {
      color: var(--accent) !important;
      text-decoration: none !important;
    }
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .form-group label {
      font-family: var(--font-sans);
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      color: var(--stone-600);
      text-transform: uppercase;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      font-family: var(--font-ja);
      font-size: 0.9rem;
      color: var(--ink);
      background: var(--white);
      border: 1px solid var(--stone-200);
      border-radius: 2px;
      padding: 12px 16px;
      outline: none;
      transition: border-color 0.25s ease;
      width: 100%;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--accent);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-submit {
      font-family: var(--font-sans);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white);
      background: var(--accent);
      border: none;
      padding: 16px 40px;
      border-radius: 2px;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.2s ease;
      align-self: flex-start;
    }
    .form-submit:hover {
      background: var(--stone-800);
      transform: translateY(-1px);
    }
    @media (max-width: 768px) {
      .contact-grid { grid-template-columns: 1fr; gap: 48px; }
      .form-row { grid-template-columns: 1fr; }
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: var(--ink);
      padding: 80px 0 40px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 40px;
    }
    .footer-brand img {
      height: 56px;
      filter: invert(1) brightness(2);
      object-fit: contain;
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
      margin-bottom: 16px;
    }
    .footer-brand-text {
      font-family: var(--font-serif);
      font-size: 1.6rem;
      font-weight: 300;
      color: var(--white);
      letter-spacing: 0.05em;
      display: block;
      margin-bottom: 12px;
    }
    .footer-tagline {
      font-family: var(--font-serif);
      font-size: 0.85rem;
      font-style: italic;
      color: var(--accent-light);
    }
    .footer-nav-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }
    .footer-nav-col h5 {
      font-family: var(--font-sans);
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--stone-400);
      margin-bottom: 16px;
    }
    .footer-nav-col ul {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-nav-col a {
      font-family: var(--font-ja);
      font-size: 0.82rem;
      color: rgba(255,255,255,0.55);
      transition: color 0.2s ease;
    }
    .footer-nav-col a:hover { color: var(--accent-light); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-copyright {
      font-family: var(--font-sans);
      font-size: 0.68rem;
      color: var(--stone-600);
      letter-spacing: 0.05em;
    }
    .footer-contact {
      font-family: var(--font-sans);
      font-size: 0.72rem;
      color: rgba(255,255,255,0.35);
    }
    .footer-contact a {
      color: var(--accent-light);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    @media (max-width: 768px) {
      .footer-top { grid-template-columns: 1fr; gap: 48px; }
      .footer-nav-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    }

    /* ============================================================
       FLOATING CTA (Mobile)
    ============================================================ */
    .floating-cta {
      display: none;
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 900;
      background: var(--accent);
      color: var(--white);
      font-family: var(--font-sans);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      padding: 16px 48px;
      border-radius: 40px;
      box-shadow: 0 8px 32px rgba(139,115,85,0.45);
      white-space: nowrap;
      transition: background 0.3s ease, transform 0.2s ease;
    }
    .floating-cta:hover {
      background: var(--stone-800);
      transform: translateX(-50%) translateY(-2px);
    }
    @media (max-width: 768px) {
      .floating-cta { display: block; }
    }

    /* ============================================================
       UTILITY
    ============================================================ */
    .text-center { text-align: center; }
    .mt-2  { margin-top: 8px; }
    .mt-4  { margin-top: 16px; }
    .mt-8  { margin-top: 32px; }
    .mt-12 { margin-top: 48px; }

    /* Section header layout */
    .section-header {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .section-header.center {
      align-items: center;
      text-align: center;
    }
  
    /* ご予約 booking buttons */
    .contact-booking {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      gap: 2rem;
      padding: 2rem 0;
    }
    .contact-booking-text {
      font-family: var(--font-ja);
      font-size: 0.9rem;
      color: var(--stone-400);
      letter-spacing: 0.05em;
      line-height: 2;
    }
    .contact-booking-btns {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      max-width: 400px;
    }
    .booking-btn-large {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.1rem 2rem;
      border: 1px solid var(--stone-200);
      background: transparent;
      color: var(--stone-600);
      font-family: var(--font-sans);
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .booking-btn-large:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: rgba(139,115,85,0.04);
    }
    .booking-btn-label { flex: 1; }
    .booking-btn-icon { color: var(--stone-300); font-size: 0.7rem; }
    .booking-btn-arrow { color: var(--stone-300); font-size: 0.8rem; transition: transform 0.3s; }
    .booking-btn-large:hover .booking-btn-arrow { transform: translateX(4px); color: var(--accent); }

    
/* Photo Gallery - Stay Section */
.stay-photo-gallery {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stay-photo-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
}
.stay-photo-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.stay-photo-gallery .gallery-item:hover img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .stay-photo-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* Facilities Photo Grid */
.facilities-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 48px auto 0;
  width: min(100%, 920px);
  padding: 0 18px;
  box-sizing: border-box;
}
.facilities-photo-grid .fac-photo {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
}
.facilities-photo-grid .fac-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.facilities-photo-grid .fac-photo:hover img {
  transform: scale(1.05);
}
.facilities-photo-grid .fac-photo .fac-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(26,24,20,0.7));
  color: rgba(245,240,228,0.9);
  font-family: var(--font-ja);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}
@media (max-width: 768px) {
  .facilities-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: min(100%, 680px);
    padding: 0 14px;
  }
}

/* ============================================================
   DIRECTION GUIDE — アクセスセクション下部の道案内
   ============================================================ */
.direction-guide {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--stone-200);
}
.direction-guide-header {
  text-align: center;
  margin-bottom: 32px;
}
.direction-guide-header .guide-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.direction-guide-header h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}
.direction-guide-header .guide-sub {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--stone-400);
  letter-spacing: 0.08em;
}
.direction-guide-img-wrap {
  position: relative;
  width: min(72%, 1000px);
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,24,20,0.10);
  cursor: zoom-in;
}
.direction-guide-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.2s ease-out;
}
.direction-guide-img-wrap:hover img {
  transform: none;
}
/* ライトボックス */
.guide-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.92);
  cursor: zoom-out;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.guide-lightbox.active {
  display: flex;
}
.guide-lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  object-fit: contain;
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
}
.guide-lightbox-close {
  position: absolute;
  top: 16px; right: 20px;
  color: rgba(255,255,255,0.8);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}
.guide-lightbox-close:hover { color: #fff; }
.guide-pdf-note {
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--stone-400);
  letter-spacing: 0.06em;
}
.guide-pdf-note span { color: var(--accent); }
@media (max-width: 768px) {
  .direction-guide { margin-top: 48px; padding-top: 36px; }
  .direction-guide-img-wrap { width: min(84%, 520px); }
}

#stay .stay-layout-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(198px, 0.46fr);
  grid-template-areas:
    "main side1"
    "bottom side2"
    "bottom side3";
  gap: 12px 20px;
  align-items: start;
  margin-top: 56px;
}
#stay .stay-main-block {
  grid-area: main;
  margin-top: 0;
  min-width: 0;
}
#stay .stay-bottom-row {
  grid-area: bottom;
  display: flex;
  gap: 10px;
  align-items: stretch;
  justify-content: space-between;
  align-self: stretch;
  min-width: 0;
  min-height: clamp(248px, 21.5vw, 312px);
  height: 100%;
}
#stay .stay-text-block {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-top: 0;
  height: 100%;
  align-self: stretch;
}
#stay .stay-specs-wrap {
  flex: 0 0 210px;
  width: 210px;
  min-width: 210px;
  margin-top: 0;
  height: 100%;
  align-self: stretch;
}
#stay .stay-side-stack-top {
  grid-area: side1;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: stretch;
  min-width: 0;
  min-height: clamp(332px, 31vw, 440px);
}
#stay .stay-side-photo {
  margin-top: 0;
  min-width: 0;
  align-self: start;
}
#stay .stay-side-photo-2 { grid-area: side2; }
#stay .stay-side-photo-3 { grid-area: side3; }
#stay .stay-visual {
  width: 100%;
  height: clamp(332px, 31vw, 440px);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  background: var(--stone-100);
  box-shadow: 0 16px 42px rgba(0,0,0,0.12);
}
#stay .stay-visual-inner {
  width: 100%;
  height: 100%;
}
#stay .stay-side-stack-top .stay-side-photo,
#stay .stay-side-photo-2,
#stay .stay-side-photo-3 {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  background: var(--stone-100);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
#stay .stay-side-photo-2,
#stay .stay-side-photo-3 {
  height: clamp(118px, 10vw, 148px);
}
#stay .stay-visual img,
#stay .stay-side-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.9s var(--ease-out);
}
#stay .stay-visual:hover img,
#stay .stay-side-photo:hover img {
  transform: scale(1.03);
}
#stay .stay-text-block .section-lead {
  display: flex !important;
  align-items: center;
  justify-content: center;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  height: 100%;
  min-height: 100%;
  margin: 0;
  max-width: 100%;
  padding: 18px 22px;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--stone-200);
  border-radius: 3px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
  line-height: 1.7;
  font-size: 0.76rem;
  color: var(--stone-700);
  overflow: hidden;
}
#stay .stay-text-block .stay-lead-inner {
  display: block;
  width: 100%;
}
#stay .stay-specs-wrap .stay-specs {
  width: 100%;
  height: 100%;
  margin-top: 0;
}
#stay .stay-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  height: 100%;
  gap: 1px;
  background: var(--stone-200);
  border: 1px solid var(--stone-200);
  border-radius: 3px;
  overflow: hidden;
}
#stay .stay-specs .spec-item {
  background: var(--white);
  padding: 10px 10px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
#stay .stay-specs .spec-label {
  font-size: 0.50rem;
  letter-spacing: 0.15em;
}
#stay .stay-specs .spec-value {
  font-size: 0.86rem;
}
#stay .stay-specs .spec-value-ja {
  font-size: 0.64rem;
  line-height: 1.32;
}
@media (max-width: 1180px) {
  #stay .stay-layout-shell {
    grid-template-columns: minmax(0, 1.48fr) minmax(188px, 0.48fr);
    gap: 12px 16px;
  }
  #stay .stay-bottom-row {
    gap: 9px;
    min-height: clamp(238px, 22vw, 296px);
  }
  #stay .stay-specs-wrap {
    flex-basis: 198px;
    width: 198px;
    min-width: 198px;
  }
  #stay .stay-visual,
  #stay .stay-side-stack-top {
    min-height: clamp(308px, 30vw, 404px);
    height: clamp(308px, 30vw, 404px);
  }
  #stay .stay-side-photo-2,
  #stay .stay-side-photo-3 {
    height: clamp(110px, 9.6vw, 140px);
  }
  #stay .stay-text-block .section-lead {
    padding: 16px 20px;
    font-size: 0.72rem;
    line-height: 1.62;
  }
  #stay .stay-specs .spec-item {
    padding: 9px 9px;
  }
  #stay .stay-specs .spec-value {
    font-size: 0.82rem;
  }
  #stay .stay-specs .spec-value-ja {
    font-size: 0.61rem;
  }
}
@media (max-width: 980px) {
  #stay .stay-layout-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "side1"
      "side2"
      "side3"
      "bottom";
    gap: 18px;
  }
  #stay .stay-bottom-row {
    display: block;
    min-height: 0;
  }
  #stay .stay-specs-wrap {
    width: 100%;
    min-width: 0;
    margin-top: 14px;
  }
  #stay .stay-visual {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  #stay .stay-side-photo,
  #stay .stay-side-stack-top {
    height: auto;
    min-height: 0;
  }
  #stay .stay-side-stack-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }
  #stay .stay-side-stack-top .stay-side-photo,
  #stay .stay-side-photo-2,
  #stay .stay-side-photo-3 {
    height: auto;
    aspect-ratio: 16 / 10;
  }
  #stay .stay-text-block .section-lead {
    font-size: 0.88rem;
    line-height: 1.82;
    padding: 20px 20px;
    min-width: 0;
  }
  #stay .stay-specs .spec-item {
    padding: 12px 12px;
  }
  #stay .stay-specs .spec-value {
    font-size: 0.94rem;
  }
  #stay .stay-specs .spec-value-ja {
    font-size: 0.68rem;
  }
}
@media (max-width: 768px) {
  #stay .stay-side-stack-top {
    grid-template-columns: 1fr;
  }
  #stay .stay-text-block .section-lead {
    padding: 20px;
  }
}

#lang-switcher {
  position: fixed;
  top: 88px;
  right: 32px;
  z-index: 1001;
  display: flex; align-items: center; gap: 6px;
  background: rgba(20,18,14,0.78);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(200,180,130,0.35);
  border-radius: 24px; padding: 5px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

@media (max-width: 980px) {
  #lang-switcher {
    top: 84px;
    right: 20px;
  }
}

@media (max-width: 640px) {
  #lang-switcher {
    top: 82px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 20px;
  }

  .lang-btn {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }
}
.lang-btn {
  background: none; border: none;
  color: rgba(245,240,228,0.6);
  font-family: 'Noto Serif JP', serif;
  font-size: 0.72rem; letter-spacing: 0.08em;
  cursor: pointer; padding: 2px 4px; transition: color 0.25s;
}
.lang-btn:hover { color: #C4A96A; }
.lang-btn.active { color: #C4A96A; font-weight: 600; }
.lang-divider { color: rgba(200,180,130,0.35); font-size: 0.8rem; }
/* Bilingual visibility - 確実制御 */
.t-en { display: none; }
.t-ja { display: inline; }
html.lang-en .t-ja { display: none    !important; }
html.lang-en .t-en { display: inline  !important; }
html.lang-ja .t-en { display: none    !important; }
html.lang-ja .t-ja { display: inline  !important; }

    #stay .stay-layout-v2 {
      display: grid;
      grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.78fr);
      grid-template-areas:
        "main stack"
        "copy stack"
        "specs specs";
      gap: 28px 34px;
      align-items: start;
      margin-top: 60px;
    }

    #stay .stay-main-figure {
      grid-area: main;
      position: relative;
      border-radius: 3px;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      box-shadow: 0 16px 48px rgba(0,0,0,0.14);
      background: var(--stone-100);
    }

    #stay .stay-main-figure img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.9s var(--ease-out);
    }

    #stay .stay-photo-stack-v2 {
      grid-area: stack;
      display: grid;
      grid-template-rows: repeat(3, 1fr);
      gap: 12px;
    }

    #stay .stay-stack-item {
      position: relative;
      border-radius: 3px;
      overflow: hidden;
      aspect-ratio: 16 / 10;
      box-shadow: 0 14px 36px rgba(0,0,0,0.10);
      background: var(--stone-100);
    }

    #stay .stay-stack-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.9s var(--ease-out);
    }

    #stay .stay-main-figure:hover img,
    #stay .stay-stack-item:hover img {
      transform: scale(1.03);
    }

    #stay .stay-copy-panel {
      grid-area: copy;
      border: 1px solid var(--stone-200);
      border-radius: 3px;
      background: rgba(255,255,255,0.86);
      box-shadow: 0 10px 30px rgba(0,0,0,0.04);
      padding: 28px 30px;
    }

    #stay .stay-copy-panel .section-lead {
      margin-top: 0;
      max-width: 100%;
      font-family: var(--font-ja) !important;
    }

    #stay .stay-specs-panel {
      grid-area: specs;
      display: flex;
      justify-content: center;
      margin-top: 4px;
    }

    #stay .stay-specs-panel .stay-specs {
      width: min(100%, 860px);
      margin-top: 0;
    }

    @media (max-width: 980px) {
      #stay .stay-layout-v2 {
        grid-template-columns: 1fr;
        grid-template-areas:
          "main"
          "stack"
          "copy"
          "specs";
        gap: 22px;
      }

      #stay .stay-photo-stack-v2 {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: none;
      }
    }

    @media (max-width: 768px) {
      #stay .stay-photo-stack-v2 {
        grid-template-columns: 1fr;
      }

      #stay .stay-copy-panel {
        padding: 22px 20px;
      }

      #stay .stay-specs-panel .stay-specs {
        width: 100%;
      }
    }

@media (max-width: 768px) {
  #facilities {
    padding-bottom: 128px;
  }
  #facilities .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  #facilities .section-header.center {
    margin-bottom: 28px;
    padding: 0 4px;
  }
  #facilities .section-title {
    line-height: 1.34;
    margin-bottom: 0;
  }
  #facilities .section-title-ja {
    margin-top: 10px;
    line-height: 1.85;
    max-width: 28em;
  }
  #facilities .facilities-grid {
    margin-top: 0;
    gap: 14px;
    align-items: stretch;
  }
  #facilities .facility-item {
    min-height: 136px;
    padding: 22px 14px 20px;
  }
  #facilities .facility-icon {
    margin-bottom: 10px;
  }
  #facilities .facility-name {
    font-size: 0.76rem;
    line-height: 1.55;
    word-break: keep-all;
  }
  #facilities .facility-name-en {
    font-size: 0.58rem;
    line-height: 1.5;
    min-height: 2.2em;
    letter-spacing: 0.08em;
  }
  #facilities .facilities-photo-grid {
    margin-top: 22px;
    margin-bottom: 8px;
    padding: 0;
  }
  #lang-switcher {
    top: 18px;
    right: 14px;
    padding: 4px 10px;
    border-radius: 18px;
  }
  .lang-btn {
    font-size: 0.64rem;
    letter-spacing: 0.04em;
  }
  .floating-cta {
    bottom: max(16px, env(safe-area-inset-bottom));
    width: calc(100% - 32px);
    max-width: 360px;
    padding: 14px 20px;
    letter-spacing: 0.14em;
    text-align: center;
  }
}

@media (max-width: 480px) {
  #facilities {
    padding-bottom: 144px;
  }
  #facilities .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  #facilities .section-header.center {
    margin-bottom: 24px;
  }
  #facilities .section-title {
    font-size: clamp(1.55rem, 7.2vw, 1.9rem);
  }
  #facilities .section-title-ja {
    font-size: 0.82rem;
  }
  #facilities .facilities-grid {
    gap: 12px;
  }
  #facilities .facility-item {
    min-height: 126px;
    padding: 18px 12px 16px;
  }
  #facilities .facility-icon {
    font-size: 1.45rem;
  }
  #facilities .facility-name {
    font-size: 0.72rem;
  }
  #facilities .facility-name-en {
    font-size: 0.54rem;
  }
  #facilities .facilities-photo-grid {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  #stay {
    padding-bottom: 36px;
  }
  #stay .stay-specs-wrap {
    margin-bottom: 0;
  }
  #stay .stay-specs {
    height: auto;
    grid-auto-rows: minmax(96px, auto);
  }
  #stay .stay-specs .spec-item {
    min-height: 96px;
    padding: 12px 12px;
  }
  #facilities {
    position: relative;
    z-index: 1;
    margin-top: 12px;
    padding-top: 28px;
    scroll-margin-top: 96px;
  }
  #facilities .container {
    position: relative;
    z-index: 2;
  }
  #facilities .section-header.center {
    position: relative;
    z-index: 3;
    background: var(--stone-100);
    margin-bottom: 18px;
    padding: 10px 8px 18px;
  }
  #facilities .section-label,
  #facilities .section-title,
  #facilities .section-title-ja {
    position: relative;
    z-index: 3;
  }
  #facilities .facilities-grid,
  #facilities .facilities-grid.mt-12 {
    position: relative;
    z-index: 1;
    margin-top: 0 !important;
  }
  #lang-switcher {
    top: 84px;
    right: 12px;
    transform: scale(0.9);
    transform-origin: top right;
  }
  .floating-cta {
    width: calc(100% - 140px);
    max-width: 220px;
    padding: 12px 18px;
    bottom: max(10px, env(safe-area-inset-bottom));
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 480px) {
  #stay {
    padding-bottom: 32px;
  }
  #stay .stay-specs {
    grid-auto-rows: minmax(88px, auto);
  }
  #stay .stay-specs .spec-item {
    min-height: 88px;
    padding: 11px 10px;
  }
  #facilities {
    margin-top: 16px;
    padding-top: 30px;
  }
  #facilities .section-header.center {
    margin-bottom: 14px;
    padding: 8px 6px 16px;
  }
  #lang-switcher {
    top: 82px;
    right: 10px;
    transform: scale(0.86);
  }
  .floating-cta {
    width: calc(100% - 156px);
    min-width: 160px;
    padding: 11px 16px;
  }
}

@media (max-width: 768px) {
  #stay {
    padding-bottom: 18px;
  }
  #stay .stay-bottom-row {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
  }
  #stay .stay-text-block {
    height: auto !important;
    margin-bottom: 0 !important;
  }
  #stay .stay-text-block .section-lead {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 20px 22px 18px !important;
    line-height: 1.92 !important;
  }
  #stay .stay-specs-wrap {
    display: none !important;
  }
  #facilities {
    margin-top: 0 !important;
    padding-top: 18px !important;
  }
  #facilities .section-header.center {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 480px) {
  #stay {
    padding-bottom: 12px;
  }
  #stay .stay-text-block .section-lead {
    padding: 16px 18px 14px !important;
    line-height: 1.88 !important;
  }
  #facilities {
    padding-top: 12px !important;
  }
}

@media (max-width: 768px) {
  section:not(#hero) {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
  #concept {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  #stay {
    padding-top: 42px !important;
    padding-bottom: 22px !important;
  }
  #facilities {
    padding-top: 18px !important;
    padding-bottom: 124px !important;
  }
  #plans,
  #access,
  #news,
  #faq,
  #contact,
  #experience {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }

  .divider {
    margin: 18px 0 22px !important;
  }
  .section-title {
    margin-top: 0.45rem !important;
  }
  .section-title-ja {
    margin-top: 0.2rem !important;
    line-height: 1.6 !important;
  }
  .section-lead,
  .experience-intro {
    margin-top: 0.85rem !important;
    line-height: 1.85 !important;
  }

  #concept .concept-grid {
    gap: 24px !important;
  }
  #stay .stay-grid,
  #stay .stay-layout-shell,
  #stay .stay-layout-v2 {
    margin-top: 28px !important;
    gap: 20px !important;
  }
  #stay .stay-text-block .section-lead {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  #experience .experience-layout {
    margin-top: 30px !important;
    gap: 18px !important;
  }
  #facilities .facilities-grid,
  #facilities .facilities-grid.mt-12,
  #facilities .facilities-photo-grid {
    margin-top: 28px !important;
  }
  #plans .plans-grid,
  #plans .plans-grid-single {
    margin-top: 28px !important;
  }
  #access .access-grid,
  #news .news-list,
  #faq .faq-list,
  #contact .contact-grid {
    margin-top: 28px !important;
  }
  #access .access-grid {
    gap: 24px !important;
  }
  .direction-guide {
    margin-top: 28px !important;
    padding-top: 24px !important;
  }
  .direction-guide-header {
    margin-bottom: 16px !important;
  }
  .contact-booking {
    padding-top: 8px !important;
    padding-bottom: 0 !important;
    gap: 20px !important;
  }
}

@media (max-width: 480px) {
  section:not(#hero) {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }
  #concept {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  #stay {
    padding-top: 36px !important;
    padding-bottom: 18px !important;
  }
  #facilities {
    padding-top: 12px !important;
    padding-bottom: 118px !important;
  }
  .divider {
    margin: 14px 0 18px !important;
  }
  #concept .concept-grid,
  #experience .experience-layout,
  #access .access-grid {
    gap: 18px !important;
  }
  #stay .stay-grid,
  #stay .stay-layout-shell,
  #stay .stay-layout-v2,
  #plans .plans-grid,
  #plans .plans-grid-single,
  #access .access-grid,
  #news .news-list,
  #faq .faq-list,
  #contact .contact-grid {
    margin-top: 22px !important;
  }
  #facilities .facilities-grid,
  #facilities .facilities-grid.mt-12,
  #facilities .facilities-photo-grid {
    margin-top: 22px !important;
  }
  .direction-guide {
    margin-top: 22px !important;
    padding-top: 18px !important;
  }
  .direction-guide-header {
    margin-bottom: 12px !important;
  }
}
