@charset "UTF-8";
/* ボックスサイズをborder-boxに設定 */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* マージン、パディング、ボーダーをリセット */
body, h1, h2, h3, h4, h5, h6, p, ol, ul, li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
  padding: 0;
  border: 0;
}

/* リストスタイルをリセット */
ol, ul {
  list-style: none;
}

/* aタグのテキストデコレーションをリセット */
a {
  text-decoration: none;
}

/* フォントの継承とスタイルのリセット */
html {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, "Osaka", "MS PGothic", "arial", sans-serif;
}

body {
  font-size: 1rem;
  line-height: 1.6;
  background-color: rgba(226, 226, 222, 0.606);
}

/* 画像と動画をレスポンシブに */
img, video {
  max-width: 100%;
  height: auto;
}