@charset "utf-8";
/* ============================================================
   improvements.css  ― 改善施策（2026-07 テスト環境）
   既存CSSを壊さないよう、最後に読み込む「上書き専用」ファイル。
   ブランド色: 緑 #92BA52 / 濃緑 #89B249 / 文字 #595757 / LINE #06C755
   ============================================================ */

/* ---- ① 本文の読みやすさ（スマホ）: 小さすぎる文字を底上げ ---- */
@media screen and (max-width: 768px) {
  .content p,
  .content li,
  .single-content p,
  .single-content li,
  main p,
  main li {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: .02em;
  }
  /* 注釈・キャプション等の極小文字も最低13pxを確保 */
  small, .note, figcaption, .caption {
    font-size: 13px !important;
    line-height: 1.7;
  }
}

/* ---- ③ タップ領域の確保（誤タップ防止） ----
   本文中のインラインリンクは対象外。ナビ/フッター/ボタン/送信のみ拡大。 */
@media screen and (max-width: 768px) {
  .gnav a, .hum-nav a, .g-nav a, nav a,
  footer a,
  input[type="submit"], button[type="submit"], .mw_wp_form input[type="submit"] {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
  }
  input[type="submit"], button[type="submit"], .mw_wp_form input[type="submit"] {
    width: 100%;
    padding: 14px 20px;
    font-size: 17px;
  }
  /* フォーム入力欄も指で押しやすく＋iOSズーム暴発防止(16px以上) */
  .mw_wp_form input[type="text"],
  .mw_wp_form input[type="email"],
  .mw_wp_form input[type="tel"],
  .mw_wp_form textarea,
  .mw_wp_form select {
    font-size: 16px;
    min-height: 48px;
    padding: 10px 12px;
  }
}

/* ---- ⑥ 画面下に常設する「相談」追従バー（全ページ共通） ---- */
#stg-cta-bar { display: none; }
@media screen and (max-width: 768px) {
  #stg-cta-bar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 9999;
    gap: 8px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.96);
    box-shadow: 0 -2px 12px rgba(0,0,0,.12);
  }
  #stg-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 52px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    line-height: 1.3;
  }
  #stg-cta-bar .cta-contact {
    background: #92BA52;
    color: #fff;
  }
  #stg-cta-bar .cta-line {
    background: #06C755;
    color: #fff;
  }
  #stg-cta-bar .cta-ico {
    width: 20px; height: 20px; flex: 0 0 auto;
    fill: currentColor;
  }
  /* 追従バーが本文末尾を隠さないよう余白を確保 */
  body { padding-bottom: 76px; }
}

/* ---- ⑨ 問い合わせページ: 相談ハードルを下げる導入ブロック ---- */
.contact-intro {
  max-width: 720px;
  margin: 0 auto 28px;
  padding: 20px 22px;
  background: #F4F8EC;
  border: 1px solid #D8E6BF;
  border-radius: 14px;
  line-height: 1.9;
  color: #595757;
}
.contact-intro-lead {
  font-size: 18px;
  font-weight: 700;
  color: #6B8E2E;
  margin-bottom: 8px;
}
.contact-intro a { color: #06C755; font-weight: 700; text-decoration: underline; }
@media screen and (max-width: 768px) {
  .contact-intro { margin: 0 16px 24px; padding: 16px 16px; }
  .contact-intro-lead { font-size: 16px; }
}

/* ---- 経営アドバイザー: 白井氏の新写真（縦長）の切り抜き位置調整 ----
   丸枠は object-fit:cover で中央を切り抜くため、縦長写真だと頭頂部が
   切れる。この写真だけ切り抜き窓を上寄りにして頭が収まるようにする。 */
.partner-swiper .swiper-slide img.img[src*="shirai-tomoko"] {
  object-position: 50% 15%;
}
