    :root {
      --sakura: #F2D7D9;
      --sakura-deep: #D4A5A5;
      --tsugaru-blue: #2D4A6F;
      --washi: #F8F5F0;
      --hinoki: #C9B896;
      --matcha: #6B7A5D;
      --sumi: #2C2C2C;
      /* アクセシビリティ対応の色（WCAG AA準拠） */
      --text-secondary: #525252;
      --text-muted: #5C5C5C;
      --text-light: #4A4A4A;
    }
    
    /* アクセシビリティ: スキップリンク */
    .skip-link {
      position: absolute;
      top: -40px;
      left: 0;
      background: var(--tsugaru-blue);
      color: white;
      padding: 8px 16px;
      z-index: 10000;
      transition: top 0.3s;
    }
    
    .skip-link:focus {
      top: 0;
    }
    
    /* アクセシビリティ: フォーカススタイル */
    *:focus {
      outline: 2px solid var(--tsugaru-blue);
      outline-offset: 2px;
    }
    
    *:focus:not(:focus-visible) {
      outline: none;
    }
    
    *:focus-visible {
      outline: 3px solid var(--tsugaru-blue);
      outline-offset: 2px;
    }
    
    /* アクセシビリティ: prefers-reduced-motion対応（桜は除外） */
    @media (prefers-reduced-motion: reduce) {
      *:not(.petal), *:not(.petal)::before, *:not(.petal)::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Zen Kaku Gothic New', sans-serif;
      background-color: #FAFAF9;
      color: var(--sumi);
      line-height: 1.8;
      overflow-x: hidden;
    }
    
    .font-serif { font-family: 'Noto Serif JP', serif; }
    
    /* Navigation */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 1rem 2rem;
      transition: all 0.5s ease;
    }
    
    .nav.scrolled {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    }
    
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .nav-logo {
      font-family: 'Noto Serif JP', serif;
      font-size: 1.25rem;
      color: var(--tsugaru-blue);
      text-decoration: none;
      letter-spacing: 0.1em;
    }
    
    .nav-links {
      display: none;
      gap: 2.5rem;
      list-style: none;
    }
    
    @media (min-width: 768px) {
      .nav-links { display: flex; }
    }
    
    .nav-links a {
      font-size: 0.875rem;
      color: var(--text-secondary);
      text-decoration: none;
      position: relative;
      transition: color 0.3s;
    }
    
    .nav-links a:hover { color: var(--sumi); }
    
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--sakura), var(--sakura-deep));
      transition: width 0.3s;
    }
    
    .nav-links a:hover::after { width: 100%; }
    
    .nav-cta {
      padding: 0.5rem 1.25rem;
      background: linear-gradient(135deg, var(--sakura), var(--sakura-deep));
      border: none;
      border-radius: 50px;
      font-size: 0.875rem;
      color: var(--sumi);
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
      text-decoration: none;
    }
    
    .nav-cta:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(212,165,165,0.4);
    }
    
    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      background: var(--washi);
      overflow: hidden;
    }
    
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    }
    
    .hero-circle-1 {
      position: absolute;
      top: 10%;
      right: 10%;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--sakura) 0%, transparent 70%);
      opacity: 0.2;
      animation: float 6s ease-in-out infinite;
    }
    
    .hero-circle-2 {
      position: absolute;
      bottom: 20%;
      left: 5%;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--matcha) 0%, transparent 70%);
      opacity: 0.15;
      animation: float 6s ease-in-out infinite 2s;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(5deg); }
    }
    
    /* Sakura Petals - ヒーローエリアの左右端のみに配置 */
    .sakura-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      pointer-events: none;
      z-index: 2;
    }
    
    .petal {
      position: absolute;
      width: 12px;
      height: 12px;
      background: linear-gradient(135deg, #E8A5A5 0%, #F0B8B8 100%);
      border-radius: 50% 0 50% 50%;
      opacity: 0;
      pointer-events: none;
    }
    
    /* 左端の桜（0-12%の範囲）- 各花びらに異なるアニメーション */
    .petal-left:nth-child(1) { left: 3%; animation: fall-wide 11s linear infinite 0s; }
    .petal-left:nth-child(2) { left: 8%; animation: fall-narrow 13s linear infinite 2.5s; }
    .petal-left:nth-child(3) { left: 5%; animation: fall-zigzag 12s linear infinite 5s; }
    .petal-left:nth-child(4) { left: 10%; animation: fall-drift 14s linear infinite 7.5s; }
    
    /* 右端の桜（88-100%の範囲）- 各花びらに異なるアニメーション */
    .petal-right:nth-child(5) { left: 90%; animation: fall-narrow 12s linear infinite 1s; }
    .petal-right:nth-child(6) { left: 95%; animation: fall-wide 11s linear infinite 3.5s; }
    .petal-right:nth-child(7) { left: 88%; animation: fall-drift 13s linear infinite 6s; }
    .petal-right:nth-child(8) { left: 97%; animation: fall-zigzag 14s linear infinite 8.5s; }
    
    /* アニメーション1: 大きく左右に揺れる */
    @keyframes fall-wide {
      0% {
        top: -20px;
        transform: translateX(0) rotate(0deg);
        opacity: 0;
      }
      5% { opacity: 0.7; }
      15% { transform: translateX(40px) rotate(45deg); }
      30% { transform: translateX(-30px) rotate(120deg); }
      45% { transform: translateX(50px) rotate(180deg); }
      60% { transform: translateX(-40px) rotate(240deg); }
      75% { transform: translateX(35px) rotate(300deg); }
      90% { opacity: 0.7; }
      100% {
        top: 100vh;
        transform: translateX(-20px) rotate(360deg);
        opacity: 0;
      }
    }
    
    /* アニメーション2: 小さめの揺れ */
    @keyframes fall-narrow {
      0% {
        top: -20px;
        transform: translateX(0) rotate(0deg);
        opacity: 0;
      }
      5% { opacity: 0.6; }
      20% { transform: translateX(-25px) rotate(60deg); }
      40% { transform: translateX(20px) rotate(150deg); }
      60% { transform: translateX(-30px) rotate(220deg); }
      80% { transform: translateX(25px) rotate(300deg); }
      90% { opacity: 0.6; }
      100% {
        top: 100vh;
        transform: translateX(-15px) rotate(380deg);
        opacity: 0;
      }
    }
    
    /* アニメーション3: ジグザグに落ちる */
    @keyframes fall-zigzag {
      0% {
        top: -20px;
        transform: translateX(0) rotate(0deg);
        opacity: 0;
      }
      5% { opacity: 0.65; }
      12% { transform: translateX(35px) rotate(40deg); }
      24% { transform: translateX(-45px) rotate(100deg); }
      36% { transform: translateX(40px) rotate(160deg); }
      48% { transform: translateX(-35px) rotate(200deg); }
      60% { transform: translateX(45px) rotate(260deg); }
      72% { transform: translateX(-40px) rotate(310deg); }
      84% { transform: translateX(30px) rotate(340deg); }
      90% { opacity: 0.65; }
      100% {
        top: 100vh;
        transform: translateX(-25px) rotate(400deg);
        opacity: 0;
      }
    }
    
    /* アニメーション4: ゆったりドリフト */
    @keyframes fall-drift {
      0% {
        top: -20px;
        transform: translateX(0) rotate(0deg);
        opacity: 0;
      }
      5% { opacity: 0.55; }
      25% { transform: translateX(55px) rotate(80deg); }
      50% { transform: translateX(-20px) rotate(180deg); }
      75% { transform: translateX(45px) rotate(280deg); }
      90% { opacity: 0.55; }
      100% {
        top: 100vh;
        transform: translateX(30px) rotate(360deg);
        opacity: 0;
      }
    }
    
    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      padding: 0 1.5rem;
      max-width: 800px;
      animation: fadeInUp 1s ease-out;
    }
    
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .hero-badge {
      display: inline-block;
      padding: 0.5rem 1rem;
      background: var(--sakura);
      border-radius: 50px;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      color: var(--tsugaru-blue);
      margin-bottom: 1.5rem;
    }
    
    .hero-title {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(2.5rem, 8vw, 4.5rem);
      font-weight: 400;
      line-height: 1.3;
      margin-bottom: 1.5rem;
      color: var(--sumi);
    }
    
    /* PC表示: 横書き */
    .title-line1::after {
      content: '\A';
      white-space: pre;
    }
    
    .title-line2 {
      display: block;
    }
    
    /* スマホで縦書き2列（右から左に読む） */
    @media (max-width: 640px) {
      .hero-title {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        gap: 0.5em;
        margin: 0 auto 1.5rem;
      }
      
      .title-line1,
      .title-line2 {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        font-size: 1.8rem;
        line-height: 1.5;
        letter-spacing: 0.15em;
        display: block;
      }
      
      .title-line1::after {
        display: none;
      }
      
      .title-line2 {
        margin-top: 3em;
      }
      
      .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
    }
    
    .hero-title .accent {
      background: linear-gradient(135deg, var(--tsugaru-blue), var(--matcha));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .hero-subtitle {
      font-size: 1.125rem;
      color: var(--text-secondary);
      margin-bottom: 2.5rem;
      line-height: 2;
    }
    
    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: center;
    }
    
    @media (min-width: 640px) {
      .hero-buttons { flex-direction: row; }
    }
    
    .btn-primary {
      padding: 1rem 2rem;
      background: linear-gradient(135deg, #6B7A5D, #7D8B6A);
      color: white;
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
    }
    
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(107,122,93,0.3);
    }
    
    .btn-secondary {
      padding: 1rem 2rem;
      background: transparent;
      color: var(--sumi);
      border: 2px solid var(--hinoki);
      border-radius: 50px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
    }
    
    .btn-secondary:hover {
      background: #F5F2ED;
    }
    
    .scroll-indicator {
      position: absolute;
      bottom: 3rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(-10px); }
    }
    
    .scroll-indicator span {
      font-size: 0.625rem;
      letter-spacing: 0.2em;
      color: #999;
    }
    
    .scroll-indicator::after {
      content: '';
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, #ccc, transparent);
    }
    
    /* Section Styles */
    section {
      padding: 6rem 1.5rem;
    }
    
    .section-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .section-label {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      color: var(--matcha);
      margin-bottom: 1rem;
      display: block;
    }
    
    .section-title {
      font-family: 'Noto Serif JP', serif;
      font-size: 2.5rem;
      font-weight: 400;
      margin-bottom: 1rem;
      color: var(--sumi);
    }
    
    .section-subtitle {
      color: var(--text-secondary);
      margin-bottom: 3rem;
    }
    
    .text-center { text-align: center; }
    
    /* About Section */
    .about {
      background: white;
    }
    
    .about-grid {
      display: grid;
      gap: 4rem;
      align-items: center;
    }
    
    @media (min-width: 768px) {
      .about-grid { grid-template-columns: 1fr 1fr; }
    }
    
    .about-text p {
      color: var(--text-secondary);
      margin-bottom: 1.5rem;
    }
    
    .about-image {
      position: relative;
    }
    
    .about-image-inner {
      aspect-ratio: 4/5;
      border-radius: 1rem;
      background: linear-gradient(135deg, var(--sakura), var(--hinoki));
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    }
    
    .about-image-placeholder {
      text-align: center;
      padding: 2rem;
    }
    
    .about-image-placeholder .icon {
      width: 80px;
      height: 80px;
      background: rgba(255,255,255,0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
    }
    
    .about-image-placeholder .icon svg {
      width: 40px;
      height: 40px;
      stroke: var(--tsugaru-blue);
    }
    
    .about-image-placeholder p {
      font-family: 'Noto Serif JP', serif;
      color: var(--tsugaru-blue);
    }
    
    .about-image::before {
      content: '';
      position: absolute;
      top: -1rem;
      right: -1rem;
      width: 100px;
      height: 100px;
      border: 2px solid var(--sakura);
      border-radius: 1rem;
      z-index: -1;
    }
    
    .about-image::after {
      content: '';
      position: absolute;
      bottom: -1rem;
      left: -1rem;
      width: 120px;
      height: 120px;
      background: var(--matcha);
      opacity: 0.1;
      border-radius: 50%;
      z-index: -1;
    }
    
    /* Rooms Section */
    .rooms {
      background: var(--washi);
    }
    
    .rooms-grid {
      display: grid;
      gap: 2rem;
    }
    
    @media (min-width: 768px) {
      .rooms-grid { grid-template-columns: 1fr 1fr; }
    }
    
    .room-card {
      background: white;
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.05);
      transition: all 0.5s;
    }
    
    .room-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }
    
    .room-image {
      aspect-ratio: 16/10;
      overflow: hidden;
    }
    
    .room-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .room-card:hover .room-image img {
      transform: scale(1.05);
    }
    
    .room-content {
      padding: 2rem;
    }
    
    .room-badge {
      display: inline-block;
      padding: 0.25rem 0.75rem;
      background: var(--sakura);
      border-radius: 50px;
      font-size: 0.75rem;
      color: var(--sumi);
      margin-bottom: 1rem;
    }
    
    .room-content h3 {
      font-family: 'Noto Serif JP', serif;
      font-size: 1.5rem;
      margin-bottom: 0.75rem;
      color: var(--sumi);
    }
    
    .room-content p {
      font-size: 0.875rem;
      color: var(--text-secondary);
    }
    
    .rooms-note {
      text-align: center;
      margin-top: 3rem;
      font-size: 0.875rem;
      color: var(--text-muted);
    }
    
    /* Features Section */
    .features {
      background: white;
    }
    
    .features-grid {
      display: grid;
      gap: 1.5rem;
    }
    
    @media (min-width: 768px) {
      .features-grid { grid-template-columns: repeat(2, 1fr); }
    }
    
    @media (min-width: 1024px) {
      .features-grid { grid-template-columns: repeat(3, 1fr); }
    }
    
    .feature-card {
      padding: 0;
      border: 1px solid #E8E4E0;
      border-radius: 1rem;
      background: white;
      overflow: hidden;
    }
    
    .feature-image {
      width: 100%;
      aspect-ratio: 16/10;
      overflow: hidden;
    }
    
    .feature-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .feature-content {
      padding: 1.5rem;
    }
    
    .feature-card h3 {
      font-family: 'Noto Serif JP', serif;
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
      color: var(--sumi);
    }
    
    .feature-card p {
      font-size: 0.875rem;
      color: var(--text-secondary);
    }
    
    .features-grid-3 {
      max-width: 1000px;
      margin: 0 auto;
    }
    
    @media (min-width: 768px) {
      .features-grid-3 {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    .features-note {
      max-width: 600px;
      margin: 2.5rem auto 0;
      text-align: center;
    }
    
    .features-note p {
      font-size: 0.875rem;
      color: var(--text-muted);
      padding: 1rem 1.5rem;
      background: var(--washi);
      border-radius: 0.5rem;
      border-left: 3px solid var(--sakura);
    }
    
    /* Salon Section */
    .salon {
      background: linear-gradient(135deg, #FDF8F8 0%, #F8F5F0 100%);
      position: relative;
      overflow: hidden;
    }
    
    .salon::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, var(--sakura) 0%, transparent 70%);
      opacity: 0.2;
      border-radius: 50%;
    }
    
    .salon-inner {
      display: grid;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    
    @media (min-width: 768px) {
      .salon-inner {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    .salon-content .section-label {
      color: var(--sakura-deep);
    }
    
    .salon-name {
      font-family: 'Noto Serif JP', serif;
      font-size: 1.75rem;
      color: var(--tsugaru-blue);
      margin-bottom: 1.5rem;
      letter-spacing: 0.05em;
    }
    
    .salon-name span {
      font-size: 1rem;
      color: var(--text-muted);
      margin-left: 0.5rem;
    }
    
    .salon-description {
      color: var(--text-secondary);
      line-height: 2;
      margin-bottom: 1.5rem;
    }
    
    .salon-menu {
      background: white;
      padding: 1.5rem 2rem;
      border-radius: 1rem;
      margin: 2rem 0;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    
    .salon-menu h4 {
      font-family: 'Noto Serif JP', serif;
      font-size: 1rem;
      color: var(--sumi);
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid var(--sakura);
    }
    
    .salon-menu ul {
      list-style: none;
    }
    
    .salon-menu li {
      padding: 0.75rem 0;
      border-bottom: 1px dashed #E8E4E0;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    
    .salon-menu li:last-child {
      border-bottom: none;
    }
    
    .salon-menu li::before {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--sakura);
      border-radius: 50%;
      flex-shrink: 0;
    }
    
    .menu-name {
      font-size: 0.9rem;
      color: var(--sumi);
    }
    
    .salon-note {
      font-size: 0.8rem;
      color: var(--text-muted);
    }
    
    .salon-images {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    .salon-images img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: 1rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .salon-img-1 {
      position: relative;
    }
    
    .salon-img-1::before {
      content: '';
      position: absolute;
      top: -0.75rem;
      left: -0.75rem;
      width: 80px;
      height: 80px;
      border: 2px solid var(--sakura);
      border-radius: 1rem;
      z-index: -1;
    }
    
    .salon-img-2 {
      position: relative;
    }
    
    .salon-img-2::after {
      content: '';
      position: absolute;
      bottom: -0.75rem;
      right: -0.75rem;
      width: 60px;
      height: 60px;
      background: var(--matcha);
      opacity: 0.15;
      border-radius: 50%;
      z-index: -1;
    }
    
    /* Area Section */
    .area {
      background: white;
      position: relative;
      overflow: hidden;
    }
    
    .area .section-container {
      position: relative;
      z-index: 10;
    }
    
    .area-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    
    @media (min-width: 768px) {
      .area-grid { grid-template-columns: repeat(4, 1fr); }
    }
    
    .area-card {
      background: white;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      transition: all 0.3s;
      text-decoration: none;
      display: block;
    }
    
    .area-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }
    
    .area-image {
      width: 100%;
      aspect-ratio: 1/1;
      overflow: hidden;
    }
    
    .area-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .area-card:hover .area-image img {
      transform: scale(1.1);
    }
    
    .area-content {
      padding: 1rem;
    }
    
    .area-card .distance {
      font-size: 0.7rem;
      color: var(--matcha);
      margin-bottom: 0.25rem;
      font-weight: 500;
    }
    
    .area-card h3 {
      font-family: 'Noto Serif JP', serif;
      font-size: 1rem;
      color: var(--sumi);
      margin-bottom: 0.5rem;
    }
    
    .area-card .area-desc {
      font-size: 0.8rem;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 0.5rem;
    }
    
    .area-link {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      font-size: 0.75rem;
      color: var(--tsugaru-blue);
      font-weight: 500;
    }
    
    .area-link svg {
      width: 14px;
      height: 14px;
      stroke: var(--tsugaru-blue);
      transition: transform 0.3s;
    }
    
    .area-card:hover .area-link svg {
      transform: translateX(3px);
    }
    
    /* Food Info */
    .food-info {
      background: #F5F2ED;
      padding: 4rem 1.5rem;
    }
    
    .food-inner {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
    }
    
    .food-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1.5rem;
      background: white;
      border-radius: 50px;
      margin-bottom: 1.5rem;
    }
    
    .food-badge svg {
      width: 20px;
      height: 20px;
      stroke: var(--matcha);
    }
    
    .food-badge span {
      font-size: 0.875rem;
      color: var(--sumi);
    }
    
    .food-inner p {
      color: var(--text-secondary);
      line-height: 2;
    }
    
    /* Price Section */
    .price {
      background: white;
    }
    
    .price-card {
      max-width: 600px;
      margin: 0 auto;
      background: white;
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    }
    
    .price-header {
      background: linear-gradient(135deg, var(--sakura), #FFEEF0);
      padding: 3rem;
      text-align: center;
    }
    
    .price-header .label {
      font-size: 0.875rem;
      color: var(--tsugaru-blue);
      margin-bottom: 0.5rem;
    }
    
    .price-header .amount {
      font-family: 'Noto Serif JP', serif;
      font-size: 4rem;
      color: var(--sumi);
    }
    
    .price-header .amount span {
      font-size: 1.25rem;
    }
    
    .price-header .note {
      font-size: 0.875rem;
      color: var(--text-secondary);
      margin-top: 1rem;
    }
    
    .price-body {
      padding: 2.5rem;
    }
    
    .price-info {
      display: flex;
      justify-content: center;
      gap: 3rem;
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid #E8E4E0;
    }
    
    .price-info-item {
      text-align: center;
    }
    
    .price-info-item .label {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-bottom: 0.25rem;
    }
    
    .price-info-item .value {
      font-family: 'Noto Serif JP', serif;
      font-size: 1.5rem;
      color: var(--sumi);
    }
    
    .price-info-item .value span {
      font-size: 0.875rem;
    }
    
    .price-examples h4 {
      font-family: 'Noto Serif JP', serif;
      text-align: center;
      margin-bottom: 1rem;
      color: var(--sumi);
    }
    
    .price-examples-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    
    .price-example {
      background: var(--washi);
      padding: 1rem;
      border-radius: 0.75rem;
      text-align: center;
    }
    
    .price-example .label {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-bottom: 0.25rem;
    }
    
    .price-example .value {
      font-family: 'Noto Serif JP', serif;
      color: var(--sumi);
    }
    
    .price-tax-notice {
      margin-top: 1.5rem;
      padding: 1rem 1.5rem;
      background: #FDF5F5;
      border-radius: 0.5rem;
      border-left: 3px solid #B85C5C;
    }
    
    .price-tax-notice p {
      font-size: 0.9rem;
      color: #8B4545;
      text-align: left;
      line-height: 1.6;
      margin: 0;
    }
    
    .price-tax-notice strong {
      color: #A03030;
      font-weight: 600;
    }
    
    /* Contact Section */
    .contact {
      background: var(--washi);
    }
    
    /* FAQ Section */
    .yururi-faq {
      background: white;
    }
    
    /* Access Section */
    .access {
      background: var(--washi);
    }
    
    .access-grid {
      display: grid;
      gap: 3rem;
    }
    
    @media (min-width: 768px) {
      .access-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
      }
    }
    
    .access-map {
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }
    
    .map-placeholder {
      background: #E8E4E0;
      min-height: 400px;
      height: 100%;
    }
    
    .map-placeholder iframe {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 400px;
    }
    
    .map-placeholder-content {
      min-height: 400px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #888;
    }
    
    .map-placeholder-content svg {
      stroke: #aaa;
      margin-bottom: 1rem;
    }
    
    .map-placeholder-content p {
      font-size: 1.1rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
      color: #666;
    }
    
    .map-placeholder-content span {
      font-size: 0.85rem;
    }
    
    .access-info {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    
    .nap-info h3 {
      font-family: 'Noto Serif JP', serif;
      font-size: 1.5rem;
      color: var(--tsugaru-blue);
      margin-bottom: 1.5rem;
    }
    
    .access-details {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    .access-item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1rem;
      align-items: start;
    }
    
    .access-item dt {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: var(--matcha);
      font-weight: 500;
      white-space: nowrap;
    }
    
    .access-item dt svg {
      stroke: var(--matcha);
    }
    
    .access-item dd {
      color: var(--sumi);
      line-height: 1.6;
    }
    
    .access-item dd a {
      color: var(--tsugaru-blue);
      text-decoration: none;
      transition: opacity 0.3s;
    }
    
    .access-item dd a:hover {
      opacity: 0.7;
    }
    
    .access-directions h4,
    .access-parking h4 {
      font-family: 'Noto Serif JP', serif;
      font-size: 1.1rem;
      color: var(--sumi);
      margin-bottom: 0.75rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid var(--hinoki);
    }
    
    .access-directions ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    .access-directions li {
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.8;
    }
    
    .access-directions strong {
      color: var(--sumi);
      display: block;
      margin-bottom: 0.25rem;
    }
    
    .access-parking p {
      font-size: 0.9rem;
      color: var(--text-secondary);
    }
    
    .access-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 1rem 1.5rem;
      background: #6B7A5D;
      color: white;
      border-radius: 0.5rem;
      text-decoration: none;
      font-size: 0.9rem;
      transition: all 0.3s;
      margin-top: auto;
    }
    
    .access-btn:hover {
      background: #7D8B6A;
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(107,122,93,0.3);
    }
    
    .access-btn svg {
      stroke: white;
    }
    
    .yururi-faq-list {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .yururi-faq-item {
      border-bottom: 1px solid #E8E4E0;
    }
    
    .yururi-faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding: 1.5rem 0;
      cursor: pointer;
      background: none;
      border: none;
      text-align: left;
      font-family: 'Noto Serif JP', serif;
      font-size: 1.1rem;
      color: var(--sumi);
      transition: color 0.3s;
    }
    
    .yururi-faq-question:hover {
      color: var(--matcha);
    }
    
    .yururi-faq-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      margin-left: 1rem;
      stroke: var(--matcha);
      transition: transform 0.3s;
    }
    
    .yururi-faq-item.is-open .yururi-faq-icon {
      transform: rotate(180deg);
    }
    
    .yururi-faq-answer {
      display: none;
      padding: 0 0 1.5rem 0;
      color: var(--text-secondary);
      line-height: 1.8;
    }
    
    .yururi-faq-item.is-open .yururi-faq-answer {
      display: block;
    }
    
    .yururi-faq-answer p {
      margin: 0;
    }
    
    .contact-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: center;
      max-width: 600px;
      margin: 0 auto;
    }
    
    @media (min-width: 640px) {
      .contact-buttons { flex-direction: row; }
    }
    
    .contact-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      padding: 1rem 2rem;
      border-radius: 50px;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s;
      white-space: nowrap;
      flex: 1;
      min-width: fit-content;
    }
    
    .contact-btn.primary {
      background: linear-gradient(135deg, #6B7A5D, #7D8B6A);
      color: white;
    }
    
    .contact-btn.primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(107,122,93,0.3);
    }
    
    .contact-btn.secondary {
      background: transparent;
      border: 2px solid var(--matcha);
      color: var(--sumi);
    }
    
    .contact-btn.secondary:hover {
      background: white;
    }
    
    .contact-btn svg {
      width: 20px;
      height: 20px;
    }
    
    /* Footer */
    footer {
      padding: 4rem 1.5rem 2rem;
      background: var(--sumi);
      color: white;
    }
    
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    
    .footer-grid {
      display: grid;
      gap: 2rem;
      flex: 1;
    }
    
    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
      }
    }
    
    .footer-image {
      flex-shrink: 0;
      width: 50%;
      max-width: 450px;
    }
    
    .footer-image img {
      width: 100%;
      height: auto;
    }
    
    @media (max-width: 767px) {
      .footer-content {
        flex-direction: column;
        align-items: stretch;
      }
      
      .footer-image {
        order: -1;
        width: 60%;
        max-width: 250px;
        align-self: center;
      }
    }
    
    .footer-brand h3 {
      font-family: 'Noto Serif JP', serif;
      font-size: 1.5rem;
      color: white;
      margin-bottom: 0.25rem;
    }
    
    .footer-tagline {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.75);
      margin-bottom: 1.5rem;
    }
    
    .footer-address {
      font-style: normal;
      font-size: 0.875rem;
      line-height: 2;
      color: rgba(255,255,255,0.8);
      margin-bottom: 1.5rem;
    }
    
    .footer-address a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-address a:hover {
      color: var(--sakura);
    }
    
    .footer-social {
      display: flex;
      gap: 1rem;
    }
    
    .footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      color: white;
      transition: all 0.3s;
    }
    
    .footer-social a:hover {
      background: var(--sakura);
      color: var(--sumi);
    }
    
    .footer-nav h4,
    .footer-links-section h4 {
      font-family: 'Noto Serif JP', serif;
      font-size: 0.9rem;
      color: white;
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .footer-links li {
      margin-bottom: 0.5rem;
    }
    
    .footer-links a,
    .footer-links span {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-links a:hover {
      color: var(--sakura);
    }
    
    .footer-nav h4,
    .footer-nearby h4 {
      font-family: 'Noto Serif JP', serif;
      font-size: 1rem;
      color: white;
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    
    .footer-nav ul,
    .footer-nearby ul {
      list-style: none;
    }
    
    .footer-nav li,
    .footer-nearby li {
      margin-bottom: 0.5rem;
    }
    
    .footer-nav a {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-nav a:hover {
      color: var(--sakura);
    }
    
    .footer-nearby li {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.75);
    }
    
    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      text-align: center;
    }
    
    .footer-copyright {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.65);
    }
    
    /* Page Top Button */
    .page-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 50px;
      height: 50px;
      background: var(--matcha);
      color: white;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(107,122,93,0.3);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
      z-index: 1000;
    }
    
    .page-top.visible {
      opacity: 1;
      visibility: visible;
    }
    
    .page-top:hover {
      background: #5A6A4D;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(107,122,93,0.4);
    }
    
    .page-top svg {
      stroke: white;
    }
    
    .page-top span {
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      margin-top: 2px;
    }
    
    @media (max-width: 768px) {
      .page-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
      }
    }

