    /* ===========================
       RESET & CUSTOM PROPERTIES
    =========================== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --bg: #080808;
      --bg2: #0d0d0d;
      --surface: #111111;
      --surface2: #161616;
      --border: rgba(255,255,255,0.07);
      --border-hover: rgba(255,255,255,0.15);
      --text: #ffffff;
      --text-2: rgba(255,255,255,0.6);
      --text-3: rgba(255,255,255,0.3);
      --accent: #00C853;
      --accent-mid: rgba(0,200,83,0.25);
      --accent-dim: rgba(0,200,83,0.08);
      --font-display: 'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
      --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
      --font-mono: 'DM Mono', 'Courier New', monospace;
      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
      --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    }

    html {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-weight: 300;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      scroll-behavior: smooth;
    }

    body { overflow-x: hidden; }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ===========================
       LOADING SCREEN
    =========================== */
    #loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--bg);
      transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0.25s, visibility 1.4s;
      will-change: transform;
    }
    #loader.done {
      transform: translateY(-101%);
      visibility: hidden;
      pointer-events: none;
    }
    #loader.done .ld-center,
    #loader.done .ld-count,
    #loader.done .ld-status,
    #loader.done .ld-bar {
      opacity: 0;
      transition: opacity 0.3s;
    }

    /* 緑の追いパネル（ローダーの0.17s後に追いかけて上がる） */
    .loader-veil {
      position: fixed;
      inset: 0;
      z-index: 9998;
      background: var(--accent);
      transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0.42s, visibility 1.6s;
      will-change: transform;
    }
    body.ready .loader-veil {
      transform: translateY(-101%);
      visibility: hidden;
      pointer-events: none;
    }

    .ld-center {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
    }
    .ld-title {
      font-family: var(--font-display);
      font-size: clamp(56px, 11vw, 140px);
      font-weight: 400;
      line-height: 1;
      letter-spacing: 0.04em;
      display: flex;
      overflow: hidden;
      padding: 0.1em 0.05em;
      margin: -0.1em -0.05em;
    }
    .ld-ch {
      display: inline-block;
      transform: translateY(118%);
      animation: ldUp 0.9s var(--ease-out) forwards;
      animation-delay: calc(0.15s + var(--i) * 0.06s);
    }
    .ld-ch.ld-accent {
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 1.5px var(--accent);
    }
    @keyframes ldUp {
      to { transform: translateY(0); }
    }
    .ld-tag {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.42em;
      color: var(--text-3);
      text-transform: uppercase;
      opacity: 0;
      animation: ldFade 1s var(--ease-out) 0.85s forwards;
    }
    @keyframes ldFade {
      to { opacity: 1; }
    }

    .ld-count {
      position: absolute;
      left: 48px;
      bottom: 40px;
      font-family: var(--font-display);
      font-style: italic;
      font-size: clamp(48px, 8vw, 96px);
      font-weight: 300;
      line-height: 1;
      color: var(--text);
      opacity: 0;
      animation: ldFade 0.8s var(--ease-out) 0.5s forwards;
    }
    .ld-pct {
      font-size: 0.35em;
      font-style: normal;
      color: var(--accent);
      margin-left: 6px;
    }

    .ld-status {
      position: absolute;
      right: 48px;
      bottom: 56px;
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.35em;
      color: var(--text-3);
      text-transform: uppercase;
      opacity: 0;
      animation: ldFade 0.8s var(--ease-out) 0.6s forwards;
    }

    .ld-bar {
      position: absolute;
      left: 0; right: 0; bottom: 0;
      height: 2px;
      background: rgba(255,255,255,0.06);
    }
    .ld-fill {
      height: 100%;
      width: 0%;
      background: var(--accent);
      box-shadow: 0 0 14px rgba(0,200,83,0.8);
      transition: width 0.05s linear;
    }

    @media (max-width: 768px) {
      .ld-count { left: 24px; bottom: 28px; }
      .ld-status { right: 24px; bottom: 40px; }
    }

    /* ===========================
       NAVIGATION
    =========================== */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 28px 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: padding 0.5s var(--ease-out),
                  background 0.5s var(--ease-out),
                  border-color 0.5s var(--ease-out),
                  backdrop-filter 0.5s var(--ease-out),
                  transform 0.55s var(--ease-out);
      border-bottom: 1px solid transparent;
    }
    #nav.scrolled {
      padding: 16px 56px;
      background: rgba(8,8,8,0.88);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-color: var(--border);
    }
    #nav.hidden { transform: translateY(-101%); }

    .nav-logo-wrap {
      display: inline-flex;
      align-items: center;
      background: #fff;
      padding: 5px 8px;
      flex-shrink: 0;
    }
    .nav-logo-wrap img {
      height: 30px;
      width: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 44px;
    }
    .nav-links a {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.14em;
      color: var(--text-2);
      position: relative;
      transition: color 0.3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px; left: 0;
      width: 0; height: 1px;
      background: var(--accent);
      transition: width 0.35s var(--ease-out);
    }
    .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.18em;
      color: var(--accent);
      border: 1px solid rgba(0,200,83,0.4);
      padding: 10px 24px;
      transition: background 0.3s, color 0.3s, border-color 0.3s;
    }
    .nav-cta:hover {
      background: var(--accent);
      color: #000;
      border-color: var(--accent);
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      padding: 4px;
      z-index: 200;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 1px;
      background: var(--text);
      transition: transform 0.35s var(--ease-out), opacity 0.35s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile drawer */
    #mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 150;
      background: var(--bg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.45s var(--ease-out), visibility 0.45s;
    }
    #mobile-menu.open { opacity: 1; visibility: visible; }

    .mobile-link {
      font-family: var(--font-display);
      font-size: 30px;
      font-weight: 300;
      letter-spacing: 0.08em;
      color: var(--text-2);
      transition: color 0.3s;
      transform: translateY(20px);
      opacity: 0;
    }
    #mobile-menu.open .mobile-link {
      animation: mobileIn 0.5s var(--ease-out) forwards;
    }
    #mobile-menu.open .mobile-link:nth-child(1) { animation-delay: 0.05s; }
    #mobile-menu.open .mobile-link:nth-child(2) { animation-delay: 0.10s; }
    #mobile-menu.open .mobile-link:nth-child(3) { animation-delay: 0.15s; }
    #mobile-menu.open .mobile-link:nth-child(4) { animation-delay: 0.20s; }
    #mobile-menu.open .mobile-link:nth-child(5) { animation-delay: 0.25s; }
    @keyframes mobileIn {
      to { opacity: 1; transform: translateY(0); }
    }
    .mobile-link:hover { color: var(--accent); }
    .mobile-link.cta {
      font-family: var(--font-body);
      font-size: 11px;
      letter-spacing: 0.2em;
      color: var(--accent);
      border: 1px solid rgba(0,200,83,0.4);
      padding: 14px 40px;
      margin-top: 12px;
    }

    /* ===========================
       HERO SECTION
    =========================== */
    #home {
      position: relative;
      height: 100vh;
      min-height: 640px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      clip-path: inset(0);
    }

    .hero-bg {
      position: absolute;
      inset: -8% 0;
      will-change: transform;
      transform-origin: center center;
    }
    .hero-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .hero-veil {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(to bottom,
          rgba(8,8,8,0.55) 0%,
          rgba(8,8,8,0.30) 35%,
          rgba(8,8,8,0.45) 70%,
          rgba(8,8,8,1) 100%),
        radial-gradient(ellipse at 50% 55%, rgba(8,8,8,0) 0%, rgba(8,8,8,0.35) 100%);
      pointer-events: none;
    }

    /* Animated grain overlay */
    .hero-grain {
      position: absolute;
      inset: 0;
      opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 256px 256px;
      pointer-events: none;
      will-change: transform;
      animation: grain 0.35s steps(1) infinite;
    }
    @keyframes grain {
      0%   { transform: translate(0, 0); }
      10%  { transform: translate(-2%, -3%); }
      20%  { transform: translate(3%, 2%); }
      30%  { transform: translate(-1%, 4%); }
      40%  { transform: translate(4%, -1%); }
      50%  { transform: translate(-3%, 3%); }
      60%  { transform: translate(2%, -4%); }
      70%  { transform: translate(-4%, 1%); }
      80%  { transform: translate(3%, -2%); }
      90%  { transform: translate(-2%, 4%); }
      100% { transform: translate(1%, -3%); }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 24px;
      max-width: 1200px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-eyebrow {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.35em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      opacity: 0;
      transform: translateY(16px);
    }
    .hero-eyebrow::after {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--accent);
      flex-shrink: 0;
    }
    body.ready .hero-eyebrow {
      animation: heroIn 0.8s var(--ease-out) 0.1s forwards;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--accent);
      flex-shrink: 0;
    }

    /* --- Giant English headline --- */
    .hero-title-en {
      font-family: var(--font-display);
      font-size: clamp(58px, 11.5vw, 158px);
      font-weight: 400;
      line-height: 0.98;
      letter-spacing: 0.01em;
      margin-bottom: 30px;
      text-transform: uppercase;
    }
    .ht-line {
      display: block;
      overflow: hidden;
      padding: 0.12em 0.06em;
      margin: -0.12em -0.06em;
      white-space: nowrap;
    }
    .ht-line.ht-outline {
      font-style: italic;
      font-weight: 300;
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(255,255,255,0.85);
    }
    .ch {
      display: inline-block;
      transform: translateY(125%) rotate(8deg);
      transform-origin: bottom left;
      opacity: 0;
      filter: blur(8px);
    }
    body.ready .ch {
      animation: chIn 0.95s var(--ease-out) forwards;
      animation-delay: calc(0.25s + var(--i) * 0.045s);
    }
    @keyframes chIn {
      to { transform: translateY(0) rotate(0deg); opacity: 1; filter: blur(0); }
    }

    .hero-title-jp {
      font-size: 15px;
      font-weight: 300;
      letter-spacing: 0.34em;
      color: var(--text);
      margin-bottom: 22px;
      opacity: 0;
      transform: translateY(18px);
    }
    body.ready .hero-title-jp {
      animation: heroIn 1s var(--ease-out) 1.15s forwards;
    }

    /* --- Vertical side caption --- */
    .hero-side {
      position: absolute;
      top: 50%;
      right: 58px;
      transform: translateY(-50%);
      writing-mode: vertical-rl;
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.42em;
      color: var(--text-3);
      text-transform: uppercase;
      z-index: 2;
      opacity: 0;
    }
    body.ready .hero-side {
      animation: heroIn 1.2s var(--ease-out) 1.5s forwards;
    }

    .hero-sub {
      font-size: 13px;
      font-weight: 300;
      line-height: 2;
      color: var(--text-2);
      margin-bottom: 48px;
      opacity: 0;
      transform: translateY(16px);
    }
    body.ready .hero-sub {
      animation: heroIn 0.9s var(--ease-out) 1.3s forwards;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(16px);
    }
    body.ready .hero-actions {
      animation: heroIn 0.9s var(--ease-out) 1.45s forwards;
    }

    @keyframes heroIn {
      to { opacity: 1; transform: translateY(0); }
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.18em;
      color: #000;
      background: var(--accent);
      padding: 14px 36px;
      transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(0,200,83,0.35);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.18em;
      color: var(--text-2);
      border: 1px solid var(--border);
      padding: 14px 36px;
      transition: border-color 0.3s, color 0.3s, transform 0.4s var(--ease-spring);
    }
    .btn-ghost:hover {
      border-color: var(--border-hover);
      color: var(--text);
      transform: translateY(-3px);
    }

    /* Scroll indicator */
    .hero-scroll-hint {
      position: absolute;
      bottom: 44px;
      right: 56px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      z-index: 2;
      opacity: 0;
    }
    body.ready .hero-scroll-hint {
      animation: heroIn 0.8s var(--ease-out) 1.7s forwards;
    }
    .scroll-label {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.35em;
      color: var(--text-3);
      writing-mode: vertical-rl;
      text-orientation: mixed;
    }
    .scroll-line {
      width: 1px;
      height: 64px;
      background: linear-gradient(to bottom, var(--accent) 0%, transparent 100%);
      transform-origin: top;
      animation: scrollPulse 2.2s var(--ease-in-out) 1.8s infinite;
    }
    @keyframes scrollPulse {
      0%   { transform: scaleY(0); opacity: 1; }
      50%  { transform: scaleY(1); opacity: 1; }
      51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
      100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
    }

    /* Hero location badge */
    .hero-badge {
      position: absolute;
      bottom: 88px;
      left: 56px;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 10px;
      opacity: 0;
    }
    body.ready .hero-badge {
      animation: heroIn 0.8s var(--ease-out) 1.6s forwards;
    }
    .hero-badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      animation: dotPulse 2s ease infinite;
    }
    @keyframes dotPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(0,200,83,0.6); }
      50%       { box-shadow: 0 0 0 8px rgba(0,200,83,0); }
    }
    .hero-badge-text {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.25em;
      color: var(--text-3);
      text-transform: uppercase;
    }

    /* ===========================
       SHARED SECTION STYLES
    =========================== */
    .section-wrap {
      max-width: 1360px;
      margin: 0 auto;
      padding: 128px 56px;
    }

    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.3em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .section-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--accent);
      flex-shrink: 0;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(34px, 5vw, 66px);
      font-weight: 300;
      line-height: 1.15;
      letter-spacing: -0.01em;
      margin-bottom: 24px;
    }

    .section-lead {
      font-size: 14px;
      font-weight: 300;
      line-height: 2;
      color: var(--text-2);
      max-width: 580px;
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(48px);
      transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
    }
    .reveal.from-left  { transform: translateX(-48px); }
    .reveal.from-right { transform: translateX(48px); }
    .reveal.in {
      opacity: 1;
      transform: none;
    }
    .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.delay-5 { transition-delay: 0.60s; }

    /* ===========================
       LIGHT THEME SECTIONS
       （変数の再定義だけで全コンポーネントが明転する）
    =========================== */
    .light {
      --bg: #f6f5f2;
      --bg2: #f0efeb;
      --surface: #ffffff;
      --surface2: #ffffff;
      --border: rgba(0,0,0,0.09);
      --border-hover: rgba(0,0,0,0.2);
      --text: #101010;
      --text-2: rgba(0,0,0,0.62);
      --text-3: rgba(0,0,0,0.38);
      --accent: #00A04B;
      --accent-mid: rgba(0,160,75,0.25);
      --accent-dim: rgba(0,160,75,0.05);
      background: var(--bg);
      color: var(--text);
    }
    .light .ghost-word {
      -webkit-text-stroke-color: rgba(0,0,0,0.06);
    }
    .light .service-icon {
      color: rgba(0,0,0,0.35);
    }
    .light .form-control {
      background: rgba(0,0,0,0.035);
    }
    .light .form-control:focus {
      background: rgba(0,160,75,0.05);
    }
    .light select.form-control option {
      background: #ffffff;
      color: #101010;
    }
    .light .prop-card:hover {
      box-shadow: 0 28px 56px rgba(0,0,0,0.16);
    }
    .light .prop-badge.new-badge {
      background: #101010;
      color: #fff;
    }

    /* ===========================
       MISSION SECTION
    =========================== */
    #mission {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .mission-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 88px;
      align-items: start;
    }

    .mission-quote {
      font-family: var(--font-display);
      font-size: clamp(28px, 3.8vw, 46px);
      font-weight: 300;
      line-height: 1.65;
      letter-spacing: 0.04em;
      margin-bottom: 0;
    }
    .mission-quote .hl { color: var(--accent); font-style: italic; }

    .mission-text {
      font-size: 14px;
      font-weight: 300;
      line-height: 2.1;
      color: var(--text-2);
      margin-bottom: 56px;
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-top: 1px solid var(--border);
    }
    .stat {
      padding: 28px 0;
      border-right: 1px solid var(--border);
    }
    .stat:last-child { border-right: none; }
    .stat + .stat { padding-left: 24px; }

    .stat-value {
      font-family: var(--font-mono);
      font-size: 40px;
      font-weight: 300;
      line-height: 1;
      color: var(--text);
      margin-bottom: 8px;
      display: flex;
      align-items: baseline;
      gap: 4px;
    }
    .stat-value .unit {
      font-size: 14px;
      color: var(--accent);
    }
    .stat-label {
      font-size: 11px;
      letter-spacing: 0.1em;
      color: var(--text-3);
    }

    /* ===========================
       SERVICES SECTION
    =========================== */
    #services {
      background: var(--bg);
    }

    .services-header {
      margin-bottom: 72px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
    }

    .service-card {
      position: relative;
      background: var(--bg);
      padding: 52px 44px;
      overflow: hidden;
      cursor: default;
      transition: background 0.5s var(--ease-out);
    }
    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--accent-dim);
      opacity: 0;
      transition: opacity 0.5s var(--ease-out);
    }
    .service-card:hover { background: var(--surface); }
    .service-card:hover::before { opacity: 1; }

    /* Hover accent line */
    .service-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.5s var(--ease-out);
    }
    .service-card:hover::after { width: 100%; }

    .service-num {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.3em;
      color: var(--accent);
      margin-bottom: 36px;
      position: relative;
      z-index: 1;
    }

    .service-icon {
      width: 44px;
      height: 44px;
      margin-bottom: 28px;
      color: rgba(255,255,255,0.4);
      transition: color 0.4s, transform 0.4s var(--ease-spring);
      position: relative;
      z-index: 1;
    }
    .service-card:hover .service-icon {
      color: var(--accent);
      transform: scale(1.08);
    }

    .service-title {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 300;
      letter-spacing: 0.06em;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }

    .service-body {
      font-size: 13px;
      font-weight: 300;
      line-height: 1.95;
      color: var(--text-2);
      margin-bottom: 36px;
      position: relative;
      z-index: 1;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.22em;
      color: var(--accent);
      position: relative;
      z-index: 1;
      transition: gap 0.35s var(--ease-out);
    }
    .service-link::after { content: '→'; }
    .service-card:hover .service-link { gap: 18px; }

    /* ===========================
       PARALLAX BANNER
    =========================== */
    .parallax-section {
      position: relative;
      height: 420px;
      overflow: hidden;
      clip-path: inset(0);
    }
    .parallax-bg {
      position: absolute;
      inset: -15% 0;
      background:
        linear-gradient(to bottom, rgba(8,8,8,0.62) 0%, rgba(8,8,8,0.45) 50%, rgba(8,8,8,0.65) 100%),
        url('banner-bg.jpg') center/cover no-repeat;
      will-change: transform;
    }
    .parallax-content {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .parallax-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    .parallax-label {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.4em;
      color: var(--text-3);
      text-transform: uppercase;
    }
    .parallax-quote {
      font-family: var(--font-display);
      font-size: clamp(26px, 4.5vw, 54px);
      font-weight: 300;
      letter-spacing: 0.06em;
      line-height: 1.4;
    }
    .parallax-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--accent), transparent);
    }

    /* ===========================
       PROPERTIES SECTION
    =========================== */
    #properties {
      background: var(--bg2);
      border-top: 1px solid var(--border);
    }

    .properties-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 64px;
      gap: 24px;
    }

    .properties-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .prop-card {
      background: var(--surface);
      overflow: hidden;
      transition: transform 0.5s var(--ease-spring), box-shadow 0.5s;
    }
    .prop-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 32px 64px rgba(0,0,0,0.5);
    }

    .prop-thumb {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
    }
    .prop-thumb-inner {
      width: 100%;
      height: 100%;
      transition: transform 0.8s var(--ease-out);
    }
    .prop-card:hover .prop-thumb-inner { transform: scale(1.06); }

    .prop-gradient {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .prop-gradient-1 {
      background: linear-gradient(135deg, #0d1520 0%, #162030 50%, #0d1520 100%);
    }
    .prop-gradient-2 {
      background: linear-gradient(135deg, #1a1208 0%, #261c0c 50%, #1a1208 100%);
    }
    .prop-gradient-3 {
      background: linear-gradient(135deg, #0a1a0a 0%, #102010 50%, #0a1a0a 100%);
    }
    .prop-gradient svg { opacity: 0.12; }

    .prop-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      font-family: var(--font-mono);
      font-size: 8px;
      letter-spacing: 0.18em;
      padding: 4px 10px;
    }
    .prop-badge.sale { background: var(--accent); color: #000; }
    .prop-badge.rent {
      background: transparent;
      color: var(--accent);
      border: 1px solid rgba(0,200,83,0.5);
    }
    .prop-badge.new-badge { background: #fff; color: #000; }

    .prop-info {
      padding: 24px 24px 28px;
    }
    .prop-category {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.22em;
      color: var(--text-3);
      margin-bottom: 10px;
      text-transform: uppercase;
    }
    .prop-name {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 400;
      letter-spacing: 0.03em;
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .prop-location {
      font-size: 12px;
      font-weight: 300;
      color: var(--text-3);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .prop-location::before {
      content: '';
      display: block;
      width: 14px;
      height: 1px;
      background: var(--border-hover);
      flex-shrink: 0;
    }
    .prop-price {
      font-family: var(--font-mono);
      font-size: 22px;
      font-weight: 300;
      color: var(--accent);
      display: flex;
      align-items: baseline;
      gap: 6px;
    }
    .prop-price .prop-unit {
      font-size: 11px;
      color: var(--text-3);
      font-family: var(--font-body);
      font-weight: 300;
    }

    /* ===========================
       ABOUT SECTION
    =========================== */
    #about {
      background: var(--bg);
      border-top: 1px solid var(--border);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-visual {
      position: relative;
    }
    .about-img-main {
      aspect-ratio: 4/5;
      overflow: hidden;
      position: relative;
    }
    .about-img-fill {
      width: 100%;
      height: 100%;
      background: linear-gradient(145deg, #111820 0%, #1a2030 40%, #101820 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-img-fill svg { opacity: 0.1; }

    .about-accent-box {
      position: absolute;
      bottom: -24px;
      right: -24px;
      width: 110px;
      height: 110px;
      border: 1px solid rgba(0,200,83,0.3);
    }
    .about-accent-box::before {
      content: '';
      position: absolute;
      inset: 8px;
      border: 1px solid rgba(0,200,83,0.12);
    }

    .about-stamp {
      position: absolute;
      top: 20px;
      left: 20px;
      background: rgba(8,8,8,0.85);
      backdrop-filter: blur(12px);
      padding: 8px 16px;
      border-left: 2px solid var(--accent);
    }
    .about-stamp-text {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.22em;
      color: var(--accent);
      text-transform: uppercase;
    }

    .about-body .section-lead { max-width: none; margin-bottom: 44px; }

    .about-points {
      display: flex;
      flex-direction: column;
      gap: 0;
      border-top: 1px solid var(--border);
    }
    .about-point {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
      font-size: 13px;
      font-weight: 300;
      color: var(--text-2);
      line-height: 1.8;
      transition: color 0.3s;
    }
    .about-point:hover { color: var(--text); }
    .about-point strong {
      display: block;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 4px;
      letter-spacing: 0.03em;
    }
    .about-point-num {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.15em;
      color: var(--accent);
      flex-shrink: 0;
      padding-top: 2px;
    }

    /* ===========================
       CONTACT SECTION
    =========================== */
    #contact {
      background: var(--bg2);
      border-top: 1px solid var(--border);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 80px;
      align-items: start;
    }

    .contact-left {
      position: sticky;
      top: 120px;
    }

    .contact-meta {
      display: flex;
      flex-direction: column;
      gap: 28px;
      margin-top: 48px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
    }
    .contact-meta-row {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .meta-label {
      font-family: var(--font-mono);
      font-size: 8px;
      letter-spacing: 0.3em;
      color: var(--text-3);
      text-transform: uppercase;
    }
    .meta-value {
      font-size: 14px;
      font-weight: 300;
      color: var(--text-2);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .form-group { display: flex; flex-direction: column; gap: 8px; }

    .form-label {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.22em;
      color: var(--text-3);
      text-transform: uppercase;
    }

    .form-control {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 300;
      padding: 14px 18px;
      outline: none;
      width: 100%;
      transition: border-color 0.35s, background 0.35s;
      -webkit-appearance: none;
      appearance: none;
    }
    .form-control:focus {
      border-color: rgba(0,200,83,0.4);
      background: rgba(0,200,83,0.04);
    }
    .form-control::placeholder { color: var(--text-3); font-size: 13px; }

    textarea.form-control {
      resize: vertical;
      min-height: 128px;
    }

    select.form-control {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 18px center;
      padding-right: 42px;
      cursor: pointer;
    }
    select.form-control option { background: #161616; color: #fff; }

    .form-submit {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.2em;
      color: #000;
      background: var(--accent);
      border: none;
      padding: 16px 44px;
      cursor: pointer;
      align-self: flex-start;
      transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
    }
    .form-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(0,200,83,0.4);
    }
    .form-submit::after { content: '→'; }

    /* ===========================
       FOOTER
    =========================== */
    footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 72px 56px 36px;
    }

    .footer-grid {
      max-width: 1360px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 56px;
      padding-bottom: 56px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 28px;
    }

    .footer-logo-wrap {
      display: inline-flex;
      align-items: center;
      background: #fff;
      padding: 6px 9px;
      margin-bottom: 20px;
    }
    .footer-logo-wrap img { height: 28px; width: auto; }

    .footer-tagline {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255,255,255,0.78);
      line-height: 2;
    }

    .footer-col-label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.28em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 13px;
    }
    .footer-links a {
      font-size: 13.5px;
      font-weight: 300;
      color: rgba(255,255,255,0.82);
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--accent); }

    .footer-bottom {
      max-width: 1360px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }
    .footer-copy {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.14em;
      color: rgba(255,255,255,0.5);
    }

    /* ===========================
       MOTION LAYER
       (cursor / progress / marquee / wipe / tilt)
    =========================== */

    /* --- Scroll progress bar --- */
    .scroll-progress {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(to right, var(--accent), #7dffb0);
      transform: scaleX(0);
      transform-origin: left;
      z-index: 300;
      pointer-events: none;
    }

    /* --- Custom cursor --- */
    .cursor-dot, .cursor-ring {
      position: fixed;
      top: 0; left: 0;
      border-radius: 50%;
      pointer-events: none;
      z-index: 10000;
      opacity: 0;
    }
    .cursor-dot {
      width: 6px; height: 6px;
      background: var(--accent);
    }
    .cursor-ring {
      width: 38px; height: 38px;
      border: 1px solid rgba(0,200,83,0.55);
      transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
                  border-color 0.35s, background 0.35s, opacity 0.3s;
    }
    .cursor-ring.hover {
      width: 64px; height: 64px;
      border-color: rgba(255,255,255,0.7);
      background: rgba(0,200,83,0.08);
    }
    @media (hover: hover) and (pointer: fine) {
      .cursor-ring { opacity: 1; }
      .cursor-dot { display: none; }
    }
    @media (hover: none), (pointer: coarse) {
      .cursor-dot, .cursor-ring { display: none !important; }
    }

    /* --- Marquee --- */
    .marquee {
      overflow: hidden;
      padding: 22px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--bg);
      display: flex;
    }
    .marquee-group {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      min-width: max-content;
      animation: mqScroll 32s linear infinite;
    }
    .marquee:hover .marquee-group { animation-play-state: paused; }
    .mq {
      font-family: var(--font-display);
      font-size: clamp(15px, 1.8vw, 22px);
      font-weight: 400;
      letter-spacing: 0.14em;
      color: rgba(255,255,255,0.7);
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
    }
    .mq::after {
      content: '·';
      color: var(--accent);
      margin: 0 36px;
      font-size: 0.6em;
    }
    .mq.outline {
      font-style: italic;
      color: rgba(255,255,255,0.35);
      -webkit-text-stroke: 0;
    }
    @keyframes mqScroll {
      to { transform: translateX(-100%); }
    }

    /* --- Image wipe reveal --- */
    .wipe-img { position: relative; }
    .wipe-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--accent);
      transform: scaleX(1);
      transform-origin: right;
      transition: transform 0.9s var(--ease-out) 0.15s;
      z-index: 3;
      pointer-events: none;
    }
    .wipe-img.in::after { transform: scaleX(0); }
    .wipe-img img {
      transform: scale(1.15);
      transition: transform 1.5s var(--ease-out);
    }
    .wipe-img.in img { transform: scale(1); }

    /* --- Prop card shine sweep --- */
    .prop-thumb::before {
      content: '';
      position: absolute;
      top: 0; left: -90%;
      width: 60%; height: 100%;
      background: linear-gradient(105deg, transparent, rgba(255,255,255,0.18), transparent);
      transform: skewX(-18deg);
      z-index: 2;
      transition: left 0.9s var(--ease-out);
      pointer-events: none;
    }
    .prop-card:hover .prop-thumb::before { left: 150%; }

    /* --- Prop card 3D tilt --- */
    .prop-card.tilting {
      transition: transform 0.15s ease-out, box-shadow 0.5s;
      will-change: transform;
    }

    /* --- Button shine sweep --- */
    .btn-primary, .form-submit {
      position: relative;
      overflow: hidden;
    }
    .btn-primary::before, .form-submit::before {
      content: '';
      position: absolute;
      top: 0; left: -80%;
      width: 50%; height: 100%;
      background: linear-gradient(105deg, transparent, rgba(255,255,255,0.5), transparent);
      transform: skewX(-20deg);
      transition: left 0.55s var(--ease-out);
      pointer-events: none;
    }
    .btn-primary:hover::before, .form-submit:hover::before { left: 140%; }

    /* --- Parallax quote blur reveal --- */
    .bq {
      display: inline-block;
      opacity: 0;
      filter: blur(16px);
      transform: translateY(24px);
      transition: opacity 1.1s var(--ease-out), filter 1.1s var(--ease-out), transform 1.1s var(--ease-out);
    }
    .reveal.in .bq { opacity: 1; filter: blur(0); transform: none; }
    .reveal.in .bq2 { transition-delay: 0.2s; }

    /* --- About accent box slow spin --- */
    .about-accent-box::before { animation: spinSlow 16s linear infinite; }
    @keyframes spinSlow {
      to { transform: rotate(360deg); }
    }

    /* --- Ghost section words --- */
    .section-wrap { position: relative; }
    .ghost-word {
      position: absolute;
      top: 48px;
      right: 8px;
      font-family: var(--font-display);
      font-size: clamp(90px, 15vw, 220px);
      font-weight: 400;
      font-style: italic;
      line-height: 1;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255,255,255,0.06);
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
      z-index: 0;
      will-change: transform;
    }

    /* --- Reduced motion --- */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      .cursor-dot, .cursor-ring { display: none !important; }
    }

    /* ===========================
       RESPONSIVE
    =========================== */
    @media (max-width: 1200px) {
      #nav, #nav.scrolled { padding-left: 40px; padding-right: 40px; }
      .section-wrap { padding: 96px 40px; }
      footer { padding: 56px 40px 32px; }
    }

    @media (max-width: 960px) {
      .mission-grid { grid-template-columns: 1fr; gap: 48px; }
      .properties-grid { grid-template-columns: repeat(2, 1fr); }
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .about-img-main { aspect-ratio: 16/9; }
      .contact-grid { grid-template-columns: 1fr; gap: 56px; }
      .contact-left { position: static; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid > div:first-child { grid-column: 1 / -1; }
    }

    @media (max-width: 768px) {
      #nav, #nav.scrolled { padding: 18px 24px; }
      .nav-links, .nav-cta { display: none !important; }
      .hamburger { display: flex; }

      .hero-content { padding: 0 24px; }
      .hero-badge { left: 24px; bottom: 28px; }
      .hero-scroll-hint { right: 24px; bottom: 28px; }
      .hero-title-jp { letter-spacing: 0.2em; }

      .section-wrap { padding: 72px 24px; }

      .services-grid { grid-template-columns: 1fr; }
      .service-card { padding: 40px 28px; }

      .properties-header { flex-direction: column; align-items: flex-start; }
      .properties-grid { grid-template-columns: 1fr; }

      .stats-row { grid-template-columns: repeat(2, 1fr); }
      .stat:nth-child(2) { border-right: none; }
      .stat:nth-child(3) { border-top: 1px solid var(--border); }

      .form-row { grid-template-columns: 1fr; }

      footer { padding: 48px 24px 28px; }
      .footer-grid { grid-template-columns: 1fr; padding-bottom: 40px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

      .parallax-section { height: 320px; }
    }

    @media (max-width: 480px) {
      .hero-title-en { font-size: clamp(46px, 14.5vw, 60px); }
      .hero-actions { flex-direction: column; align-items: flex-start; }
      .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
      .stats-row { grid-template-columns: 1fr; }
      .stat { border-right: none; border-top: 1px solid var(--border); }
      .stat:first-child { border-top: none; }
      .about-accent-box { display: none; }
    }

/* ===========================
   SUB PAGES (下層ページ共通)
=========================== */
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { width: 100%; }

.page-hero {
  position: relative;
  padding: 200px 56px 88px;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero .ghost-word { top: 120px; }
.page-hero-inner {
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-title-en {
  font-family: var(--font-display);
  font-size: clamp(46px, 8vw, 108px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 16px 0 18px;
}
.page-lead {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: var(--text-2);
  max-width: 620px;
  opacity: 0;
  transform: translateY(16px);
}
body.ready .page-lead {
  animation: heroIn 0.9s var(--ease-out) 0.9s forwards;
}

/* --- サービス詳細（交互レイアウト） --- */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 88px 0;
  border-top: 1px solid var(--border);
}
.svc-detail:first-of-type { border-top: none; padding-top: 24px; }
.svc-detail-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.svc-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-detail.flip .svc-detail-img { order: 2; }
.svc-num-big {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 18px;
}
.svc-detail h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.svc-concept {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}
.svc-text {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 2;
  color: var(--text-2);
  margin-bottom: 26px;
}
.svc-features {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.svc-features li {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
}
.svc-features li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}

/* --- 物件一覧（3列） --- */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* --- 会社情報テーブル --- */
.profile-table { width: 100%; border-collapse: collapse; }
.profile-table th {
  width: 200px;
  text-align: left;
  font-weight: 400;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.profile-table td {
  padding: 20px 0 20px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.9;
}

/* --- CTAバンド --- */
.cta-band {
  position: relative;
  text-align: center;
  padding: 128px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.cta-band .section-eyebrow { justify-content: center; }
.cta-band .section-eyebrow::before { display: none; }
.cta-band .section-title { margin-bottom: 40px; }
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- アクセスマップ --- */
.map-frame {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
  filter: grayscale(1) invert(0.92) contrast(0.9);
}
.light .map-frame { filter: grayscale(1); }

/* --- お問い合わせカード --- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
.contact-card {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 40px 28px;
  text-align: center;
}
.contact-card .cc-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 18px;
  color: var(--accent);
}
.contact-card .cc-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}
.contact-card .cc-value {
  font-size: 17px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 6px;
}
.contact-card .cc-note {
  font-size: 11px;
  color: var(--text-3);
}

/* --- アットホームバナー --- */
.athome-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 24px 36px;
  transition: border-color 0.3s, transform 0.4s var(--ease-spring);
}
.athome-link:hover {
  border-color: var(--accent-mid);
  transform: translateY(-3px);
}
.athome-link .ah-mark {
  font-family: var(--font-display);
  font-size: 26px;
  color: #ff6600;
  font-weight: 600;
  line-height: 1;
}
.athome-link .ah-text {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.7;
  text-align: left;
}

/* --- フォーム注記 --- */
.form-note {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.8;
}

/* --- 下層レスポンシブ --- */
@media (max-width: 1200px) {
  .page-hero { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 960px) {
  .svc-detail { grid-template-columns: 1fr; gap: 36px; padding: 56px 0; }
  .svc-detail.flip .svc-detail-img { order: 0; }
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-hero { padding: 150px 24px 64px; }
  .listing-grid { grid-template-columns: 1fr; }
  .profile-table th { display: block; width: auto; padding: 16px 0 0; border-bottom: none; }
  .profile-table td { display: block; padding: 6px 0 16px; }
}

/* ===========================
   SERVICE ROWS（トップのサービス紹介・行レイアウト）
=========================== */
.svc-rows {
  border-top: 1px solid var(--border);
}
.svc-row {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1.1fr 1fr 60px;
  align-items: center;
  gap: 44px;
  padding: 48px 36px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
}
.svc-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,200,83,0.07), rgba(0,200,83,0.02));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.55s var(--ease-out);
}
.svc-row:hover::before { transform: scaleY(1); }
.svc-row > * { position: relative; }

.svc-row-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.28);
  transition: -webkit-text-stroke-color 0.4s;
}
.svc-row:hover .svc-row-num {
  color: var(--accent);
  -webkit-text-stroke-color: transparent;
}
.light .svc-row-num { -webkit-text-stroke-color: rgba(0,0,0,0.25); }
.light .svc-row:hover .svc-row-num { -webkit-text-stroke-color: transparent; }

.svc-row-en {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 10px;
}
.svc-row-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.3;
  transition: transform 0.45s var(--ease-out);
}
.svc-row:hover .svc-row-title { transform: translateX(10px); }

.svc-row-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--text-2);
}

