@charset "utf-8";
html {
  font-size: 62.5%;
  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth; /*上に戻るボタン */
}
body {
  color: #222;
  font-family: "impact", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: 500;
  font-size: 1.6em;
  line-height: 1;
  max-width: 2000px;
  padding: 0 100px;
}
section h2 {
  font-size: 3.6rem;
}
.none {
  display: none;
}
img {
  max-width: 100%;
  height: auto;
}
header {
  font-family: Myriad Pro;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  right: 0;
  top: 0;
  z-index: 100;
}
header h1 img {
  width: 280px;
}
@media screen and (max-width: 768px) {
  body {
    padding: 0 34px;
  }
  header h1 img {
    width: 180px;
  }
}
@media screen and (max-width: 431px) {
  header h1 img {
    width: 100px;
  }
}


.footer {
  font-family: Myriad Pro;
  max-width: 100%;
  height: 400px;
  padding: 60px 200px 0;
  position: relative;
  background-color: #222;
  color: #fff;
  font-weight: 600;
}
.footer small {
  font-size: 1rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}
/* footer img {
  width: 20px;
} */