/* ========================================
   News Section (Top Page)
   ======================================== */
.news {
  background: #f9f9f9;
}

.news-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  background: var(--washi);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s;
}

.news-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.news-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 1.25rem;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.news-meta time {
  color: var(--text-muted);
}

.news-category {
  background: var(--sakura);
  color: var(--sumi);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  font-size: 0.7rem;
}

.news-content h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  color: var(--sumi);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.news-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.news-more {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  border: 2px solid var(--matcha);
  color: var(--matcha);
  border-radius: 50px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--matcha);
  color: white;
}

.btn-outline svg {
  stroke: currentColor;
}

/* ========================================
   Archive Page
   ======================================== */
.archive-header {
  padding: 8rem 1.5rem 3rem;
  background: var(--washi);
  text-align: center;
}

.archive-description {
  color: var(--text-secondary);
  margin-top: 1rem;
}

.archive-content {
  padding: 3rem 1.5rem 5rem;
}

.posts-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-card {
  background: var(--washi);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s;
}

.post-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.post-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.post-card:hover .post-image img {
  transform: scale(1.05);
}

.post-image-placeholder {
  background: linear-gradient(135deg, var(--sakura), var(--hinoki));
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-image-placeholder svg {
  stroke: rgba(255,255,255,0.5);
}

.post-content {
  padding: 1.25rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.post-meta time {
  color: var(--text-muted);
}

.post-category {
  background: var(--sakura);
  color: var(--sumi);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  font-size: 0.7rem;
}

.post-content h2,
.post-content h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  color: var(--sumi);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.post-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pagination {
  margin-top: 3rem;
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  background: var(--washi);
  color: var(--sumi);
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.pagination a:hover {
  background: var(--matcha);
  color: white;
}

.pagination .current {
  background: var(--matcha);
  color: white;
}

.no-posts {
  text-align: center;
  padding: 4rem 0;
}

.no-posts p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ========================================
   Single Post
   ======================================== */
.single-header {
  padding: 8rem 1.5rem 3rem;
  background: var(--washi);
}

.single-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.single-meta time {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.single-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--sakura);
  color: var(--sumi);
  border-radius: 50px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s;
}

.single-category:hover {
  background: var(--sakura-deep);
}

.single-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 400;
  color: var(--sumi);
  line-height: 1.5;
}

.single-thumbnail {
  padding: 0 1.5rem;
  margin-top: -2rem;
  margin-bottom: 2rem;
}

.single-thumbnail img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.single-content {
  padding: 2rem 1.5rem 3rem;
}

.single-content .section-container {
  max-width: 800px;
}

.entry-content {
  font-size: 1rem;
  line-height: 2;
  color: var(--sumi);
}

.entry-content h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sakura);
}