.svc-row-arrow {
  justify-self: end;
  font-size: 22px;
  color: var(--text-3);
  transition: transform 0.45s var(--ease-out), color 0.45s;
}
.svc-row:hover .svc-row-arrow {
  transform: translateX(10px);
  color: var(--accent);
}

@media (max-width: 960px) {
  .svc-row {
    grid-template-columns: 80px 1fr;
    gap: 8px 24px;
    padding: 36px 20px;
  }
  .svc-row-num { grid-row: 1 / 3; align-self: start; }
  .svc-row-body { grid-column: 2; }
  .svc-row-arrow { display: none; }
}

/* ===========================
   SERVICE CARDS 背景強化
=========================== */
#services .section-wrap::before {
  content: '';
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72vw;
  height: 56vh;
  background: radial-gradient(ellipse, rgba(0,200,83,0.055) 0%, transparent 68%);
  filter: blur(36px);
  pointer-events: none;
}
.service-card {
  background: linear-gradient(168deg, #111311 0%, #0a0a0a 55%, #0c100d 100%);
}
.service-card:hover {
  background: linear-gradient(168deg, #151815 0%, #0d0d0d 55%, #0e130f 100%);
}
.service-card-ghost {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 92px;
  font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.07);
  pointer-events: none;
  user-select: none;
  transition: -webkit-text-stroke-color 0.5s, transform 0.5s var(--ease-out);
}
.service-card:hover .service-card-ghost {
  -webkit-text-stroke-color: rgba(0,200,83,0.4);
  transform: translateY(-6px);
}

/* ===========================
   モバイル文字サイズ調整（全体的に1〜2px拡大）
=========================== */
@media (max-width: 768px) {
  /* ヒーロー */
  .hero-eyebrow { font-size: 11px; }
  .hero-title-jp { font-size: 16px; }
  .hero-sub { font-size: 14px; line-height: 2.05; }

  /* 見出し・リード */
  .section-title { font-size: clamp(36px, 9vw, 52px); }
  .section-lead, .page-lead { font-size: 15px; }
  .section-eyebrow { font-size: 11px; }

  /* ミッション */
  .mission-quote { font-size: clamp(30px, 7.5vw, 40px); }
  .mission-text { font-size: 15px; }

  /* サービス */
  .service-title { font-size: 26px; }
  .service-body { font-size: 14px; }
  .service-link { font-size: 11px; }
  .service-num { font-size: 11px; }

  /* サービス詳細（下層） */
  .svc-text { font-size: 14.5px; }
  .svc-features li { font-size: 14px; }
  .svc-concept { font-size: 14px; }

  /* 物件カード */
  .prop-category { font-size: 10px; }
  .prop-name { font-size: 21px; }
  .prop-location { font-size: 13px; }
  .prop-price { font-size: 24px; }

  /* 会社概要 */
  .about-point { font-size: 14px; }
  .profile-table th { font-size: 11px; }
  .profile-table td { font-size: 15px; }

  /* お問い合わせ */
  .meta-label { font-size: 9px; }
  .meta-value { font-size: 15px; }
  .form-label { font-size: 10px; }
  .form-control { font-size: 16px; } /* iOSの入力時自動ズーム防止も兼ねる */
  .form-control::placeholder { font-size: 14px; }
  .form-note { font-size: 12px; }
  .cc-value { font-size: 18px; }
  .cc-note { font-size: 12px; }
  .cc-label { font-size: 10px; }

  /* ボタン */
  .btn-primary, .btn-ghost, .form-submit { font-size: 11.5px; padding: 16px 38px; }
  .nav-cta { font-size: 11px; }

  /* マーキー・バナー */
  .mq { font-size: 16px; }
  .parallax-label { font-size: 10px; }

  /* フッター */
  .footer-tagline { font-size: 14px; }
  .footer-links a { font-size: 15px; }
  .footer-col-label { font-size: 11px; }
  .footer-copy { font-size: 11px; }

  /* バッジ類 */
  .hero-badge-text { font-size: 10px; }
}
