@charset "UTF-8";

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  color: #1f1f1f;
  font-family: 'Noto Sans JP', 'YuGothic', 'Yu Gothic', sans-serif;
  font-weight: 400;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  color: #1f1f1f;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.7;
}


main {
  padding-top: 80px;
}

h1 {
  margin: 0 auto 40px;
  text-align: center;
}

/*-----------------------------------------------フッタ */
#footer {
  width: 100%;
  height: 300px;
  background-color: #333;
}

/* aタグをブロック化して全体をクリック範囲にする */
.footer-link {
  display: flex;
  /* 中央寄せ用 */
  align-items: center;
  /* 縦中央 */
  justify-content: center;
  /* 横中央 */
  width: 100%;
  height: 100%;
  /* フッタ全体をクリック範囲に */
  color: #fff;
  font-size: 24px;
  text-decoration: none;
}

/* マウスオーバー時に軽く変化を付ける */
.footer-link:hover {
  background-color: #444;
}