.entry-content h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 2.5rem 0 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--matcha);
}

.entry-content h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 2rem 0 0.75rem;
}

.entry-content p {
  margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.entry-content li {
  margin-bottom: 0.5rem;
}

.entry-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: var(--washi);
  border-left: 4px solid var(--matcha);
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.entry-content a {
  color: var(--tsugaru-blue);
  text-decoration: underline;
}

.entry-content a:hover {
  text-decoration: none;
}

.single-tags {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E8E4E0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.single-tags span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.single-tags a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--washi);
  color: var(--text-secondary);
  border-radius: 50px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s;
}

.single-tags a:hover {
  background: var(--matcha);
  color: white;
}

.single-nav {
  background: var(--washi);
  padding: 3rem 1.5rem;
}

.single-nav-inner {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .single-nav-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.single-nav-prev,
.single-nav-next {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background: white;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
}

.single-nav-prev:hover,
.single-nav-next:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.single-nav-next {
  text-align: right;
}

.nav-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.single-nav-next .nav-label {
  justify-content: flex-end;
}

.nav-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  color: var(--sumi);
  line-height: 1.5;
}

.single-nav-back {
  text-align: center;
}

.related-posts {
  padding: 4rem 1.5rem;
  background: white;
}

.related-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  color: var(--sumi);
  text-align: center;
  margin-bottom: 2rem;
}

