/* 
─────────────────────────────────────────────────────────────────
共通設定
───────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 
────────────────────────────────────────────────── */
html {
  overflow-x: hidden; /* 横スクロールバーを出さない */
  font-size: 16px;
}

/* 
────────────────────────────────────────────────── */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 450;
  line-height: 1.6;
  color: #4b4b4b;
  letter-spacing: 0.06em;
}

/* 
────────────────────────────────────────────────── */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle; /* 垂直方向に中央揃え */
  border: none; /* 画像の枠線を表示しない */
}

/* 
────────────────────────────────────────────────── */
a {
  text-decoration: underline;
  transition: 0.3s;
}

a:link {
  color: #00f;
}

a:visited {
  color: #7a007e;
}

a:hover {
  color: #f00;
}

a:active {
  color: #ff8000;
}
