/* =====================================================
   crossimage.jp カスタム調整（BiNDup卒業後の独自CSS）
   2026-07-07: グローバルナビの文字拡大
   - 1350px以上: ロゴ＋メニューを1行のまま文字を拡大（最大26px≒従来の2倍）
   - それ未満: 従来のレイアウトを維持（崩れ防止）
   ===================================================== */
@media (min-width: 1350px) {
  /* ヘッダー帯だけ枠を広げ、大きな文字を収める */
  #a-header .site_frame,
  #a-ghost_header .site_frame { width: min(96vw, 1560px) !important; max-width: none !important; }

  /* ロゴ列＋ナビ列：1行固定で幅を自動配分 */
  #a-header .g-column,
  #a-ghost_header .g-column { display: flex !important; flex-wrap: nowrap !important; align-items: center !important; }
  #a-header .column.-col3,
  #a-ghost_header .column.-col3 { width: auto !important; flex: 0 0 auto !important; }
  #a-header .column.-col9,
  #a-ghost_header .column.-col9 { width: auto !important; flex: 1 1 auto !important; min-width: 0 !important; }

  /* メニューは折り返さない */
  #a-header ul.c-menu,
  #a-ghost_header ul.c-menu { display: flex !important; flex-wrap: nowrap !important; align-items: center !important; justify-content: flex-end !important; }
  #a-header ul.c-menu > li,
  #a-ghost_header ul.c-menu > li { white-space: nowrap !important; float: none !important; }

  /* ナビ文字：画面幅に連動して拡大（1440px≈19px → 1680px以上で25px≒従来の2倍） */
  #a-header ul.c-menu > li > a,
  #a-ghost_header ul.c-menu > li > a {
    font-size: clamp(16px, 2.5vw - 17px, 25px) !important;
    letter-spacing: .06em !important;
    padding-right: 1.15em !important;
  }
  /* ロゴとメニューの間に最低限の余白を確保 */
  #a-header .column.-col9,
  #a-ghost_header .column.-col9 { padding-left: 28px !important; }
  /* お問い合わせボタンも比例して拡大 */
  #a-header ul.c-menu > li > a.btn_header,
  #a-ghost_header ul.c-menu > li > a.btn_header {
    font-size: clamp(15px, 2.2vw - 15px, 23px) !important;
    letter-spacing: .12em !important;
  }
}

/* =====================================================
   SNSボタン非表示（2026-07-07）
   フッターのSNSアイコンと右側固定のSNS縦バーを非表示にしている。
   SNS運用を開始する際は、この下のブロックを削除すれば全ページで復活する。
   ※復活時はリンク先が「#」のままなので、各SNSの実URLの設定も必要。
   ===================================================== */
[data-sharedname="SNSボタン"],
[data-sharedname="SNSボタン縦"] { display: none !important; }

/* =====================================================
   よくある質問（FAQ）の可読性改善（2026-07-07）
   質問タイトル・回答文を大きく、回答本文を濃い色に
   ===================================================== */
/* 質問タイトル（紺色バー内） */
#bk1917 .b-accordion_navigation a.js-link_scroller {
  font-size: clamp(16px, 1vw + 10px, 19px) !important;
  letter-spacing: .08em !important;
  line-height: 1.6 !important;
}
/* 回答リード文（青の一文） */
#bk1917 .accordion-content h4.c-small_headline,
#bk1917 .accordion-content h4.c-small_headline span {
  font-size: clamp(18px, 1vw + 12px, 22px) !important;
  line-height: 1.7 !important;
}
/* 回答本文：サイズ拡大＋薄いグレーをやめて濃い色に */
#bk1917 .accordion-content p.c-body,
#bk1917 .accordion-content p.c-body span {
  font-size: 16px !important;
  color: #2b2b2b !important;
  line-height: 2 !important;
}
