    :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);
    }
    
    /* デスクトップ用予約ボタン：モバイルで非表示 */
    .nav-cta-desktop {
      display: none;
    }
    
    @media (min-width: 768px) {
      .nav-cta-desktop {
        display: inline-block;
      }
    }
    
    /* ハンバーガーメニューボタン */
    .hamburger-btn {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 44px;
      height: 44px;
      padding: 0;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 1001;
    }
    
    .hamburger-line {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--sumi);
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    
    .hamburger-line:nth-child(1) {
      transform: translateY(-6px);
    }
    
    .hamburger-line:nth-child(3) {
      transform: translateY(6px);
    }
    
    /* ハンバーガーメニュー開いた状態 */
    .hamburger-btn.is-active .hamburger-line:nth-child(1) {
      transform: translateY(0) rotate(45deg);
    }
    
    .hamburger-btn.is-active .hamburger-line:nth-child(2) {
      opacity: 0;
    }
    
    .hamburger-btn.is-active .hamburger-line:nth-child(3) {
      transform: translateY(0) rotate(-45deg);
    }
    
    /* デスクトップでハンバーガーを非表示 */
    @media (min-width: 768px) {
      .hamburger-btn {
        display: none;
      }
    }
    
    /* モバイルメニュー */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 320px;
      height: 100vh;
      background: white;
      z-index: 1000;
      transition: right 0.3s ease;
      box-shadow: -5px 0 20px rgba(0,0,0,0.1);
      overflow-y: auto;
    }
    
    .mobile-menu.is-open {
      right: 0;
    }
    
    .mobile-menu-inner {
      padding: 100px 2rem 2rem;
    }
    
    .mobile-nav-links {
      list-style: none;
      padding: 0;
      margin: 0 0 2rem 0;
    }
    
    .mobile-nav-links li {
      border-bottom: 1px solid #E8E4E0;
    }
    
    .mobile-nav-links a {
      display: block;
      padding: 1rem 0;
      color: var(--sumi);
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s;
    }
    
    .mobile-nav-links a:hover {
      color: var(--sakura-deep);
    }
    
    .mobile-cta {
      display: block;
      text-align: center;
      padding: 1rem 2rem;
      background: linear-gradient(135deg, var(--sakura), var(--sakura-deep));
      border-radius: 50px;
      color: var(--sumi);
      text-decoration: none;
      font-weight: 500;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .mobile-cta:hover {
      transform: scale(1.02);
      box-shadow: 0 4px 15px rgba(212,165,165,0.4);
    }
    
    /* オーバーレイ */
    .mobile-menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }
    
    .mobile-menu-overlay.is-open {
      opacity: 1;
      visibility: visible;
    }
    
    /* デスクトップでモバイルメニューを非表示 */
    @media (min-width: 768px) {
      .mobile-menu,
      .mobile-menu-overlay {
        display: none;
      }
    }
    
    /* 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);
      overflow: hidden;
    }
    
    .about-image-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .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);
    }
    
    .rooms-more {
      text-align: center;
      margin-top: 2rem;
    }
    
    /* 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);
      transition: transform 0.3s;
    }
    
    .salon-images img:hover {
      transform: scale(1.02);
    }
    
    .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;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .map-placeholder-content {
      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(--sakura);
    }
    
    .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.site-footer {
      position: relative;
      padding: 4rem 1.5rem 2rem;
      background-color: var(--sumi);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: white;
    }
    
    .footer-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
    }
    
    .footer-inner {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    
    .footer-grid {
      display: grid;
      gap: 2rem;
      flex: 1;
      max-width: 500px;
    }
    
    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
      }
    }
    
    .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: 90px; /* 固定メニューの上に配置 */
        right: 1rem;
        width: 45px;
        height: 45px;
      }
    }

/* ========================================
   Mobile Fixed Menu (スマホ固定メニュー)
   ======================================== */
.mobile-fixed-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: white;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 0.5rem;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 768px) {
  .mobile-fixed-menu {
    display: flex;
    gap: 0.5rem;
  }
}

.mobile-fixed-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.mobile-fixed-btn svg {
  flex-shrink: 0;
}

.mobile-fixed-btn span {
  white-space: nowrap;
}

/* お問い合わせボタン */
.mobile-fixed-contact {
  background: white;
  border: 2px solid var(--matcha);
  color: var(--matcha);
}

.mobile-fixed-contact:hover {
  background: var(--matcha);
  color: white;
}

.mobile-fixed-contact svg {
  stroke: currentColor;
}

