﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'BIZ UDPGothic', 'Zen Kaku Gothic New', sans-serif;
      color: #4a4a4a;
      background: #faf9f7;
      line-height: 1.7;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    button { border: none; cursor: pointer; font-family: inherit; }

    /* ===== LAYOUT ===== */
    .container { max-width: 1100px; margin: 0 auto; width: 100%; }
    .section { padding: 96px 90px; display: flex; flex-direction: column; align-items: center; }
    .section-inner { max-width: 1100px; width: 100%; }

    /* ===== TYPOGRAPHY ===== */
    .heading-1 {
      font-family: 'Shippori Antique', serif;
      color: #1e3a6e;
      font-size: 44px;
      line-height: 1.4;
      letter-spacing: 0.88px;
    }
    .heading-2 {
      font-family: 'Shippori Antique', serif !important;
      color: #1e3a6e !important;
      font-size: 30px !important;
      line-height: 1.45 !important;
      letter-spacing: 0.6px;
      text-align: center;
    }
    .heading-3 {
      font-family: 'Shippori Antique', serif;
      color: #1e3a6e;
      font-size: 17px;
      line-height: 1.6;
      letter-spacing: 0.34px;
    }
    .heading-4 {
      font-family: 'BIZ UDPGothic', sans-serif;
      font-weight: 700;
      color: #1e3a6e;
      font-size: 16px;
      line-height: 1.5;
    }
    .text-orange { color: #e8820c; }
    .text-navy { color: #1e3a6e; }
    .text-gray { color: #7a7569; }
    .font-caveat { font-family: 'Caveat', cursive; }
    .font-klee { font-family: 'Klee One', cursive; }
    .font-shippori { font-family: 'Shippori Antique', serif; }

    /* ===== BUTTONS ===== */
    .btn-primary {
      background: #e8820c;
      color: #fff;
      font-family: 'Shippori Antique', serif;
      font-size: 16px;
      padding: 14px 32px;
      border-radius: 4px;
      display: inline-block;
      letter-spacing: 0.14px;
      transition: opacity 0.2s;
    }
    .btn-primary:hover { opacity: 0.88; }
    .btn-secondary {
      border: 1px solid #1e3a6e;
      color: #1e3a6e;
      font-family: 'Shippori Antique', serif;
      font-size: 16px;
      padding: 12px 28px;
      border-radius: 4px;
      display: inline-block;
      transition: background 0.2s, color 0.2s;
    }
    .btn-secondary:hover { background: #1e3a6e; color: #fff; }

    /* ===== HEADER ===== */
    #site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(5px);
      border-bottom: 1px solid #ece7dc;
    }
    .header-main {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 64px 10px;
      gap: 24px;
    }
    .header-logo img { height: 48px; width: auto; object-fit: contain; display: block; }
    .header-nav {
      display: flex;
      gap: 22px;
      align-items: center;
    }
    .header-nav a {
      font-family: 'Zen Kaku Gothic New', sans-serif;
      font-size: 16px;
      color: #4a4a4a;
      letter-spacing: 0.14px;
      white-space: nowrap;
    }
    .header-nav a:hover { color: #e8820c; }
    .header-cta {
      background: #e8820c;
      color: #fff;
      font-family: 'Shippori Antique', serif;
      font-size: 16px;
      padding: 9px 15px;
      border-radius: 4px;
      white-space: nowrap;
      letter-spacing: 0.14px;
      transition: opacity 0.2s;
    }
    .header-cta:hover { opacity: 0.88; }
    .header-info {
      background: #f5f2ed;
      border-top: 1px solid #ece7dc;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 64px;
      font-size: 11.5px;
      color: #7a7569;
    }
    .header-info-badges { display: flex; gap: 22px; }
    .header-phone { display: flex; align-items: center; gap: 8px; font-size: 16px; }
    .header-phone img { width: 14px; height: 14px; }

    /* Mobile hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: #4a4a4a;
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* ===== HERO ===== */
    #hero {
      position: relative;
      min-height: 640px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: 60px 90px 72px;
      overflow: hidden;
    }
    #hero .hero-bg {
      position: absolute;
      inset: 0;
      object-fit: cover;
      width: 100%;
      height: 100%;
      opacity: 0.85;
    }
    #hero .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1100px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }
    .hero-top {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      margin-bottom: 180px;
    }
    .hero-bottom {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .hero-title {
      text-align: center;
      font-family: 'Shippori Antique', serif;
      color: #eef2f9;
      font-size: 32px;
      letter-spacing: 0.88px;
    }
    .hero-title-main {
      font-family: 'Shippori Antique', serif;
      color: #eef2f9;
      font-size: 44px;
      letter-spacing: 0.88px;
      border-bottom: 3px solid #e8820c;
      padding-bottom: 6px;
      display: inline-block;
    }
    .hero-subtitle {
      font-family: 'Shippori Antique', serif;
      color: #fffffe;
      font-size: 16px;
      text-align: center;
      letter-spacing: 0.14px;
    }
    .hero-cta-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      margin-top: 8px;
    }
    .hero-btn {
      background: #e8820c;
      color: #fff;
      font-family: 'Shippori Antique', serif;
      font-size: 16px;
      padding: 13px 40px;
      border-radius: 4px;
      letter-spacing: 0.14px;
      transition: opacity 0.2s;
      text-align: center;
      min-width: 280px;
    }
    .hero-btn:hover { opacity: 0.88; }
    .hero-note {
      font-family: 'BIZ UDPGothic', sans-serif;
      color: #f5f1e8;
      font-size: 16px;
      text-align: center;
    }
    .hero-badges {
      background: #fff;
      border: 1px solid #e3ddd1;
      border-radius: 6px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      overflow: hidden;
      margin-top: 8px;
    }
    .hero-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      padding: 18px 16px;
      border-right: 1px solid #ece7dc;
    }
    .hero-badge:last-child { border-right: none; }
    .hero-badge-icon {
      font-family: 'Klee One', cursive;
      font-size: 32px;
      color: #e8820c;
      line-height: 1;
    }
    .hero-badge-icon.num {
      font-family: 'Caveat', cursive;
      font-size: 36px;
      color: #1e3a6e;
    }
    .hero-badge-label {
      font-family: 'Klee One', cursive;
      font-size: 11.5px;
      color: #7a7569;
      text-align: center;
    }

    /* ===== WORRIED SECTION ===== */
    #worried {
      position: relative;
      padding: 96px 90px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    #worried .worried-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.8;
    }
    #worried .worried-content {
      position: relative;
      z-index: 2;
      max-width: 1100px;
      width: 100%;
    }
    .worried-heading { margin-bottom: 4px; }
    .worried-sub {
      font-family: 'Shippori Antique', serif;
      color: #1e3a6e;
      font-size: 20px;
      text-align: center;
      margin-bottom: 36px;
    }
    .worried-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-bottom: 36px;
    }
    .worried-card {
      background: rgba(255,255,255,0.92);
      border: 1.5px dashed #cfc8bd;
      border-radius: 6px;
      padding: 19px;
      display: flex;
      align-items: center;
      gap: 14px;
      min-height: 131px;
      box-sizing: border-box;
    }
    .worried-card-img {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .worried-card-img img {
      display: block;
      object-fit: contain;
    }
    .worried-text {
      font-family: 'BIZ UDPGothic', sans-serif;
      font-size: 15px;
      color: #1e3a6e;
      font-weight: 700;
      line-height: 1.55;
    }
    .worried-note {
      text-align: center;
      margin-top: 36px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .worried-note-text {
      font-family: 'Shippori Antique B1', 'Shippori Antique', serif;
      font-size: 20px;
      color: #1e3a6e;
      line-height: 1.7;
      opacity: 0.9;
    }
    .worried-marker {
      background: linear-gradient(transparent 60%, rgba(232,130,12,0.45) 60%);
    }
    .worried-note-last {
      margin-top: 8px;
    }

    /* ===== DEKIRU KOTO ===== */
    #dekiru {
      background: #fff;
      padding: 57px 45px 33px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 1px solid #ece7dc;
    }
    .dekiru-inner { max-width: 1100px; width: 100%; display: flex; flex-direction: column; gap: 40px; }
    .dekiru-sub { text-align: center; color: #111; font-size: 16px; margin-top: 4px; }
    .dekiru-card {
      background: #e9faff;
      border: 5px solid #fff;
      border-radius: 6px;
      padding: 33px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .dekiru-card-02 { background: #e8faff; }
    .dekiru-card-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 46px;
    }
    .dekiru-num {
      font-family: 'Caveat', cursive !important;
      font-size: 64px !important;
      color: #e8820c !important;
      line-height: 1;
      text-shadow: 0 2px 6px rgba(232,130,12,0.2);
    }
    .dekiru-card-title {
      font-family: 'Shippori Antique B1', 'Shippori Antique', serif !important;
      color: #1e3a6e !important;
      font-size: 26px !important;
      letter-spacing: 1px;
      border-left: 4px solid #e8820c;
      padding-left: 16px;
    }
    .dekiru-card-body { display: flex; align-items: center; gap: 31px; }
    @media (max-width: 520px) { .dekiru-card-body { flex-direction: column; } }
    .dekiru-card-body-02 { gap: 31px; }
    .dekiru-card-body-02 .dekiru-text { flex: 1; }
    .dekiru-card-body-02 .dekiru-alert { flex: 2; }
    .dekiru-text {
      font-family: 'BIZ UDPGothic', sans-serif;
      font-size: 16px;
      color: #4a4a4a;
      line-height: 1.7;
      flex: 3;
      min-width: 0;
    }
    .dekiru-orange { color: #e8820c; font-weight: 700; font-style: normal; }
    .dekiru-alert {
      background: #e4ebf6;
      border-radius: 4px;
      padding: 12px 14px;
      display: flex;
      align-items: center;
      gap: 16px;
      flex: 1;
      min-width: 0;
      font-family: 'BIZ UDPGothic', sans-serif;
      font-size: 16px;
      color: #1e3a6e;
    }
    .dekiru-alert-icon { width: 38px; height: 34px; flex-shrink: 0; }
    /* illustration row */
    .dekiru-illust-row {
      display: flex;
      gap: 12px;
    }
    .dekiru-illust-block {
      flex: 1;
      display: flex;
      flex-direction: column;
      min-width: 0;
      border-radius: 4px;
      overflow: hidden;
    }
    .dekiru-illust-header {
      background: #f2a64f;
      color: #fff;
      font-family: 'BIZ UDPGothic', sans-serif;
      font-weight: 700;
      text-align: center;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3px;
      text-shadow: 0 2px 4px rgba(0,0,0,0.25);
    }
    .dekiru-illust-title-big { font-size: 20px; }
    .dekiru-illust-title-sm  { font-size: 16px; }
    /* 3-column grid: [fig] [arrow] [fig] */
    .dekiru-illust-content {
      background: #fff;
      display: grid;
      grid-template-columns: 1fr 52px 1fr;
      align-items: stretch;
      padding: 12px 8px 0;
      gap: 4px;
      flex: 1;
    }
    .dekiru-illust-fig {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .dekiru-illust-fig img {
      max-height: 130px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      display: block;
    }
    .dekiru-illust-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 28px;
    }
    .dekiru-illust-arrow img { display: none; }
    .dekiru-illust-arrow::after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-top: 22px solid transparent;
      border-bottom: 22px solid transparent;
      border-left: 36px solid #1e3a6e;
    }
    .dekiru-fig-text {
      font-family: 'BIZ UDPGothic', sans-serif;
      font-size: 16px;
      color: #4a4a4a;
      text-align: center;
      line-height: 1.6;
      padding: 8px 2px 14px;
      width: 100%;
    }
    .dekiru-fig-text small { font-size: 14px; color: #7a7569; display: block; margin-top: 2px; }
    .dekiru-illust-fig-noimg {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 130px;
    }

    /* ===== HOW IT WORKS ===== */
    #howworks {
      padding: 96px 90px;
      display: flex;
      flex-direction: column;
      align-items: center;
      background: #fff;
      border-bottom: 1px solid #ece7dc;
    }
    .howworks-inner { max-width: 1100px; width: 100%; }
    .howworks-sub { text-align: center; color: #4a4a4a; font-size: 16px; margin-top: 12px; margin-bottom: 48px; }
    .howworks-diagram {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr;
      gap: 0;
      align-items: stretch;
      margin-bottom: 24px;
    }
    .trust-card {
      border-radius: 8px;
      padding: 24px 18px;
      text-align: center;
      box-sizing: border-box;
    }
    .trust-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .trust-card.blue { background: #e8faff; }
    .trust-card.green { background: #e8faff; }
    .trust-card.orange { background: #f8dbb6; }
    .trust-card-img {
      display: flex;
      justify-content: center;
      margin-bottom: 10px;
    }
    .trust-card-img img {
      width: auto;
      height: 90px;
      object-fit: contain;
      display: block;
      image-rendering: -webkit-optimize-contrast;
    }
    .trust-card-num {
      font-family: 'Caveat', cursive;
      font-size: 20px;
      color: #e8820c;
      margin-bottom: 4px;
    }
    .trust-card-role {
      font-family: 'BIZ UDPGothic', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: #1e3a6e;
      margin-bottom: 2px;
    }
    .trust-card-sub { font-size: 16px; color: #7a7569; margin-bottom: 10px; }
    .trust-card-equal {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #e4ebf6;
      color: #1e3a6e;
      font-family: 'BIZ UDPGothic', sans-serif;
      font-size: 16px;
      font-weight: 700;
      border-radius: 4px;
      padding: 4px 10px;
      margin-bottom: 10px;
    }
    .trust-card-desc { font-size: 16px; color: #4a4a4a; margin-top: 8px; line-height: 1.65; }
    .trust-card-note {
      font-family: 'BIZ UDPGothic', sans-serif;
      font-size: 13px;
      color: #6a5f52;
      line-height: 1.6;
      margin-top: 12px;
      padding-top: 10px;
      border-top: 1px dashed rgba(0,0,0,0.15);
    }
    .trust-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: #1e3a6e;
      padding: 0 12px;
      padding-top: 70px;
      flex-direction: column;
      gap: 4px;
    }
    .trust-arrow span {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      text-align: center;
    }
    .trust-arrow-icon {
      font-size: 28px;
      color: #1e3a6e;
      font-weight: 700;
      line-height: 1;
    }
    .trust-arrow-label {
      font-family: 'BIZ UDPGothic', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: #1e3a6e;
      white-space: nowrap;
      background: rgba(30,58,110,0.08);
      border-radius: 4px;
      padding: 2px 8px;
    }
    .howworks-note {
      font-size: 16px;
      color: #7a7569;
      text-align: left;
      margin-top: 20px;
      line-height: 1.7;
    }

    /* ===== TROUBLES ===== */
    #troubles {
      position: relative;
      padding: 96px 90px 48px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 1px solid #fff;
    }
    #troubles .troubles-bg {
      position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none;
    }
    .troubles-inner { max-width: 1100px; width: 100%; position: relative; z-index: 2; }
    .troubles-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 36px;
    }
    .trouble-card {
      background: #fff;
      border: 1px dashed #cfc8bd;
      border-radius: 6px;
      padding: 21px;
    }
    .trouble-case {
      font-family: 'Caveat', cursive;
      font-size: 22px;
      color: #e8820c;
      margin-bottom: 6px;
    }
    .trouble-title {
      font-family: 'BIZ UDPGothic', sans-serif;
      font-weight: 700;
      color: #1e3a6e;
      font-size: 14.5px;
      margin-bottom: 8px;
      line-height: 1.55;
    }
    .trouble-text { font-size: 16px; color: #7a7569; line-height: 1.8; }
    .troubles-notice {
      background: #fff;
      border: 1px solid #ece7dc;
      box-shadow: 0 4px 2px rgba(0,0,0,0.1);
      padding: 40px 32px;
      text-align: center;
      font-family: 'BIZ UDPGothic', sans-serif;
      font-size: 17px;
      color: #000;
      line-height: 2;
      margin-top: 0;
      position: relative;
    }
    .troubles-notice::before {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-left: 32px solid transparent;
      border-right: 32px solid transparent;
      border-top: 28px solid #1e3a6e;
      margin: 0 auto 32px;
    }

    /* ===== ORDERED TRUST ===== */
    #ordermade {
      position: relative;
      padding: 96px 90px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 1px solid #ece7dc;
    }
    #ordermade .ordermade-bg {
      position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none;
    }
    .ordermade-inner { max-width: 1100px; width: 100%; position: relative; z-index: 2; }
    .ordermade-intro {
      background: transparent;
      border-left: none;
      text-align: center;
      border-radius: 6px;
      padding: 22px 24px;
      margin-top: 20px;
      margin-bottom: 24px;
      font-family: 'BIZ UDPGothic', sans-serif;
      font-size: 20px;
      line-height: 1.75;
    }
    .ordermade-marker {
      background: linear-gradient(transparent 55%, rgba(232,130,12,0.5) 55%);
    }
    .ordermade-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .ordermade-card {
      background: rgba(255,255,255,0.9);
      border: 1px solid #e3ddd1;
      border-radius: 6px;
      padding: 23px;
      display: flex;
      gap: 16px;
    }
    .ordermade-num {
      width: 40px;
      height: 40px;
      background: #1e3a6e;
      color: #fff;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Shippori Antique', serif;
      font-size: 16px;
      flex-shrink: 0;
    }
    .ordermade-card-body {}
    .ordermade-card-title { font-family: 'Shippori Antique', serif; font-size: 20px; color: #1e3a6e; margin-bottom: 6px; }
    .ordermade-card-text { font-size: 16px; color: #4a4a4a; line-height: 1.7; }

    /* ===== COMPARISON ===== */
    #comparison {
      background: #f0fee2;
      padding: 69px 64px 82px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 1px solid #ece7dc;
    }
    .comparison-inner { max-width: 1100px; width: 100%; }
    .comparison-sub { text-align: center; color: #2c2c2c; font-size: 16px; margin-top: 8px; margin-bottom: 14px; }
    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      background: #fff;
      border: 1px solid #e3ddd1;
      border-radius: 6px;
      overflow: hidden;
      margin-top: 14px;
    }
    .comparison-table th {
      font-size: 16px;
      padding: 14px 12px;
      border-bottom: 2px solid #ece7dc;
      font-family: 'BIZ UDPGothic', sans-serif;
      font-weight: 700;
      background: #fafafa;
      text-align: center;
    }
    .comparison-table th.our-col {
      background: #1e3a6e;
      color: #fff;
      font-family: 'Zen Kaku Gothic New', sans-serif;
      font-size: 16px;
    }
    .comparison-table td {
      padding: 14px 12px;
      border-bottom: 1px solid #ece7dc;
      font-size: 16px;
      color: #2c2c2c;
      text-align: center;
    }
    .comparison-table td.label-col {
      text-align: left;
      font-weight: 700;
    }
    .comparison-table td.our-cell {
      background: rgba(30,58,110,0.06);
      font-family: 'Klee One', cursive;
      font-size: 20px;
      font-weight: 600;
      color: #1e3a6e;
    }
    .comparison-table td.other-cell {
      color: #7a7569;
      font-size: 17px;
    }
    .comparison-note { font-size: 11.5px; color: #000; margin-top: 10px; line-height: 1.6; }

    /* ===== TRUST SECTION ===== */
    #trust {
      background: #fff;
      padding: 96px 90px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 1px solid #fff;
    }
    .trust-inner { max-width: 1100px; width: 100%; }
    .trust-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 32px;
      margin-top: 28px;
      margin-bottom: 28px;
    }
    .trust-items {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .trust-item {
      background: #faf9f7;
      border-radius: 6px;
      padding: 16px;
      display: flex;
      gap: 12px;
    }
    .trust-check {
      width: 24px;
      height: 24px;
      background: #e8820c;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-family: 'Klee One', cursive;
      font-size: 16px;
      font-weight: 600;
      flex-shrink: 0;
    }
    .trust-item-title { font-family: 'BIZ UDPGothic', sans-serif; font-weight: 700; color: #1e3a6e; font-size: 14.5px; margin-bottom: 4px; }
    .trust-item-text { font-size: 16px; color: #7a7569; line-height: 1.7; }
    .trust-image {
      border-radius: 6px;
      overflow: hidden;
      position: relative;
    }
    .trust-image img { width: 100%; height: 100%; object-fit: cover; }
    .trust-cta { text-align: center; margin-top: 4px; }

    /* ===== FLOW ===== */
    #flow {
      background: #fff;
      padding: 66px 22px 109px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 1px solid #ffe6b0;
    }
    .flow-inner { max-width: 1100px; width: 100%; }
    .flow-sub { text-align: center; color: #2c2c2c; font-size: 16px; margin-top: 8px; margin-bottom: 40px; }
    .flow-steps {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
      position: relative;
    }
    .flow-steps::before {
      content: '';
      position: absolute;
      top: 24px;
      left: 10%;
      right: 10%;
      height: 2px;
      border-top: 2px dashed #cfc8bd;
    }
    .flow-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 11px;
      text-align: center;
    }
    .flow-num {
      width: 48px;
      height: 48px;
      border: 2px solid #1e3a6e;
      border-radius: 24px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'BIZ UDPGothic', sans-serif;
      font-weight: 700;
      color: #1e3a6e;
      font-size: 16px;
      position: relative;
      z-index: 1;
    }
    .flow-step-title { font-family: 'BIZ UDPGothic', sans-serif; font-weight: 700; color: #1e3a6e; font-size: 16px; line-height: 1.3; }
    .flow-step-text { font-size: 16px; color: #2c2c2c; line-height: 1.5; }

    /* ===== PRICING ===== */
    #pricing {
      padding: 83px 90px 97px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 1px solid #ece7dc;
    }
    .pricing-inner { max-width: 1100px; width: 100%; }
    .pricing-sub { text-align: center; color: #1e3a6e; font-size: 16px; margin-top: 8px; margin-bottom: 22px; line-height: 1.75; }
    .pricing-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 22px;
    }
    .pricing-card {
      background: #fff;
      border: 1px solid #1e3a6e;
      border-radius: 6px;
      padding: 24px 33px 20px;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }
    .pricing-card.orange { border-color: #e8820c; }
    .pricing-card-head {
      display: flex;
      gap: 12px;
      align-items: center;
    }
    .pricing-card-thumb {
      width: 130px;
      height: 110px;
      border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .pricing-card-thumb img { width: 100%; height: 100%; object-fit: contain; image-rendering: -webkit-optimize-contrast; }
    .pricing-badge {
      display: inline-block;
      background: #1e3a6e;
      color: #fff;
      border-radius: 999px;
      padding: 10px 24px;
      font-size: 18px;
      font-family: 'BIZ UDPGothic', sans-serif;
      margin-bottom: 8px;
    }
    .pricing-badge.orange { background: #e8820c; font-weight: 700; }
    .pricing-price {
      font-family: 'Shippori Antique', serif;
      font-size: 36px;
      color: #1e3a6e;
    }
    .pricing-price.orange { color: #e8820c; }
    .pricing-price span { font-size: 20px; }
    .pricing-desc { font-size: 16px; color: #2c2c2c; line-height: 1.85; }

    /* ===== CASES ===== */
    #cases {
      position: relative;
      padding: 96px 90px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 1px solid #ece7dc;
    }
    #cases .cases-bg {
      position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; pointer-events: none;
    }
    .cases-inner { max-width: 1100px; width: 100%; position: relative; z-index: 2; }
    .cases-sub { text-align: center; color: #4a4a4a; font-size: 16px; margin-top: 8px; margin-bottom: 40px; line-height: 1.75; }
    .cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .case-card {
      background: #fff;
      border: 1px solid #e3ddd1;
      border-radius: 6px;
      padding: 27px;
    }
    .case-tag {
      display: inline-block;
      border-radius: 999px;
      padding: 4px 12px;
      font-family: 'Klee One', cursive;
      font-size: 11.5px;
      margin-bottom: 10px;
    }
    .case-tag.orange { background: #fdebd5; color: #c66c00; }
    .case-tag.blue { background: #e4ebf6; color: #1e3a6e; }
    .case-title { font-family: 'Shippori Antique', serif; font-size: 17px; color: #1e3a6e; margin-bottom: 12px; line-height: 1.6; }
    .case-person {
      display: flex;
      align-items: center;
      gap: 10px;
      padding-bottom: 11px;
      border-bottom: 1px dashed #ece7dc;
      margin-bottom: 10px;
    }
    .case-avatar {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      overflow: hidden;
      border: 1px solid #7a7569;
      flex-shrink: 0;
    }
    .case-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .case-person-name { font-size: 16px; color: #000; }
    .case-section { margin-bottom: 10px; }
    .case-label {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 4px;
    }
    .case-dot {
      width: 8px;
      height: 8px;
      border-radius: 4px;
      flex-shrink: 0;
    }
    .case-dot.orange { background: #e8820c; }
    .case-dot.blue { background: #1e3a6e; }
    .case-label-text {
      font-family: 'Klee One', cursive;
      font-size: 11.5px;
      letter-spacing: 0.46px;
    }
    .case-label-text.orange { color: #e8820c; }
    .case-label-text.blue { color: #1e3a6e; }
    .case-text { font-size: 16px; color: #4a4a4a; line-height: 1.85; padding-left: 14px; }

    /* ===== FAQ ===== */
    #faq {
      background: #fcffee;
      padding: 96px 90px 117px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 1px solid #d9eeba;
    }
    .faq-inner { max-width: 1100px; width: 100%; }
    .faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; margin-top: 40px; }
    .faq-item {
      background: #fff;
      border: 1px solid #e3ddd1;
      border-radius: 6px;
      overflow: hidden;
    }
    .faq-question {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 22px;
      cursor: pointer;
      user-select: none;
    }
    .faq-q {
      font-family: 'Caveat', cursive;
      font-size: 22px;
      color: #e8820c;
      flex-shrink: 0;
      line-height: 1.75;
    }
    .faq-q-text {
      font-family: 'BIZ UDPGothic', sans-serif;
      font-size: 14.5px;
      color: #1e3a6e;
      flex: 1;
      letter-spacing: 0.14px;
    }
    .faq-chevron {
      font-size: 16px;
      color: #7a7569;
      transition: transform 0.3s;
      flex-shrink: 0;
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-answer {
      display: none;
      padding: 0 22px 18px 56px;
      font-size: 16px;
      color: #4a4a4a;
      line-height: 1.95;
    }
    .faq-item.open .faq-answer { display: block; }

    /* ===== ABOUT ===== */
    #about {
      padding: 96px 90px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 1px solid #ece7dc;
      background: #fff;
      position: relative;
      overflow: hidden;
    }
    #about .about-bg {
      position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; opacity: 0.15;
    }
    #about::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.30);
      pointer-events: none;
      z-index: 1;
    }
    .about-inner { max-width: 1100px; width: 100%; }
    .about-sub { font-size: 16px; color: #4a4a4a; margin-top: 8px; margin-bottom: 40px; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
    .about-rep {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
    .about-rep-photo {
      width: 160px;
      height: 100%;
      min-height: 220px;
      border-radius: 6px;
      overflow: hidden;
      flex-shrink: 0;
      align-self: stretch;
    }
    .about-rep-photo img { width: 100%; height: 100%; object-fit: cover; }
    .about-rep-name { font-family: 'Shippori Antique', serif; font-size: 20px; color: #1e3a6e; margin-bottom: 4px; }
    .about-rep-title { font-size: 16px; color: #7a7569; margin-bottom: 12px; }
    .about-rep-quote { font-size: 16px; color: #4a4a4a; line-height: 1.75; border-left: 3px solid #e8820c; padding-left: 14px; }
    .about-info table { width: 100%; border-collapse: collapse; font-size: 16px; }
    .about-info tr { border-bottom: 1px dashed #ece7dc; }
    .about-info th {
      font-family: 'Klee One', cursive;
      font-weight: 600;
      color: #000;
      padding: 9px 8px;
      width: 88px;
      vertical-align: top;
      text-align: left;
    }
    .about-info td { padding: 9px 8px; color: #000; font-family: 'Zen Kaku Gothic New', sans-serif; }
    .about-map {
      margin-top: 20px;
      background: #f0f0f0;
      height: 200px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #7a7569;
      font-size: 16px;
    }

    /* ===== CREDENTIALS ===== */
    #credentials {
      background: #fff;
      padding: 40px 90px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 1px solid #ece7dc;
    }
    .credentials-inner { max-width: 1100px; width: 100%; }
    .credentials-title { font-size: 16px; color: #7a7569; text-align: center; margin-bottom: 20px; }
    .credentials-list {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .credentials-item {
      background: #f8f6f2;
      border: 1px solid #e3ddd1;
      border-radius: 6px;
      padding: 12px 20px;
      font-size: 16px;
      color: #4a4a4a;
      text-align: center;
    }

    /* ===== FORM ===== */
    #contact {
      background: #f4f8ff;
      padding: 96px 90px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .contact-inner { max-width: 1100px; width: 100%; }
    .contact-title {
      font-family: 'Klee One', cursive;
      font-size: 36px;
      font-weight: 600;
      text-align: center;
      color: #000;
      letter-spacing: 0.72px;
      margin-bottom: 8px;
    }
    .contact-sub { text-align: center; color: #2c2c2c; font-size: 20px; margin-bottom: 40px; }
    .contact-form {
      background: rgba(255,255,255,0.9);
      border: 1px dashed rgba(255,255,255,0.5);
      border-radius: 6px;
      padding: 48px 48px 47px;
      max-width: 800px;
      margin: 0 auto;
      width: 100%;
    }
    .form-group { margin-bottom: 24px; }
    .form-label {
      display: block;
      font-family: 'BIZ UDPGothic', sans-serif;
      font-size: 16px;
      color: #1e3a6e;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .form-required { color: #e8820c; margin-left: 4px; }
    .form-input, .form-select, .form-textarea {
      width: 100%;
      border: 1px solid #c8d4e5;
      border-radius: 4px;
      padding: 11px 14px;
      font-size: 16px;
      font-family: 'BIZ UDPGothic', sans-serif;
      background: #fff;
      color: #4a4a4a;
      transition: border-color 0.2s;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      outline: none;
      border-color: #1e3a6e;
    }
    .form-textarea { min-height: 120px; resize: vertical; }
    .form-submit {
      background: #e8820c;
      color: #fff;
      font-family: 'Shippori Antique', serif;
      font-size: 16px;
      padding: 14px 48px;
      border-radius: 4px;
      width: 100%;
      cursor: pointer;
      transition: opacity 0.2s;
      margin-top: 8px;
    }
    .form-submit:hover { opacity: 0.88; }
    .form-note { font-size: 16px; color: #7a7569; text-align: center; margin-top: 16px; line-height: 1.7; }

    /* ===== FOOTER ===== */
    #footer {
      background: #455d9b;
      padding: 43px 90px 24px;
    }
    .footer-inner { max-width: 1100px; margin: 0 auto; }
    .footer-logo { margin-bottom: 12px; }
    .footer-logo img { height: 56px; width: auto; filter: brightness(10); }
    .footer-info {
      font-family: 'BIZ UDPGothic', sans-serif;
      font-weight: 700;
      font-size: 16px;
      color: #f1f5fb;
      line-height: 1.7;
    }
    .footer-info a { color: #f1f5fb; }
    .footer-copy { font-size: 16px; color: rgba(255,255,255,0.7); margin-top: 20px; }

    /* ===== STICKY MOBILE CTA ===== */
    #sticky-cta {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 200;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(4px);
      border-top: 1px solid #ece7dc;
      padding: 12px 16px;
      box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .sticky-cta-left {
      font-size: 16px;
      color: #4a4a4a;
      line-height: 1.4;
    }
    .sticky-cta-left strong { color: #1e3a6e; }
    .sticky-cta-btn {
      background: #e8820c;
      color: #fff;
      font-family: 'Shippori Antique', serif;
      font-size: 16px;
      padding: 10px 20px;
      border-radius: 4px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    /* ===== SECTION LABELS ===== */
    .section-label {
      font-family: 'Caveat', cursive;
      font-size: 16px;
      color: #7a7569;
      text-align: center;
      margin-bottom: 6px;
    }

    /* ===== HIGHLIGHT ===== */
    .highlight-orange { color: #c66c00; font-weight: 700; }
    .underline-orange {
      border-bottom: 3px solid #e8820c;
      display: inline;
    }

    /* ===== RESPONSIVE: TABLET (max-width: 800px) ===== */
    @media (max-width: 900px) {
      .section { padding: 72px 40px; }
      #hero { padding: 24px 40px 60px; min-height: 560px; }
      .header-main { padding: 12px 32px 10px; }
      .header-info { padding: 8px 32px; }
      .header-nav { display: none; }
      .hamburger { display: flex; }
      .hero-badges { grid-template-columns: repeat(2, 1fr); }
      .worried-grid { grid-template-columns: 1fr 1fr; }
      .why-cards { grid-template-columns: 1fr; }
      .wait-cards { grid-template-columns: 1fr; }
      .howworks-diagram { grid-template-columns: 1fr; gap: 16px; }
      .trust-arrow { display: none; }
      .troubles-grid { grid-template-columns: 1fr 1fr; }
      .ordermade-grid { grid-template-columns: 1fr; }
      .comparison-table { font-size: 16px; }
      .trust-grid { grid-template-columns: 1fr; }
      .trust-image { height: 240px; }
      .flow-steps { grid-template-columns: repeat(3, 1fr); }
      .flow-steps::before { display: none; }
      .pricing-cards { grid-template-columns: 1fr; }
      .cases-grid { grid-template-columns: 1fr 1fr; }
      .about-grid { grid-template-columns: 1fr; }
      .contact-form { padding: 32px 24px; }
      #footer { padding: 32px 40px 20px; }
      #comparison { padding: 48px 32px; }
      #trust { padding: 72px 40px; }
      #flow { padding: 48px 20px 72px; }
      #pricing { padding: 60px 40px; }
      #cases { padding: 72px 40px; }
      #faq { padding: 72px 40px 80px; }
      #about { padding: 72px 40px; }
      #credentials { padding: 32px 40px; }
      #contact { padding: 72px 40px; }
      #worried { padding: 72px 40px; }
      #why { padding: 72px 40px; }
      #wait { padding: 72px 40px; }
      #howworks { padding: 72px 40px; }
      #troubles { padding: 72px 40px 48px; }
      #ordermade { padding: 72px 40px; }
    }

    /* ===== RESPONSIVE: MOBILE (max-width: 520px) ===== */
    @media (max-width: 520px) {
      .section { padding: 56px 20px; }
      #hero { padding: 16px 20px 56px; min-height: 480px; }
      .header-main { padding: 8px 12px 8px; }
      .header-logo img { height: 56px; }
      .header-cta { font-size: 12px; padding: 6px 10px; }
      .header-info { display: none; }
      .hero-title { font-size: 20px !important; }
      .hero-title-main { font-size: 80px !important; }
      .hero-subtitle { font-size: 16px !important; }
      .hero-cta-wrap { margin-top: 128px; }
      .hero-badges {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0;
      }
      .hero-badge { padding: 10px 8px; }
      .heading-2 { font-size: 22px; }
      /* お悩み3カード → 縦1列 */
      .worried-grid { grid-template-columns: 1fr; }
      /* 家族信託でできること → テキスト+アラート縦積み */
      .dekiru-card-body { flex-direction: column; }
      .dekiru-card-body-02 .dekiru-text,
      .dekiru-card-body-02 .dekiru-alert { flex: unset; width: 100%; }
      /* 01/02ヘッダーを上下配置 */
      .dekiru-card-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
      }
      /* illustrationブロックを縦積み */
      .dekiru-illust-row { flex-direction: column; }
      /* イラストコンテンツを縦1列に */
      .dekiru-illust-content {
        grid-template-columns: 1fr;
      }
      /* 矢印を▼に */
      .dekiru-illust-arrow::after {
        border-top: 36px solid #1e3a6e;
        border-bottom: none;
        border-left: 22px solid transparent;
        border-right: 22px solid transparent;
      }
      .dekiru-illust-arrow { padding-top: 0; padding-bottom: 4px; }
      .why-cards { grid-template-columns: 1fr; }
      .wait-cards { grid-template-columns: 1fr; }
      /* よくあるトラブル → 縦1列 */
      .troubles-grid { grid-template-columns: 1fr; }
      .ordermade-grid { grid-template-columns: 1fr; }
      .trust-items { grid-template-columns: 1fr; }
      /* ご相談から完了までの流れ → 縦1列 */
      .flow-steps { grid-template-columns: 1fr; }
      /* 解決事例 → 縦1列 */
      .cases-grid { grid-template-columns: 1fr; }
      .pricing-cards { grid-template-columns: 1fr; }
      .comparison-table th, .comparison-table td { padding: 10px 8px; font-size: 16px; }
      .pricing-card-head { flex-direction: column; }
      .pricing-card-thumb { width: 100%; height: 140px; }
      .contact-form { padding: 24px 16px; }
      #footer { padding: 24px 20px 16px; }
      #sticky-cta { display: flex; }
      body { padding-bottom: 72px; }
      .about-rep { flex-direction: column; }
      #about { padding: 56px 20px; }
      #credentials { padding: 24px 20px; }
      #comparison { padding: 48px 20px; }
      #trust { padding: 56px 20px; }
      #flow { padding: 48px 16px 72px; }
      #pricing { padding: 56px 20px; }
      #cases { padding: 56px 20px; }
      #faq { padding: 56px 20px 72px; }
      .faq-list { width: 100%; }
      #contact { padding: 56px 20px; }
      .contact-sub { font-size: 16px; }
      #worried { padding: 56px 20px; }
      #why { padding: 56px 20px; }
      #wait { padding: 56px 20px; }
      #howworks { padding: 56px 20px; }
      #troubles { padding: 56px 20px 40px; }
      #ordermade { padding: 56px 20px; }
      #dekiru { padding: 40px 16px 28px; }
    }

    /* Mobile nav menu */
    #mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(30,58,110,0.97);
      z-index: 300;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
    }
    #mobile-menu.open { display: flex; }
    #mobile-menu a {
      color: #fff;
      font-family: 'Shippori Antique', serif;
      font-size: 20px;
      letter-spacing: 0.4px;
    }
    #mobile-menu .close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      color: #fff;
      font-size: 28px;
      cursor: pointer;
    }
    #mobile-menu .menu-cta {
      background: #e8820c;
      color: #fff;
      padding: 14px 40px;
      border-radius: 4px;
      font-family: 'Shippori Antique', serif;
      font-size: 16px;
      margin-top: 12px;
    }
