/*!
 *  common.css
 */

html {
  font-size: 62.5%;
  /* ベースは10px */
}
body {
  font-size: 1.6rem;
  /* 16px */
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  background: #fffcf6;
}
img {
  max-width: 100%;
}
header {
  width: 100%;
  height: 10px;
  background: #3b3b3b;
}
footer {
  width: 100%;
  height: 10px;
  background: #632e17;
  margin-bottom: 0;
  padding: 40px 0 20px;
}
footer p {
  text-align: center;
  font-size: 12px;
  color: #fff;
}
.sp {
  display: block;
}
.pc {
  display: none;
}
@media screen and (min-width: 769px) {
  header {
    height: 20px;
  }
  footer {
    padding: 80px 0 40px;
  }
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
