    body {
      background: #f5f7fa;
      font-family: 'Segoe UI', 'Meiryo', sans-serif;
      color: #232323;
      margin: 0;
      padding: 0;
      min-height: 100vh;
    }

    main {
      padding: 20px 5vw 36px;
    }

    h1 {
      text-align: center;
      margin: 0 0 28px 0;
      letter-spacing: 0.04em;
      font-weight: 600;
      font-size: 1.65em;
      color: #008542;
      text-shadow: 0 1px 0 #fff, 0 1px 8px #9fe6bd20;
    }

    .guidance {
      text-align: center;
      font-size: 0.9em;
    }

    #surveyForm {
      max-width: 550px;
      margin: 0 auto;
      background: #fff;
      border-radius: 12px;
      padding: 32px 20px 28px 20px;
      box-shadow: 0 6px 28px #0001, 0 1px 8px #a9d5be19;
      border: 1px solid #ebebeb;
    }

    .star-wrapper {
      margin-bottom: 32px;
    }

    .star-rating span {
      font-size: 2em;
      color: #ddd;
      cursor: pointer;
      transition: color 0.15s;
      filter: drop-shadow(0 0 2px #ffecb3b8);
    }

    .star-rating .selected {
      color: #f5b500;
      text-shadow: 0 2px 5px #f7e07e3a;
    }

    .survey-label {
      font-weight: bold;
      margin-bottom: 8px;
      display: block;
      font-size: 1.09em;
      letter-spacing: 0.01em;
    }

    .survey-label .badge {
      background-color: #4CAF50;
      color: white;
      border-radius: 50%;
      padding: 6px 12px;
      font-size: 14px;
      min-width: 32px;
      text-align: center;
      line-height: 1.2;
    }

    /* スタッフ選択ボタン一覧のカード風デザイン */
    #staffButtons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
      margin: 22px 0;
      min-height: 84px;
    }

    .staff-card-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      background: #f8fcf9;
      border: 2px solid #c4efd9;
      border-radius: 14px;
      padding: 14px 16px 10px 16px;
      box-shadow: 0 2px 10px #d4f8e940;
      min-width: 95px;
      max-width: 125px;
      cursor: pointer;
      transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
      font-size: 1.01em;
      position: relative;
      outline: none;
      pointer-events: auto;
      /* 画像クリックを有効 */
    }

    .staff-card-btn.selected,
    .staff-card-btn:focus {
      border-color: #008542;
      background: #eafff2;
      box-shadow: 0 0 0 2px #9fd1b9, 0 2px 14px #d3e9df50;
      z-index: 2;
    }

    .staff-card-btn img {
      width: 64px;
      height: 64px;
      object-fit: cover;
      border-radius: 50%;
      border: 1.5px solid #a6e3c8;
      box-shadow: 0 1px 10px #d3f9e680;
      margin-bottom: 7px;
      background: #f2faf7;
      pointer-events: auto;
    }

    .staff-card-btn span {
      font-size: 0.96em;
      font-weight: 500;
      margin-top: 2px;
      color: #184e31;
      white-space: nowrap;
      text-align: center;
      width: 100%;
      text-overflow: ellipsis;
      overflow: hidden;
      pointer-events: none;
    }

    .staff-card-btn:last-child {
      background: #f4f6fa;
      border-color: #c3c6d4;
      color: #2d2e37;
    }

    /* ───── スマホ用の追加調整 ───── */
    @media (max-width: 540px) {

      #surveyForm {
        padding: 20px 6vw 24px;
      }

      .star-wrapper {
        margin-bottom: 38px;
      }

      .star-rating {
        display: flex;
        justify-content: center;
        /* 中央寄せ */
        gap: 4px;
        /* 星同士の間隔 */
      }

      .star-rating span {
        font-size: 1.7em;
      }

      #staffButtons {
        gap: 10px;
      }

      .staff-card-btn {
        min-width: 84px;
        max-width: 98vw;
        padding: 11px 6px 8px 6px;
      }

      .staff-card-btn img {
        width: 48px;
        height: 48px;
      }
    }

    #remarkInput {
      width: 100%;
      box-sizing: border-box;
      font-size: 1.07em;
      border: 1.2px solid #d6e6df;
      border-radius: 7px;
      padding: 10px;
      background: #f8fcfa;
      margin-top: 3px;
      margin-bottom: 6px;
      min-height: 44px;
      resize: vertical;
      transition: border-color 0.15s;
    }

    #remarkInput:focus {
      outline: none;
      border-color: #62c592;
      background: #f1fcf8;
    }

    button[type="submit"] {
      margin-top: 24px;
      font-size: 1.1em;
      padding: 10px 20px;
      border-radius: 7px;
      background: #008542;
      color: #fff;
      border: none;
      cursor: pointer;
      box-shadow: 0 2px 8px #95dab650;
      font-weight: 600;
      letter-spacing: 0.03em;
      transition: background 0.16s, box-shadow 0.13s;
    }

    button[type="submit"]:hover,
    button[type="submit"]:focus {
      background: #009c54;
      box-shadow: 0 4px 15px #61c99340;
    }

    .thanks-message {
      font-size: 1.2em;
      text-align: center;
      margin: 36px 0 26px 0;
      color: #195442;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    /* Google口コミモーダル */
    #googleReviewModal {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.46);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    #googleReviewModal .modal-content {
      background: #fff;
      border-radius: 14px;
      padding: 34px 30px 28px 30px;
      max-width: 360px;
      width: 96%;
      position: relative;
      box-shadow: 0 8px 32px #c9eee960, 0 2px 7px #c0dacb29;
      text-align: center;
    }

    #googleModalCloseBtn {
      position: absolute;
      right: 16px;
      top: 11px;
      font-size: 1.8em;
      background: none;
      border: none;
      cursor: pointer;
      color: #7fa18e;
      z-index: 2;
    }

    .modal-content a {
      display: inline-block;
      margin-top: 18px;
      background: #0b82fa;
      color: #fff;
      padding: 11px 20px;
      border-radius: 7px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: 500;
      box-shadow: 0 2px 8px #0b82fa23;
      transition: background 0.14s;
    }

    .modal-content a:hover {
      background: #0561bb;
    }

    /* 口コミ表示カード */
    #published-surveys {
      max-width: 680px;
      margin: 60px auto 0 auto;
      padding: 24px 18px 32px 18px;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 28px #0001, 0 1px 8px #a9d5be15;
      border: 1px solid #e6e6e6;
    }

    #published-surveys h3 {
      font-size: 1.25em;
      text-align: center;
      color: #087040;
      margin: 0 0 18px 0;
      letter-spacing: 0.03em;
      font-weight: 700;
    }

    .review.my-survey {
      margin: 0 0 26px 0;
      padding: 17px 17px 14px 17px;
      background: #f7faf9;
      border-radius: 11px;
      border: 1.1px solid #e0ece6;
      box-shadow: 0 2px 10px #d8f3ea27;
      position: relative;
      transition: box-shadow 0.13s;
    }

    .review.my-survey:hover {
      box-shadow: 0 6px 22px #c7efdc23;
      border-color: #aadfc2;
    }

    .review-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.97em;
      color: #549077;
      margin-bottom: 6px;
    }

    .review-stars {
      margin-bottom: 7px;
      font-size: 1.18em;
      letter-spacing: 1px;
    }

    .review-remark {
      color: #212;
      background: #f9fff9;
      padding: 8px 12px;
      border-radius: 7px;
      margin-bottom: 7px;
      font-size: 1.06em;
    }

    .review-meta {
      font-size: 0.98em;
      color: #555;
      letter-spacing: 0.02em;
    }

    #surveyPager {
      margin-top: 12px;
    }

    #surveyPager button {
      background: #f0faf7;
      border: 1px solid #aee3c3;
      color: #16935f;
      border-radius: 6px;
      padding: 7px 18px;
      margin: 0 7px;
      font-size: 1.01em;
      font-weight: 500;
      transition: background 0.16s, border-color 0.16s, color 0.16s;
      cursor: pointer;
      box-shadow: 0 1px 8px #8ccfcb1a;
    }

    #surveyPager button:disabled {
      background: #eef1f0;
      color: #aaa;
      border-color: #dae9e3;
      cursor: not-allowed;
    }

    /* エラーメッセージ用バナー */
    #error,
    #surveyErrorBanner,
    .error-banner {
      max-width: 860px;
      margin: 30px auto 0px;
      /* 画面中央に配置 */
      text-align: center;
      /* 文字を中央寄せ */
      color: #c62828;
      /* 赤 */
      font-weight: 700;
      /* 太字 */
      font-size: 1.3em;
      /* 少し大きく */
      letter-spacing: .02em;
    }

    /* ===== Google口コミカードエリア ===== */

    #google-reviews {
      max-width: 680px;
      margin: 38px auto 0 auto;
      padding: 24px 18px 26px 18px;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 2px 18px #e1e5ef24;
      border: 1px solid #e6e6e6;
      position: relative;
    }

    #google-reviews h3 {
      font-size: 1.18em;
      text-align: center;
      color: #448aff;
      margin: 0 0 16px 0;
      letter-spacing: 0.01em;
      font-weight: 700;
    }

    .review.google-review {
      margin: 0 0 23px 0;
      padding: 16px 15px 13px 15px;
      background: #f7fafd;
      border-radius: 11px;
      border: 1.2px solid #dbeafe;
      box-shadow: 0 2px 12px #c3e1fd2c;
      position: relative;
      transition: box-shadow 0.12s;
    }

    .review.google-review:hover {
      box-shadow: 0 4px 19px #98b7e616;
      border-color: #64b5f6;
    }

    .review.google-review .review-header {
      display: flex;
      align-items: center;
      font-size: 0.98em;
      color: #3277b9;
      margin-bottom: 7px;
      gap: 12px;
    }

    .review.google-review .review-author {
      font-weight: bold;
      color: #1967d2;
      margin-right: 6px;
    }

    .review.google-review .review-stars {
      color: #ffc107;
      font-size: 1.13em;
      letter-spacing: 1px;
      margin-right: 7px;
    }

    .review.google-review .review-date {
      font-size: 0.96em;
      color: #7a8792;
      margin-left: auto;
    }

    .review.google-review .review-text {
      color: #1a2435;
      background: #f8fcff;
      padding: 9px 11px;
      border-radius: 7px;
      font-size: 1.07em;
      margin-top: 1px;
      margin-bottom: 1px;
      line-height: 1.6;
    }

    .google-badge {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      margin-top: 13px;
      gap: 7px;
      font-size: 1.04em;
      color: #4b5e72;
    }

    .google-badge img {
      width: 28px;
      height: 28px;
      vertical-align: middle;
      border-radius: 7px;
      background: #fff;
      box-shadow: 0 1px 6px #99bbf610;
      margin-right: 3px;
    }

    @media (max-width: 600px) {
      #google-reviews {
        padding: 12px 2vw 18px 2vw;
      }

      .review.google-review {
        padding: 10px 5px 10px 7px;
      }

      .google-badge img {
        width: 22px;
        height: 22px;
      }
    }

    /* ───────────────────────────
   フッター共通
──────────────────────────── */
    .no-underline {
      text-decoration: none;
    }

    footer#pageFooter {
      background: #f6f7f9;
      text-align: center;
      color: #60716b;
      font-size: 0.98em;
      border-top: 1.5px solid #e5ece9;
      margin-top: 48px;
      padding: 26px 0 18px;
      letter-spacing: 0.02em;
      width: 100%;
    }

    .footer-inner {
      max-width: 720px;
      margin: 0 auto;
    }

    /* ───────────────────────────
   ナビゲーションリンク（PC 共通）
   ※ gap を使わず margin で余白確保
──────────────────────────── */
    footer#pageFooter ul {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      /* 折り返し許可：iOS12 対応 */
      list-style: none;
      margin: 0;
      padding: 0;
    }

    footer#pageFooter ul li {
      flex: 0 0 auto;
      /* 幅は内容に合わせる */
      margin: 0 10px 6px;
      /* 横 10px, 下 6px の余白 */
      text-align: center;
    }

    footer#pageFooter ul li a {
      color: #60716b;
      font-size: 0.8em;
      line-height: 1.4;
      white-space: normal;
      /* 2 行になっても崩れない */
    }

    footer#pageFooter ul li a:hover {
      color: #333;
    }

    /* ───────────────────────────
   スマホ（幅 ≤600px）追加調整
──────────────────────────── */
    @media (max-width: 600px) {

      /* リンクが左右端に張り付かないようクッション */
      footer#pageFooter ul {
        padding: 0 4vw;
      }

      /* 余白をやや広げ、リンク文字を少し大きく */
      footer#pageFooter ul li {
        margin: 0 8px 8px;
      }

      footer#pageFooter ul li a {
        font-size: 0.85em;
      }

      /* コピーライト行との間隔 */
      footer#pageFooter .fixed-color {
        margin-top: 12px;
      }
    }

    /* =========================================================
   キャンペーン案内 / 今すぐ回答エリア（整理版）
   ---------------------------------------------------------
   ポイント：
   - PCでボタンが長くなりすぎないよう width:auto に変更
   - 共通ボタンの体裁をユーティリティ化（可読性UP）
   - モバイルは余白を広め、PCは左寄せで読み始めを揃える
   ========================================================= */

    :root {
      --brand: #008542;
      --brand-2: #009c54;
      --accent: #ff9900;
      --ink-strong: #3a2d14;
      --ink-soft: #6d5a30;
      --chip-grad: linear-gradient(135deg, #ffb95a 0%, #ff9a47 100%);
      --card-grad: linear-gradient(135deg, #fffdf5 0%, #fff7de 100%);
    }

    /* ------- 共通ユーティリティ ------- */
    html {
      scroll-behavior: smooth;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .35em;
      padding: clamp(10px, 3.5vw, 12px) clamp(16px, 4.5vw, 20px);
      border-radius: 999px;
      font-weight: 800;
      font-size: clamp(1rem, 3.6vw, 1.08rem);
      text-decoration: none;
      white-space: nowrap;
      /* 1行で収める */
      width: auto;
      /* ← コンテンツ幅に合わせる（重要） */
      min-width: 220px;
      /* 触りやすさ確保 */
      max-width: 100%;
      transition: transform .08s ease, box-shadow .12s ease, background .12s ease, color .12s ease, border-color .12s;
    }

    .btn:focus {
      outline: none;
    }

    /* 主ボタン（キャンペーン） */
    .btn--primary {
      color: #fff;
      background: var(--brand);
      border: none;
      box-shadow: 0 6px 18px rgba(0, 133, 66, .25);
    }

    .btn--primary:hover,
    .btn--primary:focus {
      background: var(--brand-2);
      transform: translateY(-1px);
      box-shadow: 0 8px 22px rgba(0, 133, 66, .28);
    }

    /* アウトラインボタン（今すぐ回答） */
    .btn--outline {
      color: var(--brand);
      background: #fff;
      border: 2px solid var(--brand);
      box-shadow: 0 3px 10px rgba(0, 133, 66, .08);
    }

    .btn--outline:hover,
    .btn--outline:focus {
      color: #fff;
      background: var(--brand-2);
      border-color: var(--brand-2);
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(0, 133, 66, .22);
    }

    /* ---------------------------------------------------------
   キャンペーンカード
   --------------------------------------------------------- */
    .campaign-card {
      max-width: 860px;
      margin: clamp(8px, 3vw, 18px) auto clamp(18px, 3.5vw, 26px);
      padding: clamp(16px, 4.5vw, 28px) clamp(14px, 5vw, 28px);
      background: var(--card-grad);
      border: 1.5px solid #ffe2a6;
      border-radius: clamp(14px, 4vw, 18px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, .06), 0 2px 8px rgba(255, 193, 7, .16);
      text-align: center;
      position: relative;
    }

    .campaign-chip {
      display: inline-block;
      margin: 0 0 clamp(10px, 2.5vw, 14px);
      padding: .5em 1em;
      border-radius: 999px;
      background: var(--chip-grad);
      color: #fff;
      font-weight: 800;
      font-size: clamp(.9rem, 2.8vw, 1rem);
      letter-spacing: .02em;
      box-shadow: 0 8px 18px rgba(255, 154, 71, .34);
    }

    .campaign-lead {
      margin: 0 0 clamp(10px, 3.5vw, 14px);
      font-size: clamp(1.02rem, 3.8vw, 1.24rem);
      line-height: 1.9;
      color: var(--ink-strong);
      font-weight: 700;
      letter-spacing: .01em;
    }

    /* キャンペーンのCTAボタン */
    .campaign-cta {
      /* 共通ボタンスタイルを適用 */
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: clamp(10px, 3.5vw, 12px) clamp(16px, 4.5vw, 20px);
      border-radius: 999px;
      font-weight: 800;
      font-size: clamp(1rem, 3.6vw, 1.08rem);
      white-space: nowrap;
      width: auto;
      /* ← ここで横幅の伸びを止める */
      min-width: 220px;
      max-width: 100%;
      color: #fff;
      background: var(--brand);
      border: none;
      box-shadow: 0 6px 18px rgba(0, 133, 66, .25);
      transition: transform .08s, box-shadow .12s, background .12s;
    }

    .campaign-cta:hover,
    .campaign-cta:focus {
      background: var(--brand-2);
      transform: translateY(-1px);
      box-shadow: 0 8px 22px rgba(0, 133, 66, .28);
    }

    .campaign-note {
      color: var(--ink-soft);
      margin: 0 0 clamp(6px, 2.8vw, 10px);
      font-size: clamp(.92rem, 3.2vw, .98rem);
      line-height: 1.8;
    }

    .campaign-link {
      color: var(--brand);
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .campaign-period {
      margin: 0;
      font-weight: 700;
      color: #5a4a20;
      letter-spacing: .02em;
      font-size: clamp(.96rem, 3.4vw, 1.02rem);
    }

    /* PC幅で左寄せ＆チップを右上に配置 */
    @media (min-width:680px) {
      .campaign-card {
        text-align: left;
        padding: 24px 28px;
      }

      .campaign-chip {
        position: absolute;
        right: 16px;
        top: -12px;
        margin: 0;
        padding: 6px 12px;
        font-size: .95rem;
      }

      .campaign-lead,
      .campaign-note,
      .campaign-period {
        text-align: left;
      }
    }

    /* ---------------------------------------------------------
   「今すぐ回答」カード
   --------------------------------------------------------- */
    .direct-entry {
      max-width: 860px;
      margin: clamp(12px, 4vw, 24px) auto clamp(24px, 7vw, 48px);
      padding: clamp(14px, 4.5vw, 24px) clamp(14px, 5vw, 28px);
      background: linear-gradient(135deg, #f8fbff 0%, #f4fff8 100%);
      border: 1.5px solid #e2f0e7;
      border-radius: clamp(12px, 4vw, 16px);
      box-shadow: 0 10px 26px rgba(0, 0, 0, .05), 0 2px 8px rgba(0, 133, 66, .08);
      text-align: center;
    }

    .direct-copy {
      margin: 0 0 clamp(10px, 3vw, 14px);
      font-size: clamp(.98rem, 3.6vw, 1.08rem);
      line-height: 1.8;
      color: #254030;
      font-weight: 600;
      letter-spacing: .01em;
    }

    /* HTMLは .direct-cta のままでOK（横幅は内容にフィット） */
    .direct-cta {
      /* 共通ボタンのアウトライン版 */
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: clamp(10px, 3.5vw, 12px) clamp(16px, 4.5vw, 20px);
      border-radius: 999px;
      font-weight: 800;
      font-size: clamp(1rem, 3.6vw, 1.08rem);
      white-space: nowrap;
      width: auto;
      /* ← 伸びない */
      min-width: 220px;
      max-width: 100%;
      color: var(--brand);
      background: #fff;
      border: 2px solid var(--brand);
      box-shadow: 0 3px 10px rgba(0, 133, 66, .08);
      transition: transform .08s, box-shadow .12s, background .12s, color .12s, border-color .12s;
    }

    .direct-cta:hover,
    .direct-cta:focus {
      color: #fff;
      background: var(--brand-2);
      border-color: var(--brand-2);
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(0, 133, 66, .22);
    }

    .direct-cta::after {
      content: "→";
      display: inline-block;
      margin-left: .5em;
      transform: translateY(1px);
    }

    .direct-footnote {
      margin: clamp(8px, 2.6vw, 12px) 0 0;
      color: #5f766a;
      font-size: clamp(.9rem, 3.2vw, .96rem);
    }

    /* PCではテキスト左寄せで読み始め統一 */
    @media (min-width:680px) {
      .direct-entry {
        text-align: left;
      }

      .direct-cta {
        margin-top: 2px;
      }
    }

    /* ① ボタンのアンダーラインを完全に無効化（強い指定で上書き） */
    .campaign-cta,
    .campaign-cta:link,
    .campaign-cta:visited,
    .campaign-cta:hover,
    .campaign-cta:active,
    .direct-cta,
    .direct-cta:link,
    .direct-cta:visited,
    .direct-cta:hover,
    .direct-cta:active {
      text-decoration: none !important;
    }

    /* ② 緑ボタン（キャンペーンCTA）の下に適切な余白を付ける */
    .campaign-cta {
      margin-bottom: clamp(12px, 3.6vw, 18px);
    }

    /* PC幅で左寄せしている時も“下だけ”余白を残す */
    @media (min-width: 680px) {
      .campaign-cta {
        margin: 0 0 16px 0;
      }
    }

    /* 上に戻るボタン用の最小スタイル */
    .back-to-top {
      position: fixed;
      right: 16px;
      bottom: 18px;
      /* iOSのホームバーが気になる場合は  calc(18px + env(safe-area-inset-bottom)) に */
      width: 52px;
      height: 52px;
      border-radius: 9999px;
      border: 1px solid rgba(0, 0, 0, .08);
      background: rgba(255, 255, 255, .95);
      -webkit-backdrop-filter: saturate(180%) blur(6px);
      backdrop-filter: saturate(180%) blur(6px);
      color: #184e31;
      /* サイトのアクセント色に寄せるならここ */
      font-size: 20px;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(0, 0, 0, .12);
      cursor: pointer;
      z-index: 9998;
      /* モーダル(10001)より下/トースト(9999)より下にしたい場合は調整可 */
      opacity: 0;
      pointer-events: none;
      transform: translateY(8px);
      transition: opacity .25s ease, transform .25s ease, box-shadow .2s ease;
    }

    .back-to-top.show {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .back-to-top:active {
      transform: translateY(1px);
    }

    .back-to-top:focus {
      outline: none;
      box-shadow: 0 0 0 4px rgba(24, 78, 49, .2), 0 6px 24px rgba(0, 0, 0, .12);
    }

    @media (min-width: 768px) {
      .back-to-top {
        right: 24px;
        bottom: 24px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .back-to-top {
        transition: none;
      }
    }

    @media print {
      .back-to-top {
        display: none !important;
      }
    }