@charset "utf-8";
/* ==========================================================================
   footer.css
   フッター共通スタイル
   ========================================================================== */

#site-footer {
  position: relative;
  padding-top: 30px;
}

#site-footer::before {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1402/1122;
  background: url("../img/bk/bottom.png");
  background-size: cover;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247, 243, 238, 0.15);
}
.footer-nav {
  display: flex;
  gap: 30px;
}

.footer-nav-col {
  display: flex;
  gap: 30px;
}

.ft-logo img {
  width: 170px;
}

.footer-brand p {
  font-size: 12px;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: row;
  gap: 10px;
  color: #493c31;
}

.footer-info {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
}

.footer-info a {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}

.footer-info a i {
  color: #8b5b27db;
  font-size: 13px;
  position: relative;
  top: -1px;
}

.footer-info .drawer-sns a span {
  width: 120px;
  margin-top: 10px;
}

.footer-nav {
  display: flex;
  gap: 30px;
}

.footer-nav-col a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  color: #766c63;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0;
}

.footer-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-link a {
  margin-top: 10px;
  width: 160px;
}

.footer-copyright {
  font-size: 11px;
  letter-spacing: 0.03em;
}

/* ---------------------------------
   ページトップボタン
--------------------------------- */
#page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    visibility 0.4s var(--ease);
  box-shadow: 0 8px 20px rgba(58, 54, 51, 0.2);
}

#page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#page-top span {
  font-size: 18px;
  transform: translateY(-1px);
}

#page-top a {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

#page-top a:hover {
  background: #8b5b27db;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 10px;
  }

  .footer-nav-col a {
    font-size: 12px;
  }

  .footer-link a {
    width: 150px;
  }

  .drawer-hotpepper .hot-pepper-beauty {
    max-width: 150px;
  }

  .footer-link {
    align-items: flex-start;
  }

  #page-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 600px) {
  .footer-nav {
    gap: 0;
    flex-direction: column;
  }

  .footer-nav-col {
    display: flex;
    gap: 0;
    flex-direction: column;
  }
}