/* 予約ボタン */
.mobile-fixed-booking {
  background: linear-gradient(135deg, var(--sakura), var(--sakura-deep));
  border: none;
  color: var(--sumi);
}

.mobile-fixed-booking:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(212,165,165,0.4);
}

.mobile-fixed-booking svg {
  stroke: var(--sumi);
}

/* フッターの余白調整（固定メニュー分） */
@media (max-width: 768px) {
  footer.site-footer {
    padding-bottom: 100px;
  }
}

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

.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;
}

/* 新着情報下の固定ページコンテンツ */
.news-page-content {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #E8E4E0;
}

.news-page-content > *:first-child {
  margin-top: 0;
}

.news-page-content > *:last-child {
  margin-bottom: 0;
}

.news-page-content p {
  line-height: 2;
  color: var(--text-secondary);
}

.news-page-content h2,
.news-page-content h3,
.news-page-content h4 {
  font-family: 'Noto Serif JP', serif;
  color: var(--sumi);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.news-page-content h2 {
  font-size: 1.5rem;
}

.news-page-content h3 {
  font-size: 1.25rem;
}

.news-page-content a {
  color: var(--tsugaru-blue);
}

.news-page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

.news-page-content .wp-block-image {
  margin: 2rem 0;
}

.news-page-content .wp-block-group {
  margin: 2rem 0;
}

.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% !important;
  height: 100% !important;
  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 {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 500px;
  margin: 0 auto;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  object-fit: contain;
}

.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: var(--washi);
}

.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-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;
}

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

.room-detail-section {
  margin-bottom: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #E8E4E0;
}

.room-detail-section:last-of-type {
  margin-bottom: 3rem;
  border-bottom: none;
}

.room-detail-header {
  text-align: center;
  margin-bottom: 2rem;
}

.room-detail-badge {
  display: inline-block;
  background: var(--sakura-light);
  color: var(--sumi);
  padding: 0.375rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.room-detail-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.75rem;
  color: var(--sumi);
}

@media (min-width: 768px) {
  .room-detail-title {
    font-size: 2rem;
  }
}

/* お部屋画像 */
.room-detail-images {
  margin-bottom: 2rem;
}

.room-main-image {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.room-main-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.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;
  color: var(--tsugaru-blue);
}

.room-image-placeholder svg {
  stroke: var(--tsugaru-blue);
  margin-bottom: 0.5rem;
}

.room-image-placeholder p {
  font-family: 'Noto Serif JP', serif;
}

/* サブ画像（横並び） */
.room-sub-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.room-sub-image {
  border-radius: 0.75rem;
  overflow: hidden;
}

.room-sub-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* お部屋説明文 */
.room-detail-description {
  max-width: 800px;
  margin: 0 auto;
}

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

.room-detail-description p:last-child {
  margin-bottom: 0;
}

/* 注釈 */
.rooms-detail-note {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

/* CTA */
.rooms-detail-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .rooms-detail-cta {
    flex-direction: row;
    max-width: none;
  }
}

.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;
}

/* ========================================
   ゆるりのお部屋ページ
   ======================================== */

/* ページコンテンツ */
.rooms-page-content {
  padding: 2rem 1.5rem 5rem;
}

/* ページ内ナビゲーション */
.rooms-page-nav {
  margin-bottom: 3rem;
  padding: 1rem;
  background: var(--washi);
  border-radius: 0.75rem;
  overflow-x: auto;
}

.rooms-page-nav ul {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: max-content;
}

.rooms-page-nav a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
  white-space: nowrap;
}

.rooms-page-nav a:hover {
  background: white;
  color: var(--sumi);
}

@media (max-width: 640px) {
  .rooms-page-nav ul {
    justify-content: flex-start;
  }
}

/* セクションヘッダー（中央寄せ） */
.section-header-center {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header-center .section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--matcha);
  margin-bottom: 0.5rem;
}

.section-header-center h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--sumi);
  margin-bottom: 0.5rem;
}

