/* アクセシビリティ強化 */
.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: #0066cc;
  color: white;
  padding: 8px 14px;
  z-index: 999;
  text-decoration: none;
  border-radius: 4px;
}

.skip-link:focus {
  top: 10px;
}

/* フォーカス表示（現代的ベストプラクティス） */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid #ff9900;
  outline-offset: 4px;
}

/* 特殊エリア - all: unset は危険なので revert に変更 */
.this_area_do_not_use_css_and_javascript,
.this_area_do_not_use_css_and_javascript * {
  all: revert !important;
}

/* スクリーンリーダー専用テキスト */
.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;
}

/* その他調整 */
ul {
  list-style: none;
  padding-left: 0;
}

li {
  margin: 10px 0;
}