    /* ===== DESIGN TOKENS ===== */
    :root {
      --bg: #FAF7F4;
      --main: #E8806A;
      --sub: #C5B8D8;
      --accent: #C9917B;
      --text: #2D2525;
      --heading: #2D2525;
      --muted: #8A7A78;
      --line: #E8DDD8;
      --fv-grad-start: #FDE8E0;
      --fv-grad-end: #D5E0F5;
    }

    /* ===== RESET / BASE ===== */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: 'Zen Kaku Gothic New', sans-serif;
      line-height: 1.85;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; }

    h1, h2, h3, .lead, .btn, summary {
      word-break: auto-phrase;
      text-wrap: pretty;
    }

    /* ===== SKIP LINK ===== */
    .skip-link {
      position: absolute;
      top: -60px;
      left: 16px;
      background: var(--main);
      color: #fff;
      padding: 8px 16px;
      border-radius: 4px;
      font-size: 14px;
      z-index: 9999;
      text-decoration: none;
      transition: top 0.2s;
    }
    .skip-link:focus { top: 12px; }

    /* ===== COMMON ===== */
    .l-wrap { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
    .l-wrap--narrow { width: min(820px, calc(100% - 48px)); margin: 0 auto; }

    /* ===== HEADER ===== */
    .c-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 14px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
    }
    .c-header.is-scrolled {
      background: rgba(250,247,244,0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 var(--line);
      padding: 10px 28px;
    }
    .c-header__logo {
      text-decoration: none;
      display: flex;
      flex-direction: column;
      line-height: 1;
    }
    .c-header__logo-en {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: var(--heading);
    }
    .c-header__logo-ja {
      font-size: 10px;
      letter-spacing: 0.18em;
      color: var(--muted);
      margin-top: 3px;
    }
    .c-header__nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .c-header__nav a {
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
      letter-spacing: 0.08em;
      transition: color 0.2s;
    }
    .c-header__nav a:hover { color: var(--main); }
    .c-header__nav-list { display: contents; }
    .c-header__cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--main);
      color: #fff !important;
      text-decoration: none;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      padding: 10px 20px;
      border-radius: 99px;
      transition: background 0.25s, box-shadow 0.25s;
      box-shadow: 0 8px 20px -10px rgba(232,128,106,0.7);
    }
    .c-header__cta:hover {
      background: #d06a54;
      box-shadow: 0 12px 24px -10px rgba(232,128,106,0.85);
    }
    .c-header__burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .c-header__burger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .c-header__drawer {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(250,247,244,0.97);
      backdrop-filter: blur(12px);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    .c-header__drawer.is-open { display: flex; }
    .c-header__drawer a {
      font-family: 'Shippori Mincho', serif;
      font-size: 22px;
      text-decoration: none;
      color: var(--heading);
      letter-spacing: 0.08em;
    }
    .c-header__drawer-close {
      position: absolute;
      top: 18px;
      right: 22px;
      background: none;
      border: none;
      font-size: 28px;
      cursor: pointer;
      color: var(--text);
    }
    @media (max-width: 768px) {
      .c-header__nav { display: none; }
      .c-header__burger { display: flex; }
    }

    /* ===== HERO (Full-bleed LineDraw) ===== */
    .c-hero {
      position: relative;
      width: 100vw;
      left: 50%;
      margin-left: -50vw;
      min-height: 100vh;
      overflow: hidden;
      background: #1A100D;
      display: flex;
      align-items: center;
    }
    .c-hero__bg {
      position: absolute;
      inset: 0;
      z-index: 1;
    }
    .c-hero__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      filter: saturate(.82) brightness(.66);
      animation: heroKen 28s ease-in-out infinite alternate;
      transform-origin: 60% 46%;
    }
    @keyframes heroKen {
      from { transform: scale(1.04); }
      to   { transform: scale(1.15); }
    }
    .c-hero__veil {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background: linear-gradient(
        105deg,
        rgba(26,16,13,.96) 0%,
        rgba(26,16,13,.80) 42%,
        rgba(26,16,13,.26) 100%
      );
    }
    .c-hero__vign {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      box-shadow: inset 0 0 260px rgba(0,0,0,.72);
    }
    .c-hero__grain {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      opacity: .32;
      mix-blend-mode: overlay;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
      background-size: 190px;
    }
    .c-hero__lines {
      position: absolute;
      inset: 0;
      z-index: 2;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }
    .c-hero__lines path { fill: none; stroke-linecap: round; }
    .c-hero__inner {
      position: relative;
      z-index: 3;
      width: min(1240px, calc(100% - 48px));
      margin: 0 auto;
      padding: 140px 0 100px;
    }
    .c-hero__copy {
      max-width: 580px;
      display: grid;
      gap: 22px;
    }
    .c-hero__label {
      font-family: 'Cormorant Garamond', serif;
      font-size: 11px;
      letter-spacing: 0.34em;
      color: var(--accent);
      text-transform: uppercase;
      display: inline-flex;
      gap: 14px;
      align-items: center;
      opacity: 0;
    }
    .c-hero__label::before {
      content: "";
      width: 30px;
      height: 1px;
      background: var(--main);
      flex-shrink: 0;
    }
    .c-hero__h1 {
      font-family: 'Shippori Mincho', serif;
      font-weight: 700;
      font-size: clamp(44px, 6.8vw, 82px);
      line-height: 1.28;
      margin: 0;
      color: #FAF7F4;
      letter-spacing: .02em;
      text-shadow: 0 4px 52px rgba(0,0,0,.55);
    }
    .c-hero__h1 .sr-line { overflow: hidden; display: block; }
    .c-hero__h1 .sr-inner { display: block; will-change: transform; }
    .c-hero__h1 .mk { color: var(--main); }
    .c-hero__sub {
      color: rgba(250,247,244,.82);
      font-size: 15.5px;
      line-height: 2;
      max-width: 28em;
      opacity: 0;
    }
    .c-hero__actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      opacity: 0;
    }
    .c-hero__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.06em;
      min-height: 52px;
      padding: 14px 28px;
      border-radius: 2px;
      border: 1px solid transparent;
      transition: transform .2s ease, background .2s ease, color .2s ease;
    }
    .c-hero__btn:hover { transform: translateY(-2px); }
    .c-hero__btn--primary {
      background: var(--main);
      color: #fff;
    }
    .c-hero__btn--primary:hover { background: #d06a54; }
    .c-hero__btn--secondary {
      background: transparent;
      color: rgba(250,247,244,.9);
      border-color: rgba(250,247,244,.35);
    }
    .c-hero__btn--secondary:hover {
      background: rgba(250,247,244,.1);
      border-color: rgba(250,247,244,.6);
    }
    .c-hero__trust {
      display: inline-flex;
      flex-wrap: wrap;
      border: 1px solid rgba(250,247,244,.2);
      border-radius: 2px;
      justify-self: start;
      opacity: 0;
    }
    .c-hero__trust-item {
      padding: 12px 20px;
      border-right: 1px solid rgba(250,247,244,.15);
    }
    .c-hero__trust-item:last-child { border-right: 0; }
    .c-hero__trust-item strong {
      display: block;
      color: #FAF7F4;
      font-size: 13px;
      font-family: 'Shippori Mincho', serif;
      font-weight: 700;
    }
    .c-hero__trust-item span {
      font-size: 10.5px;
      color: rgba(250,247,244,.5);
      letter-spacing: .05em;
    }
    @media (prefers-reduced-motion: reduce) {
      .c-hero__bg img { animation: none; transform: scale(1.05); }
    }
    @media (max-width: 768px) {
      .c-hero__inner { padding: 120px 0 80px; }
      .c-hero__copy { max-width: 100%; }
      .c-hero__trust { width: 100%; }
      .c-hero__trust-item { flex: 1; border-right: 0; border-bottom: 1px solid rgba(250,247,244,.15); }
      .c-hero__trust-item:last-child { border-bottom: 0; }
    }

    /* ===== EMPATHY ===== */
    .c-empathy {
      position: relative;
      padding: 112px 0 120px;
      background: #1E1814;
      color: #F4F1EA;
      overflow: hidden;
    }
    .c-empathy::before {
      content: "";
      position: absolute;
      top: -160px;
      right: -100px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,145,123,0.12), transparent 66%);
      pointer-events: none;
    }
    .c-empathy__inner { position: relative; z-index: 1; }
    .c-empathy__time {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: clamp(68px, 12vw, 132px);
      line-height: 1;
      letter-spacing: 0.01em;
      color: #F4F1EA;
    }
    .c-empathy__time .c-empathy__colon {
      display: inline-block;
      animation: em-blink 1.4s steps(1, end) infinite;
      color: var(--accent);
    }
    @keyframes em-blink {
      0%, 60% { opacity: 1; }
      61%, 100% { opacity: 0.15; }
    }
    .c-empathy__dow {
      font-family: 'Cormorant Garamond', serif;
      font-size: 11px;
      letter-spacing: 0.32em;
      color: rgba(244,241,234,0.45);
      text-transform: uppercase;
      margin-top: 6px;
      display: block;
    }
    .c-empathy h2 {
      font-family: 'Shippori Mincho', serif;
      font-weight: 600;
      font-size: clamp(22px, 3.6vw, 36px);
      line-height: 1.65;
      margin: 36px 0 0;
      color: #F4F1EA;
    }
    .c-empathy__list {
      margin: 52px 0 0;
      border-left: 1px solid rgba(244,241,234,0.16);
      padding-left: 0;
    }
    .c-empathy__item {
      position: relative;
      margin: 0;
      padding: 14px 0 14px 32px;
      color: rgba(244,241,234,0.7);
      font-size: 15px;
      line-height: 2;
    }
    .c-empathy__item::before {
      content: "";
      position: absolute;
      left: -3px;
      top: 26px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--accent);
    }
    .c-empathy__item b { color: #F4F1EA; font-weight: 700; }
    .c-empathy__turn {
      display: grid;
      grid-template-columns: 1px minmax(0, 1fr);
      gap: 24px;
      margin-top: 60px;
      align-items: stretch;
    }
    .c-empathy__turn-line {
      background: linear-gradient(var(--accent), rgba(201,145,123,0.15));
      width: 1px;
    }
    .c-empathy__turn-text {
      margin: 0;
      font-family: 'Shippori Mincho', serif;
      font-size: clamp(16px, 2vw, 20px);
      line-height: 2.1;
      color: #EFE9DD;
    }
    .c-empathy__turn-text small {
      display: block;
      font-family: 'Zen Kaku Gothic New', sans-serif;
      font-size: 12.5px;
      color: rgba(244,241,234,0.45);
      margin-top: 10px;
      letter-spacing: 0.06em;
    }
    @media (max-width: 768px) {
      .c-empathy { padding: 84px 0 96px; }
      .c-empathy__item { font-size: 14px; padding-left: 24px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .c-empathy__colon { animation: none; }
    }

    /* ===== INTRO (問題提起) ===== */
    .c-intro {
      padding: 0;
      background: var(--bg);
    }
    .c-intro__split {
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      align-items: stretch;
      min-height: 72vh;
    }
    .c-intro__photo {
      position: relative;
      overflow: hidden;
      border-radius: 0 20px 20px 0;
    }
    .c-intro__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.12);
    }
    .c-intro__copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 88px 64px 88px 56px;
    }
    .c-intro__label {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 0.28em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 24px;
      display: block;
    }
    .c-intro h2 {
      font-family: 'Shippori Mincho', serif;
      font-weight: 700;
      font-size: clamp(22px, 2.8vw, 34px);
      line-height: 1.6;
      margin: 0 0 28px;
      color: var(--heading);
    }
    .c-intro__poem {
      font-family: 'Shippori Mincho', serif;
      font-size: clamp(15px, 1.4vw, 17px);
      line-height: 2.5;
      color: var(--text);
    }
    .c-intro__poem span { display: block; }
    .c-intro__emphasis {
      margin-top: 36px;
      padding: 22px 24px;
      border-left: 3px solid var(--main);
      background: rgba(232,128,106,0.06);
      border-radius: 0 8px 8px 0;
    }
    .c-intro__emphasis p {
      margin: 0;
      font-family: 'Shippori Mincho', serif;
      font-size: clamp(15px, 1.5vw, 17px);
      line-height: 2;
      color: var(--heading);
    }
    @media (max-width: 768px) {
      .c-intro__split { grid-template-columns: 1fr; }
      .c-intro__photo { aspect-ratio: 4/3; border-radius: 0; }
      .c-intro__copy { padding: 56px 28px; }
    }

    /* ===== FEATURES (解決策) ===== */
    .c-features {
      padding: 112px 0;
      background: #F4F0EB;
      position: relative;
      overflow: hidden;
    }
    .c-features__inner {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 72px;
      align-items: center;
    }
    .c-features__img-col { position: relative; }
    .c-features__img-wrap {
      position: relative;
      aspect-ratio: 4/5;
      overflow: hidden;
      border-radius: 4px;
      box-shadow: 0 40px 80px -40px rgba(45,37,37,0.45);
      clip-path: inset(0 0 0 0);
    }
    .c-features__img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      will-change: transform;
    }
    .c-features__big-word {
      display: block;
      margin: -0.3em 0 0 -3%;
      position: relative;
      z-index: 3;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: clamp(44px, 6vw, 100px);
      letter-spacing: 0.06em;
      line-height: 0.85;
      color: var(--heading);
    }
    .c-features__eyebrow {
      font-family: 'Cormorant Garamond', serif;
      font-size: 12px;
      letter-spacing: 0.2em;
      color: var(--accent);
      font-weight: 600;
      text-transform: uppercase;
    }
    .c-features h2 {
      font-family: 'Shippori Mincho', serif;
      font-weight: 700;
      font-size: clamp(22px, 3vw, 36px);
      line-height: 1.5;
      margin: 12px 0 32px;
      color: var(--heading);
    }
    .c-features h2 .mk { color: var(--main); }
    .c-features__list {
      display: grid;
      gap: 0;
      border-top: 1px solid var(--line);
    }
    .c-features__item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 24px;
      align-items: start;
      padding: 24px 4px;
      border-bottom: 1px solid var(--line);
    }
    .c-features__num {
      font-family: 'Shippori Mincho', serif;
      font-weight: 700;
      font-size: 32px;
      line-height: 1;
      color: transparent;
      -webkit-text-stroke: 1.2px var(--accent);
    }
    .c-features__item h3 {
      font-family: 'Shippori Mincho', serif;
      font-size: clamp(17px, 1.9vw, 22px);
      font-weight: 700;
      margin: 0 0 8px;
    }
    .c-features__item p {
      color: var(--muted);
      font-size: 14px;
      margin: 0;
      line-height: 1.9;
    }
    .c-features__tag {
      display: inline-block;
      margin-top: 8px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 11px;
      letter-spacing: 0.1em;
      color: var(--accent);
    }
    @media (max-width: 860px) {
      .c-features { padding: 84px 0; }
      .c-features__inner { grid-template-columns: 1fr; gap: 52px; }
      .c-features__img-wrap { aspect-ratio: 4/3; }
    }

    /* ===== NUMBERS (実績) ===== */
    .c-numbers {
      padding: 112px 0;
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }
    .c-numbers__eyebrow {
      font-family: 'Cormorant Garamond', serif;
      font-size: 12px;
      letter-spacing: 0.3em;
      color: var(--accent);
      text-transform: uppercase;
      display: block;
      margin-bottom: 18px;
    }
    .c-numbers__hero {
      display: grid;
      grid-template-columns: 1.3fr 0.9fr;
      align-items: center;
      gap: 24px;
      margin-top: 4px;
    }
    .c-numbers__lead {
      font-family: 'Shippori Mincho', serif;
      font-weight: 700;
      font-size: clamp(18px, 2.2vw, 26px);
      margin: 0 0 4px;
      color: var(--heading);
    }
    .c-numbers__big {
      font-family: 'Shippori Mincho', serif;
      font-weight: 800;
      color: var(--main);
      line-height: 0.82;
      letter-spacing: -0.02em;
      font-size: clamp(100px, 20vw, 260px);
      display: flex;
      align-items: flex-start;
    }
    .c-numbers__big .u {
      font-size: 0.24em;
      margin-top: 0.4em;
      color: var(--accent);
    }
    .c-numbers__photo { position: relative; }
    .c-numbers__photo img {
      width: 100%;
      height: 340px;
      object-fit: cover;
      border-radius: 14px;
      border: 6px solid var(--bg);
      box-shadow: 0 28px 56px -28px rgba(45,37,37,0.5);
      clip-path: inset(0 0 100% 0);
    }
    .c-numbers__subs {
      display: flex;
      gap: 40px;
      margin-top: 36px;
      flex-wrap: wrap;
      border-top: 1px solid var(--line);
      padding-top: 28px;
    }
    .c-numbers__sub-val {
      font-family: 'Shippori Mincho', serif;
      font-weight: 800;
      font-size: 32px;
      color: var(--heading);
    }
    .c-numbers__sub-val .u { font-size: 0.48em; color: var(--accent); }
    .c-numbers__sub-label { color: var(--muted); font-size: 13px; margin-top: 2px; }
    @media (max-width: 768px) {
      .c-numbers { padding: 84px 0; }
      .c-numbers__hero { grid-template-columns: 1fr; }
      .c-numbers__photo img { height: 220px; }
      .c-numbers__subs { gap: 28px; }
    }

    /* ===== VOICE (お客様の声) ===== */
    .c-voice {
      padding: 112px 0;
      background: #F4F0EB;
      position: relative;
      overflow: hidden;
    }
    .c-voice__head { margin-bottom: 64px; }
    .c-voice__eyebrow {
      font-family: 'Cormorant Garamond', serif;
      font-size: 12px;
      letter-spacing: 0.26em;
      color: var(--accent);
      font-weight: 600;
      text-transform: uppercase;
      display: inline-flex;
      gap: 12px;
      align-items: center;
    }
    .c-voice__eyebrow::before {
      content: "";
      width: 28px;
      height: 1px;
      background: currentColor;
    }
    .c-voice h2 {
      font-family: 'Shippori Mincho', serif;
      font-weight: 700;
      font-size: clamp(24px, 3.4vw, 38px);
      margin: 12px 0 0;
      color: var(--heading);
    }
    .c-voice__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .c-voice__card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 16px 36px -20px rgba(45,37,37,0.15);
    }
    .c-voice__card-body { padding: 24px 26px 28px; }
    .c-voice__qm {
      font-family: 'Cormorant Garamond', serif;
      font-size: 48px;
      line-height: 0.7;
      color: var(--sub);
      display: block;
      margin-bottom: 10px;
    }
    .c-voice__card-text {
      font-family: 'Shippori Mincho', serif;
      font-size: 15px;
      line-height: 1.9;
      color: var(--text);
      margin: 0 0 16px;
    }
    .c-voice__card-by {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--muted);
    }
    .c-voice__card-by::before {
      content: "";
      width: 22px;
      height: 1px;
      background: var(--accent);
    }
    @media (max-width: 768px) {
      .c-voice { padding: 84px 0; }
      .c-voice__grid { grid-template-columns: 1fr; }
    }

    /* ===== BEFORE / AFTER ===== */
    .c-ba {
      padding: 112px 0 120px;
      background: #1A100D;
      overflow: hidden;
    }
    .c-ba__head { text-align: center; margin-bottom: 56px; }
    .c-ba__eyebrow {
      font-family: 'Cormorant Garamond', serif;
      font-size: 11px;
      letter-spacing: 0.34em;
      color: var(--accent);
      text-transform: uppercase;
      display: inline-flex;
      gap: 12px;
      align-items: center;
      margin-bottom: 16px;
    }
    .c-ba__eyebrow::before, .c-ba__eyebrow::after {
      content: "";
      width: 28px;
      height: 1px;
      background: var(--main);
    }
    .c-ba h2 {
      font-family: 'Shippori Mincho', serif;
      font-weight: 700;
      font-size: clamp(26px, 3.5vw, 40px);
      color: #FAF7F4;
      margin: 0 0 12px;
    }
    .c-ba__note { font-size: 12px; color: rgba(250,247,244,.45); letter-spacing: .04em; }
    .c-ba__scroll {
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      cursor: grab;
      user-select: none;
    }
    .c-ba__scroll::-webkit-scrollbar { display: none; }
    .c-ba__scroll.is-dragging { cursor: grabbing; }
    .c-ba__track {
      display: flex;
      gap: 24px;
      padding: 8px min(72px, 5vw) 8px;
      width: max-content;
    }
    .c-ba__card {
      scroll-snap-align: center;
      flex: 0 0 clamp(300px, 70vw, 520px);
    }
    .c-ba__compare {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
      border-radius: 8px;
      touch-action: pan-y;
      cursor: ew-resize;
    }
    .c-ba__img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      pointer-events: none;
    }
    .c-ba__after-wrap {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }
    .c-ba__after-wrap img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .c-ba__label {
      position: absolute;
      top: 14px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 11px;
      letter-spacing: .22em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 2px;
      z-index: 4;
    }
    .c-ba__label--before { left: 14px; background: rgba(0,0,0,.52); color: rgba(250,247,244,.75); }
    .c-ba__label--after { right: 14px; background: var(--main); color: #fff; }
    .c-ba__divider {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 3px;
      background: #fff;
      z-index: 3;
      transform: translateX(-50%);
      pointer-events: none;
    }
    .c-ba__handle {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 4px 20px rgba(0,0,0,.35);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }
    .c-ba__handle::before {
      content: "";
      border-width: 5px 7px 5px 0;
      border-style: solid;
      border-color: transparent var(--main) transparent transparent;
    }
    .c-ba__handle::after {
      content: "";
      border-width: 5px 0 5px 7px;
      border-style: solid;
      border-color: transparent transparent transparent var(--main);
    }
    .c-ba__caption { margin: 16px 0 0; color: rgba(250,247,244,.65); font-size: 13px; text-align: center; letter-spacing: .06em; }
    .c-ba__dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
    .c-ba__dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(250,247,244,.25);
      transition: background .3s, transform .3s;
    }
    .c-ba__dot.is-active { background: var(--main); transform: scale(1.4); }
    @media (max-width: 768px) {
      .c-ba { padding: 84px 0 96px; }
      .c-ba__card { flex: 0 0 85vw; }
    }

    /* ===== REASONS (選ばれる理由) ===== */
    .c-reasons { padding: 112px 0; background: var(--bg); position: relative; }
    .c-reasons__head { text-align: center; margin-bottom: 64px; }
    .c-reasons__eyebrow {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(22px, 3vw, 30px);
      letter-spacing: 0.12em;
      color: var(--accent);
    }
    .c-reasons h2 {
      font-family: 'Shippori Mincho', serif;
      font-weight: 600;
      font-size: clamp(22px, 3.2vw, 34px);
      margin: 8px 0 0;
      letter-spacing: 0.04em;
      color: var(--heading);
    }
    .c-reasons__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
    .c-reasons__card {
      border-top: 1px solid var(--line);
      padding: 36px 40px 36px 0;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 24px;
      align-items: start;
    }
    .c-reasons__card:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--line); }
    .c-reasons__card:nth-child(even) { padding-left: 40px; }
    .c-reasons__card:nth-child(3), .c-reasons__card:nth-child(4) { border-bottom: 1px solid var(--line); }
    .c-reasons__no {
      font-family: 'Shippori Mincho', serif;
      font-weight: 600;
      font-size: 36px;
      color: transparent;
      -webkit-text-stroke: 1px var(--sub);
      line-height: 1;
    }
    .c-reasons__no small {
      font-family: 'Cormorant Garamond', serif;
      font-size: 11px;
      letter-spacing: 0.2em;
      display: block;
      margin-top: 4px;
      -webkit-text-stroke: 0;
      color: var(--muted);
    }
    .c-reasons__card h3 {
      font-family: 'Shippori Mincho', serif;
      font-size: clamp(17px, 1.8vw, 20px);
      font-weight: 700;
      margin: 0 0 10px;
      color: var(--heading);
    }
    .c-reasons__card p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.9; }
    @media (max-width: 768px) {
      .c-reasons { padding: 84px 0; }
      .c-reasons__grid { grid-template-columns: 1fr; }
      .c-reasons__card { padding: 28px 0 !important; border-right: none !important; }
      .c-reasons__card:last-child { border-bottom: 1px solid var(--line); }
    }

    /* ===== MESSAGE (代表メッセージ) ===== */
    .c-message { padding: 120px 0 140px; background: #F0EAE3; position: relative; overflow: hidden; }
    .c-message__spread { display: grid; grid-template-columns: 280px 1fr; gap: 0 64px; align-items: start; }
    .c-message__left { position: relative; }
    .c-message__vlabel {
      position: absolute;
      left: -14px;
      top: 0;
      writing-mode: vertical-rl;
      font-family: 'Cormorant Garamond', serif;
      font-size: 11px;
      letter-spacing: 0.34em;
      text-transform: uppercase;
      color: var(--accent);
    }
    .c-message__portrait { margin-left: 28px; aspect-ratio: 4/5; overflow: hidden; clip-path: inset(0 0 100% 0); border-radius: 4px; }
    .c-message__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
    .c-message__meta { margin: 20px 0 0 28px; }
    .c-message__role { font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; }
    .c-message__name { font-family: 'Shippori Mincho', serif; font-size: 22px; font-weight: 700; margin-top: 4px; color: var(--heading); }
    .c-message__right { padding-top: 6px; }
    .c-message__kicker {
      font-family: 'Cormorant Garamond', serif;
      font-size: 11px;
      letter-spacing: 0.3em;
      color: var(--accent);
      text-transform: uppercase;
      border-bottom: 1px solid var(--heading);
      padding-bottom: 12px;
      display: block;
    }
    .c-message h2 {
      font-family: 'Shippori Mincho', serif;
      font-weight: 700;
      font-size: clamp(18px, 2.2vw, 26px);
      line-height: 1.7;
      margin: 28px 0 0;
      color: var(--heading);
    }
    .c-message__body {
      font-family: 'Shippori Mincho', serif;
      font-weight: 500;
      font-size: clamp(16px, 1.5vw, 18px);
      line-height: 2.15;
      margin-top: 24px;
      max-width: 30em;
    }
    .c-message__body p { margin: 0 0 1.4em; }
    .c-message__body .c-message__drop {
      float: left;
      font-family: 'Shippori Mincho', serif;
      font-weight: 800;
      font-size: clamp(72px, 9vw, 120px);
      line-height: 0.74;
      margin: 6px 18px -6px 0;
      color: var(--accent);
    }
    .c-message__body .c-message__lead-line { font-size: clamp(19px, 2.2vw, 26px); font-weight: 600; line-height: 1.5; }
    @media (max-width: 860px) {
      .c-message { padding: 84px 0 100px; }
      .c-message__spread { grid-template-columns: 1fr; gap: 32px; }
      .c-message__vlabel { position: static; writing-mode: horizontal-tb; margin-bottom: 8px; }
      .c-message__portrait { margin-left: 0; max-width: 220px; }
      .c-message__meta { margin-left: 0; }
    }

    /* ===== PRICING (料金メニュー) ===== */
    .c-pricing { padding: 112px 0 120px; background: #F7F3EE; position: relative; overflow: hidden; }
    .c-pricing::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(1100px 400px at 50% -6%, rgba(201,145,123,0.08), transparent 70%);
      pointer-events: none;
    }
    .c-pricing__head { text-align: center; margin-bottom: 56px; }
    .c-pricing__eyebrow { font-family: 'Cormorant Garamond', serif; font-size: 12px; letter-spacing: 0.34em; color: var(--accent); text-transform: uppercase; display: block; }
    .c-pricing h2 { font-family: 'Shippori Mincho', serif; font-weight: 700; font-size: clamp(26px, 4vw, 42px); line-height: 1.5; margin: 12px 0 0; color: var(--heading); }
    .c-pricing__lead { color: var(--muted); font-size: 14px; margin: 14px auto 0; max-width: 34em; }
    .c-pricing__sheet { background: #FFFDF9; border: 1px solid #DCD2C2; border-radius: 4px; padding: 52px clamp(22px, 6vw, 64px) 46px; box-shadow: 0 28px 56px -44px rgba(45,37,37,0.35); }
    .c-pricing__tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
    .c-pricing__tab {
      padding: 8px 20px;
      border-radius: 99px;
      border: 1.5px solid var(--line);
      background: transparent;
      font-size: 13px;
      font-weight: 700;
      color: var(--muted);
      cursor: pointer;
      font-family: 'Zen Kaku Gothic New', sans-serif;
      transition: all 0.2s;
    }
    .c-pricing__tab.is-active, .c-pricing__tab:hover { background: var(--main); color: #fff; border-color: var(--main); }
    .c-pricing__panel { display: none; }
    .c-pricing__panel.is-active { display: block; }
    .c-pricing__group { margin-bottom: 40px; }
    .c-pricing__group:last-of-type { margin-bottom: 8px; }
    .c-pricing__group-head { display: flex; align-items: center; gap: 14px; font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: 16px; letter-spacing: 0.1em; margin: 0 0 10px; color: var(--heading); }
    .c-pricing__tick { width: 20px; height: 1px; background: var(--accent); flex: none; }
    .c-pricing__rule { flex: 1; height: 1px; background: var(--line); transform-origin: left center; }
    .c-pricing__row { padding: 18px 2px 16px; border-bottom: 1px solid rgba(220,210,194,0.55); }
    .c-pricing__row:last-child { border-bottom: none; }
    .c-pricing__ln { display: flex; align-items: baseline; gap: 12px; }
    .c-pricing__ln b { font-weight: 700; font-size: 15px; letter-spacing: 0.04em; }
    .c-pricing__dots { flex: 1; min-width: 24px; height: 1em; border-bottom: 2px dotted #C9BCA6; transform-origin: left center; }
    .c-pricing__price { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 20px; letter-spacing: 0.02em; color: var(--heading); white-space: nowrap; }
    .c-pricing__price i { font-style: normal; font-size: 13px; margin-right: 2px; color: var(--muted); }
    .c-pricing__price em { font-style: normal; font-size: 12px; font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500; color: var(--muted); margin-left: 2px; }
    .c-pricing__row small { display: block; color: var(--muted); font-size: 12.5px; margin-top: 3px; line-height: 1.7; }
    .c-pricing__note { color: var(--muted); font-size: 12.5px; margin: 28px 4px 0; padding-top: 18px; border-top: 1px solid var(--line); line-height: 1.85; }
    @media (max-width: 768px) {
      .c-pricing { padding: 84px 0 96px; }
      .c-pricing__sheet { padding: 36px 20px 32px; }
      .c-pricing__price { font-size: 18px; }
    }

    /* ===== FAQ ===== */
    .c-faq { padding: 112px 0; background: var(--bg); position: relative; overflow: hidden; }
    .c-faq__head { text-align: center; margin-bottom: 52px; }
    .c-faq__eyebrow { font-family: 'Cormorant Garamond', serif; font-size: 12px; letter-spacing: 0.3em; color: var(--accent); text-transform: uppercase; display: block; }
    .c-faq h2 { font-family: 'Shippori Mincho', serif; font-weight: 700; font-size: clamp(24px, 3.6vw, 38px); margin: 10px 0 0; color: var(--heading); }
    .c-faq__chat { display: flex; flex-direction: column; gap: 22px; padding: 0 48px; }
    .c-faq__pair { display: flex; flex-direction: column; gap: 10px; }
    .c-faq__bbl { max-width: 78%; padding: 14px 20px; font-size: 15px; position: relative; line-height: 1.8; }
    .c-faq__q { align-self: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 6px 18px 18px 18px; box-shadow: 0 12px 28px -20px rgba(45,37,37,0.35); font-weight: 700; color: var(--heading); }
    .c-faq__q::before {
      content: "Q";
      position: absolute;
      left: -42px;
      top: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--heading);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 14px;
    }
    .c-faq__a { align-self: flex-end; background: var(--main); color: #fff; border-radius: 18px 6px 18px 18px; box-shadow: 0 14px 28px -16px rgba(232,128,106,0.65); }
    .c-faq__a::before {
      content: "A";
      position: absolute;
      right: -42px;
      top: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #FDE8E0;
      color: var(--main);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 14px;
    }
    @media (max-width: 768px) {
      .c-faq { padding: 84px 0; }
      .c-faq__chat { padding: 0 36px; }
      .c-faq__bbl { max-width: 100%; font-size: 14px; }
    }

    /* ===== CTA ===== */
    .c-cta { position: relative; padding: 108px 0 0; background: #F4F1EA; overflow: hidden; }
    .c-cta__grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
    .c-cta__photo-frame {
      position: relative;
      justify-self: center;
      transform: rotate(-2.4deg);
      background: #FFFDF7;
      border: 1px solid #E7DFD2;
      padding: 12px 12px 56px;
      box-shadow: 0 32px 60px -40px rgba(45,37,37,0.5);
      width: min(320px, 100%);
    }
    .c-cta__photo-frame img { display: block; width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; filter: saturate(0.92); }
    .c-cta__photo-caption { position: absolute; bottom: 14px; left: 0; right: 0; text-align: center; font-family: 'Shippori Mincho', serif; font-size: 13px; color: var(--muted); letter-spacing: 0.08em; }
    .c-cta__photo-frame::before {
      content: "";
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%) rotate(1.5deg);
      width: 90px;
      height: 24px;
      background: rgba(197,154,60,0.22);
      border-left: 1px dashed rgba(197,154,60,0.4);
      border-right: 1px dashed rgba(197,154,60,0.4);
    }
    .c-cta__eyebrow { font-family: 'Cormorant Garamond', serif; font-size: 12px; letter-spacing: 0.34em; color: var(--accent); text-transform: uppercase; display: block; }
    .c-cta h2 { font-family: 'Shippori Mincho', serif; font-weight: 700; font-size: clamp(26px, 3.8vw, 42px); line-height: 1.55; margin: 16px 0 0; color: var(--heading); }
    .c-cta__u { position: relative; z-index: 0; }
    .c-cta__u i { position: absolute; left: 0; right: 0; bottom: 4px; height: 0.32em; background: rgba(232,128,106,0.2); z-index: -1; transform-origin: left center; display: block; }
    .c-cta__body { color: var(--muted); font-size: 14.5px; margin: 20px 0 0; max-width: 34em; line-height: 1.95; }
    .c-cta__chips-label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; color: var(--heading); margin: 28px 0 10px; }
    .c-cta__chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
    .c-cta__chips li { border: 1px solid var(--line); background: #FFFDF7; border-radius: 999px; padding: 7px 16px; font-size: 13px; color: var(--heading); }
    .c-cta__chips li::before { content: "〝"; color: var(--accent); margin-right: 1px; }
    .c-cta__chips li::after { content: "〟"; color: var(--accent); margin-left: 1px; }
    .c-cta__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin: 32px 0 0; }
    .c-cta__btn { display: inline-flex; align-items: center; gap: 10px; color: #F7F3EE; text-decoration: none; font-weight: 700; font-size: 14px; letter-spacing: 0.08em; padding: 16px 28px; border-radius: 4px; transition: background 0.25s, box-shadow 0.25s; }
    .c-cta__btn--line { background: #06C755; box-shadow: 0 14px 28px -18px rgba(6,199,85,0.8); }
    .c-cta__btn--line:hover { background: #05a847; }
    .c-cta__btn--form { background: var(--main); box-shadow: 0 14px 28px -18px rgba(232,128,106,0.75); }
    .c-cta__btn--form:hover { background: #d06a54; }
    .c-cta__strip { margin-top: 72px; border-top: 1px solid var(--line); background: #F7F3EE; }
    .c-cta__strip-inner { width: min(1080px, calc(100% - 56px)); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 24px 0; }
    .c-cta__strip-item { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 13.5px; font-weight: 500; color: var(--text); }
    .c-cta__strip-item svg { width: 18px; height: 18px; flex: 0 0 auto; }
    @media (max-width: 980px) {
      .c-cta__grid { grid-template-columns: 1fr; gap: 48px; }
      .c-cta__photo-frame { width: min(280px, 80%); }
    }
    @media (max-width: 768px) {
      .c-cta { padding: 80px 0 0; }
      .c-cta__strip-inner { grid-template-columns: 1fr; gap: 10px; padding: 20px 0; }
      .c-cta__strip-item { justify-content: flex-start; }
      .c-cta__actions { gap: 14px; }
      .c-cta__btn { font-size: 13px; padding: 14px 22px; }
    }

    /* ===== FOOTER ===== */
    .c-footer { background: #1E1814; color: rgba(244,241,234,0.85); }
    .c-footer__main { width: min(1120px, calc(100% - 56px)); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding: 64px 0 56px; }
    .c-footer__brand-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; letter-spacing: 0.08em; color: #FAF7F4; margin-bottom: 4px; }
    .c-footer__brand-name small { display: block; font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 11px; letter-spacing: 0.18em; color: rgba(244,241,234,0.45); margin-top: 4px; }
    .c-footer__tagline { font-size: 12.5px; color: rgba(244,241,234,0.55); margin: 16px 0 20px; line-height: 2; }
    .c-footer__nap { font-size: 12.5px; color: rgba(244,241,234,0.65); line-height: 2.1; }
    .c-footer__nap address { font-style: normal; }
    .c-footer__nap a { color: inherit; text-decoration: none; }
    .c-footer__nap a:hover { color: var(--accent); }
    .c-footer__col-head { font-family: 'Cormorant Garamond', serif; font-size: 10px; letter-spacing: 0.28em; color: var(--accent); text-transform: uppercase; margin: 0 0 14px; }
    .c-footer__links { list-style: none; margin: 0; padding: 0; }
    .c-footer__links li { margin-bottom: 8px; }
    .c-footer__links a { text-decoration: none; font-size: 13px; color: rgba(244,241,234,0.7); transition: color 0.2s; }
    .c-footer__links a:hover { color: var(--accent); }
    .c-footer__legal { border-top: 1px solid rgba(244,241,234,0.1); padding: 18px 0 22px; }
    .c-footer__legal-inner { width: min(1120px, calc(100% - 56px)); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
    .c-footer__legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
    .c-footer__legal-links a { text-decoration: none; font-size: 11.5px; color: rgba(244,241,234,0.45); transition: color 0.2s; }
    .c-footer__legal-links a:hover { color: rgba(244,241,234,0.8); }
    .c-footer__copy { font-family: 'Cormorant Garamond', serif; font-size: 10px; letter-spacing: 0.14em; color: rgba(244,241,234,0.35); }
    @media (max-width: 768px) {
      .c-footer__main { grid-template-columns: 1fr; gap: 36px; padding: 48px 0 40px; }
      .c-footer__legal-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
    }
