    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Noto Sans JP', sans-serif;
      color: #1B1D21; background: #F6F8FB;
      line-height: 1.8; -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }

    .container { max-width: 1180px; margin: 0 auto; padding: 0 56px; }

    /* ─── Header（トップと共通） ─── */
    .site-header {
      position: sticky; top: 0; width: 100%; z-index: 100;
      background: rgba(255,255,255,0.96); backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(224,228,235,0.6);
      padding: 0 56px; height: 76px; overflow: hidden;
      display: flex; align-items: center; justify-content: space-between;
    }
    .site-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
    .site-logo img { height: 28px; width: auto; display: block; }
    .site-nav { display: flex; align-items: center; gap: 36px; }
    .site-nav a {
      font-size: 14px; color: #1B1D21; text-decoration: none;
      font-weight: 500; letter-spacing: 0.04em;
      transition: color 0.2s; position: relative;
    }
    .site-nav a:not(.nav-cta)::after {
      content: ''; position: absolute; left: 0; bottom: -6px;
      width: 0; height: 2px; background: #005AAA;
      transition: width 0.25s;
    }
    .site-nav a:not(.nav-cta):hover::after { width: 100%; }
    .site-nav a:not(.nav-cta):hover { color: #005AAA; }
    .nav-cta {
      background: #005AAA; color: #fff !important;
      padding: 11px 22px; border-radius: 4px;
      font-weight: 700; font-size: 13px;
      white-space: nowrap;
      transition: background 0.2s, transform 0.15s;
    }
    .nav-cta:hover { background: #004a8f; transform: translateY(-1px); }

    /* ─── パンくず ─── */
    .breadcrumb {
      font-size: 13px; color: #8a94a3;
      padding: 14px 0 6px;
    }
    .breadcrumb a { color: #005AAA; text-decoration: none; }
    .breadcrumb a:hover { text-decoration: underline; }
    .breadcrumb .sep { margin: 0 10px; color: #b7bfcb; }
    .breadcrumb .current { color: #1B1D21; }

    /* ─── Page Hero（中央寄せ） ─── */
    .page-hero {
      background:
        radial-gradient(circle at 90% 10%, rgba(0,90,170,0.06), transparent 40%),
        #fff;
      padding: 64px 0 64px;
      border-bottom: 1px solid #E0E4EB;
      text-align: center;
    }
    .page-title {
      font-size: clamp(28px, 3.6vw, 42px); font-weight: 700;
      line-height: 1.4; letter-spacing: 0.02em; margin-bottom: 18px;
    }
    .page-sub {
      font-size: 16px; color: #555; line-height: 2;
      max-width: 640px; margin: 0 auto;
    }

    /* ─── Body（フォームを中央に1カラム） ─── */
    .contact-body { padding: 36px 0 88px; }
    .form-wrap { max-width: 760px; margin: 0 auto; }

    .form-card {
      background: #fff; border: 1px solid #E0E4EB;
      border-radius: 12px; padding: 56px 64px;
      box-shadow: 0 4px 32px rgba(13, 27, 53, 0.04);
    }
    .form-card-header {
      padding-bottom: 28px; margin-bottom: 32px;
      border-bottom: 1px solid #E0E4EB;
      text-align: center;
    }
    .form-card-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
    .form-card-sub { font-size: 14px; color: #666; }

    .form-note {
      font-size: 13px; color: #888; text-align: center;
      margin-top: 22px; line-height: 1.85;
    }
    .form-note a { color: #005AAA; }

    /* Footer */
    .site-footer {
      background: #0A1628; color: rgba(255,255,255,0.7);
      padding: 80px 0 40px;
    }
    .footer-inner {
      display: grid; grid-template-columns: 1fr auto;
      gap: 60px; margin-bottom: 56px; align-items: flex-start;
    }
    .footer-logo img { height: 30px; width: auto; opacity: 0.9; }
    .footer-catch {
      font-size: 13px; margin-top: 20px;
      line-height: 1.85; max-width: 320px;
      color: rgba(255,255,255,0.6);
    }
    .footer-nav {
      display: grid; grid-template-columns: repeat(2, auto);
      gap: 14px 36px;
    }
    .footer-nav a {
      font-size: 13.5px; color: rgba(255,255,255,0.7);
      text-decoration: none; transition: color 0.2s;
      letter-spacing: 0.04em;
    }
    .footer-nav a:hover { color: #ffcd00; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 28px; font-size: 12px;
      color: rgba(255,255,255,0.5); letter-spacing: 0.04em;
    }

    @media (max-width: 980px) {
      .container { padding: 0 32px; }
      .form-card { padding: 40px 32px; }
      .footer-inner { grid-template-columns: 1fr; }
      .footer-nav { grid-template-columns: 1fr; gap: 2px; }
      .footer-nav a { display: inline-block; padding: 10px 0; }
    }
    @media (max-width: 640px) {
      .container { padding: 0 24px; }
      .site-header { padding: 0 20px; height: 64px; }
      .site-logo img { height: 24px; width: auto; display: block; }
      .site-nav { display: none; }
      .page-hero { padding: 40px 0 44px; }
      .contact-body { padding: 24px 0 56px; }
      .form-card { padding: 28px 22px; }
    }
/* ─── Contact Form 7 を既存デザインに合わせる ─── */
.wpcf7 { font-family: 'Noto Sans JP', sans-serif; }
.wpcf7 label { font-size: 13px; font-weight: 500; color: #1B1D21; display: block; margin-bottom: 8px; letter-spacing: 0.02em; }
.wpcf7 p { margin-bottom: 22px; }
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"],
.wpcf7 input[type="url"], .wpcf7 select, .wpcf7 textarea {
  width: 100%; padding: 13px 16px; border: 1px solid #D0D5DF; border-radius: 5px;
  font-family: 'Noto Sans JP', sans-serif; font-size: 15px; color: #1B1D21;
  background: #fff; box-sizing: border-box; -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wpcf7 input:focus, .wpcf7 select:focus, .wpcf7 textarea:focus {
  outline: none; border-color: #005AAA; box-shadow: 0 0 0 3px rgba(0,90,170,0.12);
}
.wpcf7 textarea { height: 160px; resize: vertical; line-height: 1.7; }
.wpcf7 input[type="submit"] {
  width: 100%; padding: 19px 24px; background: #005AAA; color: #fff;
  border: none; border-radius: 5px; font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 0.06em; cursor: pointer;
  margin-top: 12px; box-shadow: 0 8px 24px rgba(0, 90, 170, 0.28);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.wpcf7 input[type="submit"]:hover { background: #004a8f; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0, 90, 170, 0.4); }
.wpcf7 .wpcf7-not-valid-tip { font-size: 12px; color: #d43c3c; margin-top: 6px; }
.wpcf7 .wpcf7-response-output { border-radius: 6px; padding: 14px 18px; font-size: 14px; margin: 20px 0 0; }

/* ─── お問い合わせページ：左に案内・右にフォームの2カラム ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: start;
}
.contact-intro { padding-top: 0; }

/* 小見出し（トップページの .problem-label と同じ作り） */
.contact-label {
  display: block;
  font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700;
  color: #005AAA; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 20px; position: relative; padding-bottom: 12px;
}
.contact-label::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 24px; height: 2px; background: #005AAA;
}

/* 見出し・本文はトップページの .approach-h2 / .approach-sub に合わせる */
.contact-title {
  font-size: clamp(28px, 3.4vw, 42px); font-weight: 700;
  color: #0D1B2A; line-height: 1.4; letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.contact-lead {
  font-size: 16px; color: #555; line-height: 1.9;
  margin-bottom: 18px;
}
.contact-lead:last-of-type { margin-bottom: 0; }

/* ─── その他の窓口（罫線と余白だけで組む） ─── */
.route-list {
  display: block; margin-top: 48px;
  border-top: 1px solid #E0E4EB;
  padding-top: 26px;
}
.route-list-label {
  display: block;
  font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: #9AA4B2;
  margin-bottom: 6px;
}
.route {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 22px 0;
  border-bottom: 1px solid #EDF1F6;
  text-decoration: none; color: inherit;
  transition: border-color 0.2s;
}
.route:last-child { border-bottom: none; }
.route-body { display: block; }
.route-title {
  display: block;
  font-size: 15.5px; font-weight: 700; color: #0D1B2A;
  letter-spacing: 0.01em; line-height: 1.6;
  transition: color 0.2s;
}
.route-desc {
  display: block;
  font-size: 13px; color: #6B7A8D; line-height: 1.75;
  margin-top: 5px;
}
.route-arrow {
  flex-shrink: 0;
  font-family: 'Manrope', sans-serif; font-size: 15px;
  color: #C8D5E6;
  transition: color 0.2s, transform 0.25s;
}
.route:hover .route-title { color: #005AAA; }
.route:hover .route-arrow { color: #005AAA; transform: translateX(5px); }
.route:hover { border-color: #C8D5E6; }
.route:focus-visible {
  outline: 2px solid #005AAA; outline-offset: 4px; border-radius: 2px;
}

/* 営業ページの注意書き */
.sales-notice {
  max-width: 760px; margin: 0 auto 32px;
  padding: 28px 32px; background: #fff;
  border: 1px solid #E0E4EB; border-left: 3px solid #C9920A;
  border-radius: 0 10px 10px 0;
}
.sales-notice p { font-size: 15px; line-height: 1.9; margin-bottom: 14px; }
.sales-notice ul { list-style: none; }
.sales-notice li {
  font-size: 14px; color: #555; line-height: 1.9;
  padding-left: 18px; position: relative;
}
.sales-notice li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 8px; height: 2px; background: #C9920A;
}
.sales-notice strong { color: #1B1D21; }

/* ページ下部の窓口切り替え */
.form-switch {
  margin-top: 32px; text-align: center;
  font-size: 13.5px; color: #6B7A8D; line-height: 2;
}
.form-switch a { color: #005AAA; font-weight: 500; }

/* ─── HubSpot フォームを既存デザインに合わせる ─── */
.hbspt-form { font-family: 'Noto Sans JP', sans-serif; }
.hbspt-form .hs-form-field { margin-bottom: 22px; }
.hbspt-form label {
  font-size: 13px; font-weight: 500; color: #1B1D21;
  display: block; margin-bottom: 8px; letter-spacing: 0.02em;
}
.hbspt-form .hs-form-required { color: #d43c3c; margin-left: 4px; }
.hbspt-form .hs-field-desc { font-size: 12px; color: #8a94a3; margin-bottom: 8px; }
.hbspt-form input[type="text"],
.hbspt-form input[type="email"],
.hbspt-form input[type="tel"],
.hbspt-form input[type="number"],
.hbspt-form input[type="url"],
.hbspt-form select,
.hbspt-form textarea {
  width: 100% !important; padding: 13px 16px;
  border: 1px solid #D0D5DF; border-radius: 5px;
  font-family: 'Noto Sans JP', sans-serif; font-size: 15px; color: #1B1D21;
  background: #fff; box-sizing: border-box; -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hbspt-form input:focus, .hbspt-form select:focus, .hbspt-form textarea:focus {
  outline: none; border-color: #005AAA; box-shadow: 0 0 0 3px rgba(0,90,170,0.12);
}
.hbspt-form textarea { height: 160px; resize: vertical; line-height: 1.7; }
.hbspt-form .hs-form-booleancheckbox label,
.hbspt-form .inputs-list label {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13.5px; color: #555; line-height: 1.8; font-weight: 400;
}
.hbspt-form .inputs-list { list-style: none; }
.hbspt-form input[type="checkbox"], .hbspt-form input[type="radio"] {
  width: auto !important; margin-top: 5px; flex-shrink: 0;
}
.hbspt-form .hs-button.primary {
  width: 100%; padding: 19px 24px; background: #005AAA; color: #fff;
  border: none; border-radius: 5px; font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 0.06em; cursor: pointer;
  margin-top: 12px; box-shadow: 0 8px 24px rgba(0, 90, 170, 0.28);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.hbspt-form .hs-button.primary:hover {
  background: #004a8f; transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 90, 170, 0.4);
}
.hbspt-form .hs-error-msg, .hbspt-form .hs-error-msgs label {
  font-size: 12px; color: #d43c3c; margin-top: 6px; font-weight: 400;
}
.hbspt-form .hs-error-msgs { list-style: none; }
.hbspt-form .legal-consent-container {
  font-size: 12.5px; color: #8a94a3; line-height: 1.85; margin-top: 8px;
}
.hbspt-form a { color: #005AAA; }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-intro { padding-top: 0; }
  .route-list { margin-top: 36px; }
  .sales-notice { padding: 24px 26px; }
}
@media (max-width: 640px) {
  .route { padding: 20px 0; }
  .sales-notice { padding: 20px 22px; }
}

/* ─── CF7：必須・任意バッジと同意チェック ─── */
.wpcf7 .req, .wpcf7 .opt {
  display: inline-block; margin-left: 8px; padding: 2px 9px;
  border-radius: 3px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; vertical-align: 1px; line-height: 1.6;
}
.wpcf7 .req { background: #d43c3c; color: #fff; }
.wpcf7 .opt { background: #E0E4EB; color: #6B7A8D; }
.wpcf7 .wpcf7-acceptance { display: block; margin: 4px 0 8px; }
.wpcf7 .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.wpcf7 .wpcf7-acceptance label {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 400; color: #1B1D21; margin: 0;
}
.wpcf7 .wpcf7-acceptance input[type="checkbox"] {
  width: 17px; height: 17px; flex-shrink: 0; accent-color: #005AAA;
}
.wpcf7 .wpcf7-acceptance a { color: #005AAA; }
.wpcf7 .wpcf7-spinner { display: block; margin: 12px auto 0; }
