    :root {
      --bg: #f7f5ef;
      --paper: #fffdf8;
      --ink: #1e2420;
      --muted: #667069;
      --green: #18352c;
      --green-2: #25483d;
      --line: #ded8ca;
      --gold: #b89a63;
      --soft: #ece7dc;
      --shadow: 0 22px 60px rgba(30, 36, 32, .08);
      --radius: 8px;
      --font-serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
      --font-sans: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Noto Sans JP", "Segoe UI", sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--ink);
      font-family: var(--font-sans);
      line-height: 1.85;
      letter-spacing: 0;
    }
    body.nav-open { overflow: hidden; }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; }
    .container {
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
    }
    .section {
      padding: 76px 0;
      scroll-margin-top: 88px;
    }
    .section.alt { background: #fffaf1; }
    .eyebrow {
      margin: 0 0 10px;
      color: var(--gold);
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    h1, h2, h3 {
      margin: 0;
      color: var(--green);
      font-family: var(--font-serif);
      font-weight: 600;
      line-height: 1.45;
    }
    h1 { font-size: clamp(2.35rem, 8vw, 4.8rem); }
    h2 { font-size: clamp(1.75rem, 5vw, 3rem); }
    h3 { font-size: 1.25rem; }
    p { margin: 0; }
    .lead {
      margin-top: 18px;
      color: #3e4942;
      font-size: 1.02rem;
    }
    .narrow { max-width: 780px; }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid rgba(222, 216, 202, .78);
      background: rgba(247, 245, 239, .92);
      backdrop-filter: blur(18px);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 72px;
      gap: 20px;
    }
    .brand {
      display: inline-flex;
      flex-direction: row;
      align-items: center;
      color: var(--green);
      font-family: var(--font-serif);
      font-size: 1.45rem;
      font-weight: 700;
      line-height: 1;
    }
    .brand span {
      margin-top: 5px;
      color: var(--muted);
      font-family: var(--font-sans);
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .12em;
    }

    /* Brand logo styling */
    .brand .brand-logo {
      flex: 0 0 auto;
      width: 186px;
      height: auto;
      margin-bottom: 0;
    }
    .nav {
      display: flex;
      align-items: center;
      gap: 22px;
      color: #34423a;
      font-size: .9rem;
      font-weight: 700;
    }
    .nav a { padding: 10px 0; }
    .nav a:hover { color: var(--gold); }
    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      color: var(--green);
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      display: block;
      width: 18px;
      height: 2px;
      background: currentColor;
      content: "";
      transition: transform .2s ease, opacity .2s ease;
    }
    .menu-toggle span::before { transform: translateY(-7px); }
    .menu-toggle span::after { transform: translateY(5px); }
    .nav-open .menu-toggle span { transform: rotate(45deg); }
    .nav-open .menu-toggle span::before { opacity: 0; }
    .nav-open .menu-toggle span::after { transform: translateY(-2px) rotate(-90deg); }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 12px 18px;
      border: 1px solid var(--green);
      border-radius: var(--radius);
      background: var(--green);
      color: #fff;
      font-weight: 800;
      line-height: 1.35;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }
    .btn:hover { transform: translateY(-1px); background: var(--green-2); }
    .btn.secondary { background: transparent; color: var(--green); }
    .btn.secondary:hover { background: rgba(24, 53, 44, .06); }
    .btn.gold { border-color: var(--gold); background: var(--gold); color: #1f241f; }
    .hero {
      position: relative;
      overflow: hidden;
      min-height: calc(100vh - 72px);
      padding: 84px 0 54px;
      background:
        linear-gradient(105deg, rgba(247,245,239,.98) 0%, rgba(247,245,239,.92) 48%, rgba(24,53,44,.14) 100%),
        radial-gradient(circle at 86% 24%, rgba(184,154,99,.18), transparent 34%),
        linear-gradient(135deg, #f7f5ef, #ede7dc);
    }
    .hero::after {
      position: absolute;
      inset: auto 0 0;
      height: 1px;
      background: var(--line);
      content: "";
    }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
      align-items: center;
      gap: 48px;
    }
    .service-mark {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 22px;
      color: var(--green);
      font-weight: 800;
    }
    .service-mark::before {
      width: 34px;
      height: 1px;
      background: var(--gold);
      content: "";
    }
    .hero-sub {
      max-width: 760px;
      margin-top: 22px;
      color: #39473f;
      font-size: 1.05rem;
    }
    .hero-actions, .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }
    .microcopy {
      margin-top: 14px;
      color: var(--muted);
      font-size: .9rem;
    }
    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
      padding: 0;
      list-style: none;
    }
    .tags li {
      border: 1px solid rgba(184,154,99,.42);
      border-radius: 999px;
      background: rgba(255,253,248,.76);
      color: #39443e;
      padding: 7px 12px;
      font-size: .82rem;
      font-weight: 700;
    }
    .service-shortcuts {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }
    .service-shortcut {
      display: grid;
      min-height: 188px;
      place-items: center;
      gap: 10px;
      border: 1px solid rgba(184,154,99,.38);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(255,253,248,.96), rgba(236,231,220,.72)),
        var(--paper);
      padding: 22px 18px;
      text-align: center;
      box-shadow: 0 14px 36px rgba(30,36,32,.04);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .service-shortcut:hover {
      transform: translateY(-2px);
      border-color: var(--gold);
      box-shadow: 0 18px 42px rgba(30,36,32,.07);
    }
    .service-shortcut img,
    .service-shortcut .service-badge {
      width: 88px;
      height: 88px;
      margin: 0;
      border-radius: 50%;
      background: #fffdf8;
      object-fit: contain;
    }
    .service-shortcut strong {
      color: var(--green);
      font-family: var(--font-serif);
      font-size: 1.24rem;
      line-height: 1.35;
    }
    .service-shortcut span {
      color: #3f4b44;
      font-size: .9rem;
      font-weight: 800;
      line-height: 1.55;
    }
    .hero-panel {
      border: 1px solid rgba(222,216,202,.92);
      border-radius: var(--radius);
      background: rgba(255,253,248,.82);
      box-shadow: var(--shadow);
      padding: 26px;
    }
    .panel-title {
      color: var(--green);
      font-family: var(--font-serif);
      font-size: 1.45rem;
      line-height: 1.5;
    }
    .panel-list {
      display: grid;
      gap: 14px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }
    .panel-list li {
      display: grid;
      grid-template-columns: 30px 1fr;
      gap: 12px;
      align-items: start;
      color: #3d4942;
      font-weight: 700;
    }
    .num {
      display: inline-grid;
      place-items: center;
      width: 30px;
      height: 30px;
      border: 1px solid rgba(184,154,99,.5);
      border-radius: 50%;
      color: var(--gold);
      font-size: .78rem;
      font-weight: 800;
    }
    .grid {
      display: grid;
      gap: 18px;
    }
    .grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      padding: 24px;
      box-shadow: 0 14px 36px rgba(30,36,32,.04);
    }
    .issue-card {
      min-height: 96px;
      display: flex;
      align-items: center;
      color: #34413a;
      font-weight: 800;
    }
    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 28px;
      align-items: end;
      margin-bottom: 34px;
    }
    .section-head .lead { max-width: 620px; }
    .check-list {
      display: grid;
      gap: 10px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }
    .check-list li {
      position: relative;
      padding-left: 20px;
      color: #3f4b44;
    }
    .check-list li::before {
      position: absolute;
      left: 0;
      top: .78em;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
      content: "";
    }
    .service-card {
      display: flex;
      flex-direction: column;
      gap: 18px;
      overflow: hidden;
    }
    .service-card .kana {
      color: var(--gold);
      font-size: .82rem;
      font-weight: 800;
      letter-spacing: .08em;
    }

    /* Service card icon styling */
    .service-card img {
      width: 64px;
      height: auto;
      margin-bottom: 12px;
    }
    .service-card .service-photo {
      width: calc(100% + 48px);
      max-width: none;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      margin: -24px -24px 18px;
      border-bottom: 1px solid var(--line);
    }
    .service-card .service-icon {
      width: 56px;
      height: auto;
      margin-bottom: 12px;
    }
    .section-image {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 14px 36px rgba(30,36,32,.06);
    }
    .service-badge {
      display: inline-grid;
      place-items: center;
      width: 64px;
      height: 64px;
      margin-bottom: 12px;
      border: 1px solid rgba(184,154,99,.52);
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(255,253,248,.96), rgba(236,231,220,.86));
      color: var(--green);
      font-family: var(--font-serif);
      font-size: 1.45rem;
      font-weight: 700;
    }
    .highlight-list {
      display: grid;
      gap: 12px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }
    .highlight-list li {
      border-left: 3px solid var(--gold);
      background: rgba(184,154,99,.09);
      padding: 12px 14px;
      color: #34413a;
      font-weight: 800;
    }
    .feature-band {
      border: 1px solid rgba(184,154,99,.45);
      background:
        linear-gradient(135deg, rgba(255,253,248,.96), rgba(236,231,220,.78)),
        var(--paper);
      box-shadow: var(--shadow);
      padding: clamp(26px, 5vw, 48px);
    }
    .coupon {
      margin-top: 24px;
      border-left: 3px solid var(--gold);
      background: rgba(184,154,99,.1);
      padding: 16px 18px;
      color: var(--green);
      font-weight: 800;
    }
    .note {
      margin-top: 16px;
      color: var(--muted);
      font-size: .9rem;
    }
    .mini-label {
      display: inline-flex;
      margin-bottom: 12px;
      border: 1px solid rgba(184,154,99,.45);
      border-radius: 999px;
      padding: 5px 10px;
      color: var(--gold);
      font-size: .76rem;
      font-weight: 800;
      letter-spacing: .06em;
    }
    .price-group {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .price-card h3 { margin-bottom: 16px; }
    .table-wrap { overflow-x: auto; }
    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 340px;
      font-size: .94rem;
    }
    th, td {
      padding: 12px 10px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
    }
    th {
      color: var(--green);
      font-size: .82rem;
      font-weight: 800;
      white-space: nowrap;
    }
    td:last-child, th:last-child {
      text-align: right;
      white-space: nowrap;
      font-weight: 800;
    }
    .flow {
      counter-reset: step;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .flow li {
      counter-increment: step;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      padding: 22px;
      color: #34413a;
      font-weight: 800;
    }
    .flow li::before {
      display: block;
      margin-bottom: 14px;
      color: var(--gold);
      font-size: .8rem;
      letter-spacing: .08em;
      content: "STEP " counter(step, decimal-leading-zero);
    }
    .area-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }
    .area-list li {
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--paper);
      padding: 9px 15px;
      font-weight: 800;
    }
    .faq-list {
      display: grid;
      gap: 10px;
    }
    details {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      padding: 0 18px;
    }
    summary {
      cursor: pointer;
      padding: 18px 26px 18px 0;
      color: var(--green);
      font-weight: 800;
      list-style: none;
      position: relative;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gold);
      content: "+";
      font-size: 1.2rem;
    }
    details[open] summary::after { content: "-"; }
    details p {
      border-top: 1px solid var(--line);
      padding: 16px 0 20px;
      color: #435049;
    }
    .message {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: 34px;
      align-items: start;
    }
    .signature {
      margin-top: 24px;
      color: var(--green);
      font-family: var(--font-serif);
      font-size: 1.2rem;
    }
    .voice-card p {
      color: #34413a;
      font-weight: 800;
    }
    .voice-card cite {
      display: block;
      margin-top: 16px;
      color: var(--muted);
      font-style: normal;
      font-size: .9rem;
    }
    .final-cta {
      background: var(--green);
      color: #fff;
    }
    .final-cta h2 { color: #fff; }
    .final-cta .lead, .final-cta .microcopy { color: rgba(255,255,255,.78); }
    .final-cta .btn.secondary {
      border-color: rgba(255,255,255,.6);
      color: #fff;
    }
    .final-cta .btn.secondary:hover { background: rgba(255,255,255,.1); }
    .site-footer {
      padding: 42px 0;
      background: #111815;
      color: rgba(255,255,255,.72);
      font-size: .9rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap: 24px;
    }
    .footer-title {
      color: #fff;
      font-family: var(--font-serif);
      font-size: 1.5rem;
      line-height: 1;
    }
    .footer-col strong {
      display: block;
      margin-bottom: 10px;
      color: #fff;
    }
    .footer-col a {
      display: block;
      margin: 7px 0;
    }
    .copyright {
      margin-top: 32px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.12);
      color: rgba(255,255,255,.48);
    }
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    .profile {
      display: grid;
      grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
      gap: 32px;
      align-items: start;
    }
    .profile-photo {
      width: 100%;
      height: auto;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      object-position: center 20%;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }
    .profile-copy {
      display: grid;
      gap: 14px;
      color: #3d4942;
    }

    @media (max-width: 920px) {
      .hero-grid, .message, .profile, .grid.three, .grid.four, .price-group, .flow {
        grid-template-columns: 1fr;
      }
      .service-shortcuts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .grid.two { grid-template-columns: 1fr; }
      .section-head {
        display: block;
      }
      .hero {
        min-height: auto;
        padding-top: 56px;
      }
      .hero-panel { padding: 22px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 760px) {
      .container { width: min(100% - 24px, 1120px); }
      .section { padding: 58px 0; }
      .header-inner { min-height: 64px; }
      .menu-toggle { display: inline-flex; }
      .nav {
        position: fixed;
        left: 12px;
        right: 12px;
        top: 74px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--paper);
        box-shadow: var(--shadow);
        padding: 8px;
      }
      .nav-open .nav { display: flex; }
      .nav a {
        padding: 14px 12px;
        border-bottom: 1px solid var(--line);
      }
      .nav a:last-child { border-bottom: 0; }
      .brand { font-size: 1.25rem; }
      .brand .brand-logo { width: 142px; }
      .brand span { display: none; }
      .hero-actions .btn, .cta-row .btn {
        width: 100%;
      }
      .tags li { font-size: .78rem; }
      .service-shortcuts { gap: 12px; }
      .service-shortcut {
        min-height: 162px;
        padding: 18px 12px;
      }
      .service-shortcut img,
      .service-shortcut .service-badge {
        display: grid;
        width: 72px;
        height: 72px;
        visibility: visible;
        opacity: 1;
      }
      .service-photo,
      .service-icon,
      .section-image {
        display: block;
        visibility: visible;
        opacity: 1;
      }
      .service-shortcut strong { font-size: 1.08rem; }
      .service-shortcut span { font-size: .82rem; }
      .card { padding: 20px; }
      .service-card .service-photo {
        width: calc(100% + 40px);
        margin: -20px -20px 18px;
      }
      .feature-band { padding: 22px; }
      .footer-grid { grid-template-columns: 1fr; }
      table { min-width: 0; }
      th, td { padding: 11px 8px; }
      td:last-child, th:last-child { text-align: left; }
    }

    /* ---- 下層ページ用 ---- */
    .breadcrumb {
      border-bottom: 1px solid var(--line);
      background: rgba(255,253,248,.6);
      color: var(--muted);
      font-size: .82rem;
      font-weight: 700;
    }
    .breadcrumb .container {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 0;
      flex-wrap: wrap;
    }
    .breadcrumb a { color: var(--green); }
    .breadcrumb a:hover { color: var(--gold); }
    .breadcrumb span:last-child { color: var(--muted); }
    .page-hero {
      padding: 64px 0 56px;
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(105deg, rgba(247,245,239,.98) 0%, rgba(247,245,239,.92) 48%, rgba(24,53,44,.14) 100%),
        radial-gradient(circle at 86% 24%, rgba(184,154,99,.18), transparent 34%),
        linear-gradient(135deg, #f7f5ef, #ede7dc);
    }
    .page-hero h1 { font-size: clamp(1.9rem, 6vw, 3.4rem); }
    .page-hero .hero-sub { margin-top: 20px; }
    .service-more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: auto;
      color: var(--green);
      font-size: .88rem;
      font-weight: 800;
    }
    .service-more:hover { color: var(--gold); }
    @media (max-width: 760px) {
      .page-hero { padding: 44px 0 40px; }
    }


    /* ---- スマホ固定CTAバー ---- */
    .sticky-cta { display: none; }
    @media (max-width: 760px) {
      body { padding-bottom: 74px; }
      .sticky-cta {
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 80;
        display: grid;
        grid-template-columns: 1.35fr 1fr;
        gap: 8px;
        padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
        background: rgba(255,253,248,.96);
        border-top: 1px solid var(--line);
        backdrop-filter: blur(14px);
        box-shadow: 0 -6px 22px rgba(30,36,32,.10);
      }
      .sticky-cta a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
        border-radius: var(--radius);
        font-size: .96rem;
        font-weight: 800;
      }
      .sticky-line { background: var(--gold); color: #1f241f; border: 1px solid var(--gold); }
      .sticky-tel { background: var(--green); color: #fff; border: 1px solid var(--green); }
    }

    /* ---- 相談ハードルを下げる注記 ---- */
    .easeoff {
      margin-top: 18px;
      border-left: 3px solid var(--gold);
      background: rgba(184,154,99,.09);
      padding: 14px 16px;
      color: #34413a;
      font-size: .92rem;
      font-weight: 700;
      line-height: 1.8;
    }
    .final-cta .easeoff {
      border-left-color: rgba(255,255,255,.55);
      background: rgba(255,255,255,.08);
      color: rgba(255,255,255,.9);
    }
