@charset "utf-8";

/* ------------------------------
 COMMON
------------------------------ */

/* ベースのフォントサイズを10px */
html {
  font-size: 62.5%;
}

/* スタイルが指定されていない要素のフォントサイズを統一 */
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
}

/* リンクの装飾をリセット */
a {
  text-decoration: none;
  outline: none;
}

/* 画像レスポンシブ */
img {
  max-width: 100%;
  height: auto;
}