@charset "utf-8";
/* CSS Document */

/* =====================================
   Reset CSS (Modern & Practical)
   ===================================== */

/* box-sizing を全要素に適用 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 基本余白リセット */
html, body {
  margin: 0;
  padding: 0;
}

/* 文字サイズ調整対策（iOS） */
body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

/* 見出し・段落 */
h1, h2, h3, h4, h5, h6,
p {
  margin: 0;
  font-weight: inherit;
}

/* リスト */
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* リンク */
a {
  color: inherit;
  text-decoration: none;
}

/* 画像・メディア */
img,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* フォーム */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  appearance: none;
}

/* ボタン */
button {
  cursor: pointer;
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* iOSの角丸対策 */
input,
textarea,
button {
  border-radius: 0;
}
