/* 青海波（Seigaiha）背景パターン — PNG画像タイリング */
.bg-seigaiha,
.bg-seigaiha-light {
  position: relative;
}

.bg-seigaiha {
  background-color: #1A1A2E;
}

.bg-seigaiha-light {
  background-color: #FCF9F5;
}

/* 背景画像を擬似要素で敷き詰め、opacity で薄くする */
.bg-seigaiha::before,
.bg-seigaiha-light::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('/assets/img/bg_wave_creem_red.png');
  background-repeat: repeat;
  background-size: 400px auto;
  pointer-events: none;
  z-index: 0;
}

.bg-seigaiha::before {
  opacity: 0.035;
}

.bg-seigaiha-light::before {
  opacity: 0.06;
}

/* 背景の上にコンテンツを表示 */
.bg-seigaiha > *,
.bg-seigaiha-light > * {
  position: relative;
  z-index: 1;
}

/* 共通フッターリンクスタイル */
.footer-link {
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #C53D43;
}
