/* 滑らかなスクロール */
html {
  scroll-behavior: smooth;
}

/* 読みにくさを防ぐための選択カラー */
::selection {
  background-color: #EFEAE2;
  color: #354438;
}

/* 和風・ナチュラルテイストの装飾用：極小のグリッドライン */
.bg-grid {
  background-size: 40px 40px;
  background-image: linear-gradient(to right, rgba(74, 93, 78, 0.03) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(74, 93, 78, 0.03) 1px, transparent 1px);
}

/* プレミアムなかすれ・テクスチャ（オーバーレイ） */
.texture-overlay {
  position: relative;
}
.texture-overlay::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.015;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
