  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #0a1628;
    --navy-mid: #152040;
    --navy-light: #1e3056;
    --accent: #c8a84b;
    --accent-light: #e8c96b;
    --accent-pale: #f5e9c0;
    --teal: #1a7a8a;
    --teal-light: #2aa0b4;
    --white: #ffffff;
    --off-white: #f8f6f2;
    --gray-light: #f0ede8;
    --gray: #9a9490;
    --text: #1a1a1a;
    --text-mid: #444444;
  }

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
    word-break: auto-phrase;
  }

  h1, h2, h3, h4, h5, h6, .section-title { text-wrap: balance; }
  p, .section-sub { text-wrap: pretty; }

  /* ========== HEADER ========== */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: #ffffff;
    padding: 0 40px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e8e4de;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: height 0.25s ease, box-shadow 0.25s ease;
  }

  header.is-shrunk {
    height: 54px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
  }

  .header-logo-img,
  .btn-header,
  .btn-header-sub {
    transition: height 0.25s ease, padding 0.25s ease, font-size 0.25s ease;
  }

  header.is-shrunk .header-logo-img { height: 32px; }
  header.is-shrunk .btn-header { padding: 8px 16px; font-size: 12px; }
  header.is-shrunk .btn-header-sub { padding: 8px 14px; font-size: 12px; }

  .header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .header-logo-img {
    height: 40px;
    width: auto;
    display: block;
  }

  .header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .header-tel {
    color: var(--navy);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .header-tel svg { width: 14px; height: 14px; }

  .btn-header {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--navy);
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.2s;
    white-space: nowrap;
  }

  .btn-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200,168,75,0.4);
  }

  .btn-header-sub {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 4px;
    border: 1px solid rgba(9,20,46,0.14);
    background: white;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: all 0.2s;
  }

  .btn-header-sub:hover {
    transform: translateY(-1px);
    border-color: rgba(200,168,75,0.6);
    box-shadow: 0 4px 16px rgba(9,20,46,0.08);
  }

  /* ========== FIRST VIEW ========== */
  #firstview {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 64px;
  }

  .fv-bg-pattern {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 70% 50%, rgba(26,122,138,0.15) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(200,168,75,0.08) 0%, transparent 50%),
      repeating-linear-gradient(
        45deg,
        transparent 0,
        transparent 40px,
        rgba(255,255,255,0.01) 40px,
        rgba(255,255,255,0.01) 80px
      );
  }

  .fv-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(200,168,75,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,168,75,0.06) 1px, transparent 1px);
    background-size: 80px 80px;
  }

  .fv-accent-bar {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--teal) 100%);
  }

  .fv-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 100%;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
  }

  .fv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,168,75,0.15);
    border: 1px solid var(--accent);
    border-radius: 100px;
    padding: 6px 16px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 28px;
  }

  .fv-badge::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .fv-catch {
    font-family: 'Noto Sans JP', sans-serif;
    color: white;
    line-height: 1.45;
    margin-bottom: 20px;
  }

  .fv-catch-sm {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    display: block;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
  }

  .fv-catch-main {
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 900;
    display: block;
  }

  .fv-catch-main .accent { color: var(--accent); }

  .fv-desc {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 560px;
  }

  .fv-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--navy);
    padding: 18px 36px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(200,168,75,0.3);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200,168,75,0.5);
  }

  .btn-primary svg { width: 18px; height: 18px; }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s;
  }

  .btn-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.08);
  }

  .fv-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .fv-stat {
    text-align: left;
  }

  .fv-stat-num {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 42px;
    color: var(--accent);
    line-height: 1;
    letter-spacing: 2px;
  }

  .fv-stat-num span {
    font-size: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
  }

  .fv-stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    letter-spacing: 0.08em;
    margin-top: 4px;
  }

  /* Form Card */
  .fv-form-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  }

  .fv-form-head {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    padding: 24px 28px;
    border-bottom: 3px solid var(--accent);
  }

  .fv-form-head h3 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
  }

  .fv-form-head p {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
  }

  .fv-form-body { padding: 28px; min-height: 770px; }

  .form-group { margin-bottom: 18px; }

  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-mid);
    margin-bottom: 6px;
    letter-spacing: 0.05em;
  }

  .form-group label .required {
    color: #e05a5a;
    font-size: 10px;
    margin-left: 4px;
    vertical-align: middle;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    border: 1.5px solid #e0ddd8;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text);
    background: #fafaf8;
    transition: border-color 0.2s;
    outline: none;
    -webkit-appearance: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--teal);
    background: white;
  }

  .form-group textarea { resize: vertical; height: 80px; }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .btn-form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--navy);
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 900;
    font-family: 'Noto Sans JP', sans-serif;
    cursor: pointer;
    letter-spacing: 0.08em;
    transition: all 0.3s;
    margin-top: 8px;
  }

  .btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,168,75,0.4);
  }

  .form-note {
    text-align: center;
    font-size: 11px;
    color: var(--gray);
    margin-top: 10px;
    line-height: 1.5;
  }

  /* ========== SECTION COMMONS ========== */
  section { position: relative; }

  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
  }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--teal);
  }

  .section-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    line-height: 1.5;
    color: var(--navy);
    margin-bottom: 16px;
  }

  .section-title .accent { color: var(--teal); }
  .section-title .gold { color: var(--accent); }

  .section-sub {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.85;
    max-width: 680px;
  }

  /* ========== PROBLEM ========== */
  #problem {
    background: var(--off-white);
  }

  .problem-intro {
    text-align: center;
    margin-bottom: 60px;
  }

  .problem-intro .section-label { justify-content: center; }
  .problem-intro .section-label::before { display: none; }
  .problem-intro .section-label::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--teal);
  }

  .problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
  }

  .problem-card {
    background: white;
    border-radius: 2px;
    padding: 32px 28px 28px;
    box-shadow: 0 1px 0 #e0ddd8, 0 4px 20px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e8e4de;
    transition: box-shadow 0.25s;
  }

  .problem-card:hover {
    box-shadow: 0 1px 0 #c8a84b, 0 8px 32px rgba(0,0,0,0.09);
  }

  .problem-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #c8272d 0%, #e05a5a 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .problem-card:hover::after {
    transform: scaleX(1);
  }

  .problem-card-num {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #c8272d;
    letter-spacing: 0.2em;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .problem-card-num::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ede9e3;
  }

  .problem-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 10px;
  }

  .problem-card h4 strong {
    color: #b02020;
    font-weight: 800;
  }

  .problem-card p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.75;
  }

  .problem-result {
    background: var(--navy);
    border-radius: 10px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .problem-result-icon {
    font-size: 40px;
    flex-shrink: 0;
  }

  .problem-result p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    line-height: 1.8;
  }

  .problem-result p strong {
    color: #ff8080;
    font-weight: 700;
  }

  /* ========== CAUSE ========== */
  #cause {
    background: white;
  }

  .cause-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 48px;
  }

  .cause-visual {
    position: relative;
  }

  /* 横並び比較コンテナ */
  /* 比較表全体：行ごとのグリッド構造 */
  .cause-compare {
    display: grid;
    /* 左列ヘッダ・各行・フッタ / VS列 / 右列ヘッダ・各行・フッタ */
    grid-template-columns: 1fr 44px 1fr;
    grid-template-rows: auto auto auto auto auto; /* head / row×3 / footer */
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
  }

  /* ヘッダ行 */
  .cause-head-bad {
    grid-column: 1;
    grid-row: 1;
    background: #c8272d;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .cause-head-good {
    grid-column: 3;
    grid-row: 1;
    background: var(--navy);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 3px solid var(--accent);
  }
  .cause-head-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 3px 8px;
    border-radius: 2px;
  }
  .cause-head-bad .cause-head-badge {
    background: rgba(255,255,255,0.2);
    color: white;
  }
  .cause-head-good .cause-head-badge {
    background: var(--accent);
    color: var(--navy);
  }
  .cause-head-title {
    font-size: 13px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.05em;
  }

  /* 各行セル共通 */
  .cause-cell {
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .cause-cell-bad {
    background: white;
    border-left: 1.5px solid #e8c4c4;
    border-right: 1.5px solid #e8c4c4;
    border-bottom: 1px solid #f0dada;
  }
  .cause-cell-good {
    background: #faf8f0;
    border-left: 1.5px solid rgba(200,168,75,0.35);
    border-right: 1.5px solid rgba(200,168,75,0.35);
    border-bottom: 1px solid rgba(200,168,75,0.2);
  }
  /* 最終データ行は下ボーダーなし（フッターと接するため） */
  .cause-cell.last {
    border-bottom: none;
  }

  .cause-row-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 6px;
  }
  .cause-cell-bad .cause-row-label { color: #c8272d; }
  .cause-cell-good .cause-row-label { color: #9a7a20; }

  .cause-row-text {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.65;
  }
  .cause-cell-bad .cause-row-text { color: #555; }
  .cause-cell-good .cause-row-text { color: var(--navy); }

  /* VS 中央列 */
  .cause-vs-col {
    grid-column: 2;
    grid-row: 1 / 6;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0ede8;
    position: relative;
  }
  .cause-vs-col::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #e0ddd8, #f0ede8 30%, #f0ede8 70%, #e0ddd8);
  }
  .cause-vs-badge {
    width: 34px;
    height: 34px;
    background: white;
    border: 1.5px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    color: #888;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
  }

  /* フッター（結果バナー） */
  .cause-footer-bad {
    grid-column: 1;
    background: #fbeaea;
    border: 1.5px solid #e8c4c4;
    border-top: none;
    border-radius: 0 0 0 10px;
    padding: 14px 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .cause-footer-good {
    grid-column: 3;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 0 0 10px 0;
    padding: 14px 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .cause-footer-icon {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
  }
  .cause-footer-bad span {
    font-size: 13px;
    font-weight: 700;
    color: #c8272d;
    line-height: 1.55;
  }
  .cause-footer-good span {
    font-size: 13px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.55;
  }

  .cause-content h3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .cause-content h3 em {
    font-style: normal;
    color: var(--teal);
    font-size: 26px;
  }

  .cause-content p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 16px;
  }

  .cause-highlight {
    background: linear-gradient(135deg, #f0fafb, #e8f8f5);
    border-left: 4px solid var(--teal);
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin-top: 24px;
  }

  .cause-highlight p {
    font-size: 14px;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.7;
    margin: 0;
  }

  /* ========== VALUE FLOW ========== */
  #value {
    background: var(--navy);
    overflow: hidden;
  }

  #value .section-title { color: white; }

  .value-flow-intro {
    text-align: center;
    margin-bottom: 56px;
  }

  .value-flow-intro .section-label { justify-content: center; }

  .value-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-bottom: 60px;
  }

  .value-steps::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--teal));
    z-index: 0;
  }

  .value-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 12px;
  }

  .value-step-num {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    margin: 0 auto 16px;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--navy);
    position: relative;
    box-shadow: 0 4px 20px rgba(200,168,75,0.4);
    line-height: 1;
  }
  .value-step-num .step-label {
    font-size: 9px;
    letter-spacing: 0.18em;
    font-weight: 400;
    opacity: 0.75;
  }
  .value-step-num .step-num {
    font-size: 26px;
    letter-spacing: 1px;
    line-height: 1;
  }

  .value-step-title {
    color: white;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .value-step-desc {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    line-height: 1.6;
  }

  .value-outcomes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .value-outcome {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,168,75,0.2);
    border-radius: 10px;
    padding: 28px;
    position: relative;
    overflow: hidden;
  }

  .value-outcome::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--teal));
  }

  .value-outcome h4 {
    color: var(--accent);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
  }

  .value-outcome p {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    line-height: 1.75;
  }

  /* ========== STRENGTHS ========== */
  #strengths { background: var(--off-white); }

  .strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
    align-items: stretch;
  }

  .strength-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
  }

  .strength-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  }

  .strength-card-head {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 28px 20px 28px;
    position: relative;
    overflow: hidden;
    min-height: 148px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .strength-card-head::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--teal));
  }

  .strength-num {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 56px;
    color: rgba(255,255,255,0.08);
    line-height: 1;
    position: absolute;
    top: 12px;
    right: 20px;
    letter-spacing: 2px;
  }

  .strength-card-head h3 {
    color: white;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    z-index: 1;
  }

  .strength-card-body { padding: 24px 28px; }

  .strength-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
  }

  .strength-point::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
  }


  /* ========== EXPERT ========== */
  #expert {
    background: linear-gradient(180deg, #f7f5f0 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }
  #expert::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--teal) 50%, var(--accent) 100%);
  }

  .expert-card {
    margin-top: 48px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 48px rgba(10,22,40,0.10), 0 2px 8px rgba(10,22,40,0.06);
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
  }

  .expert-photo-col {
    background: linear-gradient(160deg, var(--navy) 0%, #152845 100%);
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .expert-photo-col::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(0deg, rgba(200,168,75,0.10) 0%, transparent 100%);
    pointer-events: none;
  }

  .expert-photo-frame {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(200,168,75,0.5);
    box-shadow: 0 0 0 6px rgba(200,168,75,0.10), 0 8px 32px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    background: #f5f3ef;
    flex-shrink: 0;
  }
  .expert-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .expert-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
    text-align: center;
  }

  .expert-position {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 18px;
  }

  .expert-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(200,168,75,0.15);
    border: 1px solid rgba(200,168,75,0.45);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
  }

  .expert-stats {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .expert-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    border-left: 2px solid var(--accent);
  }
  .expert-stat-num {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22px;
    color: var(--accent);
    letter-spacing: 0.05em;
    line-height: 1;
    flex-shrink: 0;
  }
  .expert-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
    font-weight: 500;
  }

  .expert-content {
    padding: 44px 44px 44px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .expert-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .expert-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    background: rgba(26,122,138,0.08);
    border: 1px solid rgba(26,122,138,0.2);
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 0.06em;
  }

  .expert-career {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .expert-career-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.75;
  }

  .expert-career-item::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 10px;
  }

  .expert-message {
    background: linear-gradient(135deg, #f7f5f0 0%, #faf9f7 100%);
    border-radius: 10px;
    padding: 28px 32px;
    position: relative;
    border: 1px solid rgba(200,168,75,0.18);
  }
  .expert-message::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--teal) 100%);
    border-radius: 10px 10px 0 0;
  }
  .expert-message-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .expert-message-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(200,168,75,0.25);
  }
  .expert-message p {
    font-size: 14px;
    color: var(--text);
    line-height: 2.0;
  }
  .expert-message p strong {
    color: var(--navy);
    font-weight: 700;
  }

  @media (max-width: 900px) {
    .expert-card { grid-template-columns: 1fr; }
    .expert-photo-col { padding: 32px 24px; flex-direction: row; align-items: flex-start; flex-wrap: wrap; gap: 0; }
    .expert-photo-frame { width: 100px; height: 100px; margin-right: 20px; margin-bottom: 8px; }
    .expert-name, .expert-position { text-align: left; }
    .expert-stats { flex-direction: row; flex-wrap: wrap; }
    .expert-stat { flex: 1 1 130px; }
    .expert-content { padding: 28px 20px; }
  }

  /* ========== COMPARISON ========== */
  #comparison { background: white; }

  .comparison-intro { margin-bottom: 48px; }

  .table-wrap {
    overflow-x: auto;
  }

  .comp-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    min-width: 700px;
  }

  .comp-table th {
    padding: 20px 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .comp-table td {
    padding: 18px 24px;
    font-size: 13px;
    line-height: 1.7;
    border-top: 1px solid #f0ede8;
    color: var(--text-mid);
    vertical-align: top;
  }

  .comp-table thead th:first-child {
    background: var(--navy);
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    width: 160px;
  }

  .comp-table thead th:nth-child(2) {
    background: linear-gradient(135deg, #c8a84b, #e8c96b);
    color: var(--navy);
    font-size: 15px;
    text-align: center;
  }



  .comp-table thead th:nth-child(3),
  .comp-table thead th:nth-child(4) {
    background: var(--navy-mid);
    color: rgba(255,255,255,0.7);
    text-align: center;
  }

  .comp-table tbody tr:nth-child(even) td { background: #faf9f7; }

  .comp-table tbody td:first-child {
    font-weight: 700;
    font-size: 12px;
    color: var(--navy);
    background: #f5f3ef;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .comp-table tbody td:nth-child(2) {
    background: linear-gradient(180deg, rgba(200,168,75,0.06), rgba(200,168,75,0.03));
    font-weight: 600;
    color: var(--navy);
    border-left: 3px solid rgba(200,168,75,0.3);
    border-right: 3px solid rgba(200,168,75,0.3);
  }

  .comp-table tbody tr:last-child td:nth-child(2) {
    border-bottom: 3px solid rgba(200,168,75,0.3);
  }

  .comp-mark-text {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
  }

  .comp-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.4em;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 1px;
  }

  .comp-mark-label {
    display: block;
    line-height: 1.7;
  }

  .check-oo { color: var(--teal); font-weight: 900; font-size: 1.65em; line-height: 1; }
  .check-o { color: var(--teal); font-weight: 700; font-size: 1.5em; line-height: 1; }
  .check-tri { color: var(--accent); font-size: 1.5em; line-height: 1; }
  .check-x { color: #ccc; font-size: 1.5em; line-height: 1; }

  /* ========== SOLUTIONS ========== */
  #solutions { background: var(--off-white); }

  .solutions-tabs {
    display: flex;
    gap: 0;
    margin: 40px 0 0;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
  }

  .solutions-tab {
    flex: 1;
    padding: 18px 12px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    background: #e8e4de;
    color: var(--gray);
    letter-spacing: 0.03em;
    border: none;
    font-family: 'Noto Sans JP', sans-serif;
  }

  .solutions-tab.active {
    background: var(--navy);
    color: var(--accent);
  }

  .solutions-tab:hover:not(.active) {
    background: #d8d4ce;
    color: var(--text-mid);
  }

  .solutions-panel {
    background: white;
    border-radius: 0 0 12px 12px;
    padding: 40px;
    display: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  }

  .solutions-panel.active { display: block; }

  .sol-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .sol-tag {
    display: inline-block;
    background: var(--teal);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
  }

  .sol-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .sol-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 24px;
  }

  .sol-use-cases h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .sol-use-cases h4::before {
    content: '';
    display: block;
    width: 4px;
    height: 16px;
    background: var(--accent);
    border-radius: 2px;
  }

  .sol-use-case-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 8px;
    padding: 10px 14px;
    background: var(--off-white);
    border-radius: 6px;
  }

  .sol-use-case-item::before {
    content: '→';
    color: var(--teal);
    flex-shrink: 0;
    font-weight: 700;
  }

  .sol-visual {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 10px;
    padding: 32px;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .sol-kpi-title {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .sol-kpi-list { list-style: none; }

  .sol-kpi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: white;
    font-size: 13px;
  }

  .sol-kpi-item:last-child { border-bottom: none; }

  .sol-kpi-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .sol-kpi-badge.up { background: rgba(42,160,180,0.2); color: var(--teal-light); }
  .sol-kpi-badge.down { background: rgba(200,168,75,0.2); color: var(--accent-light); }
  .sol-kpi-badge.gain { background: rgba(100,200,120,0.2); color: #64c878; }

  /* ========== CASES ========== */
  #cases { background: white; }

  .cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

  .case-card {
    border: 1px solid #e8e4de;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
  }

  .case-card.is-clickable {
    cursor: pointer;
  }

  .case-card.is-clickable:focus-visible {
    outline: 3px solid rgba(200,168,75,0.45);
    outline-offset: 4px;
  }

  .case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  }

  .case-card-head {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 20px 24px;
    position: relative;
  }

  .case-num {
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 40px;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    letter-spacing: 2px;
  }

  .case-industry {
    display: inline-block;
    background: rgba(200,168,75,0.2);
    color: var(--accent-light);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .case-card-head h3 {
    color: white;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
  }

  .case-card-body { padding: 20px 24px; }

  .case-challenge {
    font-size: 12px;
    color: var(--gray);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .case-challenge-text {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0ede8;
  }

  .case-result-label {
    font-size: 12px;
    color: var(--teal);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .case-result-label::before {
    content: '▶';
    font-size: 10px;
  }

  .case-result-text {
    font-size: 13px;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.7;
  }

  .case-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .case-modal.is-open {
    opacity: 1;
    visibility: visible;
  }

  .case-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 20, 46, 0.72);
    backdrop-filter: blur(6px);
  }

  .case-modal-dialog {
    position: relative;
    width: min(760px, 100%);
    max-height: min(88vh, 920px);
    overflow: auto;
    background: linear-gradient(180deg, #ffffff 0%, #f8f5f0 100%);
    border: 1px solid rgba(200,168,75,0.22);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(9,20,46,0.28);
    padding: 32px;
  }

  .case-modal-close {
    position: sticky;
    top: 0;
    float: right;
    z-index: 1;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 999px;
    background: rgba(9,20,46,0.92);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 0 5px rgba(0,0,0,0.7);
  }

  .case-modal-close:hover {
    background: rgba(9,20,46,0.14);
    transform: scale(1.04);
  }

  .case-modal-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 14px;
  }

  .case-modal-title {
    font-size: clamp(26px, 3.4vw, 38px);
    line-height: 1.35;
    color: var(--navy);
    margin-bottom: 14px;
    padding-right: 48px;
  }

  .case-modal-meta {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(200,168,75,0.14);
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 22px;
  }

  .case-modal-body {
    color: var(--text-mid);
    font-size: 15px;
    line-height: 1.9;
  }

  .case-detail-lead {
    font-size: 16px;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 20px;
  }

  .case-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
  }

  .case-detail-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid #ece6db;
    border-radius: 14px;
    padding: 16px 18px;
  }

  .case-detail-card-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gray);
    margin-bottom: 8px;
  }

  .case-detail-card-value {
    color: var(--navy);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
  }

  .case-detail-section {
    margin-top: 28px;
  }

  .case-detail-section h4 {
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .case-detail-section p {
    margin-bottom: 14px;
  }

  .case-detail-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
  }

  .case-detail-points li {
    position: relative;
    padding-left: 20px;
  }

  .case-detail-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
  }

  .case-detail-support {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .case-detail-support li,
  .case-detail-recommend li {
    background: rgba(9,20,46,0.04);
    border-radius: 12px;
    padding: 12px 14px;
  }

  .case-detail-recommend {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
  }

  /* ========== PROCESS ========== */
  #process { background: var(--navy); }
  #process .section-title { color: white; }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    margin-top: 48px;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--teal));
    z-index: 0;
  }

  .process-step {
    text-align: center;
    padding: 0 8px;
    position: relative;
    z-index: 1;
  }

  .process-step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    border: 2px solid rgba(200,168,75,0.4);
    background: var(--navy);
    position: relative;
  }

  .process-step-circle::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: rgba(200,168,75,0.08);
  }

  .process-step-num {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--accent);
    position: relative;
    z-index: 1;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
  }

  .process-step-num .step-word {
    font-size: 9px;
    letter-spacing: 0.2em;
    opacity: 0.7;
  }

  .process-step-num .step-digit {
    font-size: 28px;
    letter-spacing: 1px;
    line-height: 1;
  }

  .process-step-title {
    color: white;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 6px;
  }

  .process-step-period {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,168,75,0.15);
    color: var(--accent);
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 100px;
    letter-spacing: 0.05em;
  }


  /* ========== WHITEPAPER ========== */
  #whitepaper { background: var(--off-white); }

  .wp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

  .wp-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
    border-top: 3px solid var(--navy);
  }

  .wp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.1);
  }

  .wp-card-thumb {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 28px 24px 20px;
    position: relative;
    overflow: hidden;
  }

  .wp-card-thumb::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--teal));
  }

  .wp-card-label {
    display: inline-block;
    background: rgba(200,168,75,0.2);
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 14px;
  }

  .wp-card-thumb-title {
    font-family: 'Noto Sans JP', sans-serif;
    color: white;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
  }

  .wp-doc-icon {
    position: absolute;
    bottom: 16px;
    right: 20px;
    opacity: 0.08;
    font-size: 64px;
    line-height: 1;
  }

  .wp-card-body {
    padding: 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .wp-card-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 20px;
    flex: 1;
  }

  .wp-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
  }

  .wp-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    background: rgba(26,122,138,0.08);
    border: 1px solid rgba(26,122,138,0.2);
    padding: 2px 8px;
    border-radius: 100px;
    letter-spacing: 0.05em;
  }

  .btn-wp-dl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--navy);
    color: white;
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.2s;
  }

  .btn-wp-dl:hover {
    background: var(--navy-light);
    box-shadow: 0 4px 16px rgba(10,22,40,0.25);
  }

  .btn-wp-dl svg { width: 16px; height: 16px; flex-shrink: 0; }

  .wp-note {
    text-align: center;
    margin-top: 36px;
    padding: 20px 28px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e8e4de;
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.8;
  }

  .wp-note strong { color: var(--navy); font-weight: 700; }

  @media (max-width: 900px) {
    .wp-grid { grid-template-columns: 1fr; }
  }

  /* ========== FAQ ========== */
  #faq { background: var(--off-white); }

  .faq-list { margin-top: 48px; }

  .faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .faq-q {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    cursor: pointer;
    transition: background 0.2s;
  }

  .faq-q:hover { background: #faf9f7; }

  .faq-q-badge {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 26px;
    font-weight: 900;
    font-style: normal;
    flex-shrink: 0;
    letter-spacing: 0;
    line-height: 1;
    padding: 0;
    text-align: center;
  }

  .faq-q-text {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.5;
  }

  .faq-toggle {
    width: 28px;
    height: 28px;
    border: 1.5px solid #e0ddd8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s;
  }

  .faq-item.open .faq-toggle {
    transform: rotate(45deg);
    border-color: var(--teal);
    color: var(--teal);
  }

  .faq-a {
    display: none;
    padding: 0 28px 22px 80px;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.85;
    border-top: 1px solid #f0ede8;
    padding-top: 16px;
  }

  .faq-item.open .faq-a { display: block; }

  /* ========== FINAL CTA ========== */
  #final-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #0d2244 100%);
    position: relative;
    overflow: hidden;
  }

  #final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 50% 80% at 80% 50%, rgba(26,122,138,0.2) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 20% 50%, rgba(200,168,75,0.1) 0%, transparent 50%);
  }

  .final-cta-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .final-cta-badge {
    display: inline-block;
    background: rgba(200,168,75,0.15);
    border: 1px solid rgba(200,168,75,0.4);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 100px;
    letter-spacing: 0.2em;
    margin-bottom: 32px;
  }

  .final-cta-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    color: white;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
  }

  .final-cta-title .accent { color: var(--accent); }


  .final-cta-sub {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 48px;
  }

  .final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--navy);
    padding: 20px 48px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 32px rgba(200,168,75,0.4);
    transition: all 0.3s;
  }

  .btn-cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(200,168,75,0.5);
  }

  .btn-cta-sub {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s;
  }

  .btn-cta-sub:hover {
    border-color: white;
    background: rgba(255,255,255,0.08);
  }

  .final-cta-tel {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
  }

  .final-cta-tel a {
    color: var(--accent);
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
  }

  .final-cta-tel .tel-hours { margin-left: 12px; }

  /* ========== FOOTER ========== */
  footer {
    background: #05101e;
    padding: 48px 40px 28px;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 28px;
  }

  .footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 16px;
    background: white;
    border-radius: 6px;
    padding: 6px 12px;
  }

  .footer-logo-img {
    height: 32px;
    width: auto;
    display: block;
  }

  .footer-address {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    line-height: 1.8;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .footer-link-group h4 {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-link-group a {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
    line-height: 1.5;
  }

  .footer-link-group a:hover { color: var(--accent); }

  .footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.25);
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  /* ========== FLOATING CTA ========== */
  .floating-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s;
  }

  .floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--navy);
    padding: 14px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: 0.05em;
    transition: all 0.2s;
    white-space: nowrap;
  }

  .floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.4);
  }

  .floating-btn-tel {
    background: var(--navy);
    color: white;
    border: 1px solid rgba(200,168,75,0.3);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.05em;
    transition: all 0.2s;
  }

  .floating-btn-tel svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: rgba(255,255,255,0.92);
  }

  .floating-btn-tel span { color: var(--accent); }

  /* ========== DIVIDERS ========== */
  .divider {
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--teal), var(--navy));
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 900px) {
    .pc-only { display: none; }
    .fv-inner { grid-template-columns: 1fr; }
    .fv-form-card { display: none; }
    .problem-grid { grid-template-columns: 1fr 1fr; }
    .cause-layout { grid-template-columns: 1fr; }
    .strengths-grid { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .value-steps { grid-template-columns: repeat(3, 1fr); }
    .value-steps::before { display: none; }
    .value-outcomes { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: repeat(3, 1fr); }
    .process-steps::before { display: none; }
    header { padding: 0 16px; }
    .header-tel { display: none; }
    .header-cta { gap: 8px; }
    .btn-header-sub { display: none; }
    .btn-header { padding: 9px 14px; font-size: 12px; }
    .header-logo-img { height: 32px; }
    .section-inner { padding: 60px 24px; }
    .fv-inner { padding: 60px 24px; }
    .sol-layout { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    .problem-grid { grid-template-columns: 1fr; }
    .value-steps {
      grid-template-columns: 1fr;
      row-gap: 24px;
    }
    .value-step {
      display: grid;
      grid-template-columns: 56px 1fr;
      grid-template-rows: auto auto;
      text-align: left;
      align-items: center;
      gap: 2px 16px;
      padding: 0;
    }
    .value-step-num {
      grid-row: 1 / 3;
      margin: 0;
      width: 56px;
      height: 56px;
    }
    .value-step-num .step-num { font-size: 22px; }
    .value-step-title {
      margin-bottom: 2px;
      font-size: 16px;
    }
    .value-step-title br { display: none; }
    .value-step-desc { font-size: 14px; }
    .process-steps {
      grid-template-columns: 1fr;
      row-gap: 24px;
    }
    .process-step {
      display: grid;
      grid-template-columns: 56px 1fr;
      grid-template-rows: auto auto;
      column-gap: 16px;
      text-align: left;
      padding: 0;
    }
    .process-step-circle {
      grid-row: 1 / 3;
      width: 56px;
      height: 56px;
      margin: 0;
    }
    .process-step-num .step-digit { font-size: 22px; }
    .process-step-title {
      margin-bottom: 2px;
      font-size: 14px;
    }
    .process-step-title br { display: none; }
    .process-step-period { font-size: 11px; width: fit-content; }
    .fv-catch-main { font-size: 26px; }
    .footer-links { grid-template-columns: 1fr; }
    .final-cta-buttons { flex-direction: column; align-items: center; }
    .btn-cta-main { font-size: 15px; padding: 18px 24px; gap: 8px; }
    .solutions-tab {
      word-break: keep-all;
      font-size: 10px;
      padding: 14px 6px;
      line-height: 1.4;
    }
    .solutions-tab small {
      font-size: 16px;
      font-weight: 900;
    }
    .faq-a { padding: 25px; }
    .fv-stats { gap: 12px; }
    .fv-stat-num { font-size: 26px; white-space: nowrap; }
    .fv-stat-num span { font-size: 14px; }
    .fv-stat-label { font-size: 11px; }
    .section-title { font-size: 20px; }
    .problem-result {
      display: block;
      padding: 24px;
    }
    .problem-result-icon {
      font-size: 32px;
      text-align: center;
      margin: 0 0 12px 0;
    }
    .problem-result p {
      font-size: 15px;
      line-height: 1.8;
    }
    .floating-cta {
      bottom: 16px;
      right: 16px;
      left: 16px;
      flex-direction: row;
      justify-content: center;
      gap: 8px;
    }
    .floating-btn { padding: 12px 16px; font-size: 13px; gap: 6px; }
    .floating-btn-tel { padding: 11px 14px; font-size: 12px; gap: 6px; }
    .cause-head-bad,
    .cause-head-good {
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      padding: 12px 10px;
    }
    .cause-head-bad { justify-content: center; }
    .cause-head-title { font-size: 12px; }
    .expert-stat {
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
    }
    .final-cta-title { font-size: 20px; }
    .final-cta-tel .tel-label,
    .final-cta-tel a,
    .final-cta-tel .tel-hours {
      display: block;
    }
    .final-cta-tel .tel-hours { margin-left: 0; }
    footer { padding-bottom: 90px; }
    .case-modal { padding: 16px; }
    .case-modal-dialog { padding: 24px 20px; border-radius: 16px; }
    .case-modal-title { padding-right: 36px; }
    .case-detail-grid,
    .case-detail-support { grid-template-columns: 1fr; }
  }

  /* Animations */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .animate-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* PC: disable tel link clicks */
  @media (min-width: 901px) {
    a[href^="tel:"] {
      pointer-events: none;
      cursor: default;
      text-decoration: none;
    }
  }
