/* =========================
   base.css（全ページ共通の土台）
   ========================= */
/* Google Fonts：Yuji Syuku（佑字 肅） */
@import url('https://fonts.googleapis.com/css2?family=Yuji+Syuku&display=swap');

:root {
  /* WordPress / Lightning のプライマリーを最優先で使う */
  --primary: var(--vk-color-primary, #c9333e);
  --text: #414141;
}

/* aタグの色はテーマカラーに揃える */
a {
  color: var(--primary);
}

/* スムーズスクロール（元CSSより抜粋） */
html {
  scroll-behavior: smooth;
}

/* スクリーンリーダー専用テキスト（元CSSの .sr-only） */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.page-header h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.3;
}

/* PC */
.global-nav-list li a {
  font-size: 14px;
}

/* タブレット以下 */
@media (max-width: 1024px) {
  .global-nav-list li a {
    font-size: 15px;
  }
}

/* モバイル */
@media (max-width: 768px) {
  .global-nav-list li a {
    font-size: 14px;
  }
}

/* 全ページでreCAPTCHAバッジ非表示 */
.grecaptcha-badge {
  visibility: hidden !important;
}