.section-lead {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* お部屋フルセクション */
.room-full-section {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #E8E4E0;
  scroll-margin-top: 100px;
}

.room-full-section:last-of-type {
  border-bottom: none;
}

.room-full-header {
  text-align: center;
  margin-bottom: 2rem;
}

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

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

.room-full-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

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

.room-full-size {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* お部屋ギャラリー */
.room-gallery {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .room-gallery {
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
  }
}

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

.room-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 300px;
}

@media (min-width: 768px) {
  .room-gallery-main img {
    min-height: 400px;
  }
}

.room-gallery-sub {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.room-gallery-sub-item {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.room-gallery-sub-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 140px;
}

@media (min-width: 768px) {
  .room-gallery-sub-item img {
    min-height: 190px;
  }
}

/* プレースホルダー */
.room-image-placeholder {
  aspect-ratio: 4/3;
  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.85rem;
}

.room-image-placeholder-large {
  aspect-ratio: 16/10;
}

.room-image-placeholder-wide {
  aspect-ratio: 16/9;
}

/* お部屋説明文 */
.room-full-description {
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--text-secondary);
  line-height: 1.9;
}

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

/* お部屋設備リスト */
.room-full-features {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

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

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

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

/* 共用スペースセクション */
.common-space-section {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #E8E4E0;
  scroll-margin-top: 100px;
}

.common-space-content {
  max-width: 900px;
  margin: 0 auto;
}

.common-space-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
}

.common-space-image img {
  width: 100%;
  height: auto;
  display: block;
}

.common-space-text {
  text-align: center;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* 水回りセクション */
.water-facilities-section {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #E8E4E0;
  scroll-margin-top: 100px;
}

.water-facilities-grid {
  display: grid;
  gap: 1.5rem;
}

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

.water-facility-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.water-facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.water-facility-card-featured {
  border: 2px solid var(--sakura);
}

.water-facility-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.water-facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.water-facility-info {
  padding: 1.25rem;
}

.water-facility-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--sakura);
  border-radius: 50px;
  font-size: 0.7rem;
  color: var(--tsugaru-blue);
  margin-bottom: 0.5rem;
}

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

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

/* アメニティセクション（詳細版） */
.amenities-section-detail {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #E8E4E0;
  scroll-margin-top: 100px;
}

.amenities-categories {
  display: grid;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

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

.amenities-category-box {
  background: var(--washi);
  padding: 1.5rem;
  border-radius: 1rem;
}

.amenities-category-box h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.amenities-category-box h3 svg {
  stroke: var(--matcha);
}

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

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

.amenities-category-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--matcha);
  font-size: 0.8rem;
}

/* 設備一覧セクション */
.facilities-list-section {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #E8E4E0;
}

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

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

.facility-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
}

.facility-icon-circle {
  width: 56px;
  height: 56px;
  background: var(--washi);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

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

.facility-icon-item:hover .facility-icon-circle {
  background: var(--sakura);
  transform: scale(1.1);
}

.facility-icon-item span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
}

/* ご利用案内セクション */
.usage-guide-section {
  margin-bottom: 3rem;
}

.usage-guide-box {
  background: var(--washi);
  padding: 2rem;
  border-radius: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

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

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

.usage-time-item h3 {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

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

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

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

.usage-notes-box li {
  padding: 0.6rem 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-box li:last-child {
  border-bottom: none;
}

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

/* =====================================================
   お問い合わせページ
   ===================================================== */

.contact-content {
  padding: 3rem 0 5rem;
}

/* 予約誘導ボックス */
.contact-booking-notice {
  margin-bottom: 4rem;
}

.booking-notice-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--sakura) 0%, rgba(242,215,217,0.5) 100%);
  border-radius: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .booking-notice-box {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
  }
}

.booking-notice-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-notice-icon svg {
  stroke: var(--tsugaru-blue);
}

.booking-notice-content {
  flex: 1;
}

.booking-notice-content h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 0.5rem;
}

.booking-notice-content p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.booking-notice-content .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ブロックエディター用ボタンリセット */
.booking-notice-content .wp-block-buttons,
.contact-booking-notice .wp-block-buttons {
  gap: 0;
}

.booking-notice-content .wp-block-button,
.contact-booking-notice .wp-block-button {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}

.booking-notice-content .wp-block-button .wp-block-button__link,
.contact-booking-notice .wp-block-button .wp-block-button__link {
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--sakura), var(--sakura-deep)) !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--sumi) !important;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.booking-notice-content .wp-block-button .wp-block-button__link:hover,
.contact-booking-notice .wp-block-button .wp-block-button__link:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212,165,165,0.4);
}

/* お問い合わせフォームセクション */
.contact-form-section {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #E8E4E0;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-form-title {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 1rem;
}

.contact-form-title .title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-title .title-icon svg {
  stroke: var(--matcha);
}

.contact-form-lead {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-form-container {
  max-width: 640px;
  margin: 0 auto;
}

/* Contact Form 7 スタイル上書き */
.contact-form-container .wpcf7 {
  background: var(--washi);
  padding: 2.5rem;
  border-radius: 1.5rem;
}

@media (max-width: 640px) {
  .contact-form-container .wpcf7 {
    padding: 1.5rem;
  }
}

.contact-form-container .form-group {
  margin-bottom: 1.5rem;
}

.contact-form-container label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 0.5rem;
}

