/*
Theme Name: KU-NEL
Theme URI: https://3241kunel.com/
Author: PlanTive
Author URI: https://plantive.net/
Description: 株式会社KU-NEL 訪問看護ステーション クーネル 公式サイト用カスタムテーマ。引き継ぎHTML（v8）を忠実に再現したシングルページ構成。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kunel
*/

  :root {
    --cream: #F5EFE4;
    --cream-deep: #ECE4D3;
    --paper: #FBF7EE;
    --ink: #1E1A14;
    --ink-soft: #3D362D;
    --subink: #5A5048;
    --line: #D9CFBC;
    --line-soft: #E8DFCD;
    --moss: #2F4A3E;
    --moss-mid: #4D6F5F;
    --moss-light: #8AA597;
    --terracotta: #B5604A;
    --terracotta-soft: #D4876F;
    --gold: #B89B5E;
    --white: #FFFFFF;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.95;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    overflow-x: hidden;
  }

  .serif { font-family: 'Shippori Mincho B1', serif; }

  /* ===================== SCROLL REVEAL & MOTION ===================== */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 1.4s cubic-bezier(.16,.84,.28,1), transform 1.4s cubic-bezier(.16,.84,.28,1); will-change: opacity, transform; }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal.delay-1 { transition-delay: 0.12s; }
  .reveal.delay-2 { transition-delay: 0.24s; }
  .reveal.delay-3 { transition-delay: 0.36s; }
  .reveal.delay-4 { transition-delay: 0.48s; }
  .reveal-x { opacity: 0; transform: translateX(-50px); transition: opacity 1.4s cubic-bezier(.16,.84,.28,1), transform 1.4s cubic-bezier(.16,.84,.28,1); will-change: opacity, transform; }
  .reveal-x.in { opacity: 1; transform: translateX(0); }
  .reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 1.4s cubic-bezier(.16,.84,.28,1), transform 1.4s cubic-bezier(.16,.84,.28,1); will-change: opacity, transform; }
  .reveal-scale.in { opacity: 1; transform: scale(1); }

  /* ===================== AMBIENT BACKGROUND ANIMATIONS ===================== */
  @keyframes floatSlow { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(20px, -30px) rotate(2deg); } }
  @keyframes floatSlow2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-25px, 20px) scale(1.05); } }
  @keyframes glowPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.7; } }
  @keyframes drift { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
  @keyframes shimmer { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.55; } }
  @keyframes breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }
  @keyframes gentleRise { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes softFadeIn { from { opacity: 0; } to { opacity: 1; } }

  /* Decorative floating orbs across sections */
  .ambient-orb {
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    filter: blur(60px); opacity: 0.45;
  }
  .ambient-orb.orb-1 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(184, 155, 94, 0.25), transparent 70%);
    animation: floatSlow 18s ease-in-out infinite;
  }
  .ambient-orb.orb-2 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(47, 74, 62, 0.18), transparent 70%);
    animation: floatSlow2 22s ease-in-out infinite;
  }

  /* ===================== HEADER ===================== */
  header.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(251, 247, 238, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: padding 0.3s, background 0.3s;
  }
  header.site-header.scrolled {
    background: rgba(251, 247, 238, 0.98);
    box-shadow: 0 4px 24px rgba(30, 26, 20, 0.04);
  }
  .header-inner {
    max-width: 1380px; margin: 0 auto; padding: 16px 32px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 20px; flex-wrap: nowrap;
  }
  .brand {
    display: flex; align-items: center; cursor: pointer;
    width: clamp(190px, 18vw, 260px); min-width: 0; flex-shrink: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .brand:hover { opacity: 0.9; transform: translateX(2px); }
  .brand-logo {
    display: block; width: 100%; height: auto;
  }
  nav.gnav { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
  nav.gnav a {
    font-size: 14.5px; color: var(--ink-soft); text-decoration: none;
    letter-spacing: 0.04em; cursor: pointer; padding: 6px 0;
    transition: 0.2s; position: relative; white-space: nowrap;
    font-family: 'Shippori Mincho B1', serif;
  }
  nav.gnav a::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 1px; background: var(--moss); transition: width 0.3s;
  }
  nav.gnav a:hover::after, nav.gnav a.active::after { width: 100%; }
  nav.gnav a:hover, nav.gnav a.active { color: var(--moss); }
  nav.gnav a.header-tel, .header-tel {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 15px; background: var(--moss); color: var(--paper);
    border-radius: 999px; text-decoration: none; font-size: 14px;
    font-weight: 500; letter-spacing: 0.03em; cursor: pointer;
    transition: 0.3s; white-space: nowrap;
    font-family: 'Noto Sans JP', sans-serif;
  }
  nav.gnav a.header-tel:hover, .header-tel:hover { background: var(--terracotta); color: var(--paper); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(181, 96, 74, 0.3); }
  nav.gnav a.header-tel::after, .header-tel::after { display: none; }

  .menu-toggle { display: none; }

  @media (max-width: 1280px) {
    nav.gnav { gap: 11px; }
    nav.gnav a { font-size: 13.5px; }
    .header-tel { font-size: 13px; padding: 10px 13px; }
  }

  @media (max-width: 1200px) {
    .header-inner { padding: 14px 22px; }
    nav.gnav { display: none; }
    .header-tel { display: none; }
    .menu-toggle {
      display: flex; flex-direction: column; gap: 6px;
      width: 44px; height: 44px; justify-content: center; align-items: center;
      background: transparent; border: none; cursor: pointer;
    }
    .menu-toggle span {
      display: block; width: 28px; height: 2px; background: var(--ink); transition: 0.3s;
    }
    .menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .gnav.open {
      display: flex; flex-direction: column; gap: 0;
      position: fixed; top: 96px; left: 0; right: 0; bottom: 0;
      background: var(--paper); padding: 30px;
      align-items: stretch; overflow-y: auto;
      animation: slideDown 0.4s ease both;
    }
    .gnav.open a {
      padding: 20px 0; border-bottom: 1px solid var(--line);
      font-size: 18px;
    }
    .gnav.open .header-tel {
      display: flex; justify-content: center; margin-top: 28px; font-size: 18px;
    }
  }
  @media (max-width: 480px) {
    .header-inner { padding: 14px 18px; }
    .brand { width: min(235px, calc(100vw - 104px)); }
    .gnav.open { top: 92px; }
  }
  @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

  /* ===================== MAIN STRUCTURE ===================== */
  main { padding-top: 96px; }
  section.page { display: none; }
  section.page.active { display: block; animation: pageIn 0.7s cubic-bezier(.2,.8,.2,1) both; }
  @keyframes pageIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

  .container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
  @media (max-width: 768px) { .container { padding: 0 22px; } }
  @media (max-width: 480px) { .container { padding: 0 18px; } }

  /* ===================== HERO ===================== */
  .hero {
    position: relative; min-height: 88vh; display: flex; align-items: center;
    background: var(--cream); overflow: hidden;
    padding: 70px 0;
  }
  .hero::before {
    content: ''; position: absolute; inset: -10%;
    background:
      radial-gradient(ellipse 60% 50% at 80% 20%, rgba(184, 155, 94, 0.22), transparent 60%),
      radial-gradient(ellipse 50% 60% at 20% 80%, rgba(47, 74, 62, 0.14), transparent 50%),
      radial-gradient(ellipse 40% 40% at 60% 60%, rgba(181, 96, 74, 0.08), transparent 60%);
    pointer-events: none;
    animation: breathe 16s ease-in-out infinite;
  }
  .hero::after {
    content: '寄り添う'; position: absolute; right: -40px; top: 5%;
    font-family: 'Shippori Mincho B1', serif; font-size: 18vw; font-weight: 700;
    color: rgba(47, 74, 62, 0.05); line-height: 1; pointer-events: none; writing-mode: vertical-rl;
    animation: shimmer 12s ease-in-out infinite;
  }
  .hero-grid {
    position: relative; z-index: 2;
    max-width: 1000px; margin: 0 auto; padding: 0 32px;
    display: block;
    width: 100%;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 16px; letter-spacing: 0.18em; color: var(--moss);
    margin-bottom: 36px; font-family: 'Shippori Mincho B1', serif; font-weight: 500;
    animation: fadeInUp 1s 0.1s both;
  }
  .hero-eyebrow::before {
    content: ''; width: 50px; height: 1px; background: var(--moss);
    animation: lineExpand 1.2s 0.3s both;
  }
  @keyframes lineExpand { from { width: 0; } to { width: 50px; } }
  @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

  .hero h1 {
    font-family: 'Shippori Mincho B1', serif;
    font-size: clamp(28px, 5.2vw, 72px); font-weight: 600;
    line-height: 1.5; letter-spacing: 0.02em;
    color: var(--ink); margin-bottom: 36px;
    animation: fadeInUp 1s 0.3s both;
    word-break: keep-all; overflow-wrap: break-word;
  }
  .hero h1 .accent { color: var(--moss); position: relative; }
  .hero h1 .accent::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 100%; height: 6px; background: rgba(184, 155, 94, 0.35);
    z-index: -1; animation: highlightExpand 1s 1s both;
  }
  @keyframes highlightExpand { from { width: 0; } to { width: 100%; } }

  .hero p.lead {
    font-size: clamp(17px, 1.6vw, 19px); line-height: 2.15;
    color: var(--ink-soft); margin-bottom: 44px;
    max-width: 560px;
    animation: fadeInUp 1s 0.5s both;
  }
  .hero-meta {
    display: flex; gap: 28px; flex-wrap: wrap;
    padding-top: 32px; border-top: 1px solid var(--line);
    animation: fadeInUp 1s 0.7s both;
  }
  .hero-meta-item { font-size: 16px; color: var(--ink-soft); flex: 1; min-width: 150px; line-height: 1.7; }
  .hero-meta-item strong { display: block; color: var(--moss); font-weight: 600; font-size: 18px; margin-bottom: 6px; font-family: 'Shippori Mincho B1', serif; }

  .hero-visual {
    position: relative; aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, #DDD0B4 0%, #C4B696 100%);
    border-radius: 4px; overflow: hidden;
    animation: fadeInUp 1s 0.6s both;
    box-shadow: 0 24px 60px rgba(30, 26, 20, 0.14);
  }
  .hero-visual::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 30% 30%, rgba(255,255,255,0.30), transparent 50%),
      radial-gradient(circle at 70% 70%, rgba(47, 74, 62, 0.18), transparent 50%);
    animation: breathe 14s ease-in-out infinite;
  }
  .hero-visual::after {
    content: ''; position: absolute; top: -50%; left: -100%;
    width: 80%; height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
    transform: rotate(20deg);
    animation: drift 9s ease-in-out infinite;
    animation-delay: 4s;
    pointer-events: none;
  }
  .photo-tag {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-family: 'Shippori Mincho B1', serif; font-weight: 500;
    font-size: clamp(20px, 2.6vw, 26px); color: rgba(255,255,255,0.95);
    letter-spacing: 0.2em;
    text-shadow: 0 2px 16px rgba(30,26,20,0.35);
    z-index: 2; white-space: nowrap;
  }
  .photo-tag::before, .photo-tag::after {
    content: ''; position: absolute; top: 50%; width: 28px; height: 1px;
    background: rgba(255,255,255,0.7);
  }
  .photo-tag::before { right: calc(100% + 16px); }
  .photo-tag::after { left: calc(100% + 16px); }
  .hero-visual-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: clamp(24px, 4vw, 40px); background: linear-gradient(to top, rgba(30,26,20,0.78), transparent);
    color: var(--paper); z-index: 3;
  }
  .hero-visual-overlay .ja-message { font-family: 'Shippori Mincho B1', serif; font-size: clamp(20px, 2.4vw, 28px); line-height: 1.45; font-weight: 500; }
  .hero-visual-overlay .label { font-size: 14px; opacity: 0.9; margin-top: 8px; }

  @media (max-width: 1024px) {
    .hero { min-height: auto; padding: 70px 0; }
    .hero-grid { padding: 0 24px; }
  }
  @media (max-width: 480px) {
    .hero { padding: 50px 0; }
    .hero-grid { padding: 0 18px; }
    .hero h1 { margin-bottom: 28px; }
    .hero p.lead { margin-bottom: 32px; }
    .hero-meta { gap: 18px; padding-top: 22px; }
    .hero-meta-item { min-width: 100%; }
  }

  /* ===================== ENTRY CARDS ===================== */
  .entry { background: var(--paper); padding: 90px 0; position: relative; overflow: hidden; }
  .entry-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  }
  .entry-card {
    padding: 40px 32px; background: var(--cream);
    border-radius: 4px; cursor: pointer;
    transition: transform 0.7s cubic-bezier(.16,.84,.28,1), box-shadow 0.7s cubic-bezier(.16,.84,.28,1), border-color 0.7s ease;
    border: 1px solid var(--cream-deep);
    position: relative; overflow: hidden;
  }
  .entry-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: var(--moss); transform: scaleX(0); transform-origin: left; transition: transform 0.9s cubic-bezier(.16,.84,.28,1);
  }
  .entry-card::after {
    content: ''; position: absolute; bottom: -50%; right: -50%; width: 120%; height: 120%;
    background: radial-gradient(circle, rgba(184, 155, 94, 0.18), transparent 60%);
    opacity: 0; transition: opacity 0.9s ease;
  }
  .entry-card:hover {
    transform: translateY(-8px); border-color: var(--moss);
    box-shadow: 0 28px 56px rgba(30, 26, 20, 0.10);
  }
  .entry-card:hover::before { transform: scaleX(1); }
  .entry-card:hover::after { opacity: 1; }
  .entry-card .card-num {
    font-family: 'Shippori Mincho B1', serif;
    font-size: 15px; color: var(--gold); margin-bottom: 18px; letter-spacing: 0.18em; font-weight: 500;
  }
  .entry-card h3 {
    font-family: 'Shippori Mincho B1', serif; font-size: 26px; font-weight: 600;
    margin-bottom: 18px; color: var(--ink); line-height: 1.5;
  }
  .entry-card p { font-size: 16px; color: var(--ink-soft); line-height: 1.95; margin-bottom: 28px; }
  .entry-card .arrow {
    font-size: 16px; color: var(--moss); letter-spacing: 0.04em;
    display: inline-flex; align-items: center; gap: 10px; transition: 0.3s;
    font-family: 'Shippori Mincho B1', serif; font-weight: 500;
  }
  .entry-card:hover .arrow { gap: 16px; color: var(--terracotta); }
  @media (max-width: 1024px) { .entry-grid { grid-template-columns: 1fr 1fr; } .entry-grid > :last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; width: 100%; } }
  @media (max-width: 700px) { .entry { padding: 70px 0; } .entry-grid { grid-template-columns: 1fr; } .entry-grid > :last-child { max-width: 100%; } }

  /* ===================== SECTION HEADER ===================== */
  .section-head { text-align: center; margin-bottom: 64px; position: relative; }
  .section-head .ja-eyebrow {
    font-size: 16px; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 18px; display: inline-block;
    font-family: 'Shippori Mincho B1', serif; font-weight: 500;
    position: relative; padding: 0 20px;
  }
  .section-head .ja-eyebrow::before,
  .section-head .ja-eyebrow::after {
    content: ''; position: absolute; top: 50%; width: 30px; height: 1px;
    background: var(--gold); opacity: 0.6;
  }
  .section-head .ja-eyebrow::before { right: 100%; }
  .section-head .ja-eyebrow::after { left: 100%; }
  .section-head h2 {
    font-family: 'Shippori Mincho B1', serif;
    font-size: clamp(28px, 4.4vw, 48px); font-weight: 600;
    color: var(--ink); letter-spacing: 0.05em; line-height: 1.5;
  }
  .section-head .desc {
    font-size: clamp(16px, 1.5vw, 18px); color: var(--ink-soft); margin-top: 26px; max-width: 720px;
    margin-left: auto; margin-right: auto; line-height: 2.05;
  }
  @media (max-width: 480px) { .section-head { margin-bottom: 40px; } }

  /* ===================== TAB SWITCHER (FIELDS) ===================== */
  .fields-section { padding: 110px 0; background: var(--paper); position: relative; overflow: hidden; }
  .fields-section .ambient-orb.orb-1 { top: 10%; right: -150px; }
  .fields-section .ambient-orb.orb-2 { bottom: 5%; left: -120px; }
  .fields-section .container { position: relative; z-index: 2; }
  .tab-nav {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
    border-bottom: 2px solid var(--line);
    margin-bottom: 56px;
    position: relative;
  }
  .tab-nav button {
    background: transparent; border: none; cursor: pointer;
    padding: 26px 14px; font-family: inherit;
    font-size: 17px; color: var(--subink);
    transition: 0.3s; position: relative;
    border-bottom: 2px solid transparent; margin-bottom: -2px;
    font-family: 'Shippori Mincho B1', serif; font-weight: 500;
    line-height: 1.5;
  }
  .tab-nav button:hover { color: var(--moss); }
  .tab-nav button.active { border-bottom-color: var(--moss); color: var(--moss); font-weight: 600; }

  .tab-content { display: none; }
  .tab-content.active { display: block; animation: tabFade 1.1s cubic-bezier(.16,.84,.28,1) both; }
  @keyframes tabFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

  .field-detail {
    display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start;
  }
  .field-image {
    aspect-ratio: 4/5; background: linear-gradient(135deg, var(--moss-light), var(--moss-mid));
    border-radius: 4px; position: relative; overflow: hidden;
    box-shadow: 0 16px 40px rgba(47, 74, 62, 0.2);
  }
  .field-image::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 50%);
    animation: breathe 16s ease-in-out infinite;
  }
  .field-image::after {
    content: ''; position: absolute; top: -50%; left: -100%;
    width: 80%; height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.12), transparent);
    transform: rotate(20deg);
    animation: drift 14s ease-in-out infinite;
    pointer-events: none;
  }
  .field-info h3 {
    font-family: 'Shippori Mincho B1', serif; font-size: clamp(26px, 3.2vw, 34px); font-weight: 600;
    color: var(--ink); margin-bottom: 22px; line-height: 1.5;
  }
  .field-info .lead-text {
    font-size: 17px; line-height: 2.1; color: var(--ink-soft); margin-bottom: 36px;
    padding-bottom: 32px; border-bottom: 1px solid var(--line);
  }
  .field-info h4 {
    font-family: 'Shippori Mincho B1', serif; font-size: 19px; font-weight: 600;
    color: var(--moss); margin: 28px 0 14px; letter-spacing: 0.04em;
    display: flex; align-items: center; gap: 12px;
  }
  .field-info h4::before {
    content: ''; width: 5px; height: 18px; background: var(--gold); border-radius: 2px;
  }
  .field-info p { font-size: 16.5px; line-height: 2.05; color: var(--ink-soft); margin-bottom: 14px; }
  .tag-list {
    display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 24px;
  }
  .tag-list span {
    padding: 8px 18px; background: var(--cream); border: 1px solid var(--line);
    font-size: 15px; color: var(--ink-soft); border-radius: 999px;
    transition: background 0.5s ease, color 0.5s ease, border-color 0.5s ease, transform 0.5s cubic-bezier(.16,.84,.28,1);
  }
  .tag-list span:hover { background: var(--moss); color: var(--paper); border-color: var(--moss); transform: translateY(-2px); }
  .care-list {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 14px 0 24px;
  }
  .care-item {
    padding: 14px 18px; background: var(--cream); border-left: 3px solid var(--moss);
    font-size: 15.5px; color: var(--ink-soft); border-radius: 2px;
    transition: padding-left 0.5s cubic-bezier(.16,.84,.28,1), background 0.5s ease;
  }
  .care-item:hover { padding-left: 24px; background: #ECE4D3; }
  .case-card {
    margin-top: 28px; padding: 28px; background: var(--paper); border: 1px solid var(--line);
    border-radius: 4px; position: relative;
  }
  .case-card .case-label {
    display: inline-block; font-family: 'Shippori Mincho B1', serif; font-weight: 500;
    font-size: 15px; color: var(--terracotta); letter-spacing: 0.18em;
    margin-bottom: 12px;
  }
  .case-card h5 {
    font-family: 'Shippori Mincho B1', serif; font-size: 19px;
    color: var(--ink); margin-bottom: 14px; font-weight: 600; line-height: 1.5;
  }
  .case-card p { font-size: 15.5px; color: var(--ink-soft); line-height: 2; margin: 0; }

  @media (max-width: 1024px) {
    .fields-section { padding: 80px 0; }
    .field-detail { grid-template-columns: 1fr; gap: 36px; }
    .field-image { max-width: 400px; aspect-ratio: 1; margin: 0 auto; }
    .care-list { grid-template-columns: 1fr; }
  }
  @media (max-width: 700px) {
    .tab-nav { grid-template-columns: repeat(2, 1fr); border-bottom: none; gap: 8px; }
    .tab-nav button { border: 1px solid var(--line); border-radius: 4px; padding: 16px 12px; font-size: 15px; }
    .tab-nav button.active { background: var(--moss); border-color: var(--moss); color: var(--paper); }
  }
  @media (max-width: 480px) {
    .fields-section { padding: 60px 0; }
    .tab-nav { grid-template-columns: 1fr 1fr; }
  }

  /* ===================== STRENGTHS ===================== */
  .strengths { padding: 110px 0; background: var(--cream); position: relative; overflow: hidden; }
  .strengths::before {
    content: '○'; position: absolute; left: -100px; top: 20%; font-size: 400px; color: rgba(47, 74, 62, 0.04);
    font-family: 'Shippori Mincho B1'; line-height: 1;
    animation: floatSlow 24s ease-in-out infinite;
  }
  .strengths::after {
    content: '◯'; position: absolute; right: -80px; bottom: 5%; font-size: 320px; color: rgba(184, 155, 94, 0.05);
    font-family: 'Shippori Mincho B1'; line-height: 1;
    animation: floatSlow2 28s ease-in-out infinite;
  }
  .strength-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
    position: relative; z-index: 2;
  }
  .strength-item {
    background: var(--paper); padding: 44px 30px;
    border-radius: 4px; border-top: 3px solid var(--moss);
    position: relative; transition: transform 0.8s cubic-bezier(.16,.84,.28,1), box-shadow 0.8s cubic-bezier(.16,.84,.28,1);
  }
  .strength-item:hover { transform: translateY(-10px); box-shadow: 0 28px 60px rgba(47, 74, 62, 0.14); }
  .strength-item .num {
    font-family: 'Shippori Mincho B1', serif;
    font-size: 40px; color: var(--gold); line-height: 1;
    font-weight: 600; margin-bottom: 26px; transition: color 0.6s ease, transform 0.6s cubic-bezier(.16,.84,.28,1);
    letter-spacing: 0.05em; display: inline-block;
  }
  .strength-item:hover .num { color: var(--terracotta); transform: scale(1.1); }
  .strength-item h4 {
    font-family: 'Shippori Mincho B1', serif;
    font-size: 22px; font-weight: 600; color: var(--moss);
    margin-bottom: 18px; line-height: 1.55;
  }
  .strength-item p { font-size: 16px; color: var(--ink-soft); line-height: 2.05; }
  @media (max-width: 1024px) { .strengths { padding: 80px 0; } .strength-grid { grid-template-columns: 1fr; } }

  /* ===================== WHY US (NUMBERS) ===================== */
  .why-us {
    padding: 100px 0; background: var(--moss); color: var(--paper); position: relative; overflow: hidden;
  }
  .why-us::before {
    content: ''; position: absolute; top: 10%; right: -100px; width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 155, 94, 0.18), transparent 70%);
    animation: floatSlow 20s ease-in-out infinite; filter: blur(40px);
  }
  .why-us::after {
    content: ''; position: absolute; bottom: 10%; left: -100px; width: 380px; height: 380px; border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 165, 151, 0.20), transparent 70%);
    animation: floatSlow2 24s ease-in-out infinite; filter: blur(50px);
  }
  .why-us .section-head h2 { color: var(--paper); }
  .why-us .section-head .desc { color: rgba(245, 239, 228, 0.9); }
  .why-us .section-head .ja-eyebrow { color: var(--gold); }
  .why-us .container { position: relative; z-index: 2; }
  .why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
    position: relative; z-index: 2;
  }
  .why-card {
    padding: 36px 24px; text-align: center; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(184,155,94,0.25); border-radius: 4px;
    transition: background 0.7s ease, transform 0.7s cubic-bezier(.16,.84,.28,1);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  }
  .why-card:hover { background: rgba(184,155,94,0.15); transform: translateY(-6px); }
  .why-card .num {
    font-family: 'Shippori Mincho B1', serif; font-weight: 600;
    font-size: clamp(48px, 5.5vw, 68px); color: var(--gold); line-height: 1;
    margin-bottom: 14px; letter-spacing: 0.02em; display: inline-block;
    transition: transform 0.6s cubic-bezier(.16,.84,.28,1);
  }
  .why-card:hover .num { transform: scale(1.08); }
  .why-card .num small { font-size: 0.42em; margin-left: 6px; opacity: 0.85; font-weight: 500; }
  .why-card .label {
    font-size: 16px; letter-spacing: 0.04em; opacity: 0.95; line-height: 1.7;
    font-family: 'Shippori Mincho B1', serif; font-weight: 500;
  }
  @media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 700px) { .why-us { padding: 70px 0; } .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } .why-card { padding: 28px 18px; } }

  /* ===================== VOICES ===================== */
  .voices-band { padding: 110px 0; background: var(--paper); }
  .voices-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px;
  }
  .voice-card-l {
    padding: 40px; background: var(--cream); border-radius: 4px; position: relative;
    overflow: hidden; border-top: 3px solid var(--gold);
    transition: transform 0.8s cubic-bezier(.16,.84,.28,1), box-shadow 0.8s cubic-bezier(.16,.84,.28,1);
  }
  .voice-card-l:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(30, 26, 20, 0.08); }
  .voice-card-l::before {
    content: '"'; position: absolute; top: 8px; left: 22px;
    font-family: 'Shippori Mincho B1', serif; font-size: 100px; color: var(--gold);
    line-height: 1; opacity: 0.4; transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .voice-card-l:hover::before { opacity: 0.6; transform: translateY(-4px); }
  .voice-meta {
    display: flex; align-items: center; gap: 18px; margin-bottom: 22px;
    padding-bottom: 20px; border-bottom: 1px solid var(--line);
    position: relative; z-index: 2;
  }
  .voice-photo-l {
    width: 70px; height: 70px; border-radius: 50%;
    background: linear-gradient(135deg, var(--moss-light), var(--moss-mid));
    display: grid; place-items: center; color: var(--paper);
    font-family: 'Shippori Mincho B1', serif; font-weight: 500;
    font-size: 14px; letter-spacing: 0.1em; flex-shrink: 0;
  }
  .voice-meta-text { font-size: 15px; color: var(--ink-soft); }
  .voice-meta-text strong { display: block; color: var(--ink); font-size: 17px; font-weight: 600; margin-bottom: 4px; font-family: 'Shippori Mincho B1', serif; }
  .voice-card-l .body { font-size: 17px; color: var(--ink-soft); line-height: 2.1; margin: 0; position: relative; z-index: 2; }
  .voice-card-l .field-tag {
    display: inline-block; font-size: 14px; color: var(--moss); padding: 6px 14px;
    background: var(--paper); border-radius: 999px; margin-top: 20px; letter-spacing: 0.05em;
    border: 1px solid var(--line); font-family: 'Shippori Mincho B1', serif;
  }
  @media (max-width: 768px) { .voices-band { padding: 70px 0; } .voices-grid { grid-template-columns: 1fr; } .voice-card-l { padding: 32px; } }

  /* ===================== SAFETY ===================== */
  .safety-section {
    padding: 110px 0; background: var(--cream-deep); position: relative; overflow: hidden;
  }
  .safety-section::before {
    content: ''; position: absolute; top: 20%; right: -150px; width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 74, 62, 0.10), transparent 70%);
    animation: floatSlow 22s ease-in-out infinite; filter: blur(60px);
  }
  .safety-section .container { position: relative; z-index: 2; }
  .safety-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  }
  .safety-card {
    padding: 36px 26px; background: var(--paper); border-radius: 4px;
    transition: transform 0.8s cubic-bezier(.16,.84,.28,1), box-shadow 0.8s cubic-bezier(.16,.84,.28,1), border-color 0.8s ease;
    border: 1px solid var(--line);
  }
  .safety-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(30, 26, 20, 0.10); border-color: var(--moss); }
  .safety-card .icon {
    width: 64px; height: 64px; margin-bottom: 22px;
    display: grid; place-items: center;
    background: var(--cream); border-radius: 50%;
    color: var(--moss);
    transition: background 0.6s ease, color 0.6s ease, transform 0.6s cubic-bezier(.16,.84,.28,1);
  }
  .safety-card:hover .icon { background: var(--moss); color: var(--cream); transform: scale(1.08) rotate(-3deg); }
  .safety-card .icon svg { width: 32px; height: 32px; }
  .safety-card h4 {
    font-family: 'Shippori Mincho B1', serif; font-size: 19px;
    color: var(--ink); margin-bottom: 14px; line-height: 1.55; font-weight: 600;
  }
  .safety-card p { font-size: 15.5px; color: var(--ink-soft); line-height: 2; margin: 0; }
  @media (max-width: 1024px) { .safety-grid { grid-template-columns: 1fr 1fr; gap: 18px; } }
  @media (max-width: 600px) { .safety-section { padding: 70px 0; } .safety-grid { grid-template-columns: 1fr; } }

  /* ===================== EMERGENCY FLOW ===================== */
  .emergency-flow { padding: 110px 0; background: var(--paper); }
  .flow-diagram {
    background: var(--cream); padding: 56px 50px; border-radius: 4px; position: relative;
    margin-top: 44px;
  }
  .flow-steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative;
  }
  .flow-step {
    background: var(--paper); padding: 32px 22px; border-radius: 4px; text-align: center;
    position: relative; z-index: 2; border: 2px solid var(--moss);
    transition: transform 0.7s cubic-bezier(.16,.84,.28,1), box-shadow 0.7s cubic-bezier(.16,.84,.28,1);
  }
  .flow-step:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(47, 74, 62, 0.15); }
  .flow-step .flow-num {
    width: 50px; height: 50px; border-radius: 50%; background: var(--moss); color: var(--paper);
    display: grid; place-items: center; margin: 0 auto 18px;
    font-family: 'Shippori Mincho B1', serif; font-size: 22px; font-weight: 600;
    transition: background 0.6s ease, transform 0.6s cubic-bezier(.16,.84,.28,1);
  }
  .flow-step:hover .flow-num { background: var(--terracotta); transform: rotate(8deg) scale(1.1); }
  .flow-step h5 {
    font-family: 'Shippori Mincho B1', serif; font-size: 18px; color: var(--moss);
    margin-bottom: 12px; font-weight: 600;
  }
  .flow-step p { font-size: 15px; color: var(--ink-soft); line-height: 1.95; margin: 0; }
  .flow-time {
    display: inline-block; margin-top: 16px; padding: 6px 14px;
    background: var(--cream); font-size: 14px; color: var(--terracotta); letter-spacing: 0.05em;
    border-radius: 999px; font-family: 'Shippori Mincho B1', serif;
  }
  @media (max-width: 900px) {
    .emergency-flow { padding: 70px 0; }
    .flow-diagram { padding: 36px 26px; }
    .flow-steps { grid-template-columns: 1fr; gap: 18px; }
    .flow-step { display: flex; gap: 22px; align-items: center; text-align: left; }
    .flow-step .flow-num { margin: 0; flex-shrink: 0; }
  }

  /* ===================== FAQ ACCORDION ===================== */
  .faq-section { padding: 110px 0; background: var(--cream); }
  .faq-list { max-width: 920px; margin: 0 auto; }
  .faq-item {
    background: var(--paper); border-radius: 4px; margin-bottom: 14px;
    overflow: hidden; transition: border-color 0.6s ease, box-shadow 0.6s ease;
    border: 1px solid var(--line);
  }
  .faq-item:hover { box-shadow: 0 8px 24px rgba(30, 26, 20, 0.05); }
  .faq-item.open { border-color: var(--moss); box-shadow: 0 12px 30px rgba(47, 74, 62, 0.08); }
  .faq-q {
    padding: 26px 30px; cursor: pointer; display: flex; gap: 22px; align-items: center;
    transition: background 0.5s ease; user-select: none;
  }
  .faq-q:hover { background: var(--cream); }
  .faq-q .q-mark {
    font-family: 'Shippori Mincho B1', serif;
    font-size: 24px; color: var(--gold); flex-shrink: 0; line-height: 1; font-weight: 600;
    transition: color 0.5s ease, transform 0.5s cubic-bezier(.16,.84,.28,1);
  }
  .faq-item.open .q-mark { color: var(--terracotta); transform: scale(1.15); }
  .faq-q .q-text {
    font-family: 'Shippori Mincho B1', serif; font-size: 18px; font-weight: 500;
    color: var(--ink); flex: 1; line-height: 1.65;
  }
  .faq-q .q-icon {
    width: 28px; height: 28px; flex-shrink: 0; position: relative; transition: transform 0.5s cubic-bezier(.16,.84,.28,1);
  }
  .faq-item.open .q-icon { transform: rotate(180deg); }
  .faq-q .q-icon::before, .faq-q .q-icon::after {
    content: ''; position: absolute; top: 50%; left: 50%; background: var(--moss);
    transition: 0.5s cubic-bezier(.16,.84,.28,1);
  }
  .faq-q .q-icon::before { width: 18px; height: 2px; transform: translate(-50%, -50%); }
  .faq-q .q-icon::after { width: 2px; height: 18px; transform: translate(-50%, -50%); }
  .faq-item.open .faq-q .q-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
  .faq-a {
    max-height: 0; overflow: hidden; transition: max-height 0.7s cubic-bezier(.16,.84,.28,1);
  }
  .faq-item.open .faq-a { max-height: 600px; }
  .faq-a-inner {
    padding: 0 30px 30px 76px; font-size: 16.5px; color: var(--ink-soft); line-height: 2.1;
    border-top: 1px solid var(--line); padding-top: 26px; margin-top: 0;
  }
  .faq-category-title {
    font-family: 'Shippori Mincho B1', serif; font-size: 22px; color: var(--moss);
    margin: 36px 0 18px; font-weight: 600; padding-bottom: 12px; border-bottom: 1px solid var(--line);
  }
  .faq-category-title:first-child { margin-top: 8px; }
  @media (max-width: 600px) {
    .faq-section { padding: 70px 0; }
    .faq-q { padding: 22px 24px; gap: 16px; }
    .faq-q .q-text { font-size: 16px; }
    .faq-a-inner { padding: 22px 24px 24px 24px; font-size: 15.5px; }
  }

  /* ===================== PHILOSOPHY ===================== */
  .philosophy {
    padding: 140px 0; background: var(--cream-deep); color: var(--ink);
    position: relative; overflow: hidden;
  }
  .philosophy::before {
    content: '食寝'; position: absolute; right: -60px; bottom: -120px;
    font-family: 'Shippori Mincho B1', serif; font-size: clamp(220px, 30vw, 480px); font-weight: 700;
    color: rgba(47, 74, 62, 0.07); line-height: 1; pointer-events: none;
    animation: floatSlow 30s ease-in-out infinite;
  }
  .philosophy::after {
    content: ''; position: absolute; left: 0; top: 0; width: 6px; height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.4;
    animation: shimmer 8s ease-in-out infinite;
  }
  .philosophy-inner { position: relative; z-index: 2; max-width: 920px; }
  .philosophy .ja-eyebrow { color: var(--gold); font-size: 16px; letter-spacing: 0.2em; margin-bottom: 24px; display: block; font-family: 'Shippori Mincho B1', serif; font-weight: 500; }
  .philosophy h2 {
    font-family: 'Shippori Mincho B1', serif; font-size: clamp(23px, 3.4vw, 42px); font-weight: 500;
    line-height: 1.7; margin-bottom: 40px; letter-spacing: 0.02em; color: var(--ink);
  }
  .philosophy h2 .em { color: var(--terracotta); position: relative; }
  .philosophy p { font-size: clamp(17px, 1.6vw, 19px); line-height: 2.3; color: var(--ink-soft); margin-bottom: 18px; }
  .philosophy .signature {
    margin-top: 52px; padding-top: 30px; border-top: 1px solid var(--line);
    font-size: 17px; letter-spacing: 0.08em; color: var(--ink-soft);
    font-family: 'Shippori Mincho B1';
  }
  @media (max-width: 768px) { .philosophy { padding: 80px 0; } }

  /* ===================== ACCESS ===================== */
  .access-band { padding: 90px 0; background: var(--paper); }
  .access-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
  }
  .access-info h3 {
    font-family: 'Shippori Mincho B1', serif; font-size: clamp(24px, 2.6vw, 30px);
    margin-bottom: 30px; color: var(--ink); font-weight: 600;
  }
  .access-info dl {
    display: grid; grid-template-columns: 130px 1fr; gap: 16px 26px;
    font-size: 16px; margin-bottom: 30px;
  }
  .access-info dt { color: var(--moss); border-right: 1px solid var(--line); padding-right: 22px; font-weight: 500; font-family: 'Shippori Mincho B1', serif; }
  .access-info dd { color: var(--ink-soft); line-height: 1.85; }
  .access-info .areas-list {
    padding: 24px 26px; background: var(--cream); border-left: 3px solid var(--moss);
    font-size: 16px; color: var(--ink-soft); line-height: 1.95;
  }
  .access-map {
    aspect-ratio: 1.2; background: var(--cream-deep); border-radius: 4px;
    position: relative; overflow: hidden;
    box-shadow: 0 12px 32px rgba(30, 26, 20, 0.06);
  }
  .access-map svg { width: 100%; height: 100%; }
  @media (max-width: 1024px) { .access-band { padding: 70px 0; } .access-grid { grid-template-columns: 1fr; gap: 40px; } }
  @media (max-width: 480px) { .access-info dl { grid-template-columns: 100px 1fr; gap: 12px 18px; } .access-info dt { padding-right: 14px; } }

  /* ===================== INNER PAGE HEROES ===================== */
  .page-hero {
    padding: 80px 0 70px; background: var(--cream); position: relative;
    border-bottom: 1px solid var(--line); overflow: hidden;
  }
  .page-hero::before {
    content: ''; position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 155, 94, 0.18), transparent 70%);
  }
  .page-hero .container { position: relative; z-index: 2; }
  .page-hero .breadcrumb {
    font-size: 14px; color: var(--ink-soft); letter-spacing: 0.04em; margin-bottom: 28px;
    font-family: 'Shippori Mincho B1', serif;
  }
  .page-hero .breadcrumb a { color: var(--moss); cursor: pointer; transition: 0.2s; text-decoration: none; }
  .page-hero .breadcrumb a:hover { color: var(--terracotta); }
  .page-hero h1 {
    font-family: 'Shippori Mincho B1', serif;
    font-size: clamp(30px, 5vw, 56px); font-weight: 600;
    color: var(--ink); margin-bottom: 22px; line-height: 1.45;
  }
  .page-hero .desc {
    font-size: clamp(16px, 1.5vw, 17.5px); color: var(--ink-soft); max-width: 780px; line-height: 2.1;
  }
  @media (max-width: 600px) { .page-hero { padding: 60px 0 50px; } }

  /* ===================== TWO-COL CONTENT ===================== */
  .two-col {
    display: grid; grid-template-columns: 240px 1fr; gap: 70px;
    padding: 80px 0;
  }
  .two-col aside { position: sticky; top: 110px; align-self: start; }
  .two-col aside h4 {
    font-family: 'Shippori Mincho B1', serif; font-size: 16px;
    color: var(--ink); letter-spacing: 0.08em; margin-bottom: 18px;
    padding-bottom: 14px; border-bottom: 1px solid var(--line); font-weight: 600;
  }
  .two-col aside ul { list-style: none; }
  .two-col aside ul li a {
    display: block; padding: 12px 0; font-size: 15.5px; color: var(--ink-soft);
    text-decoration: none; cursor: pointer; transition: 0.2s;
    border-left: 2px solid transparent; padding-left: 14px; margin-left: -16px;
    font-family: 'Shippori Mincho B1', serif;
  }
  .two-col aside ul li a:hover, .two-col aside ul li a.active {
    color: var(--moss); border-left-color: var(--moss);
  }
  @media (max-width: 1024px) { .two-col { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; } .two-col aside { position: static; } }

  /* ===================== CONTENT BLOCKS ===================== */
  .content-block { margin-bottom: 60px; }
  .content-block h2 {
    font-family: 'Shippori Mincho B1', serif; font-size: clamp(24px, 2.8vw, 30px); font-weight: 600;
    color: var(--ink); margin-bottom: 28px; padding-bottom: 20px;
    border-bottom: 1px solid var(--line); letter-spacing: 0.03em;
    display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; line-height: 1.5;
  }
  .content-block h2 .num-jp {
    font-size: 17px; color: var(--gold); letter-spacing: 0.1em; font-weight: 500;
  }
  .content-block h3 {
    font-family: 'Shippori Mincho B1', serif; font-size: clamp(19px, 2vw, 21px); font-weight: 600;
    color: var(--moss); margin: 32px 0 16px; line-height: 1.55;
  }
  .content-block p {
    font-size: clamp(16px, 1.5vw, 17px); line-height: 2.15; color: var(--ink-soft); margin-bottom: 20px;
  }

  /* ===================== TABLE ===================== */
  table.info {
    width: 100%; border-collapse: collapse; margin: 18px 0 36px;
    font-size: 16px;
  }
  table.info tr { border-bottom: 1px solid var(--line); transition: 0.2s; }
  table.info tr:hover { background: var(--cream); }
  table.info th {
    width: 28%; text-align: left; padding: 22px 24px;
    font-weight: 500; color: var(--moss); background: var(--cream);
    vertical-align: top; font-size: 16px;
    font-family: 'Shippori Mincho B1';
  }
  table.info td { padding: 22px 24px; color: var(--ink-soft); line-height: 2; }
  @media (max-width: 600px) {
    table.info, table.info tbody, table.info tr, table.info th, table.info td { display: block; width: 100%; }
    table.info tr { border-bottom: 1px solid var(--line); padding: 10px 0; }
    table.info th { background: transparent; padding: 10px 0 4px; font-size: 15px; }
    table.info td { padding: 4px 0 14px; font-size: 15.5px; }
  }

  /* ===================== STEPS ===================== */
  .steps { display: flex; flex-direction: column; gap: 0; margin: 28px 0 44px; }
  .step {
    display: grid; grid-template-columns: 100px 1fr; gap: 36px;
    padding: 34px 0; border-bottom: 1px dashed var(--line);
    position: relative; transition: 0.3s;
  }
  .step:hover { padding-left: 14px; }
  .step:last-child { border-bottom: none; }
  .step .step-num {
    font-family: 'Shippori Mincho B1', serif;
    font-size: 38px; color: var(--gold); font-weight: 600; line-height: 1;
    transition: 0.3s; letter-spacing: 0.02em;
  }
  .step:hover .step-num { color: var(--terracotta); transform: translateX(-4px); }
  .step .step-num small { display: block; font-size: 13px; color: var(--ink-soft); letter-spacing: 0.1em; margin-bottom: 12px; font-weight: 500; }
  .step h4 {
    font-family: 'Shippori Mincho B1', serif; font-size: 21px; font-weight: 600;
    color: var(--ink); margin-bottom: 14px; line-height: 1.5;
  }
  .step p { font-size: 16px; color: var(--ink-soft); line-height: 2.1; }
  @media (max-width: 768px) { .step { grid-template-columns: 1fr; gap: 14px; padding: 28px 0; } }

  /* ===================== HIGHLIGHT ===================== */
  .highlight {
    padding: 30px 36px; background: var(--cream); border-left: 3px solid var(--gold);
    margin: 32px 0; font-size: 16.5px; line-height: 2.1; color: var(--ink-soft);
    border-radius: 0 4px 4px 0;
  }
  .highlight strong { color: var(--moss); font-weight: 600; }
  .note {
    padding: 22px 26px; background: var(--paper); border: 1px dashed var(--line);
    font-size: 15px; color: var(--ink-soft); line-height: 2; margin: 18px 0;
  }
  @media (max-width: 480px) { .highlight { padding: 24px 26px; } }

  /* ===================== PRICE CARDS ===================== */
  .price-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 28px 0;
  }
  .price-card {
    padding: 32px; background: var(--cream); border-radius: 4px; border-top: 3px solid var(--moss);
    transition: 0.4s;
  }
  .price-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(47, 74, 62, 0.1); }
  .price-card h4 { font-family: 'Shippori Mincho B1', serif; font-size: 19px; color: var(--moss); margin-bottom: 14px; font-weight: 600; }
  .price-card .price {
    font-family: 'Shippori Mincho B1', serif; font-size: clamp(28px, 3vw, 36px); color: var(--ink);
    margin: 14px 0; line-height: 1.2; font-weight: 600;
  }
  .price-card .price small { font-size: 16px; color: var(--ink-soft); margin-left: 6px; font-family: 'Noto Sans JP'; font-weight: 400; }
  .price-card p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.95; margin: 0; }
  @media (max-width: 768px) { .price-grid { grid-template-columns: 1fr; } }

  /* ===================== RECRUIT MERIT ===================== */
  .recruit-merit-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 30px 0 44px;
  }
  .merit-card {
    padding: 34px; background: var(--paper); border: 1px solid var(--line); border-radius: 4px;
    transition: 0.4s;
  }
  .merit-card:hover { background: var(--cream); transform: translateX(4px); border-color: var(--moss); }
  .merit-card h4 {
    font-family: 'Shippori Mincho B1', serif; font-size: 20px; color: var(--moss);
    margin: 0 0 16px; line-height: 1.55; font-weight: 600;
  }
  .merit-card p { font-size: 16px; color: var(--ink-soft); line-height: 2; margin: 0; }
  @media (max-width: 768px) { .recruit-merit-grid { grid-template-columns: 1fr; } }

  .voice-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin: 30px 0;
  }
  .voice-card {
    padding: 36px; background: var(--cream); border-radius: 4px; position: relative;
    overflow: hidden;
  }
  .voice-card::before {
    content: '"'; position: absolute; top: 12px; left: 18px;
    font-family: 'Shippori Mincho B1', serif; font-size: 90px; color: var(--gold);
    line-height: 1; opacity: 0.4;
  }
  .voice-card .meta {
    display: flex; align-items: center; gap: 16px; margin-bottom: 22px;
    padding-bottom: 20px; border-bottom: 1px solid var(--line);
    position: relative; z-index: 2;
  }
  .voice-photo {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--moss-light), var(--moss-mid));
    display: grid; place-items: center; color: var(--paper);
    font-family: 'Shippori Mincho B1', serif; font-weight: 500;
    font-size: 13px; letter-spacing: 0.1em; flex-shrink: 0;
  }
  .voice-card .meta-text { font-size: 14.5px; color: var(--ink-soft); }
  .voice-card .meta-text strong { display: block; color: var(--ink); font-size: 16.5px; font-weight: 600; margin-bottom: 4px; font-family: 'Shippori Mincho B1', serif; }
  .voice-card p { font-size: 16px; color: var(--ink-soft); line-height: 2.05; margin: 0; position: relative; z-index: 2; }
  @media (max-width: 768px) { .voice-grid { grid-template-columns: 1fr; } }

  /* ===================== CONTACT FORM ===================== */
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; margin: 44px 0;
  }
  .contact-info {
    padding: 44px; background: var(--moss); color: var(--paper); border-radius: 4px;
    position: relative; overflow: hidden;
  }
  .contact-info::before {
    content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(184, 155, 94, 0.15), transparent 60%);
  }
  .contact-info h3 {
    font-family: 'Shippori Mincho B1', serif; font-size: 26px; margin-bottom: 28px; color: var(--paper);
    position: relative; font-weight: 600;
  }
  .contact-info dl { font-size: 16px; line-height: 2.1; position: relative; }
  .contact-info dt { color: var(--gold); margin-top: 20px; font-size: 14px; letter-spacing: 0.05em; font-family: 'Shippori Mincho B1'; font-weight: 500; }
  .contact-info dd { font-size: 22px; font-family: 'Shippori Mincho B1', serif; font-weight: 600; }
  .contact-info dd.small-dd { font-size: 16px; font-weight: 400; line-height: 1.95; }
  .form-area {
    padding: 44px; background: var(--paper); border: 1px solid var(--line); border-radius: 4px;
  }
  .form-row { margin-bottom: 22px; }
  .form-row label {
    display: block; font-size: 16px; color: var(--moss); margin-bottom: 12px; font-weight: 500;
    letter-spacing: 0.04em; font-family: 'Shippori Mincho B1', serif;
  }
  .form-row label .req { color: var(--terracotta); margin-left: 4px; }
  .form-row input, .form-row select, .form-row textarea {
    width: 100%; padding: 15px 18px; border: 1px solid var(--line);
    background: var(--paper); font-family: inherit; font-size: 16px; color: var(--ink);
    border-radius: 2px; transition: 0.2s;
  }
  .form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none; border-color: var(--moss); box-shadow: 0 0 0 3px rgba(47, 74, 62, 0.1);
  }
  .form-row textarea { min-height: 140px; resize: vertical; }
  .form-submit {
    width: 100%; padding: 20px; background: var(--moss); color: var(--paper);
    border: none; font-family: 'Shippori Mincho B1', serif; font-size: 17px; letter-spacing: 0.18em;
    cursor: pointer; transition: 0.3s; margin-top: 14px; font-weight: 500;
  }
  .form-submit:hover { background: var(--terracotta); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(181, 96, 74, 0.3); }
  @media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
  @media (max-width: 600px) { .contact-info, .form-area { padding: 32px 26px; } }

  /* ===================== CTA BAND ===================== */
  .cta-band {
    padding: 100px 0; background: var(--cream-deep); text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 155, 94, 0.22), transparent 70%);
    animation: breathe 14s ease-in-out infinite;
  }
  .cta-band::after {
    content: ''; position: absolute; right: -200px; top: 30%; width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 74, 62, 0.12), transparent 70%);
    animation: floatSlow 26s ease-in-out infinite; filter: blur(40px);
  }
  .cta-band .container { position: relative; z-index: 2; }
  .cta-band h2 {
    font-family: 'Shippori Mincho B1', serif; font-size: clamp(24px, 3.6vw, 38px);
    color: var(--ink); margin-bottom: 22px; line-height: 1.5; font-weight: 600;
  }
  .cta-band p { color: var(--ink-soft); margin-bottom: 36px; font-size: clamp(15px, 1.5vw, 17px); }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .cta-btn {
    padding: 18px 32px; background: var(--moss); color: var(--paper);
    text-decoration: none; font-size: 17px; letter-spacing: 0.08em;
    border-radius: 2px; cursor: pointer;
    transition: background 0.6s ease, transform 0.6s cubic-bezier(.16,.84,.28,1), box-shadow 0.6s ease, border-color 0.6s ease;
    border: 1px solid var(--moss);
    display: inline-flex; align-items: center; gap: 14px;
    font-family: 'Shippori Mincho B1', serif; font-weight: 500;
    position: relative; overflow: hidden;
  }
  .cta-btn::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.8s cubic-bezier(.16,.84,.28,1);
  }
  .cta-btn:hover::before { left: 100%; }
  .cta-btn:hover { background: var(--terracotta); border-color: var(--terracotta); transform: translateY(-3px); box-shadow: 0 16px 36px rgba(181, 96, 74, 0.30); }
  .cta-btn.outline { background: transparent; color: var(--moss); }
  .cta-btn.outline:hover { background: var(--moss); color: var(--paper); border-color: var(--moss); }
  @media (max-width: 480px) { .cta-band { padding: 70px 0; } .cta-buttons { flex-direction: column; } .cta-btn { justify-content: center; } }

  /* ===================== FOOTER ===================== */
  footer.site-footer {
    padding: 90px 0 40px; background: var(--ink); color: rgba(245, 239, 228, 0.85);
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 60px;
  }
  .footer-grid h5 {
    font-family: 'Shippori Mincho B1', serif; font-size: 17px;
    color: var(--gold); margin-bottom: 24px; letter-spacing: 0.06em; font-weight: 600;
  }
  .footer-grid ul { list-style: none; }
  .footer-grid ul li a {
    display: block; padding: 9px 0; color: rgba(245, 239, 228, 0.75); text-decoration: none;
    font-size: 15.5px; cursor: pointer;
    transition: color 0.5s ease, padding-left 0.5s cubic-bezier(.16,.84,.28,1);
    font-family: 'Shippori Mincho B1', serif;
  }
  .footer-grid ul li a:hover { color: var(--gold); padding-left: 10px; }

  /* ===================== ACCESSIBILITY: REDUCED MOTION ===================== */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    .reveal, .reveal-x, .reveal-scale { opacity: 1; transform: none; }
  }
  .footer-brand {
    font-family: 'Shippori Mincho B1', serif; font-size: 22px;
    color: var(--paper); margin-bottom: 22px; line-height: 1.5; font-weight: 600;
  }
  .footer-logo {
    display: block; width: min(310px, 100%); height: auto;
    margin-bottom: 22px; border-radius: 8px;
  }
  .footer-grid p { font-size: 14.5px; line-height: 2; color: rgba(245, 239, 228, 0.7); }
  .footer-bottom {
    padding-top: 30px; border-top: 1px solid rgba(245, 239, 228, 0.1);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    font-size: 13.5px; color: rgba(245, 239, 228, 0.6);
  }
  @media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
  @media (max-width: 600px) { footer.site-footer { padding: 70px 0 32px; } .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 44px; } }

