@charset "utf-8";
/* CSS Document */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTML5要素のデフォルト表示 */
article, aside, footer, header, nav, section,
figcaption, figure, main {
  display: block;
}

/* body の基本 */
body {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%; /* iOSの自動文字サイズ調整を防ぐ */
}

/* 見出し */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* 段落 */
p {
  margin: 0;
}

/* リスト */
ul, ol {
  list-style: none;
}

/* aタグ */
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* imgやvideoなどメディア */
img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* フォーム系 */
button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}
button {
  cursor: pointer;
}
textarea {
  resize: vertical; /* 横リサイズ禁止 */
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 引用・強調 */
blockquote, q {
  quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
  content: none;
}
strong {
  font-weight: bold;
}