@charset "UTF-8";
/* リセット用のCSS */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTML5要素の初期化（古いブラウザ向け） */
article, aside, footer, header, nav, section, main, figure, figcaption {
  display: block;
}

/* 文字設定を統一 */
html {
  -webkit-text-size-adjust: 100%; /* iOSの文字自動拡大防止 */
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* bodyの基本設定 */
body {
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #fff;
  color: #000;
  text-rendering: optimizeLegibility;
}

/* 画像・動画をレスポンシブ対応 */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* リンクの装飾リセット */
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}
a:focus,
a:active {
  outline: none;
}

/* リストの初期化 */
ul, ol {
  list-style: none;
}

/* テーブルの初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* フォーム要素のリセット */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}
textarea {
  resize: vertical;
}

/* iframe, embed などのメディア要素も整える */
iframe {
  border: 0;
  display: block;
  max-width: 100%;
}

/* 見出しの余白を削除 */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: normal;
}

/* strong, b, em の過度な強調を抑える */
strong, b {
  font-weight: bold;
}
em {
  font-style: italic;
}