/* ===================== WP IMAGE INTEGRATION (KU-NEL) ===================== */
.hero-grid.hero-two { display: grid; grid-template-columns: 1.3fr 0.85fr; gap: 56px; align-items: center; max-width: 1120px; }
/* keep the headline on its two intended lines within the copy column */
.hero-grid.hero-two .hero-copy h1 { font-size: clamp(28px, 4.8vw, 64px); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 4px 0 38px; animation: fadeInUp 1s 0.55s both; }
@media (max-width: 480px) { .hero-cta { margin: 0 0 30px; } .hero-cta .cta-btn { justify-content: center; flex: 1 1 auto; } }
.hero-grid.hero-two .hero-copy { min-width: 0; }
.hero-grid.hero-two .hero-visual { background-size: cover; background-position: center; }
@media (max-width: 960px) {
  .hero-grid.hero-two { grid-template-columns: 1fr; gap: 40px; }
  .hero-grid.hero-two .hero-visual { max-width: 440px; width: 100%; margin: 0 auto; }
}
.field-image { background-size: cover; background-position: center; }
.voice-photo-l img, .voice-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }



/* ===================== MOBILE NAV OVERLAY FIX ===================== */
@media (max-width: 1200px) {
  header.site-header { -webkit-backdrop-filter: none !important; backdrop-filter: none !important; }
  .gnav.open { flex-wrap: nowrap; }
}
/* ===================== WP ADMIN BAR OFFSET ===================== */
@media screen {
  body.admin-bar header.site-header { top: 32px; }
  body.admin-bar .gnav.open { top: 128px; }
}
@media screen and (max-width: 782px) {
  body.admin-bar header.site-header { top: 46px; }
  body.admin-bar .gnav.open { top: 138px; }
}


/* ===================== SITEMAP LIST ===================== */
.sitemap-list { list-style: none; margin: 8px 0 0; padding: 0; }
.sitemap-list li { border-bottom: 1px solid var(--line); }
.sitemap-list li a {
  display: block; padding: 16px 4px; color: var(--ink-soft); text-decoration: none;
  cursor: pointer; font-family: 'Shippori Mincho B1', serif; font-size: 16.5px;
  transition: color 0.3s ease, padding-left 0.4s cubic-bezier(.16,.84,.28,1);
}
.sitemap-list li a:hover { color: var(--moss); padding-left: 14px; }
.form-area .wpcf7 form.wpcf7-form { margin: 0; }
.form-area .wpcf7-response-output { margin: 18px 0 0; padding: 14px 18px; border-radius: 2px; font-size: 15px; line-height: 1.8; }
.form-area .wpcf7-not-valid-tip { color: var(--terracotta); font-size: 14px; margin-top: 6px; display: block; }
.form-area span.wpcf7-form-control-wrap { display: block; }
