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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.9;
      font-size: 16px;
    }

    /* ===== UTILITY ===== */
    .container      { max-width: 840px;  margin: 0 auto; padding: 0 24px; }
    .container-wide { max-width: 1020px; margin: 0 auto; padding: 0 24px; }

    .lbl {
      display: block;
      font-size: 0.68rem;
      letter-spacing: 0.24em;
      color: var(--blue);
      text-transform: uppercase;
      font-weight: 500;
      margin-bottom: 10px;
    }
    .ttl {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(1.3rem, 3vw, 1.85rem);
      font-weight: 700;
      line-height: 1.55;
      color: var(--text);
      margin-bottom: 14px;
    }
    .ttl .em { color: var(--blue); }
    .bar {
      width: 36px; height: 3px;
      background: var(--blue);
      border-radius: 2px;
      margin-bottom: 30px;
    }
    .lead {
      font-size: 0.96rem;
      color: var(--text-mid);
      line-height: 2;
      margin-bottom: 40px;
    }

    /* ===== HEADER（旧スタイル無効化：index.htmlのインラインCSSで管理） ===== */
    /* header, .h-logo, .h-tel は index.html 内のインラインCSSで定義済み */

    /* ===== BREADCRUMB（旧スタイル無効化：index.htmlのインラインCSSで管理） ===== */
    /* .bc は index.html 内のインラインCSSで定義済み */

    /* ===== ① HERO ===== */
    .hero {
      background: linear-gradient(145deg, #0A3260 0%, #1A5FA8 50%, #4A8FD4 100%);
      color: #fff;
      padding: 80px 48px 72px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 30% 60%, rgba(255,255,255,0.07) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-badge {
      display: inline-block;
      border: 1px solid rgba(255,255,255,0.4);
      background: rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.9);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      padding: 5px 18px;
      border-radius: 20px;
      margin-bottom: 24px;
    }
    .hero h1 {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(1.6rem, 4.5vw, 2.5rem);
      font-weight: 700;
      line-height: 1.45;
      margin-bottom: 10px;
      letter-spacing: 0.02em;
    }
    .hero-concept {
      font-size: 0.9rem;
      opacity: 0.78;
      margin-bottom: 24px;
      letter-spacing: 0.1em;
    }
    .hero-sub {
      font-size: clamp(0.88rem, 1.8vw, 1rem);
      opacity: 0.9;
      max-width: 540px;
      margin: 0 auto 40px;
      line-height: 2;
    }
    .hero-cta {
      display: inline-block;
      background: #fff;
      color: var(--blue);
      font-weight: 700;
      font-size: 0.97rem;
      padding: 16px 48px;
      border-radius: 50px;
      text-decoration: none;
      box-shadow: 0 5px 20px rgba(0,0,0,0.2);
      transition: transform .2s, box-shadow .2s;
      letter-spacing: 0.03em;
    }
    .hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
    .hero-note { margin-top: 14px; font-size: 0.76rem; opacity: 0.65; }
    .hero-tagline {
      font-size: clamp(0.92rem, 2vw, 1.08rem);
      color: rgba(255,255,255,0.88);
      margin: 14px 0 28px;
      letter-spacing: 0.04em;
      font-weight: 400;
      line-height: 1.7;
    }
    .mini-cta {
      background: var(--blue-light);
      border: 1px solid var(--blue-mid);
      border-radius: 12px;
      padding: 28px 36px;
      text-align: center;
      margin-top: 40px;
    }
    .mini-cta p {
      font-size: 0.97rem;
      color: var(--text);
      line-height: 1.85;
      margin-bottom: 18px;
    }
    .mini-cta a {
      display: inline-block;
      background: var(--blue);
      color: #fff;
      font-weight: 700;
      font-size: 0.97rem;
      padding: 14px 44px;
      border-radius: 50px;
      text-decoration: none;
      box-shadow: 0 4px 14px rgba(30,107,184,0.25);
      transition: transform .2s, box-shadow .2s;
    }
    .mini-cta a:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(30,107,184,0.32); }
    .mini-cta .mini-note { font-size: 0.75rem; color: var(--text-light); margin-top: 10px; margin-bottom: 0; }

    /* ===== SECTION BASE ===== */
    section { padding: 84px 0; }
    .s-gray  { background: var(--gray); }
    .s-gray2 { background: var(--gray2); }
    .s-white { background: var(--white); }
    .s-blue  { background: linear-gradient(145deg, #0A3260 0%, #1E6BB8 100%); color: #fff; }

    /* ===== ② WORRY ===== */
    .worry-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px;
      margin-bottom: 28px;
    }
    .worry-card {
      background: var(--white);
      border-radius: 10px;
      border-left: 4px solid var(--blue);
      padding: 22px 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .worry-card .ic { font-size: 1.5rem; margin-bottom: 10px; display: block; }
    .worry-card p { font-size: 0.9rem; color: var(--text); line-height: 1.75; }
    .worry-close {
      background: var(--blue-light);
      border-radius: 10px;
      padding: 22px 28px;
      text-align: center;
      font-size: 0.97rem;
      color: var(--blue);
      font-weight: 500;
      line-height: 1.85;
    }

    /* ===== ③ WHY ===== */
    .why-list { display: flex; flex-direction: column; gap: 18px; }
    .why-item {
      display: flex; gap: 18px; align-items: flex-start;
      background: var(--white);
      border-radius: 10px;
      padding: 24px 26px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .why-num {
      flex-shrink: 0;
      width: 42px; height: 42px;
      background: var(--blue);
      color: #fff;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 1rem;
    }
    .why-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
    .why-item p  { font-size: 0.9rem; color: var(--text-mid); line-height: 1.85; }

    /* ===== ④ CONCEPT ===== */
    .concept-box {
      background: var(--white);
      border-radius: 14px;
      padding: 52px 52px;
      box-shadow: 0 4px 24px rgba(30,107,184,0.09);
      text-align: center;
    }
    .concept-quote {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(1.05rem, 2.5vw, 1.45rem);
      color: var(--blue);
      font-weight: 700;
      line-height: 1.75;
      margin-bottom: 32px;
      padding: 0 10px;
    }
    .concept-quote::before { content: ''; }
    .concept-quote::after  { content: ''; }
    .concept-body {
      font-size: 0.95rem;
      color: var(--text-mid);
      line-height: 2.05;
      text-align: left;
      max-width: 620px;
      margin: 0 auto;
    }
    .concept-body p + p { margin-top: 18px; }

    /* ===== ⑤ SERVICE ===== */
    .svc-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      margin-bottom: 28px;
    }
    @media (max-width: 620px) { .svc-grid { grid-template-columns: 1fr; } }
    .svc-card {
      background: var(--white);
      border-radius: 12px;
      padding: 28px 26px;
      border: 1px solid var(--border);
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .svc-card-head {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 16px;
      padding-bottom: 14px;
      border-bottom: 2px solid var(--blue-light);
    }
    .svc-icon {
      width: 40px; height: 40px;
      background: var(--blue-light);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .svc-card h3 { font-size: 0.97rem; font-weight: 700; color: var(--blue); }
    .svc-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .svc-card ul li {
      font-size: 0.88rem; color: var(--text);
      padding-left: 18px; position: relative; line-height: 1.7;
    }
    .svc-card ul li::before {
      content: '▶';
      position: absolute; left: 0;
      color: var(--blue); font-size: 0.58rem; top: 7px;
    }
    .fee-box {
      background: #FFFCF0;
      border: 1px solid #DFC96A;
      border-radius: 10px;
      padding: 20px 26px;
      font-size: 0.9rem;
      color: #5A4500;
      line-height: 1.9;
    }
    .fee-box strong { color: #8A6800; }

    /* ===== ⑥ CASE ===== */
    .case-list { display: flex; flex-direction: column; gap: 28px; }
    .case-card {
      border-radius: 12px;
      border: 1px solid var(--border);
      overflow: hidden;
      background: var(--white);
      box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    }
    .case-head {
      background: var(--blue);
      color: #fff;
      padding: 15px 26px;
      font-weight: 700;
      font-size: 0.93rem;
      display: flex; align-items: center; gap: 12px;
    }
    .case-no {
      flex-shrink: 0;
      width: 28px; height: 28px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.78rem; font-weight: 700;
    }
    .case-body {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
    }
    @media (max-width: 660px) { .case-body { grid-template-columns: 1fr; } }
    .case-col {
      padding: 22px 22px;
      border-right: 1px solid var(--border);
    }
    .case-col:last-child { border-right: none; }
    .case-col h4 {
      font-size: 0.7rem;
      color: var(--blue);
      font-weight: 700;
      letter-spacing: 0.1em;
      margin-bottom: 9px;
      padding-bottom: 6px;
      border-bottom: 1px solid var(--blue-light);
    }
    .case-col p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.85; }
    .case-voice {
      background: var(--blue-pale);
      border-top: 1px solid var(--border);
      padding: 16px 26px;
      font-size: 0.88rem;
      color: var(--text-mid);
      font-style: italic;
      line-height: 1.8;
    }
    .case-voice::before {
      content: '"';
      font-size: 1.5rem;
      color: var(--blue-mid);
      vertical-align: -5px;
      margin-right: 4px;
      font-style: normal;
    }

    /* ===== ⑦ FLOW ===== */
    .flow-wrap { display: flex; flex-direction: column; }
    .flow-item {
      display: flex; gap: 22px; align-items: flex-start;
    }
    .flow-left {
      display: flex; flex-direction: column; align-items: center;
      flex-shrink: 0;
    }
    .flow-circle {
      width: 54px; height: 54px;
      background: var(--blue);
      color: #fff;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 0.75rem;
      text-align: center; line-height: 1.3;
      flex-shrink: 0;
    }
    .flow-vline {
      width: 2px; flex: 1;
      background: var(--border);
      margin-top: 4px; min-height: 28px;
    }
    .flow-item:last-child .flow-vline { display: none; }
    .flow-content {
      background: var(--white);
      border-radius: 10px;
      padding: 20px 26px;
      flex: 1;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      margin-bottom: 18px;
      border: 1px solid var(--border);
    }
    .flow-tag {
      display: inline-block;
      background: var(--blue-light);
      color: var(--blue);
      font-size: 0.68rem; font-weight: 500;
      padding: 3px 10px; border-radius: 20px;
      margin-bottom: 8px;
      letter-spacing: 0.05em;
    }
    .flow-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 7px; }
    .flow-content p  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.85; }

    /* ===== ⑧ FAQ ===== */
    .faq-list { display: flex; flex-direction: column; gap: 16px; }
    .faq-item { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
    .faq-q {
      background: var(--blue-light);
      padding: 18px 22px;
      font-weight: 700; font-size: 0.93rem;
      display: flex; gap: 12px; align-items: flex-start;
    }
    .faq-q .qm, .faq-a .am {
      flex-shrink: 0;
      width: 26px; height: 26px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.8rem; font-weight: 700;
    }
    .faq-q .qm { background: var(--blue); color: #fff; }
    .faq-a .am { background: #DFF0D8; color: #2D6A1A; }
    .faq-a {
      padding: 18px 22px;
      font-size: 0.9rem; color: var(--text-mid); line-height: 1.95;
      display: flex; gap: 12px; align-items: flex-start;
    }

    /* ===== ⑨ FIRST TIME ===== */
    .firsttime-box {
      background: var(--white);
      border-radius: 14px;
      padding: 44px 48px;
      box-shadow: 0 4px 20px rgba(30,107,184,0.08);
    }
    .firsttime-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 22px;
      margin-top: 32px;
    }
    @media (max-width: 660px) { .firsttime-grid { grid-template-columns: 1fr; } }
    .ft-card {
      text-align: center;
      padding: 26px 18px;
      background: var(--gray);
      border-radius: 10px;
      border: 1px solid var(--border);
    }
    .ft-card .ft-ic { font-size: 2rem; margin-bottom: 12px; display: block; }
    .ft-card h4 { font-size: 0.92rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
    .ft-card p  { font-size: 0.85rem; color: var(--text-mid); line-height: 1.8; }

    /* ===== ⑩ MESSAGE ===== */
    .msg-wrap {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 52px;
      align-items: start;
    }
    @media (max-width: 720px) {
      .msg-wrap { grid-template-columns: 1fr; }
      .msg-photo-wrap { order: -1; text-align: center; }
    }
    .msg-content h3 {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(1.1rem, 2.2vw, 1.3rem);
      font-weight: 700;
      line-height: 1.65;
      margin-bottom: 22px;
      color: var(--text);
    }
    .msg-content p {
      font-size: 0.93rem;
      color: var(--text-mid);
      line-height: 2.05;
      margin-bottom: 16px;
    }
    .msg-content p:last-of-type { margin-bottom: 0; }
    .msg-sig {
      margin-top: 24px;
      padding-top: 18px;
      border-top: 1px solid var(--border);
      font-size: 0.82rem;
      color: var(--text-light);
      line-height: 1.8;
    }
    .msg-sig strong { color: var(--text); font-size: 1rem; }
    .msg-photo-wrap { text-align: right; }
    .msg-photo-wrap img {
      width: 100%;
      max-width: 320px;
      border-radius: 12px;
      box-shadow: 0 6px 28px rgba(0,0,0,0.12);
      display: block;
      margin-left: auto;
    }
    .msg-name {
      margin-top: 12px;
      font-size: 0.8rem;
      color: var(--text-light);
      text-align: right;
      line-height: 1.7;
    }

    /* ===== ⑪ CTA ===== */
    .cta-inner { text-align: center; }
    .cta-inner h2 {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(1.2rem, 2.8vw, 1.75rem);
      font-weight: 700; line-height: 1.6;
      color: #fff; margin-bottom: 18px;
    }
    .cta-inner .cta-lead {
      font-size: 0.96rem; opacity: 0.88;
      line-height: 2; margin-bottom: 38px;
    }
    .cta-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
    .btn-w {
      display: inline-block;
      background: #fff; color: var(--blue);
      font-weight: 700; font-size: 0.97rem;
      padding: 16px 44px; border-radius: 50px;
      text-decoration: none;
      box-shadow: 0 4px 18px rgba(0,0,0,0.18);
      transition: transform .2s;
    }
    .btn-w:hover { transform: translateY(-2px); }
    .btn-o {
      display: inline-block;
      background: transparent; color: #fff;
      font-weight: 700; font-size: 0.97rem;
      padding: 15px 44px; border-radius: 50px;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,0.5);
      transition: background .2s;
    }
    .btn-o:hover { background: rgba(255,255,255,0.1); }
    .cta-tel {
      margin-top: 34px;
      font-size: 0.84rem; opacity: 0.78;
      line-height: 1.7;
    }
    .cta-tel strong {
      display: block;
      font-size: 2rem; letter-spacing: 0.08em;
      opacity: 1; margin: 6px 0 4px;
    }
    .cta-free { margin-top: 14px; font-size: 0.75rem; opacity: 0.6; }

    /* ===== FOOTER（旧スタイル無効化：index.htmlのインラインCSSで管理） ===== */
    /* footer, .f-logo は index.html 内のインラインCSSで定義済み */

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .hero  { padding: 60px 20px 52px; }
      .firsttime-box { padding: 30px 20px; }
      .msg-wrap { gap: 32px; }
    }

    /* ===== FADE IN ===== */
    .fi { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
    .fi.on { opacity: 1; transform: translateY(0); }
  