.contact-form-container .required {
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  background: var(--sakura-deep);
  color: white;
  border-radius: 50px;
  font-weight: 400;
}

.contact-form-container .optional {
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  background: var(--hinoki);
  color: var(--sumi);
  border-radius: 50px;
  font-weight: 400;
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="tel"],
.contact-form-container select,
.contact-form-container textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #E8E4E0;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  background: white;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form-container input:focus,
.contact-form-container select:focus,
.contact-form-container textarea:focus {
  border-color: var(--sakura-deep);
  box-shadow: 0 0 0 3px rgba(212,165,165,0.2);
  outline: none;
}

.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder {
  color: #B0B0B0;
}

.contact-form-container select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form-container textarea {
  min-height: 160px;
  resize: vertical;
}

/* プライバシーポリシー同意 */
.contact-form-container .form-privacy {
  margin: 2rem 0;
  padding: 1rem;
  background: white;
  border-radius: 0.75rem;
}

.contact-form-container .form-privacy label {
  font-weight: 400;
  cursor: pointer;
}

.contact-form-container .wpcf7-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
  accent-color: var(--matcha);
}

/* 送信ボタン */
.contact-form-container .form-submit {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 480px) {
  .contact-form-container .form-submit {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.contact-form-container input[type="submit"],
.contact-form-container input[type="button"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--sakura), var(--sakura-deep));
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--sumi);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form-container input[type="submit"]:hover,
.contact-form-container input[type="button"]:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212,165,165,0.4);
}

.contact-form-container input[type="submit"]:disabled,
.contact-form-container input[type="button"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Contact Form 7 add confirm - 確認画面ボタン */
.contact-form-container .wpcf7-confirm {
  background: linear-gradient(135deg, var(--tsugaru-blue), #3D5A7F);
  color: white;
}

.contact-form-container .wpcf7-confirm:hover {
  box-shadow: 0 8px 25px rgba(45,74,111,0.4);
}

/* Contact Form 7 add confirm - 戻るボタン */
.contact-form-container .wpcf7-back {
  background: transparent;
  border: 2px solid var(--hinoki);
  color: var(--text-secondary);
}

.contact-form-container .wpcf7-back:hover {
  background: var(--washi);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* 確認画面時のスタイル */
.contact-form-container .wpcf7c-conf {
  background: #F0F0F0;
  border-color: #D0D0D0;
}

.contact-form-container .wpcf7c-conf-hidden {
  display: none !important;
}

/* ==========================================================================
   Confirm Plus Contact Form 7 - 確認画面スタイル
   ========================================================================== */

/* 確認画面表示時に入力フォームの背景を消す */
.wpcf7:has(#wpcf7cpcnf),
.wpcf7-form:has(#wpcf7cpcnf) {
  background: transparent !important;
  padding: 0 !important;
}

/* 確認画面全体 */
#wpcf7cpcnf {
  background: white;
  border: 2px solid var(--sakura);
  border-radius: 1.5rem;
  padding: 2.5rem;
  margin: 0 auto;
  max-width: 600px;
  box-shadow: 0 10px 40px rgba(212,165,165,0.15);
}

/* 確認画面のヘッダーテキスト */
#wpcf7cpcnf::before {
  content: '入力内容をご確認ください';
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sumi);
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--sakura);
}

/* 確認画面のテーブル */
#wpcf7cpcnf table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

#wpcf7cpcnf th,
#wpcf7cpcnf td {
  padding: 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(212,165,165,0.3);
}

#wpcf7cpcnf th {
  width: 35%;
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.9rem;
  background: rgba(255,255,255,0.5);
}

#wpcf7cpcnf td {
  color: var(--sumi);
  font-size: 1rem;
  line-height: 1.7;
  background: white;
}

#wpcf7cpcnf tr:last-child th,
#wpcf7cpcnf tr:last-child td {
  border-bottom: none;
}

@media (max-width: 640px) {
  #wpcf7cpcnf {
    padding: 1.5rem;
  }
  
  #wpcf7cpcnf th,
  #wpcf7cpcnf td {
    display: block;
    width: 100%;
    padding: 0.75rem;
  }
  
  #wpcf7cpcnf th {
    border-bottom: none;
    padding-bottom: 0.25rem;
  }
  
  #wpcf7cpcnf td {
    border-bottom: 1px solid rgba(212,165,165,0.3);
    margin-bottom: 0.5rem;
  }
}

