/* ============================================================
   base.css — リセット・html/body・基本フォント
   ※ Noto Sans JP は各HTMLの<head>で Google Fonts <link> 読込
   ============================================================ */

*,*::before,*::after{box-sizing:border-box}

html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Noto Sans JP',sans-serif;
  color:var(--text-primary);
  background:var(--bg-white);
  line-height:1.7;
  overflow-x:hidden;
}

.sr-only{
  position:absolute;width:1px;height:1px;
  padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

.skip-link{
  position:absolute;top:-40px;left:8px;z-index:200;
  background:var(--brand-deep);color:#fff;
  padding:10px 20px;font-size:13px;font-weight:700;
  text-decoration:none;border-radius:4px;
  transition:top .2s ease;
}
.skip-link:focus{top:8px}
