/* 基本リセット */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* html・body */
html {
  font-family: 'Noto Sans JP', system-ui, sans-serif;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
}

body {
  -webkit-font-smoothing: antialiased;
}

/* リスト・リンク・テキスト */
ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 画像・メディア */
img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

/* フォーム要素 */
input, button, textarea, select {
  font: inherit;
  color: inherit;
}

/* ボタン・ラベル */
button, label, select, summary, [role='button'], [role='option'] {
  cursor: pointer;
}

:disabled {
  cursor: not-allowed;
}

/* 視覚補助 */
.visually-hidden {
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  border: 0;
  user-select: none;
}