  /* ---------- Reset ---------- */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --white: #ffffff;
    --off-white: #fafaf8;
    --ink: #1a1a1a;
    --ink-soft: #333333;
    --gray: #767676;
    --gray-light: #b8b8b8;
    --line: #e5e3df;
    --footer: #3d3631;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: "Shippori Mincho", "Noto Serif JP", "游明朝", "Yu Mincho", serif;
    background: var(--white);
    color: var(--ink);
    line-height: 2;
    font-size: 15.5px;
    font-weight: 400;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  ::selection { background: rgba(26,26,26,0.15); }

  /* ---------- Header ---------- */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 28px 0;
    transition: all 0.5s ease;
    background: transparent;
  }
  header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 18px 0;
    border-bottom: 1px solid rgba(229,227,223,0.6);
  }
  .header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.28em;
    color: var(--white);
    transition: color 0.5s ease;
  }
  header.scrolled .logo { color: var(--ink); }

  nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
  }
  nav a {
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--white);
    transition: opacity 0.3s ease, color 0.5s ease;
    position: relative;
  }
  header.scrolled nav a { color: var(--ink); }
  nav a:hover { opacity: 0.65; }
  nav a.current::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 50%;
    width: 16px;
    height: 1px;
    background: currentColor;
    transform: translateX(-50%);
    opacity: 0.7;
  }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
  }
  .menu-toggle span {
    width: 22px;
    height: 1px;
    background: var(--white);
    transition: 0.3s;
  }
  header.scrolled .menu-toggle span { background: var(--ink); }

  /* ---------- Page Hero (compact) ---------- */
  .page-hero {
    position: relative;
    min-height: 62vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-hero-bg {
    position: absolute;
    inset: 0;
    background: #0a0a0a;
    z-index: 1;
  }
  .page-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 32px 0;
    color: var(--white);
    animation: fadeUp 1.4s ease 0.3s both;
  }
  .page-hero-tag {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.5em;
    margin-bottom: 30px;
    opacity: 0.9;
    text-transform: uppercase;
  }
  .page-hero h1 {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: clamp(34px, 6vw, 60px);
    letter-spacing: 0.18em;
    margin-bottom: 40px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.2);
  }
  .page-hero-line {
    width: 50px;
    height: 1px;
    background: rgba(255,255,255,0.7);
    margin: 0 auto 36px;
  }
  .page-hero-sub {
    font-size: 15px;
    line-height: 2.2;
    letter-spacing: 0.12em;
    opacity: 0.92;
    font-weight: 300;
  }

  /* ---------- Page Intro ---------- */
  .page-intro {
    padding: 120px 0 80px;
    background: var(--white);
    text-align: center;
  }
  .page-intro-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .page-intro-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.4em;
    color: var(--gray);
    margin-bottom: 22px;
    text-transform: uppercase;
  }
  .page-intro h2 {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: clamp(22px, 3vw, 28px);
    letter-spacing: 0.14em;
    margin-bottom: 50px;
    line-height: 1.8;
  }
  .page-intro p {
    font-size: 16px;
    line-height: 2.5;
    color: var(--ink-soft);
    margin-bottom: 28px;
  }
  .page-intro p:last-child { margin-bottom: 0; }

  /* ---------- Service Block ---------- */
  .service-block {
    padding: 130px 0;
    position: relative;
  }
  .service-block:nth-of-type(even) {
    background: var(--off-white);
  }

  .block-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .block-header {
    text-align: center;
    margin-bottom: 70px;
  }
  .block-num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 28px;
    color: var(--gray);
    margin-bottom: 22px;
    letter-spacing: 0.1em;
  }
  .block-title {
    font-family: "Shippori Mincho", serif;
    font-size: clamp(26px, 3.8vw, 34px);
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--ink);
    margin-bottom: 26px;
    line-height: 1.5;
  }
  .block-lead {
    font-family: "Shippori Mincho", serif;
    font-size: 16.5px;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    line-height: 2;
    max-width: 640px;
    margin: 0 auto;
  }
  .block-divider {
    width: 30px;
    height: 1px;
    background: var(--ink);
    opacity: 0.5;
    margin: 30px auto 0;
  }

  .block-desc {
    max-width: 720px;
    margin: 0 auto 90px;
    text-align: center;
  }
  .block-desc p {
    font-size: 15.5px;
    line-height: 2.4;
    color: var(--ink-soft);
    margin-bottom: 28px;
  }
  .block-desc p:last-child { margin-bottom: 0; }
  .block-desc .quote {
    font-family: "Shippori Mincho", serif;
    font-size: 17px;
    color: var(--ink);
    line-height: 2.3;
    margin-bottom: 36px;
    letter-spacing: 0.06em;
  }

  /* ---------- Lists Grid ---------- */
  .block-lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    max-width: 1000px;
    margin: 0 auto 80px;
  }
  .block-lists.two-col {
    grid-template-columns: 1fr 1fr;
    max-width: 720px;
  }

  .list-col {
    display: flex;
    flex-direction: column;
  }
  .list-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.4em;
    color: var(--gray);
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .list-title {
    font-family: "Shippori Mincho", serif;
    font-size: 17.5px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.14em;
    margin-bottom: 26px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }
  .list-col ul {
    list-style: none;
  }
  .list-col li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    font-size: 14.5px;
    line-height: 1.95;
    color: var(--ink-soft);
  }
  .list-col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 12px;
    height: 1px;
    background: var(--ink);
    opacity: 0.5;
  }

  /* ---------- Sub Block (for Mama section) ---------- */
  .sub-block {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 70px 50px;
    margin-bottom: 28px;
  }
  .service-block:nth-of-type(even) .sub-block {
    background: var(--off-white);
  }
  .sub-block-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .sub-num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.4em;
    color: var(--gray);
    margin-bottom: 16px;
    text-transform: uppercase;
  }
  .sub-title {
    font-family: "Shippori Mincho", serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--ink);
    margin-bottom: 18px;
    line-height: 1.6;
  }
  .sub-lead {
    font-size: 14.5px;
    color: var(--ink-soft);
    letter-spacing: 0.08em;
    line-height: 1.9;
  }

  /* ---------- Block CTA ---------- */
  .block-cta {
    text-align: center;
    margin-top: 20px;
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 38px;
    font-family: "Shippori Mincho", serif;
    font-size: 13.5px;
    letter-spacing: 0.2em;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--white);
  }
  .btn:hover {
    background: transparent;
    color: var(--ink);
  }
  .btn .arrow { transition: transform 0.4s ease; }
  .btn:hover .arrow { transform: translateX(6px); }

  .btn-line {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
  }
  .btn-line:hover {
    background: var(--ink);
    color: var(--white);
  }

  /* ---------- Closing ---------- */
  .closing {
    background: var(--ink);
    color: var(--white);
    text-align: center;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }
  .closing::before {
    content: 'RE:START';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-size: clamp(120px, 22vw, 280px);
    color: rgba(255,255,255,0.03);
    letter-spacing: 0.05em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
  }
  .closing-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
  }
  .closing-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.4em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    text-transform: uppercase;
  }
  .closing h2 {
    font-family: "Shippori Mincho", serif;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 400;
    margin-bottom: 50px;
    letter-spacing: 0.14em;
    color: var(--white);
    line-height: 1.8;
  }
  .closing p {
    font-size: 15.5px;
    line-height: 2.5;
    color: rgba(255,255,255,0.85);
    margin-bottom: 26px;
    font-weight: 300;
  }
  .closing-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 70px;
  }
  .closing .btn {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
  }
  .closing .btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
  }
  .closing .btn.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
  }
  .closing .btn.btn-outline:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
  }

  .closing-email {
    margin-top: 50px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
  }
  .closing-email-label {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .closing-email-link {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 4px;
    transition: all 0.3s ease;
  }
  .closing-email-link:hover {
    border-color: var(--white);
    opacity: 0.85;
  }

  /* ---------- Footer ---------- */
  footer {
    background: var(--footer);
    color: rgba(255,255,255,0.85);
    padding: 90px 0 40px;
  }
  .footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
  }
  .footer-brand .logo {
    color: var(--white) !important;
    font-size: 26px;
    margin-bottom: 16px;
    display: inline-block;
  }
  .footer-tag-line {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 28px;
  }
  .footer-brand p {
    font-size: 13.5px;
    line-height: 2.1;
    color: rgba(255,255,255,0.6);
  }
  .footer-col h4 {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.85);
    margin-bottom: 26px;
    text-transform: uppercase;
  }
  .footer-col ul { list-style: none; }
  .footer-col li {
    margin-bottom: 14px;
    font-size: 14px;
  }
  .footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
    letter-spacing: 0.08em;
  }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.45);
  }

  /* ---------- Animations ---------- */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease, transform 1.2s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 900px) {
    .header-inner { padding: 0 24px; }
    nav { display: none; }
    nav.open {
      display: block;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: #1a1a1a;
      padding: 100px 30px 30px;
      z-index: 150;
    }
    nav.open ul {
      flex-direction: column;
      gap: 30px;
      align-items: center;
    }
    nav.open a { color: var(--white) !important; font-size: 16px; }
    .menu-toggle { display: flex; z-index: 200; position: relative; }
    .menu-toggle.open span { background: var(--white) !important; }
    .menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    body.menu-open header,
    body.menu-open header.scrolled {
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border-bottom-color: transparent;
    }
    body.menu-open header.scrolled .logo { color: var(--white); }
    body.menu-open { overflow: hidden; }

    .page-hero { min-height: 55vh; }
    .page-hero-inner { padding: 80px 24px 0; }
    .page-hero h1 {
      font-size: clamp(26px, 7vw, 38px);
      letter-spacing: 0.1em;
      line-height: 1.6;
    }
    .page-hero-tag { font-size: 12px; letter-spacing: 0.4em; margin-bottom: 22px; }
    .page-hero-sub { font-size: 13.5px; line-height: 2.0; }

    .page-intro { padding: 80px 0 60px; }

    .service-block { padding: 80px 0; }
    .block-header { margin-bottom: 50px; }
    .block-desc { margin-bottom: 60px; }
    .block-lists, .block-lists.two-col {
      grid-template-columns: 1fr;
      gap: 50px;
      margin-bottom: 60px;
    }
    .sub-block { padding: 50px 28px; }

    .block-cta {
      display: flex;
      flex-direction: column;
      gap: 14px;
      align-items: stretch;
    }
    .block-cta .btn { width: 100%; justify-content: center; }

    .closing { padding: 90px 0; }
    .closing-cta { flex-direction: column; gap: 14px; }
    .closing-cta .btn { width: 100%; justify-content: center; }

    .footer-top {
      grid-template-columns: 1fr;
      gap: 40px;
      padding-bottom: 40px;
    }
    .footer-inner { padding: 0 24px; }
  }

  @media (max-width: 480px) {
    body { font-size: 14.5px; }
    .btn { padding: 16px 28px; font-size: 13px; }
    .block-inner { padding: 0 24px; }
  }

  /* ---------- For-whom / outcomes list ---------- */
  .target-list {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    list-style: none;
  }
  .target-list li {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 20px 24px;
    font-size: 14.5px;
    line-height: 1.9;
    color: var(--ink-soft);
    position: relative;
    padding-left: 40px;
    transition: all 0.3s ease;
  }
  .target-list li::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 32px;
    width: 10px;
    height: 1px;
    background: var(--ink);
    opacity: 0.5;
  }
  .target-list li:hover {
    border-color: var(--ink);
  }

  .outcomes-list {
    max-width: 720px;
    margin: 0 auto;
    list-style: none;
    display: grid;
    gap: 14px;
  }
  .outcomes-list li {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 22px 28px 22px 50px;
    font-size: 15px;
    line-height: 1.95;
    color: var(--ink-soft);
    position: relative;
  }
  .outcomes-list li::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 34px;
    width: 14px;
    height: 1px;
    background: var(--ink);
    opacity: 0.6;
  }

  /* ---------- FAQ ---------- */
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
  }
  .faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 30px 36px;
    transition: all 0.3s ease;
  }
  .faq-item:hover {
    border-color: var(--ink);
  }
  .faq-q {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
  }
  .faq-q-mark {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 20px;
    color: var(--gray);
    line-height: 1.3;
    flex-shrink: 0;
    font-weight: 500;
  }
  .faq-q-text {
    font-family: "Shippori Mincho", serif;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
  .faq-a {
    padding-left: 36px;
    font-size: 14.5px;
    line-height: 2.1;
    color: var(--ink-soft);
  }

  /* ---------- Value card (大切にしていること) ---------- */
  .value-blocks {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
  }
  .value-block {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 40px 44px;
  }
  .value-block-num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--gray);
    margin-bottom: 16px;
    text-transform: uppercase;
  }
  .value-block h3 {
    font-family: "Shippori Mincho", serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }
  .value-block p {
    font-size: 14.5px;
    line-height: 2.1;
    color: var(--ink-soft);
    margin-bottom: 14px;
  }
  .value-block p:last-child { margin-bottom: 0; }

  /* ---------- "見つめること" sub-blocks variant ---------- */
  .look-blocks {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 28px;
  }
  .look-block {
    border-left: 1px solid var(--line);
    padding: 8px 0 8px 36px;
  }
  .look-block-num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--gray);
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .look-block h3 {
    font-family: "Shippori Mincho", serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: 0.1em;
    line-height: 1.65;
  }
  .look-block p {
    font-size: 14.5px;
    line-height: 2.2;
    color: var(--ink-soft);
    margin-bottom: 14px;
  }
  .look-block p:last-child { margin-bottom: 0; }

  /* ---------- Steps as flow with line ---------- */
  .flow-list {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
  }
  .flow-list::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    bottom: 30px;
    width: 1px;
    background: var(--line);
  }
  .flow-step {
    display: flex;
    gap: 28px;
    margin-bottom: 24px;
    align-items: flex-start;
    position: relative;
  }
  .flow-step:last-child { margin-bottom: 0; }
  .flow-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
  }
  .flow-num .flow-label {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--gray);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 3px;
  }
  .flow-num .flow-number {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--ink);
    line-height: 1;
  }
  .flow-content {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 24px 28px;
    margin-top: 4px;
  }
  .flow-content h3 {
    font-family: "Shippori Mincho", serif;
    font-size: 16.5px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: 0.08em;
  }
  .flow-content p {
    font-size: 14.5px;
    line-height: 2;
    color: var(--ink-soft);
  }

  /* ---------- Section style override for service detail pages ---------- */
  .service-block.alt { background: var(--off-white); }

  /* ---------- Big intro narrative ---------- */
  .narrative {
    max-width: 720px;
    margin: 0 auto 70px;
    text-align: center;
  }
  .narrative p {
    font-size: 15.5px;
    line-height: 2.45;
    color: var(--ink-soft);
    margin-bottom: 24px;
  }
  .narrative p:last-child { margin-bottom: 0; }
  .narrative .emphasis {
    font-family: "Shippori Mincho", serif;
    font-size: 18px;
    color: var(--ink);
    font-weight: 500;
    line-height: 2.2;
    margin: 32px 0;
    letter-spacing: 0.06em;
  }

  /* ---------- Responsive additions ---------- */
  @media (max-width: 900px) {
    .target-list { grid-template-columns: 1fr; }
    .value-block { padding: 32px 28px; }
    .look-block { padding: 6px 0 6px 24px; }
    .flow-list::before { left: 25px; }
    .flow-step { gap: 18px; }
    .flow-num { width: 50px; height: 50px; }
    .flow-num .flow-number { font-size: 16px; }
    .flow-content { padding: 22px 22px; }
    .faq-item { padding: 26px 24px; }
    .faq-a { padding-left: 0; }
  }


  /* ---------- Form CTA (consult form invitation) ---------- */
  .form-cta {
    background: var(--off-white);
    padding: 110px 0;
    text-align: center;
    position: relative;
  }
  .form-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
  }
  .form-cta-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.4em;
    color: var(--gray);
    margin-bottom: 22px;
    text-transform: uppercase;
  }
  .form-cta-title {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: clamp(22px, 3vw, 28px);
    letter-spacing: 0.14em;
    line-height: 1.8;
    color: var(--ink);
    margin-bottom: 0;
  }
  .form-cta-divider {
    width: 30px;
    height: 1px;
    background: var(--ink);
    margin: 26px auto 30px;
    opacity: 0.5;
  }
  .form-cta-text {
    font-size: 15px;
    line-height: 2.2;
    color: var(--ink-soft);
    margin-bottom: 44px;
  }
  .form-cta .btn {
    background: var(--ink);
    color: var(--white);
    border: 1px solid var(--ink);
  }
  .form-cta .btn:hover {
    background: transparent;
    color: var(--ink);
  }

  @media (max-width: 900px) {
    .form-cta { padding: 70px 0; }
    .form-cta-inner { padding: 0 24px; }
    .form-cta-title { font-size: 20px; }
    .form-cta-text { font-size: 14px; line-height: 2.0; margin-bottom: 36px; }
    .form-cta .btn { width: 100%; justify-content: center; }
  }

  /* ============================================
     Price page specific styles
     ============================================ */

  /* ---------- Price Intro ---------- */
  .price-intro {
    background: var(--white);
    padding: 120px 0 100px;
  }
  .price-intro-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
  }
  .price-intro-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.4em;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .price-intro h2 {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: clamp(22px, 2.8vw, 28px);
    line-height: 2.0;
    letter-spacing: 0.12em;
    color: var(--ink);
    margin-bottom: 44px;
  }
  .price-intro p {
    font-size: 15.5px;
    line-height: 2.4;
    color: var(--ink-soft);
    margin-bottom: 24px;
    letter-spacing: 0.04em;
  }
  .price-intro p:last-child { margin-bottom: 0; }
  .price-intro .emphasis {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    color: var(--ink);
    padding: 22px 0;
    margin: 30px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    letter-spacing: 0.08em;
  }

  /* ---------- Price Card List ---------- */
  .price-list {
    background: var(--off-white);
    padding: 120px 0;
  }
  .price-list-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .price-card {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 56px 56px 48px;
    margin-bottom: 28px;
    position: relative;
    transition: all 0.4s ease;
  }
  .price-card:last-child { margin-bottom: 0; }
  .price-card:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
  }
  .price-card.featured {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
  }
  .price-card.featured .price-card-num,
  .price-card.featured .price-card-title,
  .price-card.featured .price-card-lead {
    color: var(--white);
  }
  .price-card.featured .price-card-desc,
  .price-card.featured .price-card-target li {
    color: rgba(255,255,255,0.85);
  }
  .price-card.featured .price-card-divider {
    background: rgba(255,255,255,0.4);
  }
  .price-card.featured .price-target-label {
    color: rgba(255,255,255,0.6);
  }
  .price-card.featured .price-card-price {
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
  }
  .price-card.featured .price-card-price-unit {
    color: rgba(255,255,255,0.7);
  }
  .price-card.featured .price-card-tag {
    background: var(--white);
    color: var(--ink);
  }

  .price-card-tag {
    position: absolute;
    top: -1px;
    right: 32px;
    background: var(--ink);
    color: var(--white);
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 11px;
    letter-spacing: 0.3em;
    padding: 8px 16px;
    text-transform: uppercase;
  }

  .price-card-head {
    display: flex;
    align-items: baseline;
    gap: 22px;
    margin-bottom: 14px;
  }
  .price-card-num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 28px;
    color: var(--gray);
    line-height: 1;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .price-card-title {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: clamp(20px, 2.4vw, 24px);
    line-height: 1.7;
    letter-spacing: 0.12em;
    color: var(--ink);
    margin: 0;
  }
  .price-card-lead {
    font-family: "Shippori Mincho", serif;
    font-size: 14.5px;
    line-height: 1.9;
    color: var(--ink-soft);
    letter-spacing: 0.06em;
    margin-bottom: 28px;
    padding-left: 50px;
  }
  .price-card-divider {
    width: 28px;
    height: 1px;
    background: var(--ink);
    opacity: 0.4;
    margin: 0 0 28px 50px;
  }

  /* Price prominent display */
  .price-card-prices {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 32px 50px;
    padding: 22px 26px;
    border: 1px solid var(--line);
    background: var(--off-white);
  }
  .price-card.featured .price-card-prices {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
  }
  .price-card-price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    font-family: "Shippori Mincho", serif;
    color: var(--ink);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }
  .price-card-price:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .price-card-price-unit {
    font-size: 14px;
    color: var(--gray);
    letter-spacing: 0.08em;
    font-weight: 400;
  }
  .price-card-price-amount {
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  /* Description and target list */
  .price-card-desc {
    font-size: 14.5px;
    line-height: 2.2;
    color: var(--ink-soft);
    margin: 0 0 28px 50px;
    letter-spacing: 0.04em;
  }
  .price-target-label {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.4em;
    color: var(--gray);
    text-transform: uppercase;
    margin: 0 0 14px 50px;
    display: block;
  }
  .price-card-target {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 50px;
  }
  .price-card-target li {
    font-size: 14px;
    line-height: 2.0;
    color: var(--ink-soft);
    padding: 4px 0 4px 22px;
    position: relative;
    letter-spacing: 0.04em;
  }
  .price-card-target li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 12px;
    height: 1px;
    background: var(--gray);
    opacity: 0.7;
  }
  .price-card.featured .price-card-target li::before {
    background: rgba(255,255,255,0.6);
  }

  .price-card-cta {
    margin-left: 50px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .price-card-cta .btn {
    font-size: 12.5px;
    padding: 14px 28px;
    letter-spacing: 0.18em;
  }
  .price-card.featured .btn {
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--white);
  }
  .price-card.featured .btn:hover {
    background: transparent;
    color: var(--white);
  }

  /* ---------- Flow Section (短縮版) ---------- */
  .price-flow {
    background: var(--white);
    padding: 120px 0;
  }
  .price-flow-head {
    text-align: center;
    margin-bottom: 70px;
  }
  .price-flow-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.4em;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .price-flow-head h2 {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: clamp(24px, 3.2vw, 32px);
    letter-spacing: 0.14em;
    line-height: 1.8;
    color: var(--ink);
  }
  .price-flow-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .price-flow-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
  }
  .price-flow-step:last-child { border-bottom: none; }
  .price-flow-num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 32px;
    color: var(--ink);
    line-height: 1;
    padding-top: 4px;
    letter-spacing: 0.05em;
  }
  .price-flow-content h3 {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 0.1em;
    color: var(--ink);
    margin-bottom: 14px;
  }
  .price-flow-content p {
    font-size: 14.5px;
    line-height: 2.2;
    color: var(--ink-soft);
    letter-spacing: 0.04em;
  }

  /* ---------- Bottom Routing CTA ---------- */
  .price-route {
    background: var(--off-white);
    padding: 110px 0;
    text-align: center;
  }
  .price-route-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .price-route h2 {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: clamp(22px, 2.8vw, 28px);
    letter-spacing: 0.14em;
    line-height: 1.9;
    color: var(--ink);
    margin-bottom: 26px;
  }
  .price-route p {
    font-size: 15px;
    line-height: 2.2;
    color: var(--ink-soft);
    margin-bottom: 48px;
    letter-spacing: 0.04em;
  }
  .price-route-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ---------- Price Responsive ---------- */
  @media (max-width: 900px) {
    .price-intro { padding: 80px 0 70px; }
    .price-intro-inner { padding: 0 24px; }
    .price-intro h2 { font-size: 20px; line-height: 1.9; margin-bottom: 32px; }
    .price-intro p { font-size: 14.5px; line-height: 2.1; }
    .price-intro .emphasis { font-size: 15px; }

    .price-list { padding: 80px 0; }
    .price-list-inner { padding: 0 20px; }
    .price-card { padding: 36px 24px 32px; }
    .price-card-head { gap: 14px; margin-bottom: 12px; }
    .price-card-num { font-size: 22px; }
    .price-card-title { font-size: 18px; }
    .price-card-lead,
    .price-card-divider,
    .price-card-prices,
    .price-card-desc,
    .price-target-label,
    .price-card-target,
    .price-card-cta {
      margin-left: 0;
    }
    .price-card-tag { right: 18px; font-size: 10.5px; padding: 6px 12px; }
    .price-card-prices { padding: 18px 20px; gap: 10px; }
    .price-card-price-amount { font-size: 17px; }
    .price-card-price-unit { font-size: 13px; }
    .price-card-cta { flex-direction: column; }
    .price-card-cta .btn { width: 100%; justify-content: center; }

    .price-flow { padding: 80px 0; }
    .price-flow-head { margin-bottom: 50px; }
    .price-flow-inner { padding: 0 24px; }
    .price-flow-step { grid-template-columns: 60px 1fr; gap: 18px; padding: 24px 0; }
    .price-flow-num { font-size: 26px; }
    .price-flow-content h3 { font-size: 16px; }
    .price-flow-content p { font-size: 14px; line-height: 2.0; }

    .price-route { padding: 70px 0; }
    .price-route-inner { padding: 0 24px; }
    .price-route p { font-size: 14px; line-height: 2.0; margin-bottom: 36px; }
    .price-route-cta { flex-direction: column; }
    .price-route-cta .btn { width: 100%; justify-content: center; }
  }

  /* ---------- Post-Reservation Steps ---------- */
  .price-reservation-flow {
    background: var(--off-white);
    padding: 120px 0;
  }
  .price-reservation-flow-head {
    text-align: center;
    margin-bottom: 70px;
    padding: 0 32px;
  }
  .price-reservation-flow-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.4em;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .price-reservation-flow-head h2 {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: clamp(24px, 3.2vw, 32px);
    letter-spacing: 0.14em;
    line-height: 1.8;
    color: var(--ink);
  }
  .price-reservation-flow-head .lead {
    font-size: 15px;
    line-height: 2.2;
    color: var(--ink-soft);
    max-width: 620px;
    margin: 28px auto 0;
    letter-spacing: 0.04em;
  }
  .price-reservation-flow-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    gap: 18px;
  }
  .price-reservation-step {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 36px 38px;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 28px;
    align-items: start;
  }
  .price-reservation-step-num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 30px;
    color: var(--ink);
    line-height: 1;
    letter-spacing: 0.05em;
    padding-top: 4px;
  }
  .price-reservation-step-content h3 {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 0.1em;
    color: var(--ink);
    margin-bottom: 14px;
  }
  .price-reservation-step-content p {
    font-size: 14.5px;
    line-height: 2.1;
    color: var(--ink-soft);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
  }
  .price-reservation-step-content p:last-child { margin-bottom: 0; }

  /* ---------- FAQ Section ---------- */
  .price-faq {
    background: var(--white);
    padding: 120px 0;
  }
  .price-faq-head {
    text-align: center;
    margin-bottom: 70px;
    padding: 0 32px;
  }
  .price-faq-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.4em;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .price-faq-head h2 {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: clamp(24px, 3.2vw, 32px);
    letter-spacing: 0.14em;
    line-height: 1.8;
    color: var(--ink);
  }
  .price-faq-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    gap: 16px;
  }
  .price-faq-item {
    background: var(--off-white);
    border: 1px solid var(--line);
    padding: 32px 38px;
    transition: all 0.3s ease;
  }
  .price-faq-item:hover { border-color: var(--ink); }
  .price-faq-q {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 16px;
  }
  .price-faq-q-mark {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    color: var(--gray);
    line-height: 1.3;
    flex-shrink: 0;
  }
  .price-faq-q-text {
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.06em;
    line-height: 1.8;
  }
  .price-faq-a {
    padding-left: 40px;
    font-size: 14.5px;
    line-height: 2.1;
    color: var(--ink-soft);
    letter-spacing: 0.04em;
  }

  @media (max-width: 900px) {
    .price-reservation-flow { padding: 80px 0; }
    .price-reservation-flow-head { margin-bottom: 50px; }
    .price-reservation-flow-inner { padding: 0 20px; }
    .price-reservation-step {
      grid-template-columns: 50px 1fr;
      gap: 16px;
      padding: 26px 22px;
    }
    .price-reservation-step-num { font-size: 24px; }
    .price-reservation-step-content h3 { font-size: 16px; }
    .price-reservation-step-content p { font-size: 14px; line-height: 2.0; }

    .price-faq { padding: 80px 0; }
    .price-faq-head { margin-bottom: 50px; }
    .price-faq-inner { padding: 0 20px; }
    .price-faq-item { padding: 26px 24px; }
    .price-faq-a { padding-left: 0; }
  }

  /* ---------- Price Feature Quote (intro emphasis) ---------- */
  .price-feature-quote {
    max-width: 620px;
    margin: 56px auto;
    padding: 48px 40px;
    text-align: center;
    background: var(--off-white);
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    position: relative;
  }
  .price-feature-quote-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.45em;
    color: var(--gray);
    text-transform: uppercase;
    display: block;
    margin-bottom: 26px;
  }
  .price-feature-quote p {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 2.2;
    letter-spacing: 0.12em;
    color: var(--ink);
    margin: 0;
  }
  .price-feature-quote .accent {
    color: #b89668;
    border-bottom: 1px solid rgba(184,150,104,0.4);
    padding-bottom: 2px;
  }

  @media (max-width: 900px) {
    .price-feature-quote {
      margin: 40px auto;
      padding: 36px 24px;
    }
    .price-feature-quote p {
      font-size: 16px;
      line-height: 2.0;
      letter-spacing: 0.08em;
    }
  }
