/*
 Theme Name:   Twenty Twenty-Four Child
 Template:     twentytwentyfour
 Author:       Kazuya
 Version:      1.0.0
 Description:  Twenty Twenty-Fourの子テーマです。
*/

/* 固定ヘッダーのスタイル */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9); /* 半透明背景。必要に応じて調整 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ヘッダー内部のコンテンツのレイアウトは既存のブロック設定を活かす */

/* 透かし（ウォーターマーク）のスタイル */
.watermark {
  position: absolute;
  bottom: 10px;
  right: 10px;
  opacity: 0.2;
  font-size: 3em;
  pointer-events: none;
}

/* コンテンツが固定ヘッダーと重ならないように余白を追加 */
body {
  padding-top: 80px; /* ヘッダーの高さに合わせて調整 */
}