/* News Image Overlay */
.news-image {
  position: relative;
}

.news-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.news-card:hover .news-image-overlay {
  opacity: 0.7;
}

.news-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   Amenities Section (Top Page)
   ======================================== */
.amenities {
  background: white;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.amenity-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.amenity-icon svg {
  stroke: var(--matcha);
}

.amenity-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.amenity-name {
  font-size: 0.85rem;
  color: var(--sumi);
  font-weight: 500;
}

.amenities-note {
  max-width: 600px;
  margin: 2rem auto 0;
  text-align: center;
}

.amenities-note p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ========================================
   Facilities Page (施設・アメニティ詳細)
   ======================================== */
.page-header {
  padding: 8rem 1.5rem 3rem;
  background: var(--washi);
  text-align: center;
}

.page-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--sumi);
  margin-top: 0.5rem;
}

.page-subtitle {
  color: var(--text-secondary);
  margin-top: 1rem;
}

.facilities-content {
  padding: 3rem 1.5rem 5rem;
}

.facilities-section {
  margin-bottom: 4rem;
}

.facilities-section:last-of-type {
  margin-bottom: 0;
}

.facilities-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--sakura);
}

.title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--sakura);
  border-radius: 50%;
}

.title-icon svg {
  stroke: var(--sumi);
}