/* 確認画面のボタンエリア */
#wpcf7cpcnf p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
}

#wpcf7cpcnf p:last-child {
  margin-bottom: 0;
}

/* 確認画面の戻るボタン（修正ボタン） */
#wpcf7cpcnf input[type="button"],
#wpcf7cpcnf button.wpcf7cpcp-back-btn,
#wpcf7cpcnf .wpcf7cpcp-back-btn,
#wpcf7cpcnf a,
.wpcf7cpcp-back-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem 2.5rem !important;
  background: white !important;
  border: 2px solid var(--sumi) !important;
  border-radius: 50px !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: var(--sumi) !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  font-family: inherit !important;
  text-decoration: none !important;
}

#wpcf7cpcnf input[type="button"]:hover,
#wpcf7cpcnf button.wpcf7cpcp-back-btn:hover,
#wpcf7cpcnf .wpcf7cpcp-back-btn:hover,
#wpcf7cpcnf a:hover,
.wpcf7cpcp-back-btn:hover {
  background: var(--washi) !important;
  border-color: var(--sumi) !important;
  color: var(--sumi) !important;
}

/* 確認画面の送信ボタン */
#wpcf7cpcnf input[type="submit"],
#wpcf7cpcnf button.wpcf7cpcp-submit-btn,
#wpcf7cpcnf .wpcf7cpcp-submit-btn,
.wpcf7cpcp-submit-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem 2.5rem !important;
  background: linear-gradient(135deg, var(--sakura), var(--sakura-deep)) !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: var(--sumi) !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  font-family: inherit !important;
}

#wpcf7cpcnf input[type="submit"]:hover,
#wpcf7cpcnf button.wpcf7cpcp-submit-btn:hover,
#wpcf7cpcnf .wpcf7cpcp-submit-btn:hover,
.wpcf7cpcp-submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212,165,165,0.4);
}

/* 確認画面表示時に入力フォームの背景を隠す */
.wpcf7 .wpcf7cpcp-confirm-visible,
.wpcf7.wpcf7cpcp-confirm-visible {
  background: transparent !important;
}

/* 確認画面ラッパー */
.wpcf7cpcp-confirm {
  background: white !important;
  padding: 2rem;
  border-radius: 1.5rem;
  margin: 0 auto;
  max-width: 600px;
}

/* 入力画面での確認ボタン（送信ボタンが確認ボタンに変わる） */
.wpcf7 .wpcf7-submit.wpcf7cpcp-confirm-btn,
.contact-form-container .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--sakura), var(--sakura-deep));
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--sumi);
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.wpcf7 .wpcf7-submit.wpcf7cpcp-confirm-btn:hover,
.contact-form-container .wpcf7-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212,165,165,0.4);
}

/* 送信完了後のメッセージ強化 */
.wpcf7-mail-sent-ok,
.wpcf7 form.sent .wpcf7-response-output {
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9) !important;
  color: #2E7D32 !important;
  border: 2px solid #81C784 !important;
  padding: 2.5rem !important;
  border-radius: 1.5rem !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 600px !important;
  margin: 0 auto !important;
  line-height: 1.8;
  box-sizing: border-box !important;
}

/* 送信完了メッセージの前にチェックマークアイコン */
.wpcf7 form.sent .wpcf7-response-output::before {
  content: '✓';
  display: block;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #4CAF50;
}

/* ==========================================================================
   CF7フォームラッパー専用クラス（ブロックエディターで追加）
   グループブロックの「高度な設定」→「追加CSSクラス」に cf7-form-wrapper を入力
   ========================================================================== */

