/* ===== フッター ===== */
.footer {
  padding: 32px 0 24px;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgb(127, 200, 200),
    rgb(110, 185, 185)
  );
}

/* ナビリスト */
.footer-list {
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 40px;
  text-align: right;
}

/* リストアイテム */
.footer-item {
  display: inline-block;
  margin-left: 20px;
  list-style: none;
}

/* リンク */
.footer-list a {
  position: relative;
  text-decoration: none;
  color: #432;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

/* 下線アニメーション */
.footer-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: #432;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.footer-list a:hover {
  color: #321;
}

.footer-list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* コピーライト */
.copyright {
  margin-top: 24px;
  text-align: center;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0.12em;
}

/* ===== フッター終了 ===== */