    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;
    }

    /* ===== 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;
      }
    }