/*============ footerのデザイン ============*/
footer {
  position: relative;
  font-size: 15px;
  color: var(--main-font-color);
  background: var(--header-bg-color);
  text-align: center;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  height: 56px;
  display: flex; /* Flexboxを使用 */
  justify-content: center; /* 水平方向の中央揃え */
  align-items: end; /* 垂直方向の中央揃え */
}

footer p {
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 480px) {
  footer p {
    font-size: 0.7em;
  }
}