.facilities-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .facilities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.facilities-grid-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .facilities-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.facility-card {
  background: var(--washi);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
}

.facility-icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.facility-icon svg {
  stroke: var(--matcha);
}

.facility-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 0.5rem;
}

.facility-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* アメニティ詳細 */
.amenities-detail-box {
  background: var(--washi);
  padding: 2rem;
  border-radius: 1rem;
}

.amenities-detail-intro {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.amenities-detail-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .amenities-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.amenities-detail-category h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 1rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--matcha);
}

.amenities-detail-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities-detail-category li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.amenities-detail-category li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--matcha);
}

/* ご利用案内 */
.usage-info-box {
  background: var(--washi);
  padding: 2rem;
  border-radius: 1rem;
}

.usage-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.usage-info-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 0.75rem;
}

.usage-info-item h3 {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.usage-time {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--sumi);
}

.usage-notes h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 1rem;
}

.usage-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.usage-notes li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.usage-notes li:last-child {
  border-bottom: none;
}

.usage-notes li::before {
  content: '※';
  position: absolute;
  left: 0;
  color: var(--sakura-deep);
}

/* CTA */
.facilities-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #E8E4E0;
}

@media (min-width: 480px) {
  .facilities-cta {
    flex-direction: row;
    justify-content: center;
  }
}

