@charset "UTF-8";
.footer {
  padding: 6rem 2rem 3rem;
  font-family: "Noto Serif JP", serif;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5rem;
}

/* ------------------------
   company
------------------------- */
.footer-company-name img {
  width: 26rem;
  margin-bottom: 2rem;
}

.footer-company-name p {
  margin-top: 4.8rem;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
  color: #555555;
  font-weight: 300;
  letter-spacing: 0.21rem;
}

/* ------------------------
   navigation
------------------------- */
.footer-nav {
  display: flex;
  gap: 9rem;
}

.footer-col {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 1.4rem;
}

.footer-col a {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  color: #000;
  text-decoration: none;
  line-height: 2;
}

/* ------------------------
   icon
------------------------- */
.footer-icons {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 0.5rem;
}

.footer-icons img {
  width: 2rem;
  height: 2rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

/* ------------------------
  copyright
------------------------- */
.footer-copyright {
  text-align: right;
  font-size: 1.2rem;
  color: #555555;
  font-weight: 500;
  letter-spacing: 0.12rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
}

/* ================================
   SP FOOTER（〜767px）大字体版
================================ */
@media screen and (max-width: 767px) {
  .footer {
    padding: 5rem 2.4rem 3rem;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 4rem;
    gap: 3rem;
  }
  /* ---------- company ---------- */
  .footer-company-name img {
    width: 22rem;
    margin-bottom: 2rem;
  }
  .footer-company-name p {
    margin-top: 2rem;
    font-size: 2rem;
    line-height: 1.7;
    letter-spacing: 0.05rem;
    color: #555;
  }
  /* ---------- nav ---------- */
  .footer-nav {
    flex-direction: column;
    gap: 4rem;
    width: 100%;
    margin-top: 2rem;
  }
  .footer-col li {
    margin-bottom: 1.8rem;
  }
  .footer-col a {
    font-size: 2.4rem; /* ★ 你想要的大字体 */
    line-height: 1.6;
    letter-spacing: 0.05rem;
    color: #222;
  }
  /* ---------- icons ---------- */
  .footer-icons {
    margin-top: 1rem;
    gap: 2rem;
  }
  .footer-icons img {
    width: 2.8rem;
    height: 2.8rem;
  }
  /* ---------- copyright ---------- */
  .footer-copyright {
    text-align: center;
    width: 100%;
    margin-top: 3rem;
    font-size: 1.6rem;
    letter-spacing: 0.08rem;
  }
}/*# sourceMappingURL=newfooter.css.map */