/* ===============================
   フッター全体
================================ */
.site-footer {
  position: relative;              /* ★ 潰され防止（最重要） */
  display: block;                  /* ★ 念のため明示 */
  width: 100%;

  background: #111;
  color: #ccc;
  text-align: center;
  padding: 45px 20px 18px;

  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  box-sizing: border-box;          /* ★ padding込みで安定 */
}

/* ===============================
   中央コンテンツ
================================ */
.footer-main {
  max-width: 680px;
  margin: 0 auto;
}

/* ===============================
   寺院名・住所
================================ */
.footer-temple {
  line-height: 1.9;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-size: 15px;
}

/* ===============================
   ポリシーリンク
================================ */
.footer-policy {
  margin-bottom: 24px;
  font-size: 14px;
}

.footer-policy a {
  color: #ccc;
  text-decoration: none;
}

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

.sep {
  margin: 0 10px;
  opacity: 0.5;
}

/* ===============================
   SNS アイコン
================================ */
.footer-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-sns img {
  display: block;                  /* ★ inline潰れ防止 */
  width: 26px;
  height: 26px;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-sns img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ===============================
   下段コピーライト
================================ */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 14px;
  font-size: 13px;
  opacity: 0.7;
  letter-spacing: 0.05em;
}