/* Room card link styles */
a.room-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.room-link-text {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--matcha);
  font-weight: 500;
  transition: all 0.3s;
}

a.room-card:hover .room-link-text {
  transform: translateX(5px);
}

/* ========================================
   Rooms Detail Page (お部屋詳細)
   ======================================== */
.rooms-detail-content {
  padding: 3rem 1.5rem 5rem;
}

.room-detail {
  margin-bottom: 4rem;
  scroll-margin-top: 100px;
}

.room-detail-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .room-detail-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .room-detail-reverse {
    direction: rtl;
  }
  
  .room-detail-reverse > * {
    direction: ltr;
  }
}

.room-detail-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.room-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.room-image-placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--sakura), var(--hinoki));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.room-image-placeholder svg {
  stroke: rgba(255,255,255,0.6);
}

.room-image-placeholder p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.room-detail-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--matcha);
  margin-bottom: 0.5rem;
}

.room-detail-info h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--sumi);
  margin-bottom: 0.75rem;
}

.room-detail-capacity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.room-detail-capacity svg {
  stroke: var(--matcha);
}

.room-detail-description {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.room-detail-description p {
  margin-bottom: 1rem;
}

.room-detail-features h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 0.75rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--sakura);
}

.room-detail-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.room-detail-features li {
  background: var(--washi);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* 共用設備 */
.shared-facilities {
  background: var(--washi);
  padding: 2.5rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.shared-facilities h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sumi);
  text-align: center;
  margin-bottom: 2rem;
}

.shared-facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .shared-facilities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.shared-facility-item {
  text-align: center;
}

.shared-facility-icon {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.shared-facility-icon svg {
  stroke: var(--matcha);
}

.shared-facility-item h3 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 0.25rem;
}

.shared-facility-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.rooms-detail-note {
  text-align: center;
  margin-bottom: 2rem;
}

.rooms-detail-note p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

/* Custom Logo */
.nav-logo-image {
  height: 40px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .nav-logo-image {
    height: 32px;
  }
}

/* Food section text fix */
.food-inner p {
  word-break: keep-all;
  overflow-wrap: break-word;
}
