    /* ===== リセット・基本設定 ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
      font-size: 16px;
      line-height: 1.7;
      color: #333;
      background: #fff;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ===== カラー変数 ===== */
    :root {
      --green-dark: #00ac9a;
      --green-main: #00ac9a;
      --green-light: #5cb85c;
      --green-pale: #e8f5e9;
      --green-bg: rgba(0, 172, 154, 0.1);
      --gold: #ffa726;
      --gold-dark: #ff8c00;
      --gold-light: #ffb347;
      --line-green: #06C755;
      --text-dark: #222;
      --text-mid: #555;
      --text-light: #888;
      --white: #fff;
      --border: #ddd;
      --red: #e53935;
      --shadow: 0 4px 20px rgba(0,0,0,0.10);
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    }

    /* ===== ユーティリティ ===== */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }
    .section { padding: 60px 0; }
    .section-lead {
      font-size: clamp(16px, 2.5vw, 18px);
      text-align: center;
      color: var(--text-mid);
      margin-bottom: 30px;
    }
    .align-right { text-align: right; }
    .hero-wave-wrap { position: relative; z-index: 2; }
    .hero-wave-svg { display: block; width: 100%; }

    /* SP/PC 切替表示ユーティリティ */
    .br-sp { display: none; }
    .br-pc { display: inline; }
    @media (max-width: 768px) {
      .br-sp { display: inline; }
      .br-pc { display: none; }
    }
    .promise-lead {
      text-align: center;
      margin-bottom: 20px;
      font-size: clamp(14px, 2.5vw, 16px);
      opacity: 0.9;
    }
    .reviews-with-bg > .container { position: relative; z-index: 1; }
    .company-tel {
      color: var(--text-dark);
      font-weight: 400;
    }
    .contact-intro-note {
      margin-top: 8px;
      font-size: 14px;
      color: var(--text-mid);
    }
    .footer-tel { color: rgba(255,255,255,0.85); }
    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }
    .section-title .sub {
      font-size: 14px;
      color: var(--green-dark);
      font-weight: 700;
      letter-spacing: 0.1em;
      display: block;
      margin-bottom: 6px;
    }
    .section-title h2 {
      font-size: 32px;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.4;
    }
    .section-title h2 em {
      color: var(--green-dark);
      font-style: normal;
    }
    .section-title .underline {
      width: 60px;
      height: 4px;
      background: var(--green-dark);
      margin: 14px auto 0;
      border-radius: 2px;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: #ffa726;
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      padding: 16px 36px;
      border-radius: 50px;
      border: 2px solid #ffa726;
      box-shadow: 0 4px 16px rgba(255,167,38,0.25);
      transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }
    .btn-primary:hover {
      background: #fff;
      color: #ffa726;
      box-shadow: 0 4px 16px rgba(255,167,38,0.18);
    }
    .btn-line {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--line-green);
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      padding: 16px 36px;
      border-radius: 50px;
      border: 2px solid var(--line-green);
      box-shadow: 0 4px 16px rgba(6,199,85,0.25);
      transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }
    .btn-line:hover {
      background: #fff;
      color: var(--line-green);
      box-shadow: 0 4px 16px rgba(6,199,85,0.18);
    }
    .icon-mail {
      display: inline-block;
      margin-top: 2px;
      width: 1.2em;
      height: 1.2em;
      -webkit-mask: url('../img/lp/icon/mail.svg') no-repeat center / contain;
              mask: url('../img/lp/icon/mail.svg') no-repeat center / contain;
      background-color: currentColor;
      flex-shrink: 0;
      vertical-align: -0.15em;
    }
    .icon-phone {
      display: inline-block;
      width: 1.1em;
      height: 1.1em;
      -webkit-mask: url('../img/lp/icon/phone-main.svg') no-repeat center / contain;
              mask: url('../img/lp/icon/phone-main.svg') no-repeat center / contain;
      background-color: currentColor;
      flex-shrink: 0;
      vertical-align: -0.15em;
    }
    .btn-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      margin-top: 24px;
    }
    .wave-bottom {
      display: block;
      width: 100%;
      height: 60px;
      overflow: hidden;
      line-height: 0;
    }
    .wave-top {
      display: block;
      width: 100%;
      height: 60px;
      overflow: hidden;
      line-height: 0;
    }

    /* ===== 固定ヘッダー ===== */
    #fixed-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: #fff;
      box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
      margin: 0 auto;
    }
    .header-logo {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
      cursor: pointer;
    }
    .header-logo .logo-name {
      font-size: 16px;
      font-weight: 700;
      color: var(--green-dark);
    }
    .header-logo .logo-sub {
      font-size: 10px;
      color: var(--text-mid);
    }
    .header-right {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .header-tel {
      text-align: center;
    }
    .header-tel .hours {
      font-size: 10px;
      color: var(--text-mid);
    }
    .header-tel a {
      font-size: 22px;
      font-weight: 700;
      color: var(--green-dark);
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .header-tel a::before {
      content: '';
      display: inline-block;
      width: 16px;
      height: 16px;
      -webkit-mask: url('../img/lp/icon/phone-main.svg') no-repeat center / contain;
              mask: url('../img/lp/icon/phone-main.svg') no-repeat center / contain;
      background-color: currentColor;
      flex-shrink: 0;
    }
    .header-btns {
      display: flex;
      gap: 8px;
    }
    .header-btns .btn-sm {
      font-size: 12px;
      font-weight: 700;
      padding: 8px 16px;
      border-radius: 50px;
    }
    .btn-sm-mail {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: #fff;
    }
    .btn-sm-line {
      background: var(--line-green);
      color: #fff;
    }

    /* ===== ハンバーガーボタン ===== */
    .lp-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      margin-left: 4px;
      position: relative;
      z-index: 1101;
    }
    @media (max-width: 768px) {
      .lp-hamburger { display: flex; }
    }
    .lp-hamburger-line {
      display: block;
      width: 26px;
      height: 3px;
      background: var(--green-dark);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.2s ease;
    }
    .lp-hamburger.is-active .lp-hamburger-line:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    .lp-hamburger.is-active .lp-hamburger-line:nth-child(2) {
      opacity: 0;
    }
    .lp-hamburger.is-active .lp-hamburger-line:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    /* ===== ドロワーメニュー ===== */
    .lp-drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      z-index: 1099;
    }
    .lp-drawer-overlay.is-open {
      opacity: 1;
      visibility: visible;
    }
    .lp-drawer {
      position: fixed;
      top: 0;
      right: 0;
      width: 340px;
      max-width: 88vw;
      height: 100vh;
      background: #fff;
      box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18);
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1100;
      overflow-y: auto;
    }
    .lp-drawer.is-open {
      transform: translateX(0);
    }
    .lp-drawer-inner {
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }
    .lp-drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 22px;
      border-bottom: 1px solid var(--green-pale);
    }
    .lp-drawer-logo {
      font-size: 14px;
      font-weight: 700;
      color: var(--green-dark);
      line-height: 1.4;
    }
    .lp-drawer-close {
      width: 36px;
      height: 36px;
      background: transparent;
      border: none;
      font-size: 28px;
      line-height: 1;
      color: var(--text-mid);
      cursor: pointer;
      padding: 0;
    }
    .lp-drawer-list {
      list-style: none;
      padding: 12px 0;
      margin: 0;
    }
    .lp-drawer-item + .lp-drawer-item {
      border-top: 1px solid var(--green-pale);
    }
    .lp-drawer-link {
      display: block;
      padding: 16px 24px;
      font-size: 15px;
      font-weight: 700;
      color: var(--text-dark);
      transition: background 0.2s, color 0.2s;
    }
    .lp-drawer-link:hover {
      background: var(--green-pale);
      color: var(--green-dark);
    }
    .lp-drawer-sublist {
      list-style: none;
      padding: 0 0 8px;
      margin: 0;
      background: #fafafa;
    }
    .lp-drawer-sublink {
      display: block;
      padding: 12px 24px 12px 40px;
      font-size: 13.5px;
      color: var(--text-mid);
      position: relative;
    }
    .lp-drawer-sublink::before {
      content: '└';
      position: absolute;
      left: 24px;
      color: var(--green-main);
      font-weight: 700;
    }
    .lp-drawer-sublink:hover { color: var(--green-dark); }
    .lp-drawer-cta {
      padding: 20px 20px 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .lp-drawer-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 14px 20px;
      border-radius: 50px;
      border: 2px solid transparent;
      font-size: 16px;
      font-weight: 700;
      text-align: center;
      color: #fff;
      box-shadow: 0 4px 16px rgba(0,0,0,0.12);
      transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    }
    .lp-drawer-btn--tel {
      background: var(--green-dark);
      border-color: var(--green-dark);
      letter-spacing: 0.04em;
    }
    .lp-drawer-btn--line {
      background: var(--line-green);
      border-color: var(--line-green);
    }
    .lp-drawer-btn--mail {
      background: var(--gold);
      border-color: var(--gold);
    }
    .lp-drawer-btn:hover {
      background: #fff;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }
    .lp-drawer-btn--tel:hover { color: var(--green-dark); }
    .lp-drawer-btn--line:hover { color: var(--line-green); }
    .lp-drawer-btn--mail:hover { color: var(--gold); }
    @media (max-width: 720px) {
      .lp-hamburger { width: 40px; height: 40px; }
      .lp-drawer { width: 320px; }
    }

    /* ===== ヒーローセクション ===== */
    /* ===== MV: 明るい2カラムレイアウト（参考サイト風） ===== */
    #hero {
      margin-top: 70px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #008c7d 0%, #00ac9a 55%, #2bc7b4 100%);
      min-height: clamp(680px, 47vw, 900px);
      display: flex;
      flex-direction: column;
    }
    .hero-bg {
      display: block;
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: right center;
      z-index: 0;
    }
    #hero::after {
      content: '';
      display: block;
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(0, 172, 154, 0.85) 0%,
        rgba(0, 172, 154, 0.8) 35%,
        rgba(0, 172, 154, 0) 60%,
        rgba(0, 172, 154, 0) 100%
      );
      z-index: 1;
    }
    .hero-inner {
      position: relative;
      z-index: 3;
      height: 100%;
      max-width: 1400px;
      margin: auto;
      padding: 36px 40px 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      gap: 24px;
    }
    .hero-text-col {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      flex: 0 0 58%;
      max-width: 58%;
      background: none;
      padding: 0;
    }
    .hero-image-col {
      display: none;
    }
    .hero-image-col img {
      display: none;
    }
    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--gold);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      padding: 7px 22px;
      border-radius: 4px;
      margin-bottom: 14px;
      letter-spacing: 0.08em;
      box-shadow: 0 3px 12px rgba(255,167,38,0.35);
    }
    .hero-label::before {
      content: '\2605';
      font-size: 12px;
    }
    .hero-catch {
      font-size: clamp(20px, 2.5vw, 24px);
      color: rgba(255,255,255,0.92);
      margin-bottom: 6px;
      font-weight: 700;
    }
    .hero-main-title {
      font-size: clamp(60px, 4.5vw, 80px);
      font-weight: 700;
      color: #1a1a1a;
      line-height: 1.2;
      margin-bottom: 12px;
    }
    .hero-main-title em {
      font-style: normal;
      display: block;
      font-size: clamp(60px, 6.5vw, 80px);
      line-height: 1.05;
      letter-spacing: 0.06em;
      color: #ffa726;
      -webkit-text-stroke: 4px #fff;
      paint-order: stroke fill;
      filter: drop-shadow(3px 3px 0 rgba(150, 85, 0, 0.3));
    }
    .hero-main-title span {
      display: block;
      font-size: clamp(26px, 3.5vw, 36px);
      color: #ffffff;
      margin-top: 16px;
    }
    .hero-sub {
      margin-bottom: 16px;
      line-height: 2.0;
    }
    .hero-sub span {
      font-size: clamp(18.5px, 2.2vw, 18px);
      color: #1a4d0a;
      font-weight: 500;
      background: #fff;
      padding: 4px 10px;
      -webkit-box-decoration-break: clone;
      box-decoration-break: clone;
    }
    .feature-list {
      display: grid;
      gap: 14px;
      margin-top: 28px;
      padding: 0;
      list-style: none;
    }
    .feature-list li {
      position: relative;
      padding-left: 42px;
      font-size: clamp(18px, 2.5vw, 24px);
      color: #fff;
      font-weight: 500;
      line-height: 1.5;
      letter-spacing: 0.02em;
      text-shadow: 0 2px 6px rgba(0,0,0,0.45);
    }
    .feature-list li::before {
      content: "✔";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 28px;
      height: 28px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 700;
      box-shadow: 0 3px 10px rgba(0,0,0,0.3);
      text-shadow: none;
    }
    @media (max-width: 720px) {
      .feature-list { gap: 10px; margin-top: 20px; }
      .feature-list li { font-size: 15px; padding-left: 36px; }
      .feature-list li::before { width: 24px; height: 24px; font-size: 13px; }
    }
    .hero-tel-box {
      background-color: var(--green-dark);
      border: 2px solid var(--green-dark);
      border-radius: 12px;
      padding: 12px 20px;
      box-shadow: 0 4px 20px rgba(45,122,58,0.3);
      margin-bottom: 0;
      text-align: center;
      width: 100%;
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }
    .hero-tel-box:hover {
      background-color: #fff;
      box-shadow: 0 4px 20px rgba(45,122,58,0.18);
    }
    .hero-tel-box:hover .urgent { color: var(--gold-dark); }
    .hero-tel-box:hover a.tel-num,
    .hero-tel-box:hover .hours { color: var(--green-dark); }
    .hero-tel-box .urgent {
      font-size: 13px;
      color: #ffe066;
      font-weight: 700;
      margin-bottom: 4px;
      transition: color 0.3s ease;
    }
    .hero-tel-box a.tel-num {
      font-size: 34px;
      font-weight: 700;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: color 0.3s ease;
    }
    .hero-tel-box a.tel-num::before {
      content: '';
      display: inline-block;
      width: 26px;
      height: 26px;
      -webkit-mask: url('../img/lp/icon/phone-main.svg') no-repeat center / contain;
              mask: url('../img/lp/icon/phone-main.svg') no-repeat center / contain;
      background-color: currentColor;
      flex-shrink: 0;
    }
    .hero-tel-box .hours {
      font-size: clamp(10px, 2.5vw, 18px);
      font-weight: 500;
      color: #fff;
      margin-top: 4px;
      transition: color 0.3s ease;
    }

    /* ===== FV下CTAセクション ===== */
    #hero-cta {
      position: relative;
      background: #fff url('../img/lp/cta-bg.jpg') center/cover no-repeat;
      padding: 70px 0;
      overflow: hidden;
    }
    #hero-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.85);
      z-index: 0;
    }
    #hero-cta > .container {
      position: relative;
      z-index: 1;
    }
    .hero-intro {
      text-align: center;
      margin-bottom: 40px;
    }
    .hero-intro-tag {
      display: inline-block;
      color: #00ac9a;
      font-size: clamp(18px, 2.5vw, 32px);
      font-weight: 700;
      letter-spacing: 0.08em;
      margin-bottom: 20px;
    }
    .hero-intro-text {
      font-size: clamp(18px, 4.5vw, 20px);
      color: var(--text-mid);
      line-height: 1.95;
    }
    #strengths-bar .hero-intro {
      margin-bottom: 40px;
    }
    @media (max-width: 720px) {
      .hero-intro { margin-bottom: 32px; }
      .hero-intro-tag { font-size: 12px; padding: 6px 18px; margin-bottom: 16px; }
      .hero-intro-text { font-size: 14px; line-height: 1.85; padding: 0 4px; }
      .hero-intro-text br { display: none; }
    }
    #hero-cta .hero-cta-btns,
    #campaign .hero-cta-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      margin-bottom: 20px;
    }
    #hero-cta .btn-primary,
    #hero-cta .btn-line,
    #campaign .btn-primary,
    #campaign .btn-line {
      flex: 1 1 280px;
      max-width: 420px;
      font-size: 18px;
      padding: 16px 24px;
      align-items: center;
    }
    #hero-cta .hero-tel-box,
    #campaign .hero-tel-box {
      max-width: 560px;
      margin: 0 auto;
    }
    @media (max-width: 768px) {
      #hero-cta .hero-cta-btns,
      #campaign .hero-cta-btns { flex-direction: column; align-items: center; gap: 10px; }
      #hero-cta .btn-primary,
      #hero-cta .btn-line,
      #campaign .btn-primary,
      #campaign .btn-line {
        flex: 0 0 auto;
        width: 100%;
        max-width: 420px;
        font-size: 16px;
        padding: 14px 20px;
        margin: 0 auto;
      }
      #hero-cta .hero-tel-box a.tel-num,
      #campaign .hero-tel-box a.tel-num { font-size: 28px; }
    }

    /* ===== 強み3点バッジセクション ===== */
    #strengths-bar {
      background: #fff;
      padding: 40px 0 50px;
      border-bottom: 3px solid var(--green-pale);
    }
    .strengths-grid {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      padding-top: 60px;
      align-items: stretch;
    }
    .strength-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      flex: 1 1 28%;
      max-width: 290px;
      background: #fff;
      border-radius: 20px;
      padding: 20px 22px 28px;
      box-shadow: 0 10px 28px rgba(0,0,0,0.08);
      border: 4px solid var(--green-dark);
      position: relative;
    }
    .strength-circle {
      width: 120px;
      height: 60px;
      border-radius: 120px 120px 0 0;
      background: #fff;
      border: 4px solid var(--green-dark);
      border-bottom: none;
      position: absolute;
      top: -60px;
      left: 50%;
      transform: translateX(-50%);
    }
    .strength-icon {
      position: absolute;
      top: -18px;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 44px;
      height: 44px;
      background-color: var(--green-dark);
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
      -webkit-mask-size: contain;
              mask-repeat: no-repeat;
              mask-position: center;
              mask-size: contain;
    }
    .strength-icon--calendar {
      -webkit-mask-image: url('../img/lp/icon/calendar.svg');
              mask-image: url('../img/lp/icon/calendar.svg');
    }
    .strength-icon--star {
      -webkit-mask-image: url('../img/lp/icon/star.svg');
              mask-image: url('../img/lp/icon/star.svg');
    }
    .strength-icon--car {
      -webkit-mask-image: url('../img/lp/icon/car.svg');
              mask-image: url('../img/lp/icon/car.svg');
    }
    .strength-num {
      font-size: clamp(14px, 2.5vw, 16px);
      font-weight: 700;
      color: var(--green-dark);
      line-height: 1.2;
      margin-bottom: 4px;
    }
    .strength-label {
      font-size: clamp(16px, 2.5vw, 22px);
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.2;
      position: relative;
      display: inline-block;
      z-index: 0;
      margin-bottom: 12px;
    }
    .strength-label::before {
      content: '';
      position: absolute;
      left: -4px;
      right: -4px;
      bottom: 1px;
      height: 40%;
      background: rgba(255, 221, 0, 0.55);
      border-radius: 2px;
      z-index: -1;
      pointer-events: none;
    }
    .highlight-yellow {
      position: relative;
      display: inline-block;
      z-index: 0;
    }
    .highlight-yellow::before {
      content: '';
      position: absolute;
      left: -4px;
      right: -4px;
      bottom: 2px;
      height: 35%;
      background: rgba(255, 221, 0, 0.6);
      border-radius: 2px;
      z-index: -1;
      pointer-events: none;
    }
    .strength-desc {
      font-size: clamp(14px, 2.5vw, 16px);
      color: var(--text-mid);
      line-height: 1.6;
      text-align: left;
    }

    /* ===== お悩みセクション ===== */
    #worries {
      background: var(--green-bg);
      padding: 70px 0;
      position: relative;
    }
    .worries-list {
      max-width: 700px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .worry-item {
      background: #fff;
      border-radius: 12px;
      padding: 16px 20px 16px 24px;
      display: flex;
      align-items: center;
      gap: 14px;
      border: 1px solid var(--green-dark);
    }
    .worry-item .check {
      color: var(--gold);
      font-size: 22px;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .worry-item .text {
      font-size: 16px;
      font-weight: 500;
      color: var(--text-dark);
      line-height: 1.6;
    }
    .worries-resolve {
      text-align: center;
      color: var(--text-dark);
      margin: 0 auto;
    }
    .worries-resolve p {
      font-size: clamp(16px, 2.5vw, 22px);
      margin-bottom: 6px;
    }
    .worries-resolve strong {
      font-size: 26px;
      display: block;
      line-height: 1.4;
    }

    /* ===== 特殊清掃でできること ===== */
    #services {
      background: #fff;
      padding: 70px 0;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 40px;
    }
    .service-card {
      background: #fff;
      border-radius: 16px;
      padding: 24px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      border: 1px solid #00ac9a;
    }
    .service-card .icon-wrap {
      position: relative;
      width: 52px;
      height: 52px;
      background: var(--green-dark);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .service-card .icon-wrap::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 28px;
      height: 28px;
      background-color: #fff;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
      -webkit-mask-size: contain;
              mask-repeat: no-repeat;
              mask-position: center;
              mask-size: contain;
    }
    .icon-wrap--drop::before {
      -webkit-mask-image: url('../img/lp/icon/drop.svg');
              mask-image: url('../img/lp/icon/drop.svg');
    }
    .icon-wrap--cleaning::before {
      -webkit-mask-image: url('../img/lp/icon/cleaning.svg');
              mask-image: url('../img/lp/icon/cleaning.svg');
    }
    .icon-wrap--pest::before {
      -webkit-mask-image: url('../img/lp/icon/pest.svg');
              mask-image: url('../img/lp/icon/pest.svg');
    }
    .icon-wrap--house::before {
      -webkit-mask-image: url('../img/lp/icon/house.svg');
              mask-image: url('../img/lp/icon/house.svg');
    }
    .icon-wrap--star::before {
      -webkit-mask-image: url('../img/lp/icon/star.svg');
              mask-image: url('../img/lp/icon/star.svg');
    }
    .icon-wrap--camera::before {
      -webkit-mask-image: url('../img/lp/icon/camera.svg');
              mask-image: url('../img/lp/icon/camera.svg');
    }
    .service-card h3 {
      font-size: clamp(16px, 2.5vw, 18px);
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 6px;
    }
    .service-card p {
      font-size: clamp(14px, 2.5vw, 16px);
      color: var(--text-mid);
      line-height: 1.6;
    }
    .services-note {
      text-align: center;
      margin: 0 auto;
    }
    .services-note p {
      font-size: clamp(16px, 2.5vw, 18px);
      color: var(--text-dark);
      font-weight: 500;
      line-height: 1.8;
    }

    /* ===== 注意喚起セクション ===== */
    #caution {
      background: var(--green-bg);
      padding: 70px 0;
    }
    .caution-title {
      text-align: center;
      margin-bottom: 40px;
    }
    .caution-title .label {
      display: inline-block;
      background: var(--red);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      padding: 4px 18px;
      border-radius: 20px;
      margin-bottom: 12px;
    }
    .caution-title h2 {
      font-size: 26px;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.5;
    }
    .caution-title h2 em {
      color: var(--red);
      font-style: normal;
    }
    .trouble-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 50px;
    }
    .trouble-item {
      background: #fff;
      border-radius: 12px;
      padding: 24px 28px;
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
    .trouble-num {
      background: var(--red);
      color: #fff;
      font-size: 20px;
      font-weight: 700;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .trouble-content h3 {
      font-size: clamp(18px, 2.5vw, 20px);
      font-weight: 700;
      color: var(--red);
      margin-bottom: 8px;
    }
    .trouble-content p {
      font-size: clamp(14px, 2.5vw, 16px);
      color: var(--text-mid);
      line-height: 1.7;
    }

    /* 私達が大切にしていること */
    #promise {
      position: relative;
      padding: 88px 0;
      color: var(--text-dark);
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.88)),
        url('../img/lp/promise-bg.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .promise-inner {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }
    .promise-tag {
      display: inline-block;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.22em;
      color: var(--green-dark);
      margin-bottom: 10px;
    }
    #promise h3 {
      font-size: 28px;
      font-weight: 700;
      line-height: 1.4;
      color: var(--text-dark);
      margin-bottom: 16px;
    }
    .promise-lead {
      font-size: clamp(14px, 2.5vw, 18px);
      line-height: 1.9;
      color: var(--text-dark);
      margin: 0 auto 30px;
      max-width: 720px;
    }
    .promise-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      text-align: left;
    }
    .promise-item {
      background: #fff;
      border: 1px solid var(--green-pale);
      border-radius: 10px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 4px 14px rgba(0, 172, 154, 0.08);
    }
    .promise-item .check {
      font-size: 14px;
      font-weight: 700;
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--green-dark);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .promise-item p {
      font-size: clamp(16px, 2.5vw, 18px);
      font-weight: 500;
      line-height: 1.5;
      color: var(--text-dark);
    }
    .promise-message {
      text-align: center;
      margin-top: 36px;
      padding-top: 30px;
      border-top: 1px solid rgba(0, 172, 154, 0.25);
      font-size: clamp(20px, 3vw, 26px);
      font-weight: 700;
      line-height: 1.9;
      color: var(--text-dark);
    }
    .promise-message-em {
      position: relative;
      display: inline-block;
      z-index: 0;
      text-decoration: none;
    }
    .promise-message-em::before {
      content: '';
      position: absolute;
      left: -4px;
      right: -4px;
      bottom: 2px;
      height: 35%;
      background: rgba(255, 221, 0, 0.6);
      border-radius: 2px;
      z-index: -1;
      pointer-events: none;
    }

    /* ===== スタッフ紹介 ===== */
    #staff {
      background: #fff;
      padding: 70px 0;
    }
    .staff-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
    .staff-card {
      background: #fff;
      border: 1px solid var(--green-dark);
      border-radius: 20px;
      padding: 30px;
      box-shadow: var(--shadow);
      text-align: center;
      display: flex;
      flex-direction: column;
    }
    .staff-avatar {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: var(--green-pale);
      border: 4px solid var(--green-main);
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px;
    }
    .staff-card .role {
      font-size: clamp(10px, 2.5vw, 18px);
      color: var(--green-main);
      font-weight: 700;
      margin-bottom: 4px;
    }
    .staff-card .name-ja {
      font-size: 22px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 2px;
    }
    .staff-card .name-kana {
      font-size: 13px;
      color: var(--text-light);
      margin-bottom: 16px;
    }
    .staff-card .qualifications {
      background: var(--green-bg);
      border-radius: 10px;
      padding: 12px 16px;
      text-align: left;
      margin-bottom: 16px;
      flex-grow: 1;
    }
    .staff-card .qualifications p {
      font-size: clamp(14px, 2.5vw, 16px);
      color: var(--text-mid);
      line-height: 1.8;
    }
    .staff-card .message {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.8;
      text-align: left;
    }

    /* ===== 選ばれる5つの理由 ===== */
    #reasons {
      background: #fff;
      padding: 70px 0;
    }
    .reasons-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .reason-item {
      display: flex;
      align-items: flex-start;
      gap: 24px;
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
    }
    .reason-item:last-child { border-bottom: none; }
    .reason-num-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-shrink: 0;
    }
    .reason-label {
      font-size: 10px;
      color: var(--green-dark);
      font-weight: 500;
      letter-spacing: 0.05em;
      margin-bottom: 2px;
    }
    .reason-num {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--green-dark);
      color: #fff;
      font-size: 28px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .reason-content h3 {
      font-size: clamp(20px, 2.5vw, 22px);
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 10px;
    }
    .reason-content p {
      font-size: clamp(14px, 2.5vw, 16px);
      color: var(--text-mid);
      line-height: 1.8;
    }

    /* ===== 作業事例 ===== */
    #cases {
      background: var(--green-bg);
      padding: 70px 0;
    }
    .cases-hero {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 44px;
      align-items: flex-start;
      margin-bottom: 48px;
    }
    .cases-hero-img {
      border-radius: 10px;
      overflow: hidden;
    }
    .cases-hero-img img {
      width: 100%;
      height: 100%;
      min-height: 360px;
      object-fit: cover;
      display: block;
    }
    .cases-subtitle {
      font-size: clamp(18px, 2.5vw, 20px);
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 16px;
      line-height: 1.5;
    }
    .cases-intro {
      font-size: clamp(14px, 2.5vw, 16px);
      color: var(--text-dark);
      line-height: 1.9;
      margin: 0;
    }
    .cases-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 24px;
      padding: 14px 32px;
      background: var(--green-dark);
      color: #fff;
      font-weight: 700;
      font-size: 15px;
      border-radius: 999px;
      text-decoration: none;
      box-shadow: 0 6px 18px rgba(0, 172, 154, 0.28);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .cases-cta::after {
      content: '→';
      font-size: 18px;
      line-height: 1;
    }
    .cases-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 22px rgba(0, 172, 154, 0.35);
    }
    .case-card {
      background: #fff;
      border-radius: 5px;
      overflow: hidden;
      box-shadow: var(--shadow);
      margin-bottom: 30px;
    }
    .case-header {
      background: var(--green-dark);
      color: #fff;
      padding: 14px 24px;
      font-size: 16px;
      font-weight: 700;
    }
    .case-photos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }
    .case-photo {
      position: relative;
      background: #f5f5f5;
      aspect-ratio: 4 / 3;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .case-photo:first-child { border-right: 2px solid #fff; }
    .case-photo-label {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(0,0,0,0.6);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 4px;
    }
    .case-photo-label.after { background: var(--gold); }
    .case-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .case-photo-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: #bbb;
      font-size: 13px;
    }
    .case-photo-placeholder .ph-icon { font-size: 40px; }
    .case-details {
      padding: 20px 24px;
    }
    .case-details-grid {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .case-detail-item {
      display: flex;
      gap: 14px;
      align-items: baseline;
      padding: 8px 0;
      border-bottom: 1px solid var(--green-pale);
    }
    .case-detail-item:last-child { border-bottom: none; }
    .case-detail-item .label {
      font-size: clamp(12px, 2.5vw, 18px);
      color: var(--green-main);
      font-weight: 700;
      flex: 0 0 90px;
    }
    .case-detail-item .value {
      font-size: clamp(12px, 2.5vw, 18px);
      font-weight: 400;
      color: var(--text-dark);
      flex: 1;
    }
    .case-content-list {
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.8;
    }
    .case-note {
      text-align: center;
      font-size: 13px;
      color: var(--text-light);
      margin-top: 10px;
    }

    /* ===== サポート一覧 ===== */
    #support {
      background: #fff;
      padding: 70px 0;
    }
    .support-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 30px;
    }
    .support-card {
      text-align: center;
    }
    .support-card .icon {
      margin: 0 0 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-radius: 12px;
      aspect-ratio: 4 / 3;
      background: #fff;
    }
    .support-card .icon:empty { display: none; }
    .support-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .support-card h3 {
      font-size: clamp(14px, 2.5vw, 20px);
      font-weight: 700;
      color: var(--text-dark);
      text-align: center;
    }
    .area-box {
      border: 2px solid var(--green-main);
      border-radius: 16px;
      padding: 24px 30px;
      text-align: center;
    }
    .area-box h3 {
      font-size: clamp(16px, 2.5vw, 20px);
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 10px;
    }
    .area-box p {
      font-size: clamp(14px, 2.5vw, 18px);
      color: var(--text-dark);
      line-height: 1.8;
    }

    /* ===== 料金プラン ===== */
    #pricing {
      background: var(--green-bg);
      padding: 70px 0;
    }
    .pricing-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 30px;
    }
    .pricing-item {
      background: #fff;
      border-radius: 14px;
      padding: 20px 24px;
      box-shadow: var(--shadow-sm);
      border-left: 4px solid var(--green-dark);
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .pricing-item:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }
    .pricing-item-name {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.5;
    }
    .pricing-item-sub {
      font-size: 12px;
      font-weight: 500;
      color: var(--text-light);
      margin-left: 2px;
    }
    .pricing-item-price {
      font-size: 22px;
      font-weight: 700;
      color: var(--green-dark);
      line-height: 1.2;
      letter-spacing: 0.02em;
    }
    .pricing-item-price .tilde {
      margin: 0 4px;
      font-size: 18px;
      color: var(--green-main);
    }
    .pricing-item-unit {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-mid);
      margin-left: 4px;
    }
    .pricing-note {
      background: #fff;
      border-radius: 12px;
      padding: 20px 24px;
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.9;
      box-shadow: var(--shadow-sm);
    }
    .pricing-note p { margin-bottom: 4px; }
    .pricing-note p:last-child { margin-bottom: 0; }

    /* ===== キャンペーン ===== */
    #campaign {
      position: relative;
      background: #fff url('../img/lp/cta-bg.jpg') center/cover no-repeat;
      padding: 60px 0;
      text-align: center;
      overflow: hidden;
    }
    #campaign::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.85);
      z-index: 0;
    }
    #campaign > .container {
      position: relative;
      z-index: 1;
    }
    .campaign-card {
      position: relative;
      background: #fff;
      border-radius: 20px;
      padding: 50px 40px;
      box-shadow: var(--shadow);
      border: 2px solid #D8BE83;
      max-width: 760px;
      margin: 0 auto;
      overflow: hidden;
    }
    .campaign-card::before,
    .campaign-card::after {
      content: '';
      position: absolute;
      width: 180px;
      height: 180px;
      background-image: url('../img/lp/ribbon_gold.png');
      background-repeat: no-repeat;
      background-size: cover;
      pointer-events: none;
      z-index: 0;
    }
    .campaign-card::before {
      top: 0;
      left: 0;
    }
    .campaign-card::after {
      bottom: 0;
      right: 0;
      transform: rotate(180deg);
    }
    .campaign-card > * {
      position: relative;
      z-index: 1;
    }
    .campaign-label {
      display: inline-block;
      color: var(--gold);
      font-size: clamp(20px, 5.5vw, 40px);
      font-weight: 700;
      padding: 5px 20px;
      border-radius: 20px;
      margin-bottom: 16px;
    }
    .campaign-title {
      font-size: 18px;
      font-weight: 500;
      color: var(--text-dark);
      margin-bottom: 10px;
    }
    .campaign-discount {
      font-size: 80px;
      font-weight: 700;
      line-height: 1;
      color: var(--gold);
      margin-bottom: 6px;
    }
    .campaign-discount sup { font-size: 36px; vertical-align: top; margin-top: 16px; display: inline-block; color: var(--text-dark); }
    .campaign-discount sub { font-size: 36px; }
    .campaign-sub {
      font-size: 16px;
      color: var(--text-mid);
      margin-bottom: 0;
    }
    #campaign .campaign-card { margin-bottom: 30px; }

    /* ===== お客様の声 ===== */
    #reviews {
      background: #fff;
      padding: 70px 0;
    }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .review-card {
      border-radius: 16px;
      padding: 24px;
      border: 1px solid var(--green-dark);
      position: relative;
    }
    .review-tag {
      display: inline-block;
      background: var(--green-dark);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 999px;
      margin-bottom: 12px;
      letter-spacing: 0.04em;
    }
    .review-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 8px;
    }
    .review-meta {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px;
    }
    .review-text {
      font-size: clamp(14px, 2.5vw, 16px);
      color: var(--text-mid);
      line-height: 1.8;
    }
    .stars {
      color: var(--gold);
      font-size: 16px;
      margin-bottom: 6px;
    }

    /* ===== 作業の流れ ===== */
    #flow {
      background: var(--green-bg);
      padding: 70px 0;
    }
    .flow-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      max-width: 800px;
      margin: 0 auto;
    }
    .flow-item {
      display: flex;
      gap: 20px;
      position: relative;
    }
    .flow-item:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 28px;
      top: 60px;
      bottom: -20px;
      width: 2px;
      background: var(--green-main);
    }
    .flow-left {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-shrink: 0;
    }
    .flow-step {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green-main), var(--green-dark));
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(61,155,74,0.35);
    }
    .flow-step .step-label { font-size: 8px; font-weight: 700; letter-spacing: 0.05em; }
    .flow-step .step-num { font-size: 22px; font-weight: 700; line-height: 1; }
    .flow-content {
      background: #fff;
      border-radius: 16px;
      padding: 20px 24px;
      margin-bottom: 20px;
      flex: 1;
      box-shadow: var(--shadow-sm);
    }
    .flow-content h3 {
      font-size: clamp(16px, 2.5vw, 20px);
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 8px;
    }
    .flow-content p {
      font-size: clamp(14px, 2.5vw, 16px);
      color: var(--text-mid);
      line-height: 1.8;
    }

    /* ===== Q&A ===== */
    #faq {
      background: #fff;
      padding: 70px 0;
    }
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 800px;
      margin: 0 auto;
    }
    .faq-item {
      border: 1px solid var(--green-main);
      border-radius: 12px;
      overflow: hidden;
    }
    .faq-q {
      width: 100%;
      padding: 18px 56px 18px 24px;
      background: #fff;
      font-size: clamp(14px, 2.5vw, 18px);
      font-weight: 700;
      color: var(--green-dark);
      display: flex;
      align-items: flex-start;
      gap: 12px;
      cursor: pointer;
      border: none;
      text-align: left;
      font-family: inherit;
      position: relative;
      transition: background .2s ease;
    }
    .faq-q:hover { background: #fff; }
    .faq-q-text {
      color: var(--text-dark); 
      flex: 1; 
      line-height: 1.6; 
    }
    .faq-q .q-mark {
      background: var(--green-main);
      color: #fff;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 700;
      flex-shrink: 0;
    }
    .faq-toggle {
      position: absolute;
      right: 22px;
      top: 50%;
      width: 16px;
      height: 16px;
      transform: translateY(-50%);
      flex-shrink: 0;
    }
    .faq-toggle::before,
    .faq-toggle::after {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      background: var(--green-dark);
      transition: transform .25s ease, opacity .25s ease;
    }
    .faq-toggle::before {
      width: 16px;
      height: 2px;
      transform: translate(-50%, -50%);
    }
    .faq-toggle::after {
      width: 2px;
      height: 16px;
      transform: translate(-50%, -50%);
    }
    .faq-item.is-open .faq-toggle::after {
      transform: translate(-50%, -50%) rotate(90deg);
      opacity: 0;
    }
    .faq-a {
      padding: 0 24px 0 24px;
      font-size: clamp(14px, 2.5vw, 18px);
      color: var(--text-mid);
      line-height: 1.9;
      background: #fff;
      display: flex;
      gap: 12px;
      align-items: flex-start;
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease, padding .3s ease;
    }
    .faq-item.is-open .faq-a {
      padding: 18px 24px 18px 24px;
      max-height: 600px;
    }
    .faq-a .a-mark {
      background: var(--gold);
      color: #fff;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 700;
      flex-shrink: 0;
    }

    /* ===== 会社概要 ===== */
    #company {
      background: var(--green-bg);
      padding: 70px 0;
    }
    .company-table-wrap {
      background: #fff;
      border-radius: 16px;
      padding: 16px 36px;
      box-shadow: var(--shadow-sm);
      max-width: 800px;
      margin: 0 auto;
    }
    .company-table {
      width: 100%;
      border-collapse: collapse;
      background: transparent;
    }
    .company-table th {
      color: var(--text-dark);
      padding: 18px 8px;
      font-size: clamp(14px, 2.5vw, 18px);
      font-weight: 700;
      text-align: left;
      width: 180px;
      border-bottom: 1px solid var(--green-pale);
      vertical-align: top;
    }
    .company-table td {
      padding: 18px 8px;
      font-size: 14px;
      color: var(--text-dark);
      border-bottom: 1px solid var(--green-pale);
      line-height: 1.8;
    }
    .company-table tr:last-child th,
    .company-table tr:last-child td { border-bottom: none; }

    /* ===== お問い合わせフォーム ===== */
    #contact {
      background: #fff;
      padding: 70px 0;
    }
    .contact-intro {
      text-align: center;
      margin-bottom: 40px;
    }
    .contact-intro .tel-big {
      font-size: 42px;
      font-weight: 700;
      color: var(--green-dark);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 6px;
      padding: 12px 32px;
      border: 2px solid var(--green-dark);
      border-radius: 50px;
      background: #fff;
      box-shadow: 0 4px 16px rgba(45, 122, 58, 0.18);
      transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    }
    .contact-intro .tel-big:hover {
      background: var(--green-dark);
      color: #fff;
      box-shadow: 0 4px 16px rgba(45, 122, 58, 0.28);
    }
    .contact-intro .tel-big::before {
      content: '';
      display: inline-block;
      width: 32px;
      height: 32px;
      -webkit-mask: url('../img/lp/icon/phone-main.svg') no-repeat center / contain;
              mask: url('../img/lp/icon/phone-main.svg') no-repeat center / contain;
      background-color: currentColor;
      flex-shrink: 0;
    }
    .contact-intro .hours {
      font-size: 14px;
      color: var(--text-mid);
    }
    .form-box {
      max-width: 800px;
      background: var(--green-bg);
      border-radius: 20px;
      padding: 40px;
      margin: 0 auto;
    }
    .form-group {
      margin-bottom: 20px;
    }
    .form-group label {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 6px;
    }
    .form-group label .required {
      background: var(--gold);
      color: #fff;
      font-size: 10px;
      padding: 2px 6px;
      border-radius: 4px;
      margin-left: 6px;
    }
    .form-group label .optional {
      background: var(--text-light);
      color: #fff;
      font-size: 10px;
      padding: 2px 6px;
      border-radius: 4px;
      margin-left: 6px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid #c8e6c9;
      border-radius: 10px;
      font-size: 15px;
      font-family: inherit;
      background: #fff;
      color: var(--text-dark);
      transition: border-color 0.2s;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--green-main);
    }
    .form-group textarea { min-height: 120px; resize: vertical; }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-check {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      font-size: 14px;
    }
    .form-check input[type="checkbox"] {
      width: 20px;
      height: 20px;
      cursor: pointer;
    }
    .form-check a { color: var(--green-main); text-decoration: underline; }
    .btn-submit {
      width: 100%;
      background: linear-gradient(135deg, var(--green-main), var(--green-dark));
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      padding: 18px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(45,122,58,0.35);
      transition: transform 0.2s;
    }
    .btn-submit:hover { transform: translateY(-2px); }

    /* ===== Contact Form 7 用スタイル ===== */
    .form-placeholder-note {
      text-align: center;
      color: var(--text-mid);
      font-size: 14px;
      padding: 30px 10px;
    }
    .form-placeholder-note code {
      background: #fff;
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 13px;
      color: var(--green-dark);
    }
    .mw_wp_form { font-size: 15px; }
    /* MW WP Form が自動で挿入する <br> による余白を抑制し、margin で間隔を制御 */
    .mw_wp_form br { display: none; }
    .lp-form-row { margin-bottom: 12px; }
    .lp-form-row > label,
    .lp-form-row label:first-child {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 6px;
    }
    .form-box .required,
    .lp-form-row .required,
    .lp-form-row-2col .required {
      display: inline-block;
      background: var(--gold);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 4px;
      margin-left: 6px;
      vertical-align: middle;
      line-height: 1.4;
    }
    .lp-form-row-2col {
      display: block;
      margin-bottom: 0;
    }
    .lp-form-row-2col > div { margin: 0 0 12px; }
    /* 電話番号の3分割入力（MW WP Form の children="3,4,4"）を1本に見せる */
    .mw_wp_form .mwform-tel-field {
      display: flex;
      align-items: center;
      gap: 6px;
      width: 100%;
    }
    .mw_wp_form .mwform-tel-field input[type="text"] {
      flex: 1 1 0;
      min-width: 0;
      padding: 12px 10px;
      text-align: center;
    }
    .mw_wp_form input[type="text"],
    .mw_wp_form input[type="tel"],
    .mw_wp_form input[type="email"],
    .mw_wp_form input[type="url"],
    .mw_wp_form input[type="number"],
    .mw_wp_form input[type="date"],
    .mw_wp_form select,
    .mw_wp_form textarea {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid #c8e6c9;
      border-radius: 10px;
      font-size: 15px;
      font-family: inherit;
      background: #fff;
      color: var(--text-dark);
      transition: border-color 0.2s;
      box-sizing: border-box;
    }
    .mw_wp_form input:focus,
    .mw_wp_form select:focus,
    .mw_wp_form textarea:focus {
      outline: none;
      border-color: var(--green-main);
    }
    .mw_wp_form textarea { min-height: 140px; resize: vertical; }
    .mw_wp_form .mwform-checkbox-field,
    .mw_wp_form .mwform-radio-field {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin: 0 14px 8px 0;
      background: #fff;
      border: 1px solid #c8e6c9;
      padding: 8px 14px;
      border-radius: 999px;
      cursor: pointer;
      font-size: 14px;
      color: var(--text-dark);
    }
    .mw_wp_form .mwform-checkbox-field input,
    .mw_wp_form .mwform-radio-field input { margin: 0; }
    .mw_wp_form .error {
      display: block;
      color: #d32f2f;
      font-size: 13px;
      margin-top: 4px;
    }
    .lp-form-check {
      margin: 8px 0 22px;
      font-size: 14px;
      color: var(--text-mid);
      text-align: center;
      line-height: 2;
    }
    .lp-form-check .mwform-checkbox-field {
      background: transparent;
      border: none;
      padding: 0;
    }
    .lp-form-check .mwform-checkbox-field-text { display: none; }
    .lp-form-check a {
      color: var(--green-main);
      text-decoration: underline;
    }
    .lp-form-check a:hover {
      color: var(--green-dark);
    }
    .lp-form-submit { margin-top: 8px; text-align: center; }
    .mw_wp_form input.btn-submit,
    .mw_wp_form input[type="submit"],
    .mw_wp_form button[type="submit"] {
      width: auto;
      min-width: 240px;
      max-width: 360px;
      background: var(--green-dark);
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      padding: 16px 36px;
      border-radius: 50px;
      border: 2px solid var(--green-dark);
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(45, 122, 58, 0.28);
      transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
      font-family: inherit;
    }
    .mw_wp_form input[type="submit"]:hover,
    .mw_wp_form button[type="submit"]:hover {
      background: #fff;
      color: var(--green-dark);
      box-shadow: 0 4px 16px rgba(45, 122, 58, 0.18);
    }
    .mw_wp_form .mw_wp_form_complete,
    .mw_wp_form .mw_wp_form_confirm,
    .mw_wp_form .mw_wp_form_input { display: block; }
    @media (max-width: 768px) {
      .mw_wp_form input[type="text"],
      .mw_wp_form input[type="tel"],
      .mw_wp_form input[type="email"],
      .mw_wp_form select,
      .mw_wp_form textarea { font-size: clamp(14px, 4vw, 16px); }
      .mw_wp_form input[type="submit"],
      .mw_wp_form button[type="submit"] { font-size: clamp(15px, 4.4vw, 18px); padding: 16px; }
    }

    /* ===== サンクスページ ===== */
    .page-thanks { background: var(--green-bg); }
    .thanks-section {
      padding: 140px 0 80px;
      min-height: calc(100vh - 70px);
      display: flex;
      align-items: center;
    }
    .thanks-card {
      background: #fff;
      border-radius: 24px;
      padding: 56px 40px 48px;
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
      box-shadow: var(--shadow);
      border: 2px solid var(--green-pale);
    }
    .thanks-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green-main), var(--green-dark));
      color: #fff;
      font-size: 36px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 6px 18px rgba(0, 172, 154, 0.35);
    }
    .thanks-tag {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.18em;
      color: var(--green-dark);
      margin-bottom: 8px;
    }
    .thanks-title {
      font-size: clamp(22px, 4vw, 32px);
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.5;
      margin-bottom: 14px;
    }
    .thanks-title em { color: var(--green-dark); font-style: normal; }
    .thanks-section .underline {
      width: 60px;
      height: 4px;
      background: var(--green-dark);
      border-radius: 2px;
      margin: 0 auto 28px;
    }
    .thanks-lead {
      font-size: clamp(14px, 2.5vw, 16px);
      color: var(--text-mid);
      line-height: 1.95;
      margin-bottom: 18px;
    }
    .thanks-lead strong { color: var(--green-dark); }
    .thanks-note {
      font-size: 13px;
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 28px;
    }
    .thanks-tel-box {
      background: var(--green-bg);
      border-radius: 14px;
      padding: 20px 16px;
      margin-bottom: 28px;
    }
    .thanks-tel-box .urgent {
      display: block;
      font-size: 12px;
      font-weight: 700;
      color: var(--text-mid);
      margin-bottom: 4px;
    }
    .thanks-tel-box .tel-num {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: clamp(26px, 5vw, 34px);
      font-weight: 700;
      color: var(--green-dark);
      line-height: 1.2;
    }
    .thanks-tel-box .tel-num::before {
      content: '';
      display: inline-block;
      width: 1em;
      height: 1em;
      -webkit-mask: url('../img/lp/icon/phone-main.svg') no-repeat center / contain;
              mask: url('../img/lp/icon/phone-main.svg') no-repeat center / contain;
      background-color: currentColor;
    }
    .thanks-tel-box .hours {
      font-size: 12px;
      color: var(--text-mid);
      margin-top: 4px;
    }
    .thanks-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .thanks-actions .btn-primary,
    .thanks-actions .btn-line {
      min-width: 240px;
    }
    @media (max-width: 768px) {
      .thanks-section { padding: 110px 0 60px; }
      .thanks-card { padding: 40px 22px 32px; border-radius: 18px; }
      .thanks-icon { width: 60px; height: 60px; font-size: 30px; }
      .thanks-tel-box { padding: 16px 14px; }
      .thanks-actions { flex-direction: column; align-items: center; gap: 12px; }
      .thanks-actions .btn-primary,
      .thanks-actions .btn-line { width: 100%; max-width: 320px; min-width: 0; }
    }

    /* ===== フッター ===== */
    #footer {
      background: var(--green-dark);
      color: rgba(255,255,255,0.85);
      padding: 40px 0 20px;
      text-align: center;
    }
    .footer-logo {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
    }
    .footer-info {
      font-size: 13px;
      line-height: 2;
      margin-bottom: 20px;
    }
    .footer-copy {
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 16px;
    }

    /* ===== 緊急CTAバー ===== */
    .cta-bar {
      background: linear-gradient(135deg, var(--green-main), var(--green-dark));
      padding: 50px 0;
      text-align: center;
      color: #fff;
    }
    .cta-bar h2 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .cta-bar p {
      font-size: 15px;
      opacity: 0.9;
      margin-bottom: 24px;
    }
    .cta-tel-wrap {
      background: rgba(255,255,255,0.15);
      border-radius: 16px;
      padding: 20px 30px;
      display: inline-block;
      margin-bottom: 24px;
    }
    .cta-tel-wrap .urgent {
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .cta-tel-wrap a {
      font-size: 38px;
      font-weight: 700;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .cta-tel-wrap a::before {
      content: '';
      display: inline-block;
      width: 30px;
      height: 30px;
      -webkit-mask: url('../img/lp/icon/phone-main.svg') no-repeat center / contain;
              mask: url('../img/lp/icon/phone-main.svg') no-repeat center / contain;
      background-color: currentColor;
      flex-shrink: 0;
    }
    .cta-tel-wrap .hours {
      font-size: 13px;
      opacity: 0.85;
      margin-top: 4px;
    }

    /* ===== 画像追加セクション用CSS ===== */
    /* お悩み2カラム */
    .worries-2col {
      display: flex;
      gap: clamp(20px, 2.5vw, 32px);
      align-items: flex-start;
      justify-content: center;
      margin: 0 auto 24px;
    }
    .worries-img-col {
      flex: 0 0 clamp(280px, 36vw, 340px);
      border-radius: 5px;
      overflow: hidden;
    }
    .worries-photo {
      width: 100%;
      object-fit: cover;
      display: block;
    }
    .worries-2cl .worries-list {
      flex: 1;
    }

    /* スタッフ画像 */
    .staff-avatar-img {
      width: 230px;
      height: 230px;
      max-width: 230px;
      aspect-ratio: 1 / 1;
      border-radius: 50%;
      overflow: hidden;
      margin: 0 auto 16px;
      flex-shrink: 0;
      box-sizing: border-box;
    }
    .staff-avatar-img img {
      width: 100% !important;
      height: 100% !important;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      display: block;
      border-radius: 50%;
    }

    /* 選ばれる理由イントロ（ミニマル：写真主役 + 短文） */
    .reasons-intro {
      margin: 0 auto 72px;
      text-align: center;
    }
    .reasons-intro-photo {
      border-radius: 5px;
      overflow: hidden;
      margin: 0 auto 48px;
      height: clamp(260px, 36vw, 440px);
    }
    .reasons-intro-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 35%;
    }
    .reasons-intro-text {
      position: relative;
      font-size: clamp(16px, 2.5vw, 20px);
      line-height: 2.1;
      color: var(--text-dark);
      font-weight: 500;
      letter-spacing: 0.04em;
      padding-top: 28px;
    }
    .reasons-intro-text::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 2px;
      background: var(--green-main);
    }
    @media (max-width: 720px) {
      .reasons-intro { margin-bottom: 48px; }
      .reasons-intro-photo {
        margin-bottom: 32px;
        border-radius: 5px;
        height: clamp(200px, 56vw, 300px);
      }
      .reasons-intro-text {
        font-size: 15px;
        line-height: 1.95;
        padding: 22px 8px 0;
        letter-spacing: 0.02em;
      }
      .reasons-intro-text::before { width: 32px; }
    }
    .flow-step-img img {
      width: 100%;
      height: 120px;
      object-fit: cover;
    }

    /* 認定資格 行レイアウト（常に1項目1行） */
    .qualifications .qual-line,
    .company-table .qual-line {
      display: block;
    }

    /* お客様の声 背景画像 */
    .reviews-with-bg {
      position: relative;
      overflow: hidden;
    }
    .reviews-bg-img {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .reviews-bg-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.12;
    }

    /* ============================================================
       レスポンシブ対応（タブレット / モバイル / 小モバイル）
       ============================================================ */

    /* ----- タブレット以下（〜1024px） ----- */
    @media (max-width: 1024px) {
      .container { padding: 0 16px; }
      .header-inner { padding: 10px 16px; max-width: 100%; }
      .header-logo .logo-name { font-size: 14px; }
      .header-tel a { font-size: 20px; }
      .header-btns .btn-sm { font-size: 11px; padding: 7px 12px; }

      /* ヒーロー（タブレット） */
      #hero { min-height: clamp(560px, 70vw, 720px); }
      .hero-inner { padding: 28px 24px; max-width: 100%; }
      .hero-text-col { flex: 1 1 100%; max-width: 100%; }
      .hero-main-title { font-size: clamp(48px, 7vw, 64px); }
      .hero-main-title em { font-size: clamp(52px, 8vw, 72px); }
      .hero-main-title span { font-size: clamp(22px, 3.2vw, 30px); }
      .hero-catch { font-size: clamp(16px, 2.4vw, 20px); }
      .feature-list li { font-size: clamp(16px, 2.2vw, 20px); }

      /* セクション縦余白の中間値 */
      .section { padding: 56px 0; }
    }

    /* ----- モバイル（〜768px） ----- */
    @media (max-width: 768px) {
      body { font-size: clamp(13px, 3.6vw, 16px); line-height: 1.75; }
      .container { padding: 0 16px; }
      .section { padding: 48px 0; }

      /* セクションタイトル */
      .section-title { margin-bottom: 28px; }
      .section-title h2 { font-size: clamp(18px, 5.2vw, 24px); line-height: 1.5; }
      .section-title .sub { font-size: clamp(10px, 2.8vw, 13px); }
      .section-title .underline { width: 48px; height: 3px; margin-top: 10px; }

      /* ボタン共通 */
      .btn-primary,
      .btn-line {
        font-size: 15px;
        padding: 14px 20px;
      }
      .btn-wrap { flex-direction: column; gap: 10px; }
      .btn-wrap .btn-primary,
      .btn-wrap .btn-line { width: 100%; }

      /* 固定ヘッダー */
      .header-inner {
        padding: 8px 12px;
        gap: 8px;
      }
      .header-logo .logo-name { font-size: clamp(10px, 3vw, 12px); line-height: 1.3; }
      .header-logo .logo-sub { font-size: clamp(10px, 2.4vw, 11px); }
      .header-right { gap: 8px; }
      .header-tel { display: none; }
      .header-btns { display: none; }

      /* ヒーロー */
      #hero {
        margin-top: 54px;
        min-height: 0;
      }
      .hero-bg {
        object-position: 78% center;
      }
      .hero-inner {
        flex-direction: column;
        padding: 28px 20px 20px;
        gap: 14px;
        align-items: flex-start;
      }
      .hero-text-col {
        flex: 1 1 auto;
        max-width: 78%;
        width: 78%;
        align-items: flex-start;
        text-align: left;
      }
      .hero-catch { font-size: 14px; margin-bottom: 4px; }
      .hero-main-title { font-size: 38px; line-height: 1.15; }
      .hero-main-title em {
        font-size: 44px;
        -webkit-text-stroke: 3px #fff;
      }
      .hero-main-title span { font-size: 17px; margin-top: 10px; }
      #hero::after {
        background: linear-gradient(
          to right,
          rgba(0, 172, 154, 0.92) 0%,
          rgba(0, 172, 154, 0.85) 45%,
          rgba(0, 172, 154, 0.35) 75%,
          rgba(0, 172, 154, 0) 100%
        );
      }
      .feature-list { width: 100%; }
      .feature-list li { text-align: left; }

      /* FV下CTA */
      #hero-cta { padding: 48px 0; }
      #hero-cta .hero-tel-box { padding: 14px 16px; }
      #hero-cta .hero-tel-box a.tel-num { font-size: clamp(22px, 7vw, 32px); }
      #hero-cta .hero-tel-box a.tel-num::before { font-size: clamp(16px, 5vw, 24px); }
      .hero-tel-box .hours { font-size: clamp(10px, 2.8vw, 13px); line-height: 1.6; }

      /* 強みバッジ */
      #strengths-bar { padding: 32px 0 40px; }
      .strengths-grid { flex-direction: column; gap: 36px; padding-top: 45px; }
      .strength-item { max-width: 100%; width: 100%; padding: 22px 14px 20px; border-radius: 16px; }
      .strength-circle { width: 90px; height: 45px; top: -45px; border-radius: 90px 90px 0 0; border-width: 3px; border-bottom: none; }
      .strength-icon { width: 34px; height: 34px; top: -10px; }
      .strength-num { font-size: clamp(14px, 2.5vw, 16px); }
      .strength-label { font-size: clamp(16px, 2.5vw, 20px); margin-bottom: 8px; }
      .strength-desc { font-size: clamp(14px, 2.5vw, 16px); line-height: 1.6; }

      /* お悩み */
      #worries { padding: 48px 0; }
      .worries-2col {
        flex-direction: column;
        gap: 20px;
      }
      .worries-img-col {
        flex: 1 1 auto;
        width: 100%;
      }
      .worries-photo { height: 200px; }
      .worries-list { margin-bottom: 24px; }
      .worry-item { padding: 14px 16px; gap: 10px; }
      .worry-item .text { font-size: clamp(12px, 3.4vw, 15px); }
      .worries-resolve { padding: 22px 20px; }
      .worries-resolve strong { font-size: clamp(16px, 4.6vw, 22px); }

      /* 特殊清掃でできること */
      #services { padding: 48px 0; }
      .services-grid { grid-template-columns: 1fr; gap: 14px; }
      .service-card { padding: 18px; gap: 12px; }
      .service-card .icon-wrap { width: 44px; height: 44px; }
      .service-card .icon-wrap::before { width: 24px; height: 24px; }
      .services-note { padding: 18px 20px; }
      .services-note p { font-size: clamp(12px, 3.4vw, 15px); line-height: 1.7; }

      /* 注意喚起 */
      #caution { padding: 48px 0; }
      .caution-title h2 { font-size: clamp(15px, 4.4vw, 21px); line-height: 1.5; }
      .trouble-list { gap: 14px; margin-bottom: 36px; }
      .trouble-item {
        flex-direction: column;
        padding: 20px;
        gap: 12px;
      }
      .trouble-num { width: 40px; height: 40px; font-size: clamp(14px, 4vw, 20px); }
      .trouble-content h3 { font-size: clamp(13px, 3.8vw, 17px); }
      .trouble-content p { font-size: clamp(11px, 3.2vw, 14px); }
      #promise { padding: 56px 0; }
      #promise h3 { font-size: clamp(16px, 5vw, 24px); margin-bottom: 12px; }
      .promise-tag { font-size: clamp(10px, 2.6vw, 12px); margin-bottom: 8px; }
      .promise-lead { font-size: clamp(14px, 2.5vw, 18px); margin-bottom: 22px; line-height: 1.8; }
      .promise-grid { grid-template-columns: 1fr; gap: 8px; }
      .promise-item { padding: 12px 14px; }
      .promise-item p { font-size: clamp(11px, 3.2vw, 14px); }
      .promise-message { font-size: clamp(14px, 4.4vw, 20px); margin-top: 26px; padding-top: 22px; line-height: 1.8; }

      /* スタッフ */
      #staff { padding: 48px 0; }
      .staff-grid { grid-template-columns: 1fr; gap: 20px; }
      .staff-card { padding: 24px 20px; }
      .staff-card .name-ja { font-size: clamp(15px, 4.6vw, 21px); }
      .qualifications .qual-id,
      .company-table .qual-id {
        display: block;
        padding-left: 1em;
        margin-top: 2px;
      }
      .qualifications .qual-line + .qual-line,
      .company-table .qual-line + .qual-line {
        margin-top: 8px;
      }

      /* 選ばれる理由 */
      #reasons { padding: 48px 0; }
      .reason-item {
        flex-wrap: wrap;
        gap: 12px;
        padding: 22px 0;
      }
      .reason-num-wrap { flex-direction: row; align-items: center; gap: 8px; }
      .reason-label { font-size: clamp(10px, 2.6vw, 12px); margin-bottom: 0; }
      .reason-num { width: 48px; height: 48px; font-size: clamp(16px, 5vw, 24px); }
      .reason-content { flex: 1 1 100%; }
      .reason-content h3 { font-size: clamp(13px, 3.8vw, 18px); margin-bottom: 6px; }
      .reason-content p { font-size: clamp(12px, 3.4vw, 15px); line-height: 1.7; }

      /* 作業事例 */
      #cases { padding: 48px 0; }
      .cases-hero { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
      .cases-hero-img img { min-height: 0; aspect-ratio: 16/10; max-height: 240px; }
      .cases-subtitle { font-size: 17px; margin-bottom: 12px; }
      .cases-intro { font-size: 14px; line-height: 1.8; }
      .cases-cta { margin-top: 18px; padding: 12px 26px; font-size: 14px; }
      .case-card { margin-bottom: 22px; }
      .case-header { font-size: 14px; padding: 12px 18px; line-height: 1.5; }
      .case-photos { grid-template-columns: 1fr; }
      .case-photo { width: 100%; }
      .case-photo:first-child { border-right: none; border-bottom: 2px solid #fff; }
      .case-photo-label { font-size: 11px; padding: 2px 8px; top: 8px; left: 8px; }
      .case-photo-placeholder .ph-icon { font-size: 32px; }
      .case-details { padding: 16px 18px; }
      .case-details-grid { gap: 6px; }
      .case-detail-item { padding: 6px 0; gap: 10px; }
      .case-detail-item .label { font-size: 13px; flex: 0 0 72px; }
      .case-detail-item .value { font-size: 13px; }

      /* サポート一覧 */
      #support { padding: 48px 0; }
      .support-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 24px; }
      .support-card .icon { border-radius: 10px; }
      .support-card h3 { font-size: 16px; line-height: 1.4; }
      .area-box { padding: 20px; }
      .area-box h3 { font-size: 16px; }
      .area-box p { font-size: 14px; line-height: 1.7; }

      /* 料金プラン */
      #pricing { padding: 48px 0; }
      .pricing-list { grid-template-columns: 1fr; gap: 12px; margin-bottom: 24px; }
      .pricing-item { padding: 16px 18px; gap: 6px; }
      .pricing-item-name { font-size: 14px; }
      .pricing-item-sub { font-size: 11px; }
      .pricing-item-price { font-size: 19px; }
      .pricing-item-price .tilde { font-size: 15px; }
      .pricing-item-unit { font-size: 12px; }
      .pricing-note { padding: 16px 18px; font-size: 12px; }

      /* キャンペーン */
      #campaign { padding: 48px 0; }
      .campaign-card { padding: 30px 18px; border-radius: 14px; }
      .campaign-card::before,
      .campaign-card::after { width: 110px; height: 110px; }
      .campaign-label { font-size: 12px; padding: 4px 16px; }
      .campaign-title { font-size: 15px; line-height: 1.6; }
      .campaign-discount { font-size: 60px; }
      .campaign-discount sup,
      .campaign-discount sub { font-size: 24px; }
      .campaign-discount sup { margin-top: 10px; }
      .campaign-sub { font-size: 14px; margin-bottom: 0; }
      #campaign .campaign-card { margin-bottom: 22px; }

      /* お客様の声 */
      #reviews { padding: 48px 0; }
      .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
      .review-card { padding: 22px 20px; }
      .review-tag { font-size: 11px; padding: 3px 12px; margin-bottom: 8px; }
      .review-title { font-size: 14px; }
      .review-meta { font-size: 13px; }
      .review-text { font-size: 13px; line-height: 1.8; }
      .review-card::before { font-size: 48px; top: 6px; left: 12px; }

      /* 作業の流れ */
      #flow { padding: 48px 0; }
      .flow-item { gap: 14px; }
      .flow-item:not(:last-child)::after {
        left: 24px;
        top: 50px;
        bottom: 0;
      }
      .flow-step { width: 48px; height: 48px; }
      .flow-step .step-label { font-size: 7px; }
      .flow-step .step-num { font-size: 18px; }
      .flow-content {
        padding: 16px 18px;
        margin-bottom: 16px;
      }
      .flow-content h3 { font-size: 16px; }
      .flow-content p { font-size: 13px; line-height: 1.7; }
      .flow-step-img { display: none; }

      /* Q&A */
      #faq { padding: 48px 0; }
      .faq-q {
        padding: 14px 44px 14px 16px;
        font-size: 14px;
        gap: 10px;
      }
      .faq-q .q-mark { width: 24px; height: 24px; font-size: 13px; }
      .faq-toggle { right: 14px; width: 14px; height: 14px; }
      .faq-toggle::before { width: 14px; }
      .faq-toggle::after { height: 14px; }
      .faq-a {
        padding: 0 16px 0 16px;
        gap: 10px;
        font-size: 13px;
        line-height: 1.8;
      }
      .faq-item.is-open .faq-a { padding: 14px 16px 14px 16px; }
      .faq-a .a-mark { 
        width: 24px; 
        height: 24px; 
        font-size: clamp(14px, 2.5vw, 16px); 
      }

      /* 会社概要 */
      #company { padding: 48px 0; }
      .company-table-wrap { padding: 8px 18px; }
      .company-table,
      .company-table tbody,
      .company-table tr { display: block; }
      .company-table tr { border-bottom: 1px solid var(--green-pale); }
      .company-table tr:last-child { border-bottom: none; }
      .company-table th,
      .company-table td {
        display: block;
        width: 100%;
        padding: 12px 0 4px;
        font-size: 13px;
        border-bottom: none;
      }
      .company-table th {
        font-size: 12px;
        padding-bottom: 2px;
      }
      .company-table td {
        padding: 2px 0 14px;
      }

      /* お問い合わせ */
      #contact { padding: 48px 0; }
      .contact-intro { margin-bottom: 28px; }
      .contact-intro .tel-big { font-size: 32px; gap: 8px; }
      .contact-intro .tel-big::before { font-size: 24px; }
      .contact-intro .hours { font-size: 13px; }
      .form-box { padding: 24px 18px; border-radius: 16px; }
      .form-row { grid-template-columns: 1fr; gap: 14px; }
      .form-group { margin-bottom: 16px; }
      .form-group input,
      .form-group select,
      .form-group textarea { padding: 10px 14px; font-size: 14px; }
      .btn-submit { font-size: 16px; padding: 16px; }

      /* フッター */
      #footer { padding: 32px 0 16px; }
      .footer-logo { font-size: 16px; }
      .footer-info { font-size: 12px; line-height: 1.8; }
      .footer-copy { font-size: 11px; }

      /* CTAバー（共通） */
      .cta-bar { padding: 40px 0; }
      .cta-bar h2 { font-size: 19px; }
      .cta-bar p { font-size: 14px; }
    }

    /* ----- 小モバイル（〜480px） ----- */
    @media (max-width: 480px) {
      .section-title h2 { font-size: 19px; }
      .section { padding: 42px 0; }

      /* ヒーロー */
      .hero-text-col { max-width: 82%; width: 82%; }
      .hero-bg { object-position: 82% center; }
      .hero-main-title { font-size: 32px; }
      .hero-main-title em {
        font-size: 36px;
        -webkit-text-stroke: 2.5px #fff;
      }
      .hero-main-title span { font-size: 15px; }
      .hero-catch { font-size: 12px; }
      #hero::after {
        background: linear-gradient(
          to right,
          rgba(0, 172, 154, 0.93) 0%,
          rgba(0, 172, 154, 0.88) 55%,
          rgba(0, 172, 154, 0.4) 82%,
          rgba(0, 172, 154, 0) 100%
        );
      }

      /* 強みバッジ（縦積み・コンパクト） */
      .strengths-grid { gap: 30px; padding-top: 35px; }
      .strength-item { padding: 20px 12px 18px; border-radius: 14px; }
      .strength-circle { width: 80px; height: 40px; top: -40px; border-radius: 80px 80px 0 0; border-width: 3px; border-bottom: none; }
      .strength-icon { width: 30px; height: 30px; top: -16px; }
      .strength-num { font-size: clamp(10px, 3vw, 13px); }

      /* キャンペーン */
      .campaign-discount { font-size: 48px; }
      .campaign-discount sup,
      .campaign-discount sub { font-size: 20px; }
      .campaign-discount sup { margin-top: 8px; }

      /* お問い合わせ */
      .contact-intro .tel-big { font-size: 26px; }
      .contact-intro .tel-big::before { font-size: 20px; }

      /* ヘッダー */
      .header-tel a { font-size: 16px; }
      .header-logo .logo-name { font-size: 11px; }
      .header-logo .logo-sub { font-size: 8px; }
    }

    /* ===== 個人情報の取り扱いモーダル ===== */
    .privacy-modal {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: none;
    }
    .privacy-modal.is-open { display: block; }
    .privacy-modal__overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
    }
    .privacy-modal__dialog {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: min(640px, calc(100% - 32px));
      max-height: calc(100vh - 64px);
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .privacy-modal__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid #e5e7eb;
      background: var(--green-dark, #2d7a3a);
      color: #fff;
    }
    .privacy-modal__title {
      margin: 0;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.4;
    }
    .privacy-modal__close {
      appearance: none;
      background: transparent;
      border: 0;
      color: #fff;
      font-size: 26px;
      line-height: 1;
      width: 32px;
      height: 32px;
      cursor: pointer;
      padding: 0;
    }
    .privacy-modal__body {
      padding: 18px 22px;
      overflow-y: auto;
      flex: 1 1 auto;
      font-size: 14px;
      line-height: 1.8;
      color: var(--text-mid, #444);
      outline: none;
    }
    .privacy-modal__body h4 {
      margin: 18px 0 6px;
      font-size: 15px;
      font-weight: 700;
      color: var(--green-dark, #2d7a3a);
    }
    .privacy-modal__body p { margin: 0 0 10px; }
    .privacy-modal__body ul {
      margin: 0 0 10px;
      padding-left: 1.2em;
      list-style: disc;
    }
    .privacy-modal__body ul li { margin-bottom: 4px; }
    .privacy-modal__bottom-note {
      margin-top: 18px !important;
      padding-top: 12px;
      border-top: 1px dashed #d1d5db;
      font-weight: 700;
      color: #333;
    }
    .privacy-modal__footer {
      padding: 12px 20px 16px;
      border-top: 1px solid #e5e7eb;
      background: #f7f7f7;
      text-align: center;
    }
    .privacy-modal__hint {
      margin: 0 0 10px;
      font-size: 12px;
      color: #b91c1c;
    }
    .privacy-modal__hint.is-done {
      color: var(--green-dark, #2d7a3a);
    }
    .privacy-modal__hint.is-done::before {
      content: "✓ ";
      font-weight: 700;
    }
    .privacy-modal__ok {
      appearance: none;
      background: var(--green-dark, #2d7a3a);
      color: #fff;
      border: 0;
      border-radius: 999px;
      padding: 10px 28px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
    }
    .privacy-modal__ok:hover { opacity: 0.9; }

    /* チェックボックス未読時の見た目 */
    .lp-form-check .mwform-checkbox-field.is-disabled,
    .lp-form-check label.is-disabled {
      opacity: 0.55;
      cursor: not-allowed;
    }
    .lp-form-check input[type="checkbox"]:disabled {
      cursor: not-allowed;
    }

    @media (max-width: 480px) {
      .privacy-modal__dialog {
        width: calc(100% - 16px);
        max-height: calc(100vh - 32px);
      }
      .privacy-modal__title { font-size: 15px; }
      .privacy-modal__body { padding: 14px 16px; font-size: 13px; }
    }

    /* ===== 印刷・PDF出力用設定 ===== */
    @page {
      margin: 0;
      size: A4;
    }
    @media print {
      body { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    }
