@charset "UTF-8";

/* -----------------------------------------------
FileName: common.css
----------------------------------------------- */

/* ===================================================
   FOOTER
=================================================== */
.footer {
  background: linear-gradient(to bottom, #7F625B 40%, #563F3A 100%);
  text-align: center;
  padding: clamp(104px, 18.75vw, 144px) var(--side-padding) clamp(16px, 4.17vw, 32px);
  margin-top: -64px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 5.21vw, 40px);
}

/* ロゴ */
.nea-logo {
  width: min(clamp(176px, 45.83vw, 352px), 100%);
}
.nea-logo img {
  height: auto;
  display: block;
}

/* SNSアイコン */
.footer-sns {
  display: flex;
  justify-content: center;
}

.footer-sns-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 10.42vw, 80px);
  height: clamp(40px, 10.42vw, 80px);
  border-radius: 50%;
  background-color: #FFF8F5;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.10);
  text-decoration: none;
}

.footer-sns-item img {
  width: clamp(25px, 6.51vw, 50px);
  height: clamp(25px, 6.51vw, 50px);
  display: block;
}

/* ナビ */
.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(16px, 4vw, 32px);
}

.footer-nav-link {
  font-family: var(--font-en-sans);
  font-size: clamp(10px, 2.6vw, 20px);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.footer-nav-link:hover {
  opacity: 0.7;
}

/* コピーライト */
.footer-copy {
      padding-top: clamp(12px, 3.13vw, 24px);
  font-family: var(--font-en-sans);
  font-size: clamp(10px, 2.34vw, 18px);
  font-weight: 400;
  color: #D3C2BA;
  letter-spacing: 0.08em;
  margin: 0;
}

