/* reset.css */

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

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}

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

/* フォーム要素のリセット */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

/* リスト要素 */
ul,
ol {
  list-style: none;
}

/* リンク */
a {
  color: inherit;
  text-decoration: none;
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: inherit;
}

/* 引用・強調 */
blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

/* その他の便利なリセット */
hr {
  border: 0;
  height: 1px;
  background: #ddd;
  margin: 2rem 0;
}

/* フォーカス表示（アクセシビリティ対応） */
:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}
