/* サイト共通フッター（トップと統一） */
.site-footer {
  --footer-section-pad: 26px;
  flex-shrink: 0;
  margin-top: auto;
  background: #9a8578;
  color: #f5f2eb;
  padding: 0;
  text-align: center;
  box-sizing: border-box;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--footer-section-pad);
  width: min(92vw, 450px);
  margin: 0 auto;
  padding: var(--footer-section-pad) 20px;
  box-sizing: border-box;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  text-decoration: none;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
}

.site-footer__logo svg {
  display: block;
  width: auto;
  height: 18px;
  margin: 0 auto;
}

.site-footer__logo svg .cls-1 {
  fill: #ffffff;
  transition: fill-opacity 0.15s ease;
}

.site-footer__logo:hover svg .cls-1,
.site-footer__logo:focus-visible svg .cls-1 {
  fill-opacity: 0.78;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin: 0;
  padding: var(--footer-section-pad) 0;
  border-top: 1px solid rgba(245, 242, 235, 0.28);
  border-bottom: 1px solid rgba(245, 242, 235, 0.28);
  box-sizing: border-box;
}

.site-footer__nav a {
  display: inline-block;
  color: #f5f2eb;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: #ffffff;
}

.site-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.site-footer__instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  color: #f5f2eb;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.site-footer__instagram svg {
  display: block;
  width: 28px;
  height: 28px;
}

.site-footer__instagram:hover,
.site-footer__instagram:focus-visible {
  color: #ffffff;
}

.site-footer__copyright {
  margin: 0;
  padding: 12px 16px;
  background: #746054;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #e4d8cc;
  box-sizing: border-box;
}

@media (min-width: 600px) {
  .site-footer {
    --footer-section-pad: 36px;
  }

  .site-footer__inner {
    width: min(94vw, 720px);
    padding: var(--footer-section-pad) 24px;
  }

  .site-footer__logo svg {
    height: 22px;
  }

  .site-footer__nav {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0 28px;
    padding: var(--footer-section-pad) 0;
  }

  .site-footer__nav a {
    font-size: 13px;
    white-space: nowrap;
  }

  .site-footer__social {
    gap: 24px;
  }

  .site-footer__instagram svg {
    width: 30px;
    height: 30px;
  }

  .site-footer__copyright {
    padding: 14px 16px;
    font-size: 12px;
  }
}
