@charset "UTF-8";
/* ===== footer ===== */

.site-footer {
  width: 100%;
  font-family: inherit;
}

/* 上段 */
.footer-top {
  background: #eeeeee; /* クリーム色 */
  padding: 30px 20px;
  text-align: center;
}

.footer-logo img {
  width: 100px;
  margin-bottom: 20px;
}

.footer-sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-sns a {
  width: 50px;
  height: 50px;              /* ← 高さを指定 */
  display: flex;             /* ← 中央寄せ用 */
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 2px solid #6fa6c9;
  opacity: 0.8;
}

.footer-sns img {
  width: 32px;               /* ← ロゴは小さめに */
  height: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: #666;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* 下段 */
.footer-bottom {
  background: #6fa6c9; /* 淡い水色 */
  padding: 15px;
  text-align: center;
}

.footer-bottom p {
  color: #fff;
  font-size: 13px;
}


/* ===== SP ===== */
@media (max-width: 768px) {
.footer-sns a {
  width: 40px;
  height: 40px;              /* ← 高さを指定 */
  display: flex;             /* ← 中央寄せ用 */
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 2px solid #6fa6c9;
  opacity: 0.8;
}

.footer-sns img {
  width: 22px;               /* ← ロゴは小さめに */
  height: auto;
}

}

