@charset "UTF-8";
/* common.css（完全版用の共通補助）
   - resetの上書き最低限
   - アクセシビリティ（スキップリンク）
*/

html{
  scroll-behavior: smooth;
}

.skip-link{
  position:absolute;
  left: 10px;
  top: -50px;
  z-index: 2000;
  background: #111;
  color:#fff;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration:none;
  font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus{
  top: 10px;
}

:focus-visible{
  outline: 3px solid rgba(30,90,167,.55);
  outline-offset: 3px;
}


body.is-scrollLock{ overflow: hidden; }
