
    :root {
      --ink: #182435;
      --ink-soft: #405064;
      --paper: #fbfaf6;
      --paper-deep: #f1eee5;
      --white: #ffffff;
      --line: #d9d4c9;
      --gold: #b68a2f;
      --red: #c83f32;
      --green: #2d6d63;
      --blue: #255c93;
      --shadow: 0 22px 60px rgba(24, 36, 53, .14);
      --radius: 8px;
      --max: 1160px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background:
        linear-gradient(90deg, rgba(24,36,53,.035) 1px, transparent 1px) 0 0 / 32px 32px,
        linear-gradient(180deg, var(--paper), #f7f5ee 42%, #ffffff 100%);
      font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
      line-height: 1.8;
      overflow-x: clip;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .42;
      background-image:
        radial-gradient(circle at 20% 12%, rgba(182, 138, 47, .13), transparent 28%),
        radial-gradient(circle at 84% 32%, rgba(37, 92, 147, .1), transparent 30%),
        linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18));
      z-index: -1;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid rgba(24, 36, 53, .1);
      background: rgba(251, 250, 246, .9);
      backdrop-filter: blur(16px);
    }

    .header-inner {
      width: min(var(--max), calc(100% - 40px));
      min-height: 76px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 220px;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      position: relative;
      border: 2px solid var(--ink);
      background: var(--white);
      box-shadow: inset 0 0 0 4px #f6d894;
      transform: rotate(-2deg);
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      background: var(--red);
    }

    .brand-mark::before {
      width: 18px;
      height: 18px;
      right: -9px;
      bottom: -9px;
      border-radius: 50%;
      border: 2px solid var(--white);
    }

    .brand-mark::after {
      width: 18px;
      height: 2px;
      left: 10px;
      top: 20px;
      transform: rotate(-26deg);
      box-shadow: 0 7px 0 var(--ink);
    }

    .brand-name {
      display: grid;
      line-height: 1.25;
    }

    .brand-name strong {
      font-family: "Shippori Mincho", serif;
      font-size: 1.22rem;
      letter-spacing: .08em;
    }

    .brand-name span {
      color: var(--ink-soft);
      font-size: .74rem;
      font-weight: 700;
      letter-spacing: .08em;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 22px;
      color: var(--ink-soft);
      font-size: .9rem;
      font-weight: 700;
    }

    .nav a {
      position: relative;
      padding-block: 6px;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 2px;
      transform: scaleX(0);
      transform-origin: left;
      background: var(--red);
      transition: transform .2s ease;
    }

    .nav a:hover::after {
      transform: scaleX(1);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .header-social {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      padding: 8px;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: rgba(255, 255, 255, .72);
      color: var(--ink-soft);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .social-link:hover {
      transform: translateY(-2px);
      border-color: rgba(24, 36, 53, .32);
      background: var(--white);
    }

    .social-link img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .header-cta,
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 0 18px;
      border: 1px solid var(--ink);
      border-radius: 999px;
      background: var(--ink);
      color: var(--white);
      font-weight: 900;
      box-shadow: 0 8px 0 rgba(24, 36, 53, .13);
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .header-cta:hover,
    .button:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 0 rgba(24, 36, 53, .1);
    }

    .button.secondary {
      background: var(--white);
      color: var(--ink);
      border-color: var(--line);
      box-shadow: none;
    }

    .hero {
      width: min(1380px, calc(100% - 40px));
      min-height: calc(100svh - 76px);
      margin: 0 auto;
      padding: 54px 0 34px;
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
      align-items: center;
      gap: 48px;
    }

    .hero-copy {
      max-width: 680px;
      min-width: 0;
      animation: rise .7s ease both;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 20px;
      color: var(--red);
      font-size: .86rem;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 32px;
      height: 1px;
      background: currentColor;
    }

    h1,
    h2,
    h3 {
      margin: 0;
      font-family: "Shippori Mincho", "Yu Mincho", serif;
      line-height: 1.28;
      letter-spacing: .02em;
    }

    h1 {
      font-size: clamp(2.8rem, 7vw, 6.4rem);
      font-weight: 700;
      max-width: 780px;
      overflow-wrap: anywhere;
      line-break: anywhere;
    }

    h1 span {
      display: block;
    }

    .hero-subtitle {
      margin: 18px 0 0;
      color: var(--green);
      font-size: clamp(1.05rem, 2vw, 1.5rem);
      font-weight: 900;
      letter-spacing: .08em;
    }

    .hero-lead {
      max-width: 640px;
      margin: 24px 0 0;
      color: var(--ink-soft);
      font-size: 1.06rem;
      font-weight: 500;
      overflow-wrap: anywhere;
      line-break: anywhere;
      word-break: break-all;
    }

    .hero-lead span {
      display: block;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 32px 0 0;
    }

    .trust-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      max-width: 660px;
      margin-top: 32px;
      padding-top: 22px;
      border-top: 1px solid var(--line);
    }

    .trust-item {
      min-height: 92px;
      padding: 16px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .72);
      border-radius: var(--radius);
    }

    .trust-item b {
      display: block;
      font-size: 1.5rem;
      line-height: 1.1;
      color: var(--red);
    }

    .trust-item span {
      display: block;
      margin-top: 6px;
      color: var(--ink-soft);
      font-size: .82rem;
      font-weight: 700;
      line-height: 1.55;
    }

    .hero-gallery {
      position: relative;
      min-width: 0;
      min-height: 620px;
      animation: rise .8s .1s ease both;
    }

    .gallery-frame {
      position: absolute;
      overflow: hidden;
      border: 1px solid rgba(24, 36, 53, .16);
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .gallery-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .gallery-frame.main {
      inset: 0 84px 42px 0;
      border-radius: var(--radius);
      transform: rotate(-1.8deg);
    }

    .gallery-frame.sub-a {
      right: 0;
      bottom: 0;
      width: 46%;
      aspect-ratio: 1;
      border-radius: var(--radius);
      transform: rotate(4deg);
    }

    .gallery-frame.sub-b {
      right: 26px;
      top: 26px;
      width: 34%;
      aspect-ratio: .82;
      border-radius: var(--radius);
      transform: rotate(3deg);
    }

    section {
      padding: 96px 0;
    }

    .section-inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 36px;
    }

    .section-head.center {
      margin-inline: auto;
      text-align: center;
    }

    .section-kicker {
      margin: 0 0 10px;
      color: var(--red);
      font-size: .78rem;
      font-weight: 900;
      letter-spacing: .16em;
    }

    h2 {
      font-size: clamp(2rem, 4.6vw, 3.7rem);
    }

    .section-head p {
      margin: 18px 0 0;
      color: var(--ink-soft);
      font-size: 1rem;
    }

    .worry-grid,
    .point-grid,
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .worry-card,
    .point-card,
    .faq-item,
    .info-panel,
    .status-card,
    .profile-copy,
    .form-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .8);
    }

    .worry-card {
      min-height: 172px;
      padding: 24px;
    }

    .worry-card .num {
      color: var(--gold);
      font-family: "Shippori Mincho", serif;
      font-size: 2rem;
      line-height: 1;
    }

    .worry-card h3,
    .point-card h3 {
      margin-top: 18px;
      font-size: 1.18rem;
    }

    .worry-card p,
    .point-card p,
    .status-card p,
    .profile-copy p {
      margin: 10px 0 0;
      color: var(--ink-soft);
      font-size: .94rem;
    }

    .service {
      background: var(--ink);
      color: var(--white);
    }

    .service .section-head p,
    .service .section-kicker {
      color: rgba(255, 255, 255, .72);
    }

    .service-layout {
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: 28px;
      align-items: start;
    }

    .info-panel {
      padding: 28px;
      color: var(--ink);
      box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
    }

    .info-list {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .info-list li {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 16px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--line);
    }

    .info-list li:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .info-list b {
      color: var(--red);
      font-size: .9rem;
      letter-spacing: .08em;
    }

    .service-note {
      margin-top: 20px;
      padding: 18px;
      border-left: 4px solid var(--gold);
      background: #f7f0dc;
      color: #51442b;
      font-size: .9rem;
      font-weight: 700;
    }

    .evidence-board {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .evidence {
      overflow: hidden;
      min-height: 260px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .08);
    }

    .evidence img {
      width: 100%;
      height: 210px;
      object-fit: cover;
    }

    .evidence figcaption {
      margin: 0;
      padding: 12px 14px 14px;
      color: rgba(255, 255, 255, .86);
      font-size: .84rem;
      font-weight: 700;
    }

    .evidence.wide {
      grid-column: 1 / -1;
    }

    .evidence.wide img {
      height: 260px;
      object-fit: contain;
      object-position: center;
      background: var(--white);
    }

    .point-card {
      min-height: 208px;
      padding: 24px;
      position: relative;
      overflow: hidden;
    }

    .point-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 6px;
      height: 100%;
      background: var(--green);
    }

    .status-band {
      background: #eef3f4;
    }

    .status-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 10px;
    }

    .status-card {
      min-height: 150px;
      padding: 18px;
      border-top: 5px solid var(--blue);
    }

    .status-card:nth-child(1),
    .status-card:nth-child(2) {
      border-top-color: var(--green);
    }

    .status-card:nth-child(4),
    .status-card:nth-child(5) {
      border-top-color: var(--red);
    }

    .status-card b {
      display: block;
      font-family: "Shippori Mincho", serif;
      line-height: 1.45;
    }

    .flow-board {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 10px;
    }

    .flow-band,
    .flow-step {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
    }

    .flow-band {
      padding: 18px 20px;
      background: rgba(255, 255, 255, .82);
      border-top: 5px solid var(--green);
    }

    .flow-band.user {
      grid-column: 1 / 4;
      grid-row: 1;
    }

    .flow-band.checker {
      grid-column: 4 / 6;
      grid-row: 1;
      border-top-color: var(--red);
    }

    .flow-band span {
      color: var(--red);
      font-size: .78rem;
      font-weight: 900;
      letter-spacing: .14em;
    }

    .flow-band h3 {
      margin-top: 8px;
      font-size: 1.35rem;
    }

    .flow-step {
      min-height: 190px;
      padding: 22px;
      position: relative;
      border-top: 5px solid var(--green);
    }

    .flow-step.checker {
      border-top-color: var(--red);
    }

    .step-1 {
      grid-column: 1;
      grid-row: 2;
    }

    .step-2 {
      grid-column: 2;
      grid-row: 2;
    }

    .step-3 {
      grid-column: 3;
      grid-row: 2;
    }

    .step-4 {
      grid-column: 4;
      grid-row: 2;
    }

    .step-5 {
      grid-column: 5;
      grid-row: 2;
    }

    .flow-step small {
      color: var(--red);
      font-weight: 900;
      letter-spacing: .12em;
    }

    .flow-step h3 {
      margin-top: 18px;
      font-size: 1.18rem;
    }

    .flow-step p {
      margin: 10px 0 0;
      color: var(--ink-soft);
      font-size: .9rem;
    }

    .fee {
      padding: 0;
      background: var(--red);
      color: var(--white);
    }

    .fee-inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      padding: 54px 0;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 30px;
      align-items: center;
    }

    .fee-badge {
      display: grid;
      place-items: center;
      aspect-ratio: 1;
      max-width: 300px;
      border: 2px solid rgba(255, 255, 255, .86);
      border-radius: 50%;
      justify-self: center;
      text-align: center;
      box-shadow: inset 0 0 0 12px rgba(255, 255, 255, .1);
    }

    .fee-badge small {
      display: block;
      font-weight: 900;
      letter-spacing: .14em;
    }

    .fee-badge strong {
      display: block;
      font-family: "Shippori Mincho", serif;
      font-size: clamp(3.6rem, 9vw, 6rem);
      line-height: 1;
    }

    .fee h2 {
      font-size: clamp(2rem, 4vw, 3.5rem);
    }

    .fee p {
      max-width: 700px;
      margin: 18px 0 0;
      color: rgba(255, 255, 255, .88);
      font-weight: 700;
    }

    .profile {
      background: #fff;
    }

    .profile-layout {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 28px;
      align-items: stretch;
    }

    .profile-photo {
      width: 100%;
      min-height: 0;
      margin: 0;
      aspect-ratio: 3 / 4;
      align-self: start;
      overflow: hidden;
      border-radius: var(--radius);
      border: 0;
      background: var(--paper-deep);
    }

    .profile-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .profile-copy {
      padding: 36px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .profile-copy .name {
      margin: 0 0 2px auto;
      color: var(--green);
      font-weight: 900;
      letter-spacing: .16em;
      text-align: right;
    }

    .profile-copy h2 {
      font-size: clamp(1.9rem, 4vw, 3.2rem);
    }

    .profile-meta {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 24px;
    }

    .sns-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .sns-row .social-link {
      width: 42px;
      height: 42px;
      padding: 9px;
    }

    .faq-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-item {
      padding: 20px 22px 22px;
      overflow: hidden;
    }

    .faq-question {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin: 0;
      color: var(--ink);
      font-weight: 900;
    }

    .faq-question::before {
      content: "Q";
      display: inline-grid;
      place-items: center;
      flex: 0 0 26px;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--ink);
      color: var(--white);
      font-size: .8rem;
    }

    .faq-item p {
      margin: 12px 0 0;
      padding-left: 36px;
      color: var(--ink-soft);
      font-size: .94rem;
    }

    .contact {
      background: var(--ink);
      color: var(--white);
    }

    .contact-layout {
      display: grid;
      grid-template-columns: minmax(0, 760px);
      justify-content: center;
    }

    .contact .section-head {
      margin-inline: auto;
      color: var(--white);
      text-align: center;
    }

    .contact .section-head p,
    .contact .section-kicker {
      color: rgba(255, 255, 255, .75);
    }

    .form-panel {
      padding: 28px;
      color: var(--ink);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .field {
      display: grid;
      gap: 6px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      color: var(--ink-soft);
      font-size: .82rem;
      font-weight: 900;
    }

    label.required::after {
      content: " *";
      color: var(--red);
      font-size: 1rem;
      line-height: 1;
    }

    input,
    textarea {
      width: 100%;
      min-height: 48px;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: #fff;
      color: var(--ink);
      font: inherit;
      padding: 10px 12px;
    }

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

    .checkbox {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-top: 18px;
      color: var(--ink-soft);
      font-size: .86rem;
      font-weight: 700;
      line-height: 1.65;
    }

    .checkbox input {
      width: 18px;
      min-width: 18px;
      height: 18px;
      min-height: 18px;
      margin-top: 4px;
    }

    .form-panel .button {
      width: 100%;
      margin-top: 20px;
    }

    .site-footer {
      padding: 28px 0;
      background: #111925;
      color: rgba(255, 255, 255, .64);
      font-size: .82rem;
    }

    .footer-inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-social {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .site-footer .social-link {
      border-color: rgba(255, 255, 255, .2);
      background: rgba(255, 255, 255, .08);
      color: rgba(255, 255, 255, .84);
    }

    @keyframes rise {
      from {
        opacity: 0;
        transform: translateY(18px);
      }

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

    @media (max-width: 980px) {
      .nav {
        display: none;
      }

      .header-social {
        display: none;
      }

      .hero,
      .service-layout,
      .fee-inner,
      .profile-layout,
      .contact-layout {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: auto;
        padding-top: 42px;
      }

      .hero-gallery {
        min-height: 560px;
      }

      .profile-photo {
        width: min(100%, 560px);
        justify-self: center;
      }

      .worry-grid,
      .point-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .status-grid,
      .flow-board {
        grid-template-columns: 1fr;
      }

      .flow-band.user,
      .flow-band.checker,
      .step-1,
      .step-2,
      .step-3,
      .step-4,
      .step-5 {
        grid-column: 1;
        grid-row: auto;
      }

      .flow-step {
        min-height: 0;
      }
    }

    @media (max-width: 680px) {
      .header-inner,
      .section-inner,
      .fee-inner,
      .footer-inner,
      .hero {
        width: min(var(--max), calc(100% - 24px));
      }

      .header-cta {
        display: none;
      }

      .brand {
        min-width: 0;
      }

      .brand-name strong {
        font-size: 1rem;
      }

      .brand-name span {
        font-size: .66rem;
      }

      h1 {
        font-size: clamp(2.2rem, 8.8vw, 2.7rem);
        line-height: 1.45;
      }

      .eyebrow {
        max-width: 100%;
        font-size: .72rem;
        letter-spacing: .1em;
        overflow-wrap: anywhere;
      }

      .hero {
        gap: 28px;
      }

      .trust-strip,
      .worry-grid,
      .point-grid,
      .faq-grid,
      .evidence-board,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .hero-gallery {
        min-height: 430px;
      }

      .gallery-frame.main {
        inset: 0 38px 40px 0;
      }

      .gallery-frame.sub-a {
        width: 48%;
      }

      .gallery-frame.sub-b {
        width: 31%;
        right: 10px;
        top: 20px;
      }

      section {
        padding: 70px 0;
      }

      .info-list li {
        grid-template-columns: 1fr;
        gap: 4px;
      }

    }
  