@charset "UTF-8";
/* ===============================
   Layout & Components Styles
   =============================== */
/* コンテナ（中央寄せ、最大幅1200px） */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* ヘッダー */
header {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer {
  position: relative;
  padding: 200px 0;
  background-color: #4B4F52;
  text-align: center;
}
footer p {
  color: #E0DFDE;
  font-size: 0.875rem;
  font-family: "Libertinus Sans", sans-serif;
  font-weight: 400;
}

/* ===============================
   Responsive
   =============================== */
@media screen and (max-width: 768px) {
  footer {
    padding: 30vw 0;
  }
  footer p {
    font-size: 0.75rem;
  }
}
