@charset "UTF-8";
/* ==========================================================================
   カスタムフッター CSS (footer.css) - 全ページ共通
   ========================================================================== */

/* Luxeritas 本来のフッター（ABOUT US ウィジェット等）を非表示にし、
   下記のカスタムフッター（wp_footer フックで出力）に置き換える */
#footer {
  display: none !important;
}

.eg-site-footer {
  background-color: #FFF8F0; /* サイト共通のミルクカラー背景（明るい配色） */
  color: #8B5E3C;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  text-align: center;
  padding: 60px 20px 0;
  border-top: 1px solid #fdecd8;
}

.eg-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 45px;
}

.eg-footer-logo {
  margin-bottom: 30px;
}

.eg-footer-logo img {
  height: 84px;
  width: auto;
}

.eg-footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 35px;
  padding-bottom: 30px;
  border-bottom: 1px solid #fdecd8;
}

.eg-footer-nav a {
  color: #8B5E3C;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.eg-footer-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.eg-footer-contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-size: 13px;
  color: #a67c5b;
}

.eg-footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.eg-footer-contact .material-icons {
  font-size: 16px;
  color: #F4B183;
}

.eg-footer-bottom {
  background-color: #FBEADB;
  padding: 18px 20px;
}

.eg-footer-bottom-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.eg-footer-bottom-inner a {
  color: #8B5E3C;
  font-size: 12px;
  text-decoration: none;
}

.eg-footer-bottom-inner a:hover {
  text-decoration: underline;
}

.eg-footer-copyright {
  font-size: 12px;
  color: #a67c5b;
}

@media (max-width: 600px) {
  .eg-site-footer { padding-top: 45px; }
  .eg-footer-nav { gap: 16px 22px; }
  .eg-footer-contact { flex-direction: column; gap: 10px; }
}
