/* contact ページ固有CSS（静的contact/index.htmlのインライン<style>から抽出） */
/* ===== 上部の帯（バナー） ===== */
  .pbanner {
    position: relative; padding: clamp(150px,18vw,230px) 0 clamp(48px,6vw,80px);
    background: linear-gradient(120deg, #2e9e5b 0%, #27884d 60%, #1f7d57 100%);
    color: #fff; overflow: hidden;
  }
  .pbanner::after {
    content: ""; position: absolute; right: -120px; top: -120px; width: 460px; height: 460px;
    border-radius: 50%; background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.14), transparent 70%);
    pointer-events: none;
  }
  .pbanner__inner { width: min(1180px, 100% - 48px); margin-inline: auto; position: relative; z-index: 1; }
  .pbanner__en { font-family: var(--en); font-weight: 300; font-size: clamp(34px,5vw,58px); line-height: 1; letter-spacing: .04em; }
  .pbanner__jp { margin-top: 14px; font-size: clamp(16px,2vw,22px); font-weight: 500; letter-spacing: .06em; }

  /* ===== パンくず ===== */
  .crumb { width: min(1180px, 100% - 48px); margin: 22px auto 0; font-size: 13px; color: #78857e; }
  .crumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; list-style: none; }
  .crumb a { color: #78857e; transition: color .2s; }
  .crumb a:hover { color: var(--green); }
  .crumb li:not(:last-child)::after { content: "›"; margin-left: 8px; color: #b8c2bc; }
  .crumb [aria-current="page"] { color: var(--ink); }

  /* ===== お問合せ ===== */
  .contact { width: min(820px, 100% - 48px); margin: clamp(36px,4.5vw,56px) auto clamp(80px,10vw,120px); }

  /* ステップ */
  .cstep { display: flex; justify-content: center; gap: 0; margin-bottom: clamp(32px,4vw,52px); }
  .cstep__item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #a9b3ad; }
  .cstep__item + .cstep__item { margin-left: 14px; }
  .cstep__item + .cstep__item::before { content: ""; width: 34px; height: 1px; background: #d7e3da; margin-right: 14px; }
  .cstep__num {
    width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--en); font-size: 13px; background: #e4ece7; color: #8b968f;
  }
  .cstep__item.is-current { color: var(--ink); font-weight: 700; }
  .cstep__item.is-current .cstep__num { background: var(--green); color: #fff; }

  .contact__lead { text-align: center; font-size: clamp(15px,1.15vw,17px); line-height: 1.9; color: var(--ink); }
  .contact__tel { text-align: center; margin: 18px 0 6px; font-family: var(--en); font-size: clamp(24px,3vw,34px); font-weight: 300; color: var(--green); letter-spacing: .02em; }
  .contact__tel a { color: inherit; }
  .contact__map { text-align: center; margin-top: 10px; font-size: 13px; }
  .contact__map a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

  .contact__note { text-align: center; font-size: 13px; color: #8b968f; margin: clamp(28px,3.5vw,42px) 0 clamp(20px,2.5vw,30px); }
  .contact__note b { color: var(--green); }

  /* フォーム */
  .cfield { margin-bottom: clamp(18px,2.2vw,26px); }
  .cfield__label { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
  .cbadge { font-size: 11px; letter-spacing: .04em; padding: 2px 9px; border-radius: 4px; line-height: 1.6; }
  .cbadge--req { background: var(--green); color: #fff; }
  .cbadge--opt { background: #e9efeb; color: #6a7671; }
  .cfield input, .cfield textarea {
    width: 100%; padding: 13px 16px; border: 1px solid #d7e3da; border-radius: 6px;
    font-size: 15px; font-family: inherit; color: var(--ink); background: #fff;
    transition: border-color .2s, box-shadow .2s;
  }
  .cfield input::placeholder, .cfield textarea::placeholder { color: #b3bdb7; }
  .cfield input:focus, .cfield textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(46,158,91,.12); }
  .cfield textarea { min-height: 168px; resize: vertical; line-height: 1.75; }

  .cconsent { margin: clamp(24px,3vw,34px) 0 0; text-align: center; font-size: 14px; color: var(--ink); }
  .cconsent label { display: inline-flex; align-items: flex-start; gap: 10px; cursor: pointer; text-align: left; }
  .cconsent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); flex: 0 0 auto; }
  .cconsent a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

  .contact__submit { text-align: center; margin-top: clamp(28px,3.5vw,40px); }
  .contact__btn {
    display: inline-flex; align-items: center; gap: 12px; min-width: 260px; justify-content: center;
    padding: 17px 52px; border: 0; border-radius: 999px; background: var(--green); color: #fff;
    font-size: 16px; font-weight: 700; letter-spacing: .06em; font-family: inherit; cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
  }
  .contact__btn:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(31,125,73,.24); }
  .contact__btn i { font-style: normal; font-family: var(--en); font-size: 18px; }

/* ===== フォームエラー表示・honeypot（サーバー送信対応で追加） ===== */
.contact__error {
  margin: 0 0 28px; padding: 14px 18px; border: 1px solid #d9534f;
  border-radius: 8px; background: #fdf3f3; color: #b52b27; font-size: 14px;
}
.cfield__error { margin-top: 6px; font-size: 13px; color: #b52b27; }
.cfield--hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
