/*
Theme Name: twentytwentyfive Child
Template: twentytwentyfive
*/

:root{
  /* 例：min(120px, 9.23vw) 相当。必要に応じて調整 */
  --header-h: clamp(0px, 9.23vw, 120px);
}

/* ヘッダーを固定 */
.l-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;   /* メニュー等が隠れないように */
  width: 100%;
  margin-block-start: 0;
}

/* 管理バー表示時のずれ補正（ログイン中） */
.admin-bar .l-header{ top: 32px; }
@media (max-width: 782px){
  .admin-bar .site-header{ top: 46px; }
}

/* 既存の不要な全体余白調整は無効化（必要なら） */
.wp-site-blocks{ padding-top: 0 !important; }
.wp-site-blocks > *:first-child{ margin-block-start: 0; }