/* 通常時：フォームボックスのスタイル */
.cf7-form-wrapper {
  background: var(--washi);
  padding: 2rem;
  border-radius: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

/* 確認画面表示時 */
.cf7-form-wrapper:has(#wpcf7cpcnf) {
  background: transparent;
  padding: 0;
  max-width: none;
}

/* 送信完了時：ラッパーのスタイルをリセット */
.cf7-form-wrapper:has(form.sent) {
  background: transparent !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

/* 送信完了時：内部のwpcf7もリセット */
.cf7-form-wrapper .wpcf7:has(form.sent),
.cf7-form-wrapper .wpcf7 form.sent {
  background: transparent !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

/* 送信完了後はフォームを非表示にする */
.wpcf7 form.sent .form-group,
.wpcf7 form.sent .form-privacy,
.wpcf7 form.sent .form-submit,
.wpcf7 form.sent br,
.wpcf7 form.sent label,
.wpcf7 form.sent input:not([type="hidden"]),
.wpcf7 form.sent select,
.wpcf7 form.sent textarea,
.wpcf7 form.sent .wpcf7-submit,
.wpcf7 form.sent .wpcf7cpcp-confirm-btn,
.wpcf7 form.sent .wpcf7-form-control-wrap,
.wpcf7 form.sent .required,
.wpcf7 form.sent .optional,
.wpcf7 form.sent .wpcf7-acceptance {
  display: none !important;
}

/* 送信完了時に非表示にするコンテナ */
.wpcf7 form.sent > *:not(.wpcf7-response-output) {
  display: none !important;
}

/* 送信完了時にレスポンス出力だけを表示 */
.wpcf7 form.sent .wpcf7-response-output {
  display: block !important;
}

/* 送信完了時のフォームコンテナスタイル */
.wpcf7 form.sent {
  background: transparent !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

/* 送信完了時のwpcf7ラッパーを中央配置 */
.wpcf7:has(form.sent) {
  background: transparent !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

/* ブロックエディター内でも送信完了時は背景を消す */
.contact-editor-content .wpcf7:has(form.sent),
.contact-editor-content .wpcf7-form.sent {
  background: transparent !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

/* 確認ボタン表示時（送信前）のレスポンス出力を非表示 */
.wpcf7 form:not(.sent) .wpcf7-response-output:empty {
  display: none;
}

/* エラーメッセージ */
.contact-form-container .wpcf7-not-valid-tip {
  color: #C53030;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.contact-form-container .wpcf7-response-output {
  margin: 1.5rem 0 0;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  text-align: center;
}

.contact-form-container .wpcf7-mail-sent-ok {
  background: #C6F6D5;
  color: #22543D;
  border: none;
}

.contact-form-container .wpcf7-validation-errors,
.contact-form-container .wpcf7-spam-blocked {
  background: #FED7D7;
  color: #C53030;
  border: none;
}

/* フォールバック表示（ショートコード未設定時） */
.contact-form-fallback {
  background: var(--washi);
  padding: 2.5rem;
  border-radius: 1.5rem;
}

.fallback-message {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.fallback-steps {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

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

.fallback-steps ol {
  margin: 0;
  padding-left: 1.5rem;
}

.fallback-steps li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.fallback-recommended {
  background: white;
  padding: 1rem;
  border-radius: 0.75rem;
}

.fallback-recommended summary {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--tsugaru-blue);
  cursor: pointer;
  padding: 0.5rem;
}

.fallback-recommended pre {
  margin-top: 1rem;
  padding: 1rem;
  background: #2C2C2C;
  border-radius: 0.5rem;
  overflow-x: auto;
}

.fallback-recommended code {
  font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
  font-size: 0.75rem;
  color: #E8E4E0;
  white-space: pre;
}

/* その他のお問い合わせ方法 */
.contact-other-section {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #E8E4E0;
}

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

.contact-other-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.contact-method-card {
  background: var(--washi);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-method-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-method-icon svg {
  stroke: var(--matcha);
  fill: none;
}

.contact-method-icon svg[fill="currentColor"] {
  fill: var(--matcha);
  stroke: none;
}

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

.contact-method-value {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-method-value a {
  color: var(--tsugaru-blue);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-method-value a:hover {
  color: var(--sakura-deep);
}

.contact-method-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ誘導セクション */
.contact-faq-link {
  margin-bottom: 3rem;
}

.faq-link-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--washi);
  border-radius: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .faq-link-box {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.faq-link-content h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 0.5rem;
}

.faq-link-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.faq-link-box .btn-outline {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ブロックエディター用ボタンリセット */
.faq-link-box .wp-block-buttons {
  gap: 0;
}

.faq-link-box .wp-block-button {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

.faq-link-box .wp-block-button .wp-block-button__link {
  padding: 0.875rem 2rem;
  background: transparent !important;
  border: 2px solid var(--sakura-deep) !important;
  border-radius: 50px !important;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--sumi) !important;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-link-box .wp-block-button .wp-block-button__link:hover {
  background: var(--sakura) !important;
}

/* CTA */
.contact-cta {
  text-align: center;
  margin-top: 2rem;
}

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

.contact-cta .btn-outline:hover {
  background: var(--washi);
  border-color: var(--sumi);
  color: var(--sumi);
}

/* ==========================================================================
   ブロックエディター対応 - お問い合わせページ 包括的リセット
   ========================================================================== */

.contact-editor-content {
  /* エディターコンテンツのラッパー */
  max-width: 900px;
  margin: 0 auto;
}

/* セクション間の余白 */
.contact-editor-content > .wp-block-group {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #E8E4E0;
}

.contact-editor-content > .wp-block-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ボタンのWordPressデフォルト背景色をリセット */
.contact-editor-content .wp-block-button {
  background: transparent !important;
  background-color: transparent !important;
}

/* 背景色のリセット（WordPressのプリセットカラーを上書き）- ボタンのみ */
.contact-editor-content .wp-block-button[class*="has-"][class*="-background-color"],
.contact-editor-content .wp-block-button.has-background {
  background: transparent !important;
  background-color: transparent !important;
}

/* ボタンスタイル */
.contact-editor-content .wp-block-button__link,
.contact-editor-content .wp-block-button .wp-block-button__link {
  padding: 0.875rem 2rem !important;
  background: linear-gradient(135deg, var(--sakura), var(--sakura-deep)) !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: var(--sumi) !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.contact-editor-content .wp-block-button__link:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212,165,165,0.4) !important;
}

/* アウトラインボタン */
.contact-editor-content .is-style-outline .wp-block-button__link,
.contact-editor-content .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  border: 2px solid var(--sakura-deep) !important;
}

.contact-editor-content .is-style-outline .wp-block-button__link:hover,
.contact-editor-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--sakura) !important;
  transform: none;
  box-shadow: none !important;
}

/* 予約誘導ボックス */
#contact-booking,
.contact-editor-content .contact-booking-notice {
  background: var(--sakura-light) !important;
  padding: 2.5rem;
  border-radius: 1.5rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #E8E4E0;
}

.contact-editor-content .contact-booking-notice .booking-notice-icon {
  width: 64px;
  height: 64px;
  background: white !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.contact-editor-content .contact-booking-notice h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 0.5rem;
}

.contact-editor-content .contact-booking-notice p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

/* フォームセクション */
#contact-form,
.contact-editor-content .contact-form-section {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #E8E4E0;
}

.contact-editor-content .contact-form-section h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 1rem;
}

.contact-editor-content .contact-form-section p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* Contact Form 7 フォームスタイル（ブロックエディター内） */
#cf7-wrapper,
.contact-editor-content .wpcf7,
.contact-editor-content .wpcf7-form {
  background: var(--washi) !important;
  padding: 2rem;
  border-radius: 1.5rem;
  max-width: 600px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: left;
}

/* 確認画面表示時は背景を消す */
#cf7-wrapper:has(#wpcf7cpcnf),
.contact-editor-content .wpcf7:has(#wpcf7cpcnf),
.contact-editor-content .wpcf7-form:has(#wpcf7cpcnf) {
  background: transparent !important;
  padding: 0 !important;
}

/* 送信完了時は親のmax-widthを解除して中央配置 */
#cf7-wrapper:has(form.sent),
.contact-editor-content .wpcf7:has(form.sent) {
  max-width: none !important;
  background: transparent !important;
  padding: 0 !important;
}

.contact-editor-content .wpcf7 {
  display: block;
}

.contact-editor-content .wpcf7 .form-group {
  margin-bottom: 1.5rem;
}

.contact-editor-content .wpcf7 label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 0.5rem;
}

.contact-editor-content .wpcf7 .required {
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  background: var(--sakura-deep);
  color: white;
  border-radius: 50px;
  font-weight: 400;
}

.contact-editor-content .wpcf7 .optional {
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  background: var(--hinoki);
  color: var(--sumi);
  border-radius: 50px;
  font-weight: 400;
}

.contact-editor-content .wpcf7 input[type="text"],
.contact-editor-content .wpcf7 input[type="email"],
.contact-editor-content .wpcf7 input[type="tel"],
.contact-editor-content .wpcf7 select,
.contact-editor-content .wpcf7 textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #E8E4E0;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  background: white;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-editor-content .wpcf7 input:focus,
.contact-editor-content .wpcf7 select:focus,
.contact-editor-content .wpcf7 textarea:focus {
  border-color: var(--sakura-deep);
  box-shadow: 0 0 0 3px rgba(212,165,165,0.2);
  outline: none;
}

.contact-editor-content .wpcf7 select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-editor-content .wpcf7 textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-editor-content .wpcf7 .form-privacy {
  margin: 2rem 0;
  padding: 1rem;
  background: white;
  border-radius: 0.75rem;
}

.contact-editor-content .wpcf7 .form-submit {
  text-align: center;
  margin-top: 2rem;
}

.contact-editor-content .wpcf7 input[type="submit"],
.contact-editor-content .wpcf7 button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--sakura), var(--sakura-deep)) !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 1rem;
  font-weight: 500;
  color: var(--sumi) !important;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-editor-content .wpcf7 input[type="submit"]:hover,
.contact-editor-content .wpcf7 button[type="submit"]:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212,165,165,0.4);
}

/* その他の連絡方法セクション */
#contact-other,
.contact-editor-content .contact-other-section {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #E8E4E0;
}

.contact-editor-content .contact-other-section h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 1.5rem;
}

.contact-editor-content .contact-other-grid,
.contact-editor-content .contact-other-section .wp-block-columns {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .contact-editor-content .contact-other-grid,
  .contact-editor-content .contact-other-section .wp-block-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-editor-content .contact-other-grid .wp-block-column,
.contact-editor-content .contact-other-section .wp-block-column,
.contact-editor-content .contact-method-card {
  background: var(--washi) !important;
  padding: 2rem !important;
  border-radius: 1rem !important;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-editor-content .contact-other-grid .wp-block-column:hover,
.contact-editor-content .contact-other-section .wp-block-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* アイコン中央配置 */
.contact-editor-content .contact-other-section .wp-block-column .wp-block-image,
.contact-editor-content .contact-method-card .wp-block-image {
  display: flex !important;
  justify-content: center !important;
  margin-bottom: 1rem !important;
}

.contact-editor-content .contact-other-section h3,
.contact-editor-content .contact-method-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 0.75rem;
  text-align: center;
}

.contact-editor-content .contact-other-section p {
  text-align: center;
  margin-bottom: 0.5rem;
}

.contact-editor-content .contact-other-section a {
  color: var(--tsugaru-blue);
  text-decoration: none;
}

.contact-editor-content .contact-other-section a:hover {
  color: var(--sakura-deep);
}

/* FAQ誘導ボックス */
#contact-faq,
.contact-editor-content .contact-faq-link {
  background: var(--washi) !important;
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.contact-editor-content .faq-link-box,
.contact-editor-content .contact-faq-link > .wp-block-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-editor-content .faq-link-box,
  .contact-editor-content .contact-faq-link > .wp-block-group {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.contact-editor-content .contact-faq-link h2,
.contact-editor-content .faq-link-box h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 0.5rem;
}

.contact-editor-content .contact-faq-link p,
.contact-editor-content .faq-link-box p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

/* FAQ誘導ボックスのボタン（アウトライン） */
.contact-editor-content .contact-faq-link .wp-block-button__link,
.contact-editor-content .faq-link-box .wp-block-button__link {
  background: white !important;
  border: 2px solid var(--sumi) !important;
  color: var(--sumi) !important;
}

.contact-editor-content .contact-faq-link .wp-block-button__link:hover,
.contact-editor-content .faq-link-box .wp-block-button__link:hover {
  background: var(--sakura) !important;
  transform: none;
}

/* デフォルト表示（コンテンツ未入力時） */
.contact-default-notice {
  background: var(--washi);
  padding: 3rem;
  border-radius: 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.contact-default-notice p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.contact-default-notice ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.contact-default-notice li {
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--tsugaru-blue);
}

/* ==========================================================================
   プライバシーポリシーページ
   ========================================================================== */

.policy-content {
  padding: 4rem 0;
}

.policy-editor-content {
  max-width: 800px;
  margin: 0 auto;
}

/* ポリシー本文スタイル */
.policy-editor-content h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sumi);
  margin: 3rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sakura);
}

.policy-editor-content h2:first-child {
  margin-top: 0;
}

.policy-editor-content h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--sumi);
  margin: 2rem 0 0.75rem;
}

.policy-editor-content p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.policy-editor-content ul,
.policy-editor-content ol {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

/* 制定日・改定日 */
.policy-editor-content .policy-date {
  text-align: right;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E8E4E0;
}

/* 事業者情報ボックス */
.policy-editor-content .policy-company-info {
  background: var(--washi);
  padding: 2rem;
  border-radius: 1rem;
  margin-top: 2rem;
}

.policy-editor-content .policy-company-info h3 {
  margin-top: 0;
}

.policy-editor-content .policy-company-info p {
  margin-bottom: 0.5rem;
}

/* デフォルト表示 */
.policy-default-notice {
  background: var(--washi);
  padding: 3rem;
  border-radius: 1.5rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.policy-default-notice p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* CTA */
.policy-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #E8E4E0;
}

.policy-cta